-- Jeepno Site Duplicator SQL
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
SET foreign_key_checks = 0;

DROP TABLE IF EXISTS `store_gateway_credentials`;
CREATE TABLE `store_gateway_credentials` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `store_id` int(11) NOT NULL DEFAULT 1,
  `gateway` varchar(60) NOT NULL DEFAULT 'sslcommerz',
  `sslcz_store_id` varchar(120) NOT NULL DEFAULT '',
  `sslcz_store_pass` varchar(180) NOT NULL DEFAULT '',
  `sslcz_sandbox` tinyint(1) NOT NULL DEFAULT 1,
  `status` varchar(30) NOT NULL DEFAULT 'active',
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT NULL ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uq_gateway_store` (`store_id`,`gateway`),
  KEY `idx_gateway_name` (`gateway`),
  KEY `idx_gateway_status` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_actionscheduler_actions`;
CREATE TABLE `wpst_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) NOT NULL,
  `status` varchar(20) NOT NULL,
  `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  `priority` tinyint(3) unsigned NOT NULL DEFAULT 10,
  `args` varchar(191) DEFAULT NULL,
  `schedule` longtext DEFAULT NULL,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `attempts` int(11) NOT NULL DEFAULT 0,
  `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `extended_args` varchar(8000) DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook_status_scheduled_date_gmt` (`hook`(163),`status`,`scheduled_date_gmt`),
  KEY `status_scheduled_date_gmt` (`status`,`scheduled_date_gmt`),
  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`),
  KEY `claim_id_status_priority_scheduled_date_gmt` (`claim_id`,`status`,`priority`,`scheduled_date_gmt`),
  KEY `status_last_attempt_gmt` (`status`,`last_attempt_gmt`),
  KEY `status_claim_id` (`status`,`claim_id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Action Scheduler runtime queue data skipped. Destination plugins will regenerate it.

DROP TABLE IF EXISTS `wpst_actionscheduler_claims`;
CREATE TABLE `wpst_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=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Action Scheduler runtime queue data skipped. Destination plugins will regenerate it.

DROP TABLE IF EXISTS `wpst_actionscheduler_groups`;
CREATE TABLE `wpst_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Action Scheduler runtime queue data skipped. Destination plugins will regenerate it.

DROP TABLE IF EXISTS `wpst_actionscheduler_logs`;
CREATE TABLE `wpst_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text NOT NULL,
  `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Action Scheduler runtime queue data skipped. Destination plugins will regenerate it.

DROP TABLE IF EXISTS `wpst_api_key_validation`;
CREATE TABLE `wpst_api_key_validation` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `api_key` varchar(255) NOT NULL,
  `domain` varchar(255) NOT NULL,
  `time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_cartflows_visits`;
CREATE TABLE `wpst_cartflows_visits` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `step_id` bigint(20) NOT NULL,
  `date_visited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `visit_type` enum('new','return') DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=137 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_cartflows_visits_meta`;
CREATE TABLE `wpst_cartflows_visits_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `visit_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=137 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_commentmeta`;
CREATE TABLE `wpst_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;


DROP TABLE IF EXISTS `wpst_comments`;
CREATE TABLE `wpst_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=InnoDB AUTO_INCREMENT=132 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('2','80','WooCommerce','woocommerce@noreply.com','','','2026-06-05 09:39:35','2026-06-05 03:39:35','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('3','80','WooCommerce','woocommerce@noreply.com','','','2026-06-05 09:39:35','2026-06-05 03:39:35','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('4','81','WooCommerce','','','','2026-06-05 09:43:28','2026-06-05 03:43:28','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('5','81','WooCommerce','','','','2026-06-05 09:43:28','2026-06-05 03:43:28','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('6','82','WooCommerce','','','','2026-06-05 09:43:34','2026-06-05 03:43:34','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('7','82','WooCommerce','','','','2026-06-05 09:43:34','2026-06-05 03:43:34','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('8','83','WooCommerce','','','','2026-06-05 09:43:55','2026-06-05 03:43:55','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('9','83','WooCommerce','','','','2026-06-05 09:43:55','2026-06-05 03:43:55','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('10','84','WooCommerce','','','','2026-06-05 09:44:05','2026-06-05 03:44:05','Order status changed from Pending payment to Incomplete.','0','post-trashed','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('11','84','WooCommerce','','','','2026-06-05 09:44:05','2026-06-05 03:44:05','Incomplete order captured from checkout form.','0','post-trashed','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('12','84','WooCommerce','','','','2026-06-05 09:44:16','2026-06-05 03:44:16','Confirmed by phone from incomplete order list. Order status changed from Incomplete to Processing.','0','post-trashed','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('13','85','WooCommerce','','','','2026-06-05 09:46:54','2026-06-05 03:46:54','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('14','85','WooCommerce','','','','2026-06-05 09:46:54','2026-06-05 03:46:54','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('15','86','WooCommerce','','','','2026-06-05 09:46:56','2026-06-05 03:46:56','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('16','86','WooCommerce','','','','2026-06-05 09:46:56','2026-06-05 03:46:56','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('17','87','WooCommerce','woocommerce@noreply.com','','','2026-06-05 09:51:51','2026-06-05 03:51:51','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('18','87','WooCommerce','woocommerce@noreply.com','','','2026-06-05 09:51:51','2026-06-05 03:51:51','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('19','88','WooCommerce','','','','2026-06-05 09:55:39','2026-06-05 03:55:39','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('20','88','WooCommerce','','','','2026-06-05 09:55:39','2026-06-05 03:55:39','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('21','89','WooCommerce','','','','2026-06-05 09:55:40','2026-06-05 03:55:40','Payment to be made upon delivery. Order status changed from Pending payment to Processing.','0','post-trashed','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('22','90','WooCommerce','','','','2026-06-05 09:57:00','2026-06-05 03:57:00','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('23','90','WooCommerce','','','','2026-06-05 09:57:00','2026-06-05 03:57:00','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('24','91','WooCommerce','','','','2026-06-05 09:57:18','2026-06-05 03:57:18','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('25','91','WooCommerce','','','','2026-06-05 09:57:18','2026-06-05 03:57:18','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('26','92','WooCommerce','','','','2026-06-05 09:57:22','2026-06-05 03:57:22','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('27','92','WooCommerce','','','','2026-06-05 09:57:23','2026-06-05 03:57:23','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('28','92','WooCommerce','','','','2026-06-05 09:57:31','2026-06-05 03:57:31','Cancelled from incomplete order list. Order status changed from Incomplete to Cancelled.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('29','93','WooCommerce','woocommerce@noreply.com','','','2026-06-05 10:03:28','2026-06-05 04:03:28','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('30','93','WooCommerce','woocommerce@noreply.com','','','2026-06-05 10:03:28','2026-06-05 04:03:28','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('31','94','WooCommerce','','','','2026-06-05 10:18:09','2026-06-05 04:18:09','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('32','94','WooCommerce','','','','2026-06-05 10:18:09','2026-06-05 04:18:09','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('33','95','WooCommerce','','','','2026-06-05 10:18:12','2026-06-05 04:18:12','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('34','95','WooCommerce','','','','2026-06-05 10:18:13','2026-06-05 04:18:13','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('35','96','WooCommerce','','','','2026-06-05 10:18:41','2026-06-05 04:18:41','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('36','96','WooCommerce','','','','2026-06-05 10:18:41','2026-06-05 04:18:41','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('37','97','WooCommerce','','','','2026-06-05 10:18:46','2026-06-05 04:18:46','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('38','97','WooCommerce','','','','2026-06-05 10:18:46','2026-06-05 04:18:46','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('39','98','WooCommerce','','','','2026-06-05 10:19:11','2026-06-05 04:19:11','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('40','98','WooCommerce','','','','2026-06-05 10:19:11','2026-06-05 04:19:11','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('41','99','WooCommerce','','','','2026-06-05 10:19:17','2026-06-05 04:19:17','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('42','99','WooCommerce','','','','2026-06-05 10:19:18','2026-06-05 04:19:18','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('43','100','WooCommerce','','','','2026-06-05 10:19:21','2026-06-05 04:19:21','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('44','100','WooCommerce','','','','2026-06-05 10:19:21','2026-06-05 04:19:21','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('45','101','WooCommerce','','','','2026-06-05 10:19:24','2026-06-05 04:19:24','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('46','101','WooCommerce','','','','2026-06-05 10:19:24','2026-06-05 04:19:24','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('47','102','WooCommerce','','','','2026-06-05 10:19:28','2026-06-05 04:19:28','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('48','102','WooCommerce','','','','2026-06-05 10:19:28','2026-06-05 04:19:28','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('49','103','WooCommerce','woocommerce@noreply.com','','','2026-06-05 10:23:04','2026-06-05 04:23:04','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('50','103','WooCommerce','woocommerce@noreply.com','','','2026-06-05 10:23:04','2026-06-05 04:23:04','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('51','104','WooCommerce','','','','2026-06-05 10:26:17','2026-06-05 04:26:17','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('52','104','WooCommerce','','','','2026-06-05 10:26:17','2026-06-05 04:26:17','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('53','105','WooCommerce','','','','2026-06-05 10:26:19','2026-06-05 04:26:19','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('54','106','WooCommerce','','','','2026-06-05 10:26:19','2026-06-05 04:26:19','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('55','105','WooCommerce','','','','2026-06-05 10:26:19','2026-06-05 04:26:19','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('56','106','WooCommerce','','','','2026-06-05 10:26:19','2026-06-05 04:26:19','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('57','107','WooCommerce','','','','2026-06-05 10:26:21','2026-06-05 04:26:21','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('58','107','WooCommerce','','','','2026-06-05 10:26:21','2026-06-05 04:26:21','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('59','108','WooCommerce','','','','2026-06-05 10:27:06','2026-06-05 04:27:06','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('60','108','WooCommerce','','','','2026-06-05 10:27:07','2026-06-05 04:27:07','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('61','109','WooCommerce','','','','2026-06-05 10:27:14','2026-06-05 04:27:14','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('62','109','WooCommerce','','','','2026-06-05 10:27:14','2026-06-05 04:27:14','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('63','110','WooCommerce','woocommerce@noreply.com','','','2026-06-05 10:41:33','2026-06-05 04:41:33','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('64','110','WooCommerce','woocommerce@noreply.com','','','2026-06-05 10:41:33','2026-06-05 04:41:33','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('65','111','WooCommerce','','','','2026-06-05 10:46:20','2026-06-05 04:46:20','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('66','111','WooCommerce','','','','2026-06-05 10:46:21','2026-06-05 04:46:21','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('67','112','WooCommerce','','','','2026-06-05 10:46:22','2026-06-05 04:46:22','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('68','113','WooCommerce','','','','2026-06-05 10:46:22','2026-06-05 04:46:22','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('69','112','WooCommerce','','','','2026-06-05 10:46:22','2026-06-05 04:46:22','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('70','113','WooCommerce','','','','2026-06-05 10:46:22','2026-06-05 04:46:22','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('71','114','WooCommerce','','','','2026-06-05 10:46:23','2026-06-05 04:46:23','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('72','114','WooCommerce','','','','2026-06-05 10:46:23','2026-06-05 04:46:23','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('73','115','WooCommerce','','','','2026-06-05 10:46:26','2026-06-05 04:46:26','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('74','115','WooCommerce','','','','2026-06-05 10:46:26','2026-06-05 04:46:26','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('75','116','WooCommerce','','','','2026-06-05 10:46:27','2026-06-05 04:46:27','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('76','117','WooCommerce','','','','2026-06-05 10:46:27','2026-06-05 04:46:27','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('77','116','WooCommerce','','','','2026-06-05 10:46:27','2026-06-05 04:46:27','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('78','117','WooCommerce','','','','2026-06-05 10:46:27','2026-06-05 04:46:27','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('79','118','WooCommerce','','','','2026-06-05 10:46:28','2026-06-05 04:46:28','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('80','118','WooCommerce','','','','2026-06-05 10:46:29','2026-06-05 04:46:29','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('81','119','WooCommerce','','','','2026-06-05 10:46:58','2026-06-05 04:46:58','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('82','119','WooCommerce','','','','2026-06-05 10:46:58','2026-06-05 04:46:58','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('83','120','WooCommerce','','','','2026-06-05 10:46:59','2026-06-05 04:46:59','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('84','120','WooCommerce','','','','2026-06-05 10:46:59','2026-06-05 04:46:59','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('85','121','WooCommerce','','','','2026-06-05 10:47:13','2026-06-05 04:47:13','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('86','121','WooCommerce','','','','2026-06-05 10:47:13','2026-06-05 04:47:13','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('87','122','WooCommerce','','','','2026-06-05 10:47:14','2026-06-05 04:47:14','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('88','122','WooCommerce','','','','2026-06-05 10:47:15','2026-06-05 04:47:15','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('89','123','WooCommerce','','','','2026-06-05 10:47:27','2026-06-05 04:47:27','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('90','123','WooCommerce','','','','2026-06-05 10:47:28','2026-06-05 04:47:28','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('91','124','WooCommerce','','','','2026-06-05 10:47:29','2026-06-05 04:47:29','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('92','125','WooCommerce','','','','2026-06-05 10:47:29','2026-06-05 04:47:29','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('93','124','WooCommerce','','','','2026-06-05 10:47:29','2026-06-05 04:47:29','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('94','125','WooCommerce','','','','2026-06-05 10:47:29','2026-06-05 04:47:29','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('95','126','WooCommerce','','','','2026-06-05 10:47:30','2026-06-05 04:47:30','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('96','127','WooCommerce','','','','2026-06-05 10:47:30','2026-06-05 04:47:30','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('97','126','WooCommerce','','','','2026-06-05 10:47:30','2026-06-05 04:47:30','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('98','127','WooCommerce','','','','2026-06-05 10:47:30','2026-06-05 04:47:30','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('99','128','WooCommerce','','','','2026-06-05 10:47:31','2026-06-05 04:47:31','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('100','129','WooCommerce','','','','2026-06-05 10:47:31','2026-06-05 04:47:31','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('101','128','WooCommerce','','','','2026-06-05 10:47:32','2026-06-05 04:47:32','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('102','129','WooCommerce','','','','2026-06-05 10:47:32','2026-06-05 04:47:32','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('103','130','WooCommerce','','','','2026-06-05 10:47:33','2026-06-05 04:47:33','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('104','130','WooCommerce','','','','2026-06-05 10:47:33','2026-06-05 04:47:33','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('105','131','WooCommerce','','','','2026-06-05 10:47:52','2026-06-05 04:47:52','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('106','131','WooCommerce','','','','2026-06-05 10:47:52','2026-06-05 04:47:52','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('107','133','WooCommerce','','','','2026-06-05 10:47:53','2026-06-05 04:47:53','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('108','134','WooCommerce','','','','2026-06-05 10:47:53','2026-06-05 04:47:53','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('109','132','WooCommerce','','','','2026-06-05 10:47:53','2026-06-05 04:47:53','Payment to be made upon delivery. Order status changed from Pending payment to Processing.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('110','133','WooCommerce','','','','2026-06-05 10:47:54','2026-06-05 04:47:54','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('111','134','WooCommerce','','','','2026-06-05 10:47:54','2026-06-05 04:47:54','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('112','135','WooCommerce','','','','2026-06-05 10:47:55','2026-06-05 04:47:55','Order status changed from Pending payment to Incomplete.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('113','135','WooCommerce','','','','2026-06-05 10:47:55','2026-06-05 04:47:55','Incomplete order captured from checkout form.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('114','136','WooCommerce','woocommerce@noreply.com','','','2026-06-05 16:44:33','2026-06-05 10:44:33','Order status changed from Pending payment to Processing.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('115','137','WooCommerce','','','','2026-06-05 16:50:39','2026-06-05 10:50:39','Payment to be made upon delivery. Order status changed from Pending payment to Processing.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('116','186','WooCommerce','','','','2026-06-06 08:41:42','2026-06-06 02:41:42','Payment to be made upon delivery. Order status changed from Pending payment to Processing.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('117','187','WooCommerce','','','','2026-06-06 08:45:04','2026-06-06 02:45:04','Stock hold of 60 minutes applied to: <br>- growth booster cow (#155) &times; 1','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('118','187','WooCommerce','','','','2026-06-06 08:45:05','2026-06-06 02:45:05','Stock levels reduced: growth booster cow (#155) 10&rarr;9','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('119','187','WooCommerce','','','','2026-06-06 08:45:05','2026-06-06 02:45:05','Payment to be made upon delivery. Order status changed from Pending payment to Processing.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('124','1786','WooCommerce','','','','2026-06-07 09:59:08','2026-06-07 03:59:08','Payment to be made upon delivery. Order status changed from Pending payment to Processing.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('125','2112','WooCommerce','','','','2026-06-09 10:50:32','2026-06-09 04:50:32','Payment to be made upon delivery. Order status changed from Pending payment to Processing.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('126','2113','WooCommerce','','','','2026-06-09 11:05:39','2026-06-09 05:05:39','Payment to be made upon delivery. Order status changed from Pending payment to Processing.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('127','2115','WooCommerce','','','','2026-06-09 11:07:53','2026-06-09 05:07:53','Payment to be made upon delivery. Order status changed from Pending payment to Processing.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('128','2116','WooCommerce','','','','2026-06-09 11:14:59','2026-06-09 05:14:59','Payment to be made upon delivery. Order status changed from Pending payment to Processing.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('129','2117','WooCommerce','','','','2026-06-09 11:15:34','2026-06-09 05:15:34','Payment to be made upon delivery. Order status changed from Pending payment to Processing.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('130','2131','WooCommerce','','','','2026-06-09 12:14:08','2026-06-09 06:14:08','Payment to be made upon delivery. Order status changed from Pending payment to Processing.','0','1','WooCommerce','order_note','0','0');
INSERT INTO `wpst_comments` (`comment_ID`,`comment_post_ID`,`comment_author`,`comment_author_email`,`comment_author_url`,`comment_author_IP`,`comment_date`,`comment_date_gmt`,`comment_content`,`comment_karma`,`comment_approved`,`comment_agent`,`comment_type`,`comment_parent`,`user_id`) VALUES ('131','2180','WooCommerce','woocommerce@hypergrowth.fishgrowth.xyz','','','2026-06-10 22:06:39','2026-06-10 16:06:39','Payment to be made upon delivery. Order status changed from Pending payment to Processing.','0','1','WooCommerce','order_note','0','0');

DROP TABLE IF EXISTS `wpst_e_events`;
CREATE TABLE `wpst_e_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_data` text DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_e_notes`;
CREATE TABLE `wpst_e_notes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `route_url` text DEFAULT NULL COMMENT 'Clean url where the note was created.',
  `route_title` varchar(255) DEFAULT NULL,
  `route_post_id` bigint(20) unsigned DEFAULT NULL COMMENT 'The post id of the route that the note was created on.',
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `element_id` varchar(60) DEFAULT NULL COMMENT 'The Elementor element ID the note is attached to.',
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `author_id` bigint(20) unsigned DEFAULT NULL,
  `author_display_name` varchar(250) DEFAULT NULL COMMENT 'Save the author name when the author was deleted.',
  `status` varchar(20) NOT NULL DEFAULT 'publish',
  `position` text DEFAULT NULL COMMENT 'A JSON string that represents the position of the note inside the element in percentages. e.g. {x:10, y:15}',
  `content` longtext DEFAULT NULL,
  `is_resolved` tinyint(1) NOT NULL DEFAULT 0,
  `is_public` tinyint(1) NOT NULL DEFAULT 1,
  `last_activity_at` datetime DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `route_url_index` (`route_url`(191)),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `parent_id_index` (`parent_id`),
  KEY `author_id_index` (`author_id`),
  KEY `status_index` (`status`),
  KEY `is_resolved_index` (`is_resolved`),
  KEY `is_public_index` (`is_public`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `last_activity_at_index` (`last_activity_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_e_notes_users_relations`;
CREATE TABLE `wpst_e_notes_users_relations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) NOT NULL COMMENT 'The relation type between user and note (e.g mention, watch, read).',
  `note_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `type_index` (`type`),
  KEY `note_id_index` (`note_id`),
  KEY `user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_e_submissions`;
CREATE TABLE `wpst_e_submissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) DEFAULT NULL,
  `hash_id` varchar(60) NOT NULL,
  `main_meta_id` bigint(20) unsigned NOT NULL COMMENT 'Id of main field. to represent the main meta field',
  `post_id` bigint(20) unsigned NOT NULL,
  `referer` varchar(500) NOT NULL,
  `referer_title` varchar(300) DEFAULT NULL,
  `element_id` varchar(20) NOT NULL,
  `form_name` varchar(60) NOT NULL,
  `campaign_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip` varchar(46) NOT NULL,
  `user_agent` text NOT NULL,
  `actions_count` int(11) DEFAULT 0,
  `actions_succeeded_count` int(11) DEFAULT 0,
  `status` varchar(20) NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `meta` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash_id_unique_index` (`hash_id`),
  KEY `main_meta_id_index` (`main_meta_id`),
  KEY `hash_id_index` (`hash_id`),
  KEY `type_index` (`type`),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `campaign_id_index` (`campaign_id`),
  KEY `user_id_index` (`user_id`),
  KEY `user_ip_index` (`user_ip`),
  KEY `status_index` (`status`),
  KEY `is_read_index` (`is_read`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `referer_index` (`referer`(191)),
  KEY `referer_title_index` (`referer_title`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_e_submissions_actions_log`;
CREATE TABLE `wpst_e_submissions_actions_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL,
  `action_name` varchar(60) NOT NULL,
  `action_label` varchar(60) DEFAULT NULL,
  `status` varchar(20) NOT NULL,
  `log` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `action_name_index` (`action_name`),
  KEY `status_index` (`status`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_e_submissions_values`;
CREATE TABLE `wpst_e_submissions_values` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `key` varchar(60) DEFAULT NULL,
  `value` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `key_index` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_enterprise_2fa_codes`;
CREATE TABLE `wpst_enterprise_2fa_codes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `code_hash` varchar(255) NOT NULL,
  `used` tinyint(1) DEFAULT 0,
  `static_code` tinyint(1) DEFAULT 0,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_ff_scheduled_actions`;
CREATE TABLE `wpst_ff_scheduled_actions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action` varchar(255) DEFAULT NULL,
  `form_id` bigint(20) unsigned DEFAULT NULL,
  `origin_id` bigint(20) unsigned DEFAULT NULL,
  `feed_id` bigint(20) unsigned DEFAULT NULL,
  `type` varchar(255) DEFAULT 'submission_action',
  `status` varchar(255) DEFAULT NULL,
  `data` longtext DEFAULT NULL,
  `note` tinytext DEFAULT NULL,
  `retry_count` int(10) unsigned DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_fluentform_entry_details`;
CREATE TABLE `wpst_fluentform_entry_details` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) unsigned DEFAULT NULL,
  `submission_id` bigint(20) unsigned DEFAULT NULL,
  `field_name` varchar(255) DEFAULT NULL,
  `sub_field_name` varchar(255) DEFAULT NULL,
  `field_value` longtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_fluentform_form_analytics`;
CREATE TABLE `wpst_fluentform_form_analytics` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` int(10) unsigned DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `source_url` text NOT NULL,
  `platform` char(30) DEFAULT NULL,
  `browser` char(30) DEFAULT NULL,
  `city` varchar(100) DEFAULT NULL,
  `country` varchar(100) DEFAULT NULL,
  `ip` char(15) DEFAULT NULL,
  `count` int(11) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `form_id_ip` (`form_id`,`ip`),
  KEY `created_at` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_fluentform_form_meta`;
CREATE TABLE `wpst_fluentform_form_meta` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` int(10) unsigned DEFAULT NULL,
  `meta_key` varchar(255) NOT NULL,
  `value` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `form_id_meta_key` (`form_id`,`meta_key`(191)),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_fluentform_forms`;
CREATE TABLE `wpst_fluentform_forms` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `status` varchar(45) DEFAULT 'Draft',
  `appearance_settings` text DEFAULT NULL,
  `form_fields` longtext DEFAULT NULL,
  `has_payment` tinyint(1) NOT NULL DEFAULT 0,
  `type` varchar(45) DEFAULT NULL,
  `conditions` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_fluentform_logs`;
CREATE TABLE `wpst_fluentform_logs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `parent_source_id` int(10) unsigned DEFAULT NULL,
  `source_type` varchar(255) DEFAULT NULL,
  `source_id` int(10) unsigned DEFAULT NULL,
  `component` varchar(255) DEFAULT NULL,
  `status` char(30) DEFAULT NULL,
  `title` varchar(255) NOT NULL,
  `description` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_fluentform_submission_meta`;
CREATE TABLE `wpst_fluentform_submission_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `response_id` bigint(20) unsigned DEFAULT NULL,
  `form_id` int(10) unsigned DEFAULT NULL,
  `meta_key` varchar(45) DEFAULT NULL,
  `value` longtext DEFAULT NULL,
  `status` varchar(45) DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `name` varchar(45) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `response_id_meta_key` (`response_id`,`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

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

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_itgalaxy_customer_leads`;
CREATE TABLE `wpst_itgalaxy_customer_leads` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tracker` varchar(64) NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `name` varchar(190) NOT NULL DEFAULT '',
  `first_name` varchar(190) NOT NULL DEFAULT '',
  `last_name` varchar(190) NOT NULL DEFAULT '',
  `phone` varchar(100) NOT NULL DEFAULT '',
  `email` varchar(190) NOT NULL DEFAULT '',
  `address_1` text DEFAULT NULL,
  `address_2` text DEFAULT NULL,
  `city` varchar(190) NOT NULL DEFAULT '',
  `state` varchar(190) NOT NULL DEFAULT '',
  `postcode` varchar(50) NOT NULL DEFAULT '',
  `country` varchar(50) NOT NULL DEFAULT '',
  `page_url` text DEFAULT NULL,
  `page_title` varchar(255) NOT NULL DEFAULT '',
  `referrer` text DEFAULT NULL,
  `ip_address` varchar(100) NOT NULL DEFAULT '',
  `device_type` varchar(30) NOT NULL DEFAULT '',
  `user_agent` text DEFAULT NULL,
  `raw_payload` longtext DEFAULT NULL,
  `save_count` int(11) unsigned NOT NULL DEFAULT 1,
  `first_seen` datetime NOT NULL,
  `last_seen` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `tracker` (`tracker`),
  KEY `order_id` (`order_id`),
  KEY `phone` (`phone`),
  KEY `last_seen` (`last_seen`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_itgalaxy_order_limiter_logs`;
CREATE TABLE `wpst_itgalaxy_order_limiter_logs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_type` varchar(30) NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `phone` varchar(100) NOT NULL DEFAULT '',
  `ip_address` varchar(100) NOT NULL DEFAULT '',
  `device_id` varchar(128) NOT NULL DEFAULT '',
  `matched_rule` varchar(30) NOT NULL DEFAULT '',
  `matched_count` int(11) unsigned NOT NULL DEFAULT 0,
  `page_url` text DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `message` text DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `event_type` (`event_type`),
  KEY `order_id` (`order_id`),
  KEY `phone` (`phone`),
  KEY `ip_address` (`ip_address`),
  KEY `device_id` (`device_id`),
  KEY `created_at` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_itgalaxy_visit_logs`;
CREATE TABLE `wpst_itgalaxy_visit_logs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tracker` varchar(64) NOT NULL,
  `ip_address` varchar(100) NOT NULL DEFAULT '',
  `device_type` varchar(30) NOT NULL DEFAULT '',
  `user_agent` text DEFAULT NULL,
  `client_device` text DEFAULT NULL,
  `page_url` text DEFAULT NULL,
  `page_title` varchar(255) NOT NULL DEFAULT '',
  `referrer` text DEFAULT NULL,
  `visit_count` int(11) unsigned NOT NULL DEFAULT 1,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `last_name` varchar(190) NOT NULL DEFAULT '',
  `last_phone` varchar(100) NOT NULL DEFAULT '',
  `last_address` text DEFAULT NULL,
  `first_seen` datetime NOT NULL,
  `last_seen` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `tracker` (`tracker`),
  KEY `order_id` (`order_id`),
  KEY `ip_address` (`ip_address`),
  KEY `last_seen` (`last_seen`)
) ENGINE=InnoDB AUTO_INCREMENT=167 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_kb_optimizer`;
CREATE TABLE `wpst_kb_optimizer` (
  `path_hash` char(64) NOT NULL COMMENT 'SHA-256 hash of the relative path of the URL used as a unique key for fast lookups',
  `path` text NOT NULL COMMENT 'The relative path of the URL, stored for reference and debugging',
  `analysis` longtext NOT NULL COMMENT 'Serialized or JSON-encoded analysis data associated with the path',
  PRIMARY KEY (`path_hash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_kb_optimizer_viewport_hashes`;
CREATE TABLE `wpst_kb_optimizer_viewport_hashes` (
  `path_hash` char(64) NOT NULL COMMENT 'SHA-256 hash of the path (via $wp->request), identifies the URL',
  `viewport` enum('desktop','mobile') NOT NULL COMMENT 'The viewport/device identifier',
  `html_hash` varchar(191) NOT NULL COMMENT 'A composite of hashes separated by | in a key:MD5 value of the HTML markup for this viewport',
  PRIMARY KEY (`path_hash`,`viewport`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_links`;
CREATE TABLE `wpst_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;


DROP TABLE IF EXISTS `wpst_options`;
CREATE TABLE `wpst_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=1609969 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1','cron','a:30:{i:1780621728;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:1780621797;a:1:{s:20:\"convert_draft_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1780624473;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:1780624670;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:1780624674;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:1780624678;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:1780660469;a:2:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:16:\"wp_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:1780660473;a:2:{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;}}}i:1780660499;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:1780660500;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:1780660551;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:1780660669;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:1780660670;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:1780670841;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1780677447;a:1:{s:19:\"license_check_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:1780724861;a:1:{s:31:\"delete_starter_templates_folder\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2635200;}}}i:1780724993;a:3:{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;}}s:30:\"generate_category_lookup_table\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1780724997;a:3:{s:29:\"fluentform_do_scheduled_tasks\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"ff_every_five_minutes\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}s:42:\"fluentform_do_email_report_scheduled_tasks\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:27:\"delete_block_library_folder\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2635200;}}}i:1780725043;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:1780728583;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:1780735783;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:1780746583;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:1780768800;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:1780824972;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"94f065376953da8d46fdc10f2c08330f\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1792;}}}}i:1780827289;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"8cf5a930f92ff338528e52352e308f88\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1807;}}}}i:1780827307;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"d4269402d0e308c8c10aad72077d7b03\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1808;}}}}i:1780827331;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"4c870767301c2488e6a9f53f4f102b95\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1809;}}}}i:1780919718;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:1781006069;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('2','siteurl','https://hypergrowth.fishgrowth.xyz','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('3','home','https://hypergrowth.fishgrowth.xyz','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('4','blogname','itgalaxy','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('5','blogdescription','','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('6','users_can_register','0','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('7','admin_email','admin_codex@example.local','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('8','start_of_week','1','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('9','use_balanceTags','0','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('10','use_smilies','1','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('11','require_name_email','1','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('12','comments_notify','1','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('13','posts_per_rss','10','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('14','rss_use_excerpt','0','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('15','mailserver_url','mail.example.com','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('16','mailserver_login','login@example.com','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('17','mailserver_pass','password','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('18','mailserver_port','110','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('19','default_category','1','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('20','default_comment_status','closed','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('21','default_ping_status','closed','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('22','default_pingback_flag','0','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('23','posts_per_page','10','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('24','date_format','F j, Y','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('25','time_format','g:i a','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('26','links_updated_date_format','F j, Y g:i a','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('27','comment_moderation','0','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('28','moderation_notify','1','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('29','permalink_structure','/{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}postname{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}/','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('31','hack_file','0','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('32','blog_charset','UTF-8','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('33','moderation_keys','','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('34','active_plugins','a:21:{i:0;s:51:\"ai-auto-reply-live-chat/ai-auto-reply-live-chat.php\";i:1;s:29:\"ai-auto-work/ai-auto-work.php\";i:2;s:31:\"cartflows-pro/cartflows-pro.php\";i:3;s:23:\"cartflows/cartflows.php\";i:4;s:31:\"elementor-pro/elementor-pro.php\";i:5;s:23:\"elementor/elementor.php\";i:6;s:25:\"fluentform/fluentform.php\";i:7;s:37:\"imunify-security/imunify-security.php\";i:8;s:43:\"inventory-dashboard/inventory-dashboard.php\";i:9;s:57:\"itgalaxy-incomplete-orders/itgalaxy-incomplete-orders.php\";i:10;s:49:\"itgalaxy-order-limiter/itgalaxy-order-limiter.php\";i:11;s:69:\"jeepno-checkout-field-controller/jeepno-checkout-field-controller.php\";i:12;s:51:\"jeepno-image-upload-fix/jeepno-image-upload-fix.php\";i:13;s:49:\"jeepno-site-duplicator/jeepno-site-duplicator.php\";i:14;s:33:\"kadence-blocks/kadence-blocks.php\";i:15;s:55:\"kadence-starter-templates/kadence-starter-templates.php\";i:16;s:29:\"microsoft-clarity/clarity.php\";i:17;s:39:\"pixelyoursite-pro/pixelyoursite-pro.php\";i:18;s:35:\"sales-analytics/sales-analytics.php\";i:19;s:27:\"woocommerce/woocommerce.php\";i:20;s:33:\"wp-pixel-pilot/wp-pixel-pilot.php\";}','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('35','category_base','','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('36','ping_sites','https://rpc.pingomatic.com/','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('37','comment_max_links','2','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('38','gmt_offset','6','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('39','default_email_category','1','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('41','template','kadence','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('42','stylesheet','kadence','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('43','comment_registration','0','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('44','html_type','text/html','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('45','use_trackback','0','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('46','default_role','subscriber','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('47','db_version','57155','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('48','uploads_use_yearmonth_folders','1','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('49','upload_path','','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('50','blog_public','1','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('51','default_link_category','2','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('52','show_on_front','page','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('53','tag_base','','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('54','show_avatars','1','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('55','avatar_rating','G','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('56','upload_url_path','','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('57','thumbnail_size_w','150','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('58','thumbnail_size_h','150','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('59','thumbnail_crop','1','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('60','medium_size_w','300','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('61','medium_size_h','300','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('62','avatar_default','mystery','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('63','large_size_w','1024','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('64','large_size_h','1024','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('65','image_default_link_type','none','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('66','image_default_size','','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('67','image_default_align','','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('68','close_comments_for_old_posts','0','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('69','close_comments_days_old','14','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('70','thread_comments','1','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('71','thread_comments_depth','5','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('72','page_comments','0','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('73','comments_per_page','50','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('74','default_comments_page','newest','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('75','comment_order','asc','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('80','uninstall_plugins','a:3:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:23:\"loginizer/loginizer.php\";s:22:\"loginizer_deactivation\";s:29:\"microsoft-clarity/clarity.php\";s:20:\"clarity_on_uninstall\";}','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('81','timezone_string','','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('82','page_for_posts','509','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('83','page_on_front','15','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('84','default_post_format','0','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('85','link_manager_enabled','0','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('86','finished_splitting_shared_terms','1','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('87','site_icon','0','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('88','medium_large_size_w','768','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('89','medium_large_size_h','0','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('90','wp_page_for_privacy_policy','0','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('91','show_comments_cookies_opt_in','1','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('92','admin_email_lifespan','1789400650','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('93','disallowed_keys','','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('94','comment_previously_approved','1','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('95','auto_plugin_theme_update_emails','a:0:{}','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('96','auto_update_core_dev','enabled','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('97','auto_update_core_minor','enabled','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('98','auto_update_core_major','enabled','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('99','wp_force_deactivated_plugins','a:0:{}','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('100','wp_attachment_pages_enabled','0','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('101','initial_db_version','57155','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('102','wpst_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:132:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:26:\"create_notes_elementor-pro\";b:1;s:24:\"edit_notes_elementor-pro\";b:1;s:26:\"delete_notes_elementor-pro\";b:1;s:24:\"read_notes_elementor-pro\";b:1;s:31:\"edit_others_notes_elementor-pro\";b:1;s:33:\"delete_others_notes_elementor-pro\";b:1;s:39:\"read_others_private_notes_elementor-pro\";b:1;s: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:25:\"cartflows_manage_settings\";b:1;s:28:\"cartflows_manage_flows_steps\";b:1;s:10:\"manage_pys\";b:1;s:27:\"fluentform_dashboard_access\";b:1;s:24:\"fluentform_forms_manager\";b:1;s:25:\"fluentform_entries_viewer\";b:1;s:25:\"fluentform_manage_entries\";b:1;s:24:\"fluentform_view_payments\";b:1;s:26:\"fluentform_manage_payments\";b:1;s:27:\"fluentform_settings_manager\";b:1;s:22:\"fluentform_full_access\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}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;}}}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('103','fresh_site','0','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('104','user_count','7','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('121','recovery_keys','a:2:{s:22:\"wlFkQBggxQGL0RZTNjnZMe\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BJCwlsapXwFzUOeA57q/qOKA6BEjin.\";s:10:\"created_at\";i:1780634358;}s:22:\"5rTpddsFnq8McEuOwG0euV\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BbLz.HiJDuLY88.XVESGYTA9C2.LNn.\";s:10:\"created_at\";i:1780831094;}}','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('170','current_theme','Kadence','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('172','theme_switched','','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('173','hello_theme_version','3.1.1','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('180','elementor_font_display','swap','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('183','recently_activated','a:8:{s:35:\"insert-headers-and-footers/ihaf.php\";i:1780626199;s:53:\"wp-child-theme-generator/wp-child-theme-generator.php\";i:1780626178;s:51:\"enterprise-2fa-security/enterprise-2fa-security.php\";i:1780626162;s:37:\"imunify-security/imunify-security.php\";i:1780626098;s:23:\"loginizer/loginizer.php\";i:1780626075;s:21:\"auto-draft-plugin.php\";i:1780626036;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1780626015;s:85:\"woocommerce-google-analytics-integration/woocommerce-google-analytics-integration.php\";i:1780623486;}','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('184','elementor_version','3.23.4','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('185','elementor_install_history','a:1:{s:6:\"3.23.4\";i:1725882980;}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('186','elementor_events_db_version','1.0.0','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('189','finished_updating_comment_type','1','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('190','elementor_pro_version','3.23.3','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('192','elementor_pro_install_history','a:2:{s:6:\"3.20.3\";i:1725882983;s:6:\"3.23.3\";i:1725884369;}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('194','_elementor_installed_time','1725882983','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('195','_elementor_pro_installed_time','1725882983','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('196','elementor_onboarded','1','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('197','elementor_submissions_db_version','5','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('198','elementor_remote_info_library','a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:21:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:21:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:21:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:21:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:21:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:21:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:21:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:21:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:21:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:21:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:21:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:21:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:21:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:21:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:21:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:21:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:21:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:21:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:21:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:21:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:21:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:21:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:21:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:21:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:21:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:21:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:21:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:21:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:21:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:21:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:21:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:21:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:21:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:21:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:21:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:21:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:21:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:21:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:21:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:21:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:21:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:21:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:21:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:21:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:21:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:21:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:21:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:21:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:21:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:21:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:21:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:21:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:21:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:21:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:21:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:21:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:21:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:21:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:21:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:21:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:21:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:21:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:21:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:21:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:21:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:21:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:21:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:21:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:21:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:21:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:21:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:21:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:21:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:21:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:21:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:21:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:21:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:21:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:21:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:21:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:21:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:21:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:21:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:21:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:21:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:21:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:21:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:21:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:21:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:21:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:21:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:21:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:21:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:21:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:21:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:21:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:21:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:21:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:21:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:21:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:21:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:21:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:21:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:21:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:21:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:21:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:21:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:21:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:21:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:21:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:21:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:21:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:21:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:21:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:21:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:21:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:21:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:21:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:21:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:21:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:21:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:21:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:21:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:21:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:21:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:21:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:21:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:21:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:21:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:21:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:21:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:21:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:21:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:21:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:21:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:21:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:21:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:21:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:21:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:21:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:21:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:21:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:21:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:21:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:21:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:21:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:21:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:21:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:21:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:21:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:21:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:21:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:21:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:21:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:21:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:21:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:21:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:21:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:21:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:21:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:21:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:21:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:21:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:21:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:21:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:21:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:21:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:21:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:21:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:21:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:21:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:21:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:21:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:21:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:21:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:21:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:21:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:21:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:21:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:21:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:21:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:21:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:21:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:21:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:21:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:21:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:21:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:21:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:21:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:21:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:21:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:21:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:21:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:21:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:21:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:21:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:21:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:21:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:21:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:21:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:21:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:21:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:21:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:21:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:21:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:21:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:21:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:21:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:21:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:21:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:21:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:21:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:21:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:21:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:21:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:21:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:21:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:21:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:21:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:21:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:21:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:21:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:21:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:21:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:21:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:21:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:21:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:21:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:21:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:21:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:21:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:21:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:21:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:21:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:21:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:21:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:21:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:21:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:21:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:21:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:21:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:21:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:21:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:21:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:21:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:21:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:21:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:21:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:21:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:21:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:21:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:21:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:21:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:21:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:21:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:21:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:21:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:21:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:21:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:21:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:21:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:21:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:21:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:21:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:21:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:21:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:21:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:21:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:21:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:21:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:21:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:21:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:21:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:21:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:21:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:21:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:21:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:21:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:21:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:21:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:21:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:21:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:21:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:21:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:21:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:21:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:21:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:21:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:21:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:21:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:21:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:21:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:21:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:21:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:21:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:21:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:21:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:21:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:21:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:21:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:21:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:21:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:21:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:21:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:21:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:21:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:21:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:21:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:21:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:21:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:21:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:21:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:21:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:21:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:21:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:21:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:21:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:21:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:21:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:21:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:21:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:21:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:21:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:21:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:21:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:21:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:21:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:21:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:21:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:21:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:21:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:21:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:21:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:21:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:21:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:21:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:21:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:21:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:21:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:21:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:21:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:21:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:21:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:21:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('206','elementor_connect_site_key','b20878f415583961d8ba85593888a1db','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('207','elementor_allow_tracking','yes','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('208','elementor_tracker_last_send','1780229433','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('213','elementor_pro_license_key','257499ce8d932fd7728aef3a428707b4','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('214','_elementor_pro_license_v2_data_fallback','a:2:{s:7:\"timeout\";i:1781349011;s:5:\"value\";s:41:\"{\"success\":false,\"error\":\"site_inactive\"}\";}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('215','_elementor_pro_license_v2_data','a:2:{s:7:\"timeout\";i:1781305811;s:5:\"value\";s:41:\"{\"success\":false,\"error\":\"site_inactive\"}\";}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('216','elementor_notes_db_version','5','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('220','_elementor_pro_api_requests_lock','a:2:{s:16:\"get_license_data\";i:1781241011;s:11:\"get_version\";i:1781132069;}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('228','action_scheduler_hybrid_store_demarkation','8','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('229','schema-ActionScheduler_StoreSchema','8.0.1780724998','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('230','schema-ActionScheduler_LoggerSchema','3.0.1725883068','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('233','woocommerce_newly_installed','no','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('234','woocommerce_schema_version','920','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('235','woocommerce_store_address','','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('236','woocommerce_store_address_2','','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('237','woocommerce_store_city','','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('238','woocommerce_default_country','BD:BD-05','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('239','woocommerce_store_postcode','','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('240','woocommerce_allowed_countries','all','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('241','woocommerce_all_except_countries','a:0:{}','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('242','woocommerce_specific_allowed_countries','a:0:{}','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('243','woocommerce_ship_to_countries','','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('244','woocommerce_specific_ship_to_countries','a:0:{}','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('245','woocommerce_default_customer_address','base','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('246','woocommerce_calc_taxes','no','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('247','woocommerce_enable_coupons','yes','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('248','woocommerce_calc_discounts_sequentially','no','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('249','woocommerce_currency','INR','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('250','woocommerce_currency_pos','left','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('251','woocommerce_price_thousand_sep',',','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('252','woocommerce_price_decimal_sep','.','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('253','woocommerce_price_num_decimals','0','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('254','woocommerce_shop_page_id','1768','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('255','woocommerce_cart_redirect_after_add','no','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('256','woocommerce_enable_ajax_add_to_cart','yes','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('257','woocommerce_placeholder_image','188','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('258','woocommerce_weight_unit','kg','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('259','woocommerce_dimension_unit','cm','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('260','woocommerce_enable_reviews','yes','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('261','woocommerce_review_rating_verification_label','yes','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('262','woocommerce_review_rating_verification_required','no','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('263','woocommerce_enable_review_rating','yes','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('264','woocommerce_review_rating_required','yes','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('265','woocommerce_manage_stock','yes','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('266','woocommerce_hold_stock_minutes','60','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('267','woocommerce_notify_low_stock','yes','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('268','woocommerce_notify_no_stock','yes','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('269','woocommerce_stock_email_recipient','asadulislamimran39@gmail.com','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('270','woocommerce_notify_low_stock_amount','2','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('271','woocommerce_notify_no_stock_amount','0','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('272','woocommerce_hide_out_of_stock_items','no','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('273','woocommerce_stock_format','','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('274','woocommerce_file_download_method','force','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('275','woocommerce_downloads_redirect_fallback_allowed','no','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('276','woocommerce_downloads_require_login','no','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('277','woocommerce_downloads_grant_access_after_payment','yes','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('278','woocommerce_downloads_deliver_inline','','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('279','woocommerce_downloads_add_hash_to_filename','yes','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('280','woocommerce_downloads_count_partial','yes','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('282','woocommerce_attribute_lookup_direct_updates','no','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('283','woocommerce_attribute_lookup_optimized_updates','no','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('284','woocommerce_product_match_featured_image_by_sku','no','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('285','woocommerce_prices_include_tax','no','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('286','woocommerce_tax_based_on','shipping','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('287','woocommerce_shipping_tax_class','inherit','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('288','woocommerce_tax_round_at_subtotal','no','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('289','woocommerce_tax_classes','','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('290','woocommerce_tax_display_shop','excl','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('291','woocommerce_tax_display_cart','excl','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('292','woocommerce_price_display_suffix','','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('293','woocommerce_tax_total_display','itemized','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('294','woocommerce_enable_shipping_calc','yes','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('295','woocommerce_shipping_cost_requires_address','no','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('296','woocommerce_ship_to_destination','billing','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('297','woocommerce_shipping_debug_mode','no','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('298','woocommerce_enable_guest_checkout','yes','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('299','woocommerce_enable_checkout_login_reminder','no','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('300','woocommerce_enable_signup_and_login_from_checkout','no','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('301','woocommerce_enable_myaccount_registration','no','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('302','woocommerce_registration_generate_username','yes','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('303','woocommerce_registration_generate_password','yes','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('304','woocommerce_erasure_request_removes_order_data','no','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('305','woocommerce_erasure_request_removes_download_data','no','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('306','woocommerce_allow_bulk_remove_personal_data','no','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('307','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].','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('308','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].','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('309','woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('310','woocommerce_trash_pending_orders','','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('311','woocommerce_trash_failed_orders','','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('312','woocommerce_trash_cancelled_orders','','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('313','woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('314','woocommerce_email_from_name','My Blog','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('315','woocommerce_email_from_address','asadulislamimran39@gmail.com','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('316','woocommerce_email_header_image','','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('317','woocommerce_email_footer_text','{site_title} &mdash; Built with {WooCommerce}','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('318','woocommerce_email_base_color','#7f54b3','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('319','woocommerce_email_background_color','#f7f7f7','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('320','woocommerce_email_body_background_color','#ffffff','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('321','woocommerce_email_text_color','#3c3c3c','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('322','woocommerce_merchant_email_notifications','no','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('323','woocommerce_cart_page_id','6','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('324','woocommerce_checkout_page_id','7','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('325','woocommerce_myaccount_page_id','8','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('326','woocommerce_terms_page_id','','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('327','woocommerce_checkout_pay_endpoint','order-pay','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('328','woocommerce_checkout_order_received_endpoint','order-received','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('329','woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('330','woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('331','woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('332','woocommerce_myaccount_orders_endpoint','orders','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('333','woocommerce_myaccount_view_order_endpoint','view-order','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('334','woocommerce_myaccount_downloads_endpoint','downloads','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('335','woocommerce_myaccount_edit_account_endpoint','edit-account','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('336','woocommerce_myaccount_edit_address_endpoint','edit-address','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('337','woocommerce_myaccount_payment_methods_endpoint','payment-methods','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('338','woocommerce_myaccount_lost_password_endpoint','lost-password','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('339','woocommerce_logout_endpoint','customer-logout','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('340','woocommerce_api_enabled','no','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('341','woocommerce_allow_tracking','yes','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('342','woocommerce_show_marketplace_suggestions','yes','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('343','woocommerce_custom_orders_table_enabled','yes','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('344','woocommerce_analytics_enabled','yes','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('345','woocommerce_feature_order_attribution_enabled','yes','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('346','woocommerce_feature_product_block_editor_enabled','no','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('347','woocommerce_hpos_fts_index_enabled','no','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('348','woocommerce_single_image_width','600','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('349','woocommerce_thumbnail_image_width','300','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('350','woocommerce_checkout_highlight_required_fields','yes','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('351','woocommerce_demo_store','no','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('352','wc_downloads_approved_directories_mode','enabled','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('353','woocommerce_permalinks','a:5:{s:12:\"product_base\";s:8:\"/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;}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('354','current_theme_supports_woocommerce','yes','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('355','woocommerce_queue_flush_rewrite_rules','no','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('358','default_product_cat','25','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('360','woocommerce_refund_returns_page_id','13','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('363','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:28:\"asadulislamimran39@gmail.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:28:\"asadulislamimran39@gmail.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('364','woocommerce_version','9.2.3','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('365','woocommerce_db_version','9.2.3','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('366','woocommerce_store_id','e8b52279-0fee-4b48-a18d-fabfa5c59066','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('368','woocommerce_inbox_variant_assignment','10','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('369','woocommerce_remote_variant_assignment','14','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('375','action_scheduler_lock_async-request-runner','6a2b95834e8d26.24119577|1781241279','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('377','wc_blocks_version','11.8.0-dev','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('378','jetpack_connection_active_plugins','a:1:{s:11:\"woocommerce\";a:1:{s:4:\"name\";s:11:\"WooCommerce\";}}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('379','woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"uRvNfmY3X1JIPAaqz9U9eqm149bvnhxM\";}','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('411','wcpay_was_in_use','no','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('414','wc_admin_show_legacy_coupon_menu','0','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('415','woocommerce_custom_orders_table_created','yes','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('420','woocommerce_initial_installed_version','9.2.3','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('421','wc_blocks_db_schema_version','260','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('422','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;}','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('439','jetpack_options','a:1:{s:14:\"last_heartbeat\";i:1780574887;}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('446','elementor_fonts_manager_font_types','a:0:{}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('447','elementor_fonts_manager_fonts','a:0:{}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('448','elementor_custom_icon_sets_config','a:0:{}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('449','temporary_logins_data','a:0:{}','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('450','tlwp_plugin_activation_time','1725883138','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('451','tlwp_plugin_version','1.8.3','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('453','cartflows-assets-version','1762748325','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('468','cartflows-version','2.1.16','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('469','cartflows-beaver-builder-flows-and-steps-1','a:12:{i:0;a:11:{s:2:\"ID\";i:19424;s:5:\"title\";s:20:\"Evergreen Product 01\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow1-2.jpg\";s:19:\"thumbnail_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow1-2.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19425;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow1-2.jpg\";s:19:\"thumbnail_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow1-2.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/beaver-builder/product01-landing-01/\";}i:1;a:6:{s:2:\"ID\";i:19442;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow1-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow1-checkout-1.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/beaver-builder/product01-checkout-01/\";}i:2;a:6:{s:2:\"ID\";i:19445;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow1-thankyou-1.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow1-thankyou-1.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/beaver-builder/product01-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:1;a:11:{s:2:\"ID\";i:19395;s:5:\"title\";s:20:\"Evergreen Product 02\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow2-2.jpg\";s:19:\"thumbnail_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow2-2.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19396;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow2-2.jpg\";s:19:\"thumbnail_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow2-2.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/beaver-builder/product02-landing-01/\";}i:1;a:6:{s:2:\"ID\";i:19411;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow2-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow2-checkout-1.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/beaver-builder/product02-checkout-01/\";}i:2;a:6:{s:2:\"ID\";i:19418;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow2-checkout-2-1.jpg\";s:19:\"thumbnail_image_url\";s:104:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow2-checkout-2-1.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/beaver-builder/product02-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:2;a:11:{s:2:\"ID\";i:19372;s:5:\"title\";s:20:\"Evergreen Product 03\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow3-2.jpg\";s:19:\"thumbnail_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow3-2.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19373;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow3-2.jpg\";s:19:\"thumbnail_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow3-2.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/beaver-builder/product03-landing-01/\";}i:1;a:6:{s:2:\"ID\";i:19386;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow3-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow3-checkout-1.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/beaver-builder/product03-checkout-01/\";}i:2;a:6:{s:2:\"ID\";i:19389;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/thank-you-2.jpg\";s:19:\"thumbnail_image_url\";s:97:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/thank-you-2.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/beaver-builder/product03-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:3;a:11:{s:2:\"ID\";i:19352;s:5:\"title\";s:15:\"Inline Checkout\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow4-2.jpg\";s:19:\"thumbnail_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow4-2.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:19353;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow4-2.jpg\";s:19:\"thumbnail_image_url\";s:93:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/flow4-2.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/beaver-builder/inline-checkout-01/\";}i:1;a:6:{s:2:\"ID\";i:19367;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/thank-you-4.jpg\";s:19:\"thumbnail_image_url\";s:97:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/thank-you-4.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/beaver-builder/inline-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:4;a:11:{s:2:\"ID\";i:19315;s:5:\"title\";s:5:\"eBook\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-landing.jpg\";s:19:\"thumbnail_image_url\";s:99:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-landing.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:5:{i:0;a:6:{s:2:\"ID\";i:19316;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-landing-1.jpg\";s:19:\"thumbnail_image_url\";s:101:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-landing-1.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/beaver-builder/ebook-landing-01/\";}i:1;a:6:{s:2:\"ID\";i:19334;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-checkout-1.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/beaver-builder/ebook-checkout-01/\";}i:2;a:6:{s:2:\"ID\";i:19336;s:5:\"title\";s:12:\"EBook Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebbok-upsell-1.jpg\";s:19:\"thumbnail_image_url\";s:100:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebbok-upsell-1.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/beaver-builder/ebook-upsell-01/\";}i:3;a:6:{s:2:\"ID\";i:19339;s:5:\"title\";s:14:\"EBook Downsell\";s:4:\"type\";s:8:\"downsell\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-doensell-1-1.jpg\";s:19:\"thumbnail_image_url\";s:104:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-doensell-1-1.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/beaver-builder/ebook-downsell-01/\";}i:4;a:6:{s:2:\"ID\";i:19342;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-thankyou-1.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/ebook-thankyou-1.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/beaver-builder/ebook-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:31;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:31;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:5;a:11:{s:2:\"ID\";i:19289;s:5:\"title\";s:18:\"Protein Supplement\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-landing-2.jpg\";s:19:\"thumbnail_image_url\";s:103:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-landing-2.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:19290;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-landing-2.jpg\";s:19:\"thumbnail_image_url\";s:103:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-landing-2.jpg\";s:4:\"link\";s:77:\"https://templates.cartflows.com/beaver-builder/protein-supplement-landing-01/\";}i:1;a:6:{s:2:\"ID\";i:19299;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:104:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-checkout-1.jpg\";s:4:\"link\";s:78:\"https://templates.cartflows.com/beaver-builder/protein-supplement-checkout-01/\";}i:2;a:6:{s:2:\"ID\";i:19302;s:5:\"title\";s:6:\"Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-upsell-1.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-upsell-1.jpg\";s:4:\"link\";s:76:\"https://templates.cartflows.com/beaver-builder/protein-supplement-upsell-01/\";}i:3;a:6:{s:2:\"ID\";i:19306;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-thank-you-1.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/protein-thank-you-1.jpg\";s:4:\"link\";s:79:\"https://templates.cartflows.com/beaver-builder/protein-supplement-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:31;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:31;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:6;a:11:{s:2:\"ID\";i:19260;s:5:\"title\";s:14:\"Beauty Product\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/cosmetic-landing-page-2.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/cosmetic-landing-page-2.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:5:{i:0;a:6:{s:2:\"ID\";i:19261;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/cosmetic-landing-page-2.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/cosmetic-landing-page-2.jpg\";s:4:\"link\";s:73:\"https://templates.cartflows.com/beaver-builder/beauty-product-landing-01/\";}i:1;a:6:{s:2:\"ID\";i:19272;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/beauty-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:103:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/beauty-checkout-1.jpg\";s:4:\"link\";s:74:\"https://templates.cartflows.com/beaver-builder/beauty-product-checkout-01/\";}i:2;a:6:{s:2:\"ID\";i:19275;s:5:\"title\";s:6:\"Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/beauty-upsell-1.jpg\";s:19:\"thumbnail_image_url\";s:101:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/beauty-upsell-1.jpg\";s:4:\"link\";s:72:\"https://templates.cartflows.com/beaver-builder/beauty-product-upsell-01/\";}i:3;a:6:{s:2:\"ID\";i:19277;s:5:\"title\";s:8:\"Downsell\";s:4:\"type\";s:8:\"downsell\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/beauty-downsell-1.jpg\";s:19:\"thumbnail_image_url\";s:103:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/beauty-downsell-1.jpg\";s:4:\"link\";s:74:\"https://templates.cartflows.com/beaver-builder/beauty-product-downsell-01/\";}i:4;a:6:{s:2:\"ID\";i:19280;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/beauty-thank-you-1.jpg\";s:19:\"thumbnail_image_url\";s:104:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/beauty-thank-you-1.jpg\";s:4:\"link\";s:75:\"https://templates.cartflows.com/beaver-builder/beauty-product-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:31;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:31;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:7;a:11:{s:2:\"ID\";i:19226;s:5:\"title\";s:11:\"Organic Tea\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-landing-2.jpg\";s:19:\"thumbnail_image_url\";s:99:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-landing-2.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:19227;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-landing-2.jpg\";s:19:\"thumbnail_image_url\";s:99:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-landing-2.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/beaver-builder/organic-tea-landing-01/\";}i:1;a:6:{s:2:\"ID\";i:19247;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-checkout.jpg\";s:19:\"thumbnail_image_url\";s:98:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-checkout.jpg\";s:4:\"link\";s:71:\"https://templates.cartflows.com/beaver-builder/organic-tea-checkout-01/\";}i:2;a:6:{s:2:\"ID\";i:19250;s:5:\"title\";s:6:\"Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-upsell-1.jpg\";s:19:\"thumbnail_image_url\";s:98:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-upsell-1.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/beaver-builder/organic-tea-upsell-01/\";}i:3;a:6:{s:2:\"ID\";i:19253;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-thank-you-1.jpg\";s:19:\"thumbnail_image_url\";s:101:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/tea-thank-you-1.jpg\";s:4:\"link\";s:72:\"https://templates.cartflows.com/beaver-builder/organic-tea-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:31;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:31;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:8;a:11:{s:2:\"ID\";i:19179;s:5:\"title\";s:14:\"Download eBook\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/Download-eBook-2.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/Download-eBook-2.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"lead-generation\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:19180;s:5:\"title\";s:18:\"Download The eBook\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/Download-eBook-2.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/Download-eBook-2.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/beaver-builder/download-the-ebook-01/\";}i:1;a:6:{s:2:\"ID\";i:19186;s:5:\"title\";s:9:\"Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/Download-eBook-Thank-You-1.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/Download-eBook-Thank-You-1.jpg\";s:4:\"link\";s:75:\"https://templates.cartflows.com/beaver-builder/download-ebook-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:35;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:35;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:2;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:9;a:11:{s:2:\"ID\";i:19164;s:5:\"title\";s:22:\"Email Marketing Course\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:114:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/email-marketing-landing-01-2.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/email-marketing-landing-01-2.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"lead-generation\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19165;s:5:\"title\";s:27:\"Email Marketing Free Course\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:114:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/email-marketing-landing-01-2.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/email-marketing-landing-01-2.jpg\";s:4:\"link\";s:71:\"https://templates.cartflows.com/beaver-builder/email-marketing-lead-01/\";}i:1;a:6:{s:2:\"ID\";i:19169;s:5:\"title\";s:27:\"Email Marketing Full Access\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:115:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/email-marketing-checkout-01-1.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/email-marketing-checkout-01-1.jpg\";s:4:\"link\";s:75:\"https://templates.cartflows.com/beaver-builder/email-marketing-checkout-01/\";}i:2;a:6:{s:2:\"ID\";i:19173;s:5:\"title\";s:25:\"Email Marketing Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:116:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/email-marketing-thank-you-01-1.jpg\";s:19:\"thumbnail_image_url\";s:116:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/email-marketing-thank-you-01-1.jpg\";s:4:\"link\";s:76:\"https://templates.cartflows.com/beaver-builder/email-marketing-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:35;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:35;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:2;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:10;a:11:{s:2:\"ID\";i:19130;s:5:\"title\";s:18:\"Photoshop Tutorial\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:111:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-landing-2.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-landing-2.jpg\";s:8:\"category\";a:2:{i:0;s:12:\"sales-funnel\";i:1;s:15:\"tripwire-funnel\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:19131;s:5:\"title\";s:15:\"Learn Photoshop\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:111:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-landing-2.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-landing-2.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/beaver-builder/learn-photoshop-01/\";}i:1;a:6:{s:2:\"ID\";i:19142;s:5:\"title\";s:24:\"Learn Photoshop Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-checkout-1.jpg\";s:4:\"link\";s:75:\"https://templates.cartflows.com/beaver-builder/learn-photoshop-checkout-01/\";}i:2;a:6:{s:2:\"ID\";i:19151;s:5:\"title\";s:22:\"Learn Photoshop Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-upsell-1-1.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-upsell-1-1.jpg\";s:4:\"link\";s:73:\"https://templates.cartflows.com/beaver-builder/learn-photoshop-upsell-01/\";}i:3;a:6:{s:2:\"ID\";i:19153;s:5:\"title\";s:25:\"Learn Photoshop Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:113:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-thank-you-1.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/learn-photoshop-thank-you-1.jpg\";s:4:\"link\";s:76:\"https://templates.cartflows.com/beaver-builder/learn-photoshop-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:2:{i:0;a:11:{s:7:\"term_id\";i:31;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:31;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}i:1;a:11:{s:7:\"term_id\";i:36;s:4:\"name\";s:15:\"Tripwire Funnel\";s:4:\"slug\";s:15:\"tripwire-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:36;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:1;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:11;a:11:{s:2:\"ID\";i:19060;s:5:\"title\";s:23:\"Digital Marketing Guide\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/digital-marketing-checkout.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/digital-marketing-checkout.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:14:\"beaver-builder\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:19061;s:5:\"title\";s:26:\"Digital Marketing Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/digital-marketing-checkout.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/digital-marketing-checkout.jpg\";s:4:\"link\";s:77:\"https://templates.cartflows.com/beaver-builder/digital-marketing-checkout-01/\";}i:1;a:6:{s:2:\"ID\";i:19063;s:5:\"title\";s:27:\"Digital Marketing Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:113:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/digital-marketing-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/beaver-builder/wp-content/uploads/sites/3/2020/07/digital-marketing-thank-you.jpg\";s:4:\"link\";s:78:\"https://templates.cartflows.com/beaver-builder/digital-marketing-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:17;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:17;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:13;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}}','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('470','cartflows-divi-flows-and-steps-1','a:9:{i:0;a:11:{s:2:\"ID\";i:19087;s:5:\"title\";s:20:\"Evergreen Product 01\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:96:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product01-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product01-landing-02-600x1482.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:4:\"divi\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19089;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:96:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product01-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product01-landing-02-600x1482.jpg\";s:4:\"link\";s:58:\"https://templates.cartflows.com/divi/product01-landing-02/\";}i:1;a:6:{s:2:\"ID\";i:19108;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product01-checkout-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product01-checkout-02-600x825.jpg\";s:4:\"link\";s:59:\"https://templates.cartflows.com/divi/product01-checkout-02/\";}i:2;a:6:{s:2:\"ID\";i:19113;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product01-thank-you-02.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product01-thank-you-02-600x457.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/divi/product01-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:33;s:4:\"name\";s:4:\"Divi\";s:4:\"slug\";s:4:\"divi\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:33;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:10;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:4;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:1;a:11:{s:2:\"ID\";i:19059;s:5:\"title\";s:20:\"Evergreen Product 02\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:96:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product02-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product02-landing-02-600x1960.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:4:\"divi\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19061;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:96:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product02-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product02-landing-02-600x1960.jpg\";s:4:\"link\";s:58:\"https://templates.cartflows.com/divi/product02-landing-02/\";}i:1;a:6:{s:2:\"ID\";i:19076;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product02-checkout-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product02-checkout-02-600x626.jpg\";s:4:\"link\";s:59:\"https://templates.cartflows.com/divi/product02-checkout-02/\";}i:2;a:6:{s:2:\"ID\";i:19084;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product02-thank-you-02.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product02-thank-you-02-600x497.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/divi/product02-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:33;s:4:\"name\";s:4:\"Divi\";s:4:\"slug\";s:4:\"divi\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:33;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:10;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:4;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:2;a:11:{s:2:\"ID\";i:19035;s:5:\"title\";s:20:\"Evergreen Product 03\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:96:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product03-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product03-landing-02-600x1873.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:4:\"divi\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19037;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:96:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product03-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product03-landing-02-600x1873.jpg\";s:4:\"link\";s:58:\"https://templates.cartflows.com/divi/product03-landing-02/\";}i:1;a:6:{s:2:\"ID\";i:19051;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product03-checkout-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product03-checkout-02-600x533.jpg\";s:4:\"link\";s:59:\"https://templates.cartflows.com/divi/product03-checkout-02/\";}i:2;a:6:{s:2:\"ID\";i:19056;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product03-thank-you-02.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/product03-thank-you-02-600x479.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/divi/product03-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:33;s:4:\"name\";s:4:\"Divi\";s:4:\"slug\";s:4:\"divi\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:33;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:10;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:4;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:3;a:11:{s:2:\"ID\";i:19228;s:5:\"title\";s:5:\"Ebook\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:92:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:101:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-landing-02-600x1532.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:4:\"divi\";s:5:\"steps\";a:5:{i:0;a:6:{s:2:\"ID\";i:19230;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:92:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:101:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-landing-02-600x1532.jpg\";s:4:\"link\";s:54:\"https://templates.cartflows.com/divi/ebook-landing-02/\";}i:1;a:6:{s:2:\"ID\";i:19247;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-checkout-02.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-checkout-02-600x1201.jpg\";s:4:\"link\";s:55:\"https://templates.cartflows.com/divi/ebook-checkout-02/\";}i:2;a:6:{s:2:\"ID\";i:19250;s:5:\"title\";s:12:\"EBook Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:91:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-upsell-02.jpg\";s:19:\"thumbnail_image_url\";s:99:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-upsell-02-600x398.jpg\";s:4:\"link\";s:53:\"https://templates.cartflows.com/divi/ebook-upsell-02/\";}i:3;a:6:{s:2:\"ID\";i:19254;s:5:\"title\";s:14:\"EBook Downsell\";s:4:\"type\";s:8:\"downsell\";s:18:\"featured_image_url\";s:93:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-downsell-02.jpg\";s:19:\"thumbnail_image_url\";s:101:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-downsell-02-600x394.jpg\";s:4:\"link\";s:55:\"https://templates.cartflows.com/divi/ebook-downsell-02/\";}i:4;a:6:{s:2:\"ID\";i:19258;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:94:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-thank-you-02.jpg\";s:19:\"thumbnail_image_url\";s:102:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/ebook-thank-you-02-600x701.jpg\";s:4:\"link\";s:56:\"https://templates.cartflows.com/divi/ebook-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:33;s:4:\"name\";s:4:\"Divi\";s:4:\"slug\";s:4:\"divi\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:33;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:10;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:4;a:11:{s:2:\"ID\";i:19202;s:5:\"title\";s:18:\"Protein Supplement\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-landing-02-600x1865.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:4:\"divi\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:19204;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-landing-02-600x1865.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/divi/protein-supplement-landing-02/\";}i:1;a:6:{s:2:\"ID\";i:19215;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-checkout-02.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-checkout-02-600x882.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/divi/protein-supplement-checkout-02/\";}i:2;a:6:{s:2:\"ID\";i:19220;s:5:\"title\";s:6:\"Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-upsell-02.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-upsell-02-600x351.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/divi/protein-supplement-upsell-02/\";}i:3;a:6:{s:2:\"ID\";i:19225;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:107:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-thank-you-02.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/protein-supplement-thank-you-02-600x558.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/divi/protein-supplement-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:33;s:4:\"name\";s:4:\"Divi\";s:4:\"slug\";s:4:\"divi\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:33;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:10;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:5;a:11:{s:2:\"ID\";i:19174;s:5:\"title\";s:14:\"Beauty Product\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-landing-02-600x1751.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:4:\"divi\";s:5:\"steps\";a:5:{i:0;a:6:{s:2:\"ID\";i:19176;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-landing-02-600x1751.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/divi/beauty-product-landing-02/\";}i:1;a:6:{s:2:\"ID\";i:19186;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-checkout-02.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-checkout-02-600x975.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/divi/beauty-product-checkout-02/\";}i:2;a:6:{s:2:\"ID\";i:19189;s:5:\"title\";s:6:\"Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-upsell-02.jpg\";s:19:\"thumbnail_image_url\";s:108:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-upsell-02-600x351.jpg\";s:4:\"link\";s:62:\"https://templates.cartflows.com/divi/beauty-product-upsell-02/\";}i:3;a:6:{s:2:\"ID\";i:19193;s:5:\"title\";s:8:\"Downsell\";s:4:\"type\";s:8:\"downsell\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-downsell-02.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-downsell-02-600x351.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/divi/beauty-product-downsell-02/\";}i:4;a:6:{s:2:\"ID\";i:19197;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-thank-you-02.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/beauty-product-thank-you-02-600x758.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/divi/beauty-product-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:33;s:4:\"name\";s:4:\"Divi\";s:4:\"slug\";s:4:\"divi\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:33;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:10;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:6;a:11:{s:2:\"ID\";i:19137;s:5:\"title\";s:11:\"Organic Tea\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-landing-02-600x1554.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:4:\"divi\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:19139;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-landing-02.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-landing-02-600x1554.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/divi/organic-tea-landing-02/\";}i:1;a:6:{s:2:\"ID\";i:19161;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-checkout-02.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-checkout-02-600x955.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/divi/organic-tea-checkout-02/\";}i:2;a:6:{s:2:\"ID\";i:19166;s:5:\"title\";s:6:\"Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-upsell-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-upsell-02-600x340.jpg\";s:4:\"link\";s:59:\"https://templates.cartflows.com/divi/organic-tea-upsell-02/\";}i:3;a:6:{s:2:\"ID\";i:19171;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-thank-you-02.jpg\";s:19:\"thumbnail_image_url\";s:108:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/organic-tea-thank-you-02-600x544.jpg\";s:4:\"link\";s:62:\"https://templates.cartflows.com/divi/organic-tea-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:33;s:4:\"name\";s:4:\"Divi\";s:4:\"slug\";s:4:\"divi\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:33;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:10;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:7;a:11:{s:2:\"ID\";i:19116;s:5:\"title\";s:15:\"Inline Checkout\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:153:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/screencapture-templates-cartflows-divi-inline-checkout-02-2020-12-10-18_33_57.png\";s:19:\"thumbnail_image_url\";s:162:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/screencapture-templates-cartflows-divi-inline-checkout-02-2020-12-10-18_33_57-600x1874.png\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:4:\"divi\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:19118;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:153:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/screencapture-templates-cartflows-divi-inline-checkout-02-2020-12-10-18_33_57.png\";s:19:\"thumbnail_image_url\";s:162:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/screencapture-templates-cartflows-divi-inline-checkout-02-2020-12-10-18_33_57-600x1874.png\";s:4:\"link\";s:56:\"https://templates.cartflows.com/divi/inline-checkout-02/\";}i:1;a:6:{s:2:\"ID\";i:19134;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:154:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/screencapture-templates-cartflows-divi-inline-thank-you-02-2020-12-10-18_34_31.png\";s:19:\"thumbnail_image_url\";s:162:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/screencapture-templates-cartflows-divi-inline-thank-you-02-2020-12-10-18_34_31-600x416.png\";s:4:\"link\";s:57:\"https://templates.cartflows.com/divi/inline-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:33;s:4:\"name\";s:4:\"Divi\";s:4:\"slug\";s:4:\"divi\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:33;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:10;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:4;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:8;a:11:{s:2:\"ID\";i:18996;s:5:\"title\";s:14:\"Download eBook\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/download-the-ebook-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/download-the-ebook-02-600x550.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"lead-generation\";}s:12:\"page_builder\";s:4:\"divi\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:18998;s:5:\"title\";s:18:\"Download The eBook\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/download-the-ebook-02.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/download-the-ebook-02-600x550.jpg\";s:4:\"link\";s:59:\"https://templates.cartflows.com/divi/download-the-ebook-02/\";}i:1;a:6:{s:2:\"ID\";i:19005;s:5:\"title\";s:9:\"Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/download-ebook-thank-you-02.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/divi/wp-content/uploads/sites/5/2020/07/download-ebook-thank-you-02-600x500.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/divi/download-ebook-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:33;s:4:\"name\";s:4:\"Divi\";s:4:\"slug\";s:4:\"divi\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:33;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:10;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:34;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:34;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:1;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:5;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}}','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('471','cartflows-elementor-flows-and-steps-1','a:28:{i:0;a:11:{s:2:\"ID\";i:52386;s:5:\"title\";s:17:\"Store Checkout 04\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-04.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-04-600x817.jpg\";s:8:\"category\";a:1:{i:0;s:14:\"store-checkout\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:52388;s:5:\"title\";s:17:\"Store Checkout 04\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-04.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-04-600x817.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/elementor/store-checkout-04/\";}i:1;a:6:{s:2:\"ID\";i:55364;s:5:\"title\";s:24:\"Store Checkout Upsell 04\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/09/store-checkout-upsell-04.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/09/store-checkout-upsell-04-600x518.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/store-checkout-upsell-04/\";}i:2;a:6:{s:2:\"ID\";i:52389;s:5:\"title\";s:27:\"Store Checkout Thank You 04\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-thankyou-04.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-thankyou-04-600x546.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/elementor/store-checkout-thank-you-04/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:200;s:4:\"name\";s:14:\"Store Checkout\";s:4:\"slug\";s:14:\"store-checkout\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:200;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:4;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:1;a:11:{s:2:\"ID\";i:52251;s:5:\"title\";s:17:\"Store Checkout 03\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-03-1.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-03-1-600x999.jpg\";s:8:\"category\";a:1:{i:0;s:14:\"store-checkout\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:52253;s:5:\"title\";s:17:\"Store Checkout 03\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-03-1.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-03-1-600x999.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/elementor/store-checkout-03/\";}i:1;a:6:{s:2:\"ID\";i:55344;s:5:\"title\";s:24:\"Store Checkout Upsell 03\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/09/store-checkout-upsell-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/09/store-checkout-upsell-03-600x965.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/store-checkout-upsell-03/\";}i:2;a:6:{s:2:\"ID\";i:52254;s:5:\"title\";s:27:\"Store Checkout Thank You 03\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-thankyou-03-1.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-thankyou-03-1-600x570.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/elementor/store-checkout-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:200;s:4:\"name\";s:14:\"Store Checkout\";s:4:\"slug\";s:14:\"store-checkout\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:200;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:4;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:2;a:11:{s:2:\"ID\";i:52099;s:5:\"title\";s:17:\"Store Checkout 02\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-02-1.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-02-1-600x1059.jpg\";s:8:\"category\";a:1:{i:0;s:14:\"store-checkout\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:52101;s:5:\"title\";s:17:\"Store Checkout 02\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-02-1.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-02-1-600x1059.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/elementor/store-checkout-02/\";}i:1;a:6:{s:2:\"ID\";i:55246;s:5:\"title\";s:24:\"Store Checkout Upsell 02\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/09/store-checkout-upsell-02.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/09/store-checkout-upsell-02-600x735.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/store-checkout-upsell-02/\";}i:2;a:6:{s:2:\"ID\";i:52102;s:5:\"title\";s:27:\"Store Checkout Thank You 02\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-thankyou-02-1.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-thankyou-02-1-600x531.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/elementor/store-checkout-thank-you-02/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:200;s:4:\"name\";s:14:\"Store Checkout\";s:4:\"slug\";s:14:\"store-checkout\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:200;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:4;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:3;a:11:{s:2:\"ID\";i:51946;s:5:\"title\";s:17:\"Store Checkout 01\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-01-1.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-01-1-600x819.jpg\";s:8:\"category\";a:1:{i:0;s:14:\"store-checkout\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:51948;s:5:\"title\";s:17:\"Store Checkout 01\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-01-1.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-checkout-01-1-600x819.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/elementor/store-checkout-01/\";}i:1;a:6:{s:2:\"ID\";i:55145;s:5:\"title\";s:24:\"Store Checkout Upsell 01\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/08/store-checkout-upsell-01.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/08/store-checkout-upsell-01-600x572.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/store-checkout-upsell-01/\";}i:2;a:6:{s:2:\"ID\";i:51949;s:5:\"title\";s:27:\"Store Checkout Thank You 01\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-thankyou-01-1.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/global-thankyou-01-1-600x575.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/elementor/store-checkout-thank-you-01/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:200;s:4:\"name\";s:14:\"Store Checkout\";s:4:\"slug\";s:14:\"store-checkout\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:200;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:4;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:4;a:11:{s:2:\"ID\";i:51226;s:5:\"title\";s:22:\"Online Marketing eBook\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/online-marketing-ebook-optin.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/online-marketing-ebook-optin-600x1383.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:51230;s:5:\"title\";s:28:\"Online Marketing eBook Optin\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/online-marketing-ebook-optin.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/online-marketing-ebook-optin-600x1383.jpg\";s:4:\"link\";s:71:\"https://templates.cartflows.com/elementor/online-marketing-ebook-optin/\";}i:1;a:6:{s:2:\"ID\";i:51229;s:5:\"title\";s:32:\"Online Marketing eBook Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/online-marketing-ebook-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:121:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/online-marketing-ebook-thank-you-600x830.jpg\";s:4:\"link\";s:75:\"https://templates.cartflows.com/elementor/online-marketing-ebook-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:22;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:5;a:11:{s:2:\"ID\";i:50791;s:5:\"title\";s:23:\"Digital Marketing Guide\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/digital-marketing-guide-checkout.jpg\";s:19:\"thumbnail_image_url\";s:122:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/digital-marketing-guide-checkout-600x3218.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:50793;s:5:\"title\";s:32:\"Digital Marketing Guide Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/digital-marketing-guide-checkout.jpg\";s:19:\"thumbnail_image_url\";s:122:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/digital-marketing-guide-checkout-600x3218.jpg\";s:4:\"link\";s:75:\"https://templates.cartflows.com/elementor/digital-marketing-guide-checkout/\";}i:1;a:6:{s:2:\"ID\";i:50794;s:5:\"title\";s:33:\"Digital Marketing Guide Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/digital-marketing-guide-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:122:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/digital-marketing-guide-thank-you-600x571.jpg\";s:4:\"link\";s:76:\"https://templates.cartflows.com/elementor/digital-marketing-guide-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:6;a:11:{s:2:\"ID\";i:50212;s:5:\"title\";s:10:\"Fat Burner\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/fat-burner-checkout.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/fat-burner-checkout-600x2585.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:50214;s:5:\"title\";s:19:\"Fat Burner Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/fat-burner-checkout.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/fat-burner-checkout-600x2585.jpg\";s:4:\"link\";s:62:\"https://templates.cartflows.com/elementor/fat-burner-checkout/\";}i:1;a:6:{s:2:\"ID\";i:50547;s:5:\"title\";s:17:\"Fat Burner Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/fat-burner-upsell.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/fat-burner-upsell-600x857.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/elementor/fat-burner-upsell/\";}i:2;a:6:{s:2:\"ID\";i:50215;s:5:\"title\";s:20:\"Fat Burner Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/fat-burner-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/fat-burner-thank-you-600x423.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/elementor/fat-burner-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:7;a:11:{s:2:\"ID\";i:47974;s:5:\"title\";s:19:\"Business Consultant\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:116:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/business-consultant-sales-landing-1.jpg\";s:19:\"thumbnail_image_url\";s:125:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/business-consultant-sales-landing-1-600x5151.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:47975;s:5:\"title\";s:33:\"Business Consultant Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:116:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/business-consultant-sales-landing-1.jpg\";s:19:\"thumbnail_image_url\";s:125:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/business-consultant-sales-landing-1-600x5151.jpg\";s:4:\"link\";s:76:\"https://templates.cartflows.com/elementor/business-consultant-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:47976;s:5:\"title\";s:28:\"Business Consultant Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/business-consultant-checkout.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/business-consultant-checkout-600x1149.jpg\";s:4:\"link\";s:71:\"https://templates.cartflows.com/elementor/business-consultant-checkout/\";}i:2;a:6:{s:2:\"ID\";i:47977;s:5:\"title\";s:29:\"Business Consultant Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/business-consultant-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/business-consultant-thank-you-600x543.jpg\";s:4:\"link\";s:72:\"https://templates.cartflows.com/elementor/business-consultant-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:8;a:11:{s:2:\"ID\";i:47103;s:5:\"title\";s:24:\"Project Manager Software\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:119:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/project-manager-software-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:128:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/project-manager-software-sales-landing-600x3158.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:47104;s:5:\"title\";s:38:\"Project Manager Software Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:119:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/project-manager-software-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:128:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/project-manager-software-sales-landing-600x3158.jpg\";s:4:\"link\";s:81:\"https://templates.cartflows.com/elementor/project-manager-software-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:47105;s:5:\"title\";s:33:\"Project Manager Software Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/project-manager-software-checkout.jpg\";s:19:\"thumbnail_image_url\";s:122:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/project-manager-software-checkout-600x920.jpg\";s:4:\"link\";s:76:\"https://templates.cartflows.com/elementor/project-manager-software-checkout/\";}i:2;a:6:{s:2:\"ID\";i:47106;s:5:\"title\";s:25:\"Project Manager Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/project-manager-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/project-manager-thank-you-600x491.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/elementor/project-manager-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:9;a:11:{s:2:\"ID\";i:46529;s:5:\"title\";s:17:\"Web3 Crash Course\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/web3-crash-course-checkout.jpg\";s:19:\"thumbnail_image_url\";s:116:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/web3-crash-course-checkout-600x4252.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:46531;s:5:\"title\";s:26:\"Web3 Crash Course Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/web3-crash-course-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/web3-crash-course-checkout-1-600x4322.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/elementor/web3-crash-course-checkout/\";}i:1;a:6:{s:2:\"ID\";i:46532;s:5:\"title\";s:27:\"Web3 Crash Course Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:108:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/web3-crash-course-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:116:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/web3-crash-course-thank-you-600x690.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/elementor/web3-crash-course-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:10;a:11:{s:2:\"ID\";i:45525;s:5:\"title\";s:15:\"Brightening Gel\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:112:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/brightening-gel-sales-landing-1.jpg\";s:19:\"thumbnail_image_url\";s:121:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/brightening-gel-sales-landing-1-600x2902.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:5:{i:0;a:6:{s:2:\"ID\";i:45526;s:5:\"title\";s:29:\"Brightening Gel Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:112:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/brightening-gel-sales-landing-2.jpg\";s:19:\"thumbnail_image_url\";s:121:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/brightening-gel-sales-landing-2-600x2902.jpg\";s:4:\"link\";s:72:\"https://templates.cartflows.com/elementor/brightening-gel-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:45527;s:5:\"title\";s:24:\"Brightening Gel Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/brightening-gel-checkout.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/brightening-gel-checkout-600x1291.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/brightening-gel-checkout/\";}i:2;a:6:{s:2:\"ID\";i:45994;s:5:\"title\";s:22:\"Brightening Gel Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/brightening-gel-upsell.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/brightening-gel-upsell-600x1299.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/elementor/brightening-gel-upsell/\";}i:3;a:6:{s:2:\"ID\";i:46220;s:5:\"title\";s:24:\"Brightening Gel Downsell\";s:4:\"type\";s:8:\"downsell\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/brightening-gel-downsell.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/brightening-gel-downsell-600x423.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/brightening-gel-downsell/\";}i:4;a:6:{s:2:\"ID\";i:45528;s:5:\"title\";s:25:\"Brightening Gel Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/brightening-gel-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/brightening-gel-thank-you-600x786.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/elementor/brightening-gel-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:22;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:11;a:11:{s:2:\"ID\";i:45455;s:5:\"title\";s:8:\"Mint Tea\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/mint-tea-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/mint-tea-sales-landing-600x2300.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:45456;s:5:\"title\";s:22:\"Mint Tea Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/mint-tea-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/mint-tea-sales-landing-600x2300.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/elementor/mint-tea-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:45457;s:5:\"title\";s:17:\"Mint Tea Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/mint-tea-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/mint-tea-checkout-1-600x1048.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/elementor/mint-tea-checkout/\";}i:2;a:6:{s:2:\"ID\";i:45462;s:5:\"title\";s:15:\"Mint Tea Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:96:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/mint-tea-upsell.jpg\";s:19:\"thumbnail_image_url\";s:104:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/mint-tea-upsell-600x430.jpg\";s:4:\"link\";s:58:\"https://templates.cartflows.com/elementor/mint-tea-upsell/\";}i:3;a:6:{s:2:\"ID\";i:45458;s:5:\"title\";s:18:\"Mint Tea Thank you\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/mint-tea-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:108:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/mint-tea-thank-you-600x1188.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/elementor/mint-tea-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:22;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:12;a:11:{s:2:\"ID\";i:45043;s:5:\"title\";s:20:\"Smart Vacuum Cleaner\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/robovacuum-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/robovacuum-sales-landing-600x3463.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:45044;s:5:\"title\";s:24:\"RoboVacuum Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/robovacuum-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/robovacuum-sales-landing-600x3463.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/robovacuum-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:45045;s:5:\"title\";s:19:\"RoboVacuum Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/robovacuum-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/robovacuum-checkout-1-600x1314.jpg\";s:4:\"link\";s:62:\"https://templates.cartflows.com/elementor/robovacuum-checkout/\";}i:2;a:6:{s:2:\"ID\";i:48477;s:5:\"title\";s:17:\"RoboVacuum Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:98:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/robovacuum-upsell.jpg\";s:19:\"thumbnail_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/02/robovacuum-upsell-600x496.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/elementor/robovacuum-upsell/\";}i:3;a:6:{s:2:\"ID\";i:45046;s:5:\"title\";s:20:\"RoboVacuum Thank you\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/robovacuum-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/robovacuum-thank-you-600x1204.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/elementor/robovacuum-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:13;a:11:{s:2:\"ID\";i:44200;s:5:\"title\";s:12:\"Whey Protein\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/whey-protein-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:116:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/whey-protein-sales-landing-600x2771.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:44201;s:5:\"title\";s:26:\"Whey Protein Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/whey-protein-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:116:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/whey-protein-sales-landing-600x2771.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/elementor/whey-protein-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:44202;s:5:\"title\";s:21:\"Whey Protein Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/whey-protein-checkout.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/whey-protein-checkout-600x1812.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/elementor/whey-protein-checkout/\";}i:2;a:6:{s:2:\"ID\";i:44825;s:5:\"title\";s:19:\"Whey Protein Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/whey-protein-upsell.jpg\";s:19:\"thumbnail_image_url\";s:108:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/whey-protein-upsell-600x423.jpg\";s:4:\"link\";s:62:\"https://templates.cartflows.com/elementor/whey-protein-upsell/\";}i:3;a:6:{s:2:\"ID\";i:44203;s:5:\"title\";s:22:\"Whey Protein Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/whey-protein-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/whey-protein-thank-you-600x423.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/elementor/whey-protein-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:14;a:11:{s:2:\"ID\";i:42907;s:5:\"title\";s:12:\"CRM Software\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:116:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-landing-600x3163.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:42908;s:5:\"title\";s:26:\"CRM Software Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:116:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-landing-600x3163.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/elementor/crm-software-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:42909;s:5:\"title\";s:21:\"CRM Software Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:108:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-checkout.jpg\";s:19:\"thumbnail_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-checkout-600x1209.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/elementor/crm-software-checkout/\";}i:2;a:6:{s:2:\"ID\";i:43498;s:5:\"title\";s:19:\"CRM Software Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-upsell.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-upsell-600x486.jpg\";s:4:\"link\";s:62:\"https://templates.cartflows.com/elementor/crm-software-upsell/\";}i:3;a:6:{s:2:\"ID\";i:42910;s:5:\"title\";s:22:\"CRM Software Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/crm-software-sales-thank-you-600x858.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/elementor/crm-software-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:15;a:11:{s:2:\"ID\";i:41664;s:5:\"title\";s:13:\"SaaS Software\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/saas-software-sales-landing-1.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/saas-software-sales-landing-1-600x3848.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:41665;s:5:\"title\";s:27:\"SaaS Software Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/saas-software-sales-landing-1.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/saas-software-sales-landing-1-600x3848.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/elementor/saas-software-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:41666;s:5:\"title\";s:22:\"SaaS Software Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/saas-software-sales-checkout.jpg\";s:19:\"thumbnail_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/saas-software-sales-checkout-600x819.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/elementor/saas-software-checkout/\";}i:2;a:6:{s:2:\"ID\";i:41667;s:5:\"title\";s:23:\"SaaS Software Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/saas-software-sales-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/saas-software-sales-thank-you-600x885.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/elementor/saas-software-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:16;a:11:{s:2:\"ID\";i:40292;s:5:\"title\";s:27:\"Business Program Membership\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:124:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/business-program-membership-sales-landing-1.jpg\";s:19:\"thumbnail_image_url\";s:133:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/business-program-membership-sales-landing-1-600x6305.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:40293;s:5:\"title\";s:41:\"Business Program Membership Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:124:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/business-program-membership-sales-landing-1.jpg\";s:19:\"thumbnail_image_url\";s:133:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/business-program-membership-sales-landing-1-600x6305.jpg\";s:4:\"link\";s:84:\"https://templates.cartflows.com/elementor/business-program-membership-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:40294;s:5:\"title\";s:36:\"Business Program Membership Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/business-program-membership-checkout.jpg\";s:19:\"thumbnail_image_url\";s:126:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/business-program-membership-checkout-600x1356.jpg\";s:4:\"link\";s:79:\"https://templates.cartflows.com/elementor/business-program-membership-checkout/\";}i:2;a:6:{s:2:\"ID\";i:40295;s:5:\"title\";s:37:\"Business Program Membership Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:118:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/business-program-membership-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:126:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2022/01/business-program-membership-thank-you-600x585.jpg\";s:4:\"link\";s:80:\"https://templates.cartflows.com/elementor/business-program-membership-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:17;a:11:{s:2:\"ID\";i:34646;s:5:\"title\";s:36:\"In-person Online Course Registration\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-course-inperson-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:126:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-course-inperson-sales-landing-600x3312.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"lead-generation\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:34647;s:5:\"title\";s:36:\"Online Course Inperson Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-course-inperson-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:126:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-course-inperson-sales-landing-600x3312.jpg\";s:4:\"link\";s:79:\"https://templates.cartflows.com/elementor/online-course-inperson-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:34648;s:5:\"title\";s:31:\"Online Course Inperson Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:112:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-course-inperson-checkout.jpg\";s:19:\"thumbnail_image_url\";s:121:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-course-inperson-checkout-600x1355.jpg\";s:4:\"link\";s:74:\"https://templates.cartflows.com/elementor/online-course-inperson-checkout/\";}i:2;a:6:{s:2:\"ID\";i:34649;s:5:\"title\";s:32:\"Online Course Inperson Thank you\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-course-inperson-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:121:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-course-inperson-thank-you-600x528.jpg\";s:4:\"link\";s:75:\"https://templates.cartflows.com/elementor/online-course-inperson-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:34;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:34;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:11;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:18;a:11:{s:2:\"ID\";i:34034;s:5:\"title\";s:18:\"Online Yoga Course\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-yoga-course-optin.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-yoga-course-optin-600x2798.jpg\";s:8:\"category\";a:2:{i:0;s:12:\"sales-funnel\";i:1;s:15:\"lead-generation\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:34038;s:5:\"title\";s:24:\"Online Yoga Course Optin\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-yoga-course-optin.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-yoga-course-optin-600x2798.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/online-yoga-course-optin/\";}i:1;a:6:{s:2:\"ID\";i:34036;s:5:\"title\";s:27:\"Online Yoga Course Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:108:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-yoga-course-checkout.jpg\";s:19:\"thumbnail_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-yoga-course-checkout-600x2935.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/elementor/online-yoga-course-checkout/\";}i:2;a:6:{s:2:\"ID\";i:34037;s:5:\"title\";s:28:\"Online Yoga Course Thank you\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-yoga-course-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:117:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/online-yoga-course-thank-you-600x809.jpg\";s:4:\"link\";s:71:\"https://templates.cartflows.com/elementor/online-yoga-course-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:2:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:22;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}i:1;a:11:{s:7:\"term_id\";i:34;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:34;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:11;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:19;a:11:{s:2:\"ID\";i:33693;s:5:\"title\";s:9:\"Microwave\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-sales-landing-600x3138.jpg\";s:8:\"category\";a:2:{i:0;s:15:\"product-landing\";i:1;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:33694;s:5:\"title\";s:23:\"Microwave Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-sales-landing-600x3138.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/elementor/microwave-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:33695;s:5:\"title\";s:18:\"Microwave Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-checkout.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-checkout-600x943.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/elementor/microwave-checkout/\";}i:2;a:6:{s:2:\"ID\";i:34195;s:5:\"title\";s:16:\"Microwave Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:97:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-upsell.jpg\";s:19:\"thumbnail_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-upsell-600x376.jpg\";s:4:\"link\";s:59:\"https://templates.cartflows.com/elementor/microwave-upsell/\";}i:3;a:6:{s:2:\"ID\";i:33696;s:5:\"title\";s:19:\"Microwave Thank you\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:108:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/microwave-thank-you-600x883.jpg\";s:4:\"link\";s:62:\"https://templates.cartflows.com/elementor/microwave-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:2:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}i:1;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:22;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:20;a:11:{s:2:\"ID\";i:33002;s:5:\"title\";s:21:\"SEO Foundation E-book\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:115:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/seo-foundation-ebook-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:124:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/seo-foundation-ebook-sales-landing-600x2712.jpg\";s:8:\"category\";a:2:{i:0;s:15:\"product-landing\";i:1;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:33003;s:5:\"title\";s:34:\"SEO Foundation Ebook Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:115:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/seo-foundation-ebook-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:124:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/seo-foundation-ebook-sales-landing-600x2712.jpg\";s:4:\"link\";s:77:\"https://templates.cartflows.com/elementor/seo-foundation-ebook-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:33004;s:5:\"title\";s:29:\"SEO Foundation Ebook Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/seo-foundation-ebook-checkout.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/seo-foundation-ebook-checkout-600x461.jpg\";s:4:\"link\";s:72:\"https://templates.cartflows.com/elementor/seo-foundation-ebook-checkout/\";}i:2;a:6:{s:2:\"ID\";i:33005;s:5:\"title\";s:30:\"SEO Foundation Ebook Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:111:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/seo-foundation-ebook-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/seo-foundation-ebook-thank-you-600x791.jpg\";s:4:\"link\";s:73:\"https://templates.cartflows.com/elementor/seo-foundation-ebook-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:2:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}i:1;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:22;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:21;a:11:{s:2:\"ID\";i:32553;s:5:\"title\";s:14:\"Business Coach\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/business-coach-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/business-coach-sales-landing-600x4214.jpg\";s:8:\"category\";a:2:{i:0;s:12:\"sales-funnel\";i:1;s:15:\"lead-generation\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:32554;s:5:\"title\";s:22:\"Business Coach Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/business-coach-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/business-coach-sales-landing-600x4214.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/elementor/business-coach-landing/\";}i:1;a:6:{s:2:\"ID\";i:32555;s:5:\"title\";s:23:\"Business Coach Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/business-coach-checkout.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/business-coach-checkout-600x663.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/elementor/business-coach-checkout/\";}i:2;a:6:{s:2:\"ID\";i:32556;s:5:\"title\";s:24:\"Business Coach Thank you\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/business-coach-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/12/business-coach-thank-you-600x564.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/business-coach-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:2:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:22;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}i:1;a:11:{s:7:\"term_id\";i:34;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:34;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:11;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:22;a:11:{s:2:\"ID\";i:31904;s:5:\"title\";s:15:\"Beauty Skincare\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-sales-landing-600x2921.jpg\";s:8:\"category\";a:2:{i:0;s:15:\"product-landing\";i:1;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:31905;s:5:\"title\";s:23:\"Beauty Skincare Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-sales-landing-600x2921.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/elementor/beauty-skincare-landing/\";}i:1;a:6:{s:2:\"ID\";i:31906;s:5:\"title\";s:24:\"Beauty Skincare Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-checkout.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-checkout-596x800.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/beauty-skincare-checkout/\";}i:2;a:6:{s:2:\"ID\";i:31911;s:5:\"title\";s:22:\"Beauty Skincare Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-upsell.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-upsell-349x800.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/elementor/beauty-skincare-upsell/\";}i:3;a:6:{s:2:\"ID\";i:31907;s:5:\"title\";s:25:\"Beauty Skincare Thank you\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/beauty-skincare-thank-you-355x800.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/elementor/beauty-skincare-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:2:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}i:1;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:22;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:23;a:11:{s:2:\"ID\";i:31692;s:5:\"title\";s:11:\"Organic Oil\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-sales-landing-600x2480.jpg\";s:8:\"category\";a:2:{i:0;s:15:\"product-landing\";i:1;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:31693;s:5:\"title\";s:25:\"Organic Oil Sales Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-sales-landing.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-sales-landing-600x2480.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/elementor/organic-oil-sales-landing/\";}i:1;a:6:{s:2:\"ID\";i:31694;s:5:\"title\";s:20:\"Organic Oil Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-checkout.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-checkout-403x800.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/elementor/organic-oil-checkout/\";}i:2;a:6:{s:2:\"ID\";i:31700;s:5:\"title\";s:18:\"Organic Oil Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-upsell.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-upsell-600x463.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/elementor/organic-oil-upsell/\";}i:3;a:6:{s:2:\"ID\";i:31695;s:5:\"title\";s:21:\"Organic Oil Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/organic-oil-thank-you-377x800.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/elementor/organic-oil-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:2:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}i:1;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:22;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:24;a:11:{s:2:\"ID\";i:30832;s:5:\"title\";s:15:\"Online Workshop\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/online-workshop-optin.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/online-workshop-optin-600x3669.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"lead-generation\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:30836;s:5:\"title\";s:21:\"Online Workshop Optin\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/online-workshop-optin.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/online-workshop-optin-600x3669.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/elementor/online-workshop-optin/\";}i:1;a:6:{s:2:\"ID\";i:31303;s:5:\"title\";s:25:\"Online Workshop Thank you\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/online-workshop-thank-you.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2021/11/online-workshop-thank-you-600x341.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/elementor/online-workshop-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:34;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:34;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:11;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:25;a:11:{s:2:\"ID\";i:20092;s:5:\"title\";s:11:\"Music Album\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/music-album-landing-page.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/music-album-landing-page-362x800.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:20094;s:5:\"title\";s:24:\"Music Album Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/music-album-landing-page.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/music-album-landing-page-362x800.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/music-album-landing-page/\";}i:1;a:6:{s:2:\"ID\";i:20105;s:5:\"title\";s:20:\"Music Album Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/music-album-checkout.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/music-album-checkout-600x441.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/elementor/music-album-checkout/\";}i:2;a:6:{s:2:\"ID\";i:20109;s:5:\"title\";s:21:\"Music Album Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/music-album-thankyou.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/music-album-thankyou-600x416.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/elementor/music-album-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:26;a:11:{s:2:\"ID\";i:20073;s:5:\"title\";s:22:\"Email Marketing Course\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/email-marketing-lead.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/email-marketing-lead-407x800.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"lead-generation\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:20075;s:5:\"title\";s:27:\"Email Marketing Free Course\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/email-marketing-lead.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/email-marketing-lead-407x800.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/elementor/email-marketing-lead/\";}i:1;a:6:{s:2:\"ID\";i:20082;s:5:\"title\";s:27:\"Email Marketing Full Access\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/email-marketing-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/email-marketing-checkout-1-242x800.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/email-marketing-checkout/\";}i:2;a:6:{s:2:\"ID\";i:20089;s:5:\"title\";s:25:\"Email Marketing Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/email-marketing-thankyou.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/email-marketing-thankyou-600x673.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/elementor/email-marketing-thank-you/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:34;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:34;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:11;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:27;a:11:{s:2:\"ID\";i:20029;s:5:\"title\";s:18:\"Photoshop Tutorial\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-optin-01.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-optin-01-600x2522.jpg\";s:8:\"category\";a:2:{i:0;s:12:\"sales-funnel\";i:1;s:15:\"tripwire-funnel\";}s:12:\"page_builder\";s:9:\"elementor\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:20031;s:5:\"title\";s:15:\"Learn Photoshop\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-optin.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-optin-194x800.jpg\";s:4:\"link\";s:58:\"https://templates.cartflows.com/elementor/learn-photoshop/\";}i:1;a:6:{s:2:\"ID\";i:20048;s:5:\"title\";s:24:\"Learn Photoshop Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:107:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-checkout-1.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-checkout-1-194x800.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/elementor/learn-photoshop-checkout/\";}i:2;a:6:{s:2:\"ID\";i:20067;s:5:\"title\";s:22:\"Learn Photoshop Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:103:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-upsell.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-upsell-600x704.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/elementor/learn-photoshop-upsell/\";}i:3;a:6:{s:2:\"ID\";i:20070;s:5:\"title\";s:25:\"Learn Photoshop Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-thankyou.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/elementor/wp-content/uploads/sites/2/2020/07/learn-photoshop-thankyou-600x502.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/elementor/learn-photoshop-thank-you-2/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:16;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:16;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:56;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:2:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:22;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}i:1;a:11:{s:7:\"term_id\";i:35;s:4:\"name\";s:15:\"Tripwire Funnel\";s:4:\"slug\";s:15:\"tripwire-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:35;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:2;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:28;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}}','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('472','cartflows-gutenberg-flows-and-steps-1','a:10:{i:0;a:11:{s:2:\"ID\";i:19398;s:5:\"title\";s:24:\"Evergreen Product – 01\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product01-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product01-landing-03-600x1534.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19400;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product01-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product01-landing-03-600x1534.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/gutenberg/product01-landing-03/\";}i:1;a:6:{s:2:\"ID\";i:19413;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product01-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product01-checkout-03-600x884.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/gutenberg/product01-checkout-03/\";}i:2;a:6:{s:2:\"ID\";i:19417;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product01-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product01-thank-you-03-600x538.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/gutenberg/product01-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:1;a:11:{s:2:\"ID\";i:19374;s:5:\"title\";s:24:\"Evergreen Product – 02\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product02-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product02-landing-03-600x1921.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19376;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product02-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product02-landing-03-600x1921.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/gutenberg/product02-landing-03/\";}i:1;a:6:{s:2:\"ID\";i:19389;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product02-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product02-checkout-03-600x719.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/gutenberg/product02-checkout-03/\";}i:2;a:6:{s:2:\"ID\";i:19395;s:5:\"title\";s:9:\"Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product02-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product02-thank-you-03-600x567.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/gutenberg/product02-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:2;a:11:{s:2:\"ID\";i:19353;s:5:\"title\";s:24:\"Evergreen Product – 03\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product03-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product03-landing-03-600x1998.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:3:{i:0;a:6:{s:2:\"ID\";i:19355;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product03-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product03-landing-03-600x1998.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/gutenberg/product03-landing-03/\";}i:1;a:6:{s:2:\"ID\";i:19367;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product03-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product03-checkout-03-600x642.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/gutenberg/product03-checkout-03/\";}i:2;a:6:{s:2:\"ID\";i:19371;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product03-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:114:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-product03-thank-you-03-600x489.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/gutenberg/product03-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:3;a:11:{s:2:\"ID\";i:19335;s:5:\"title\";s:15:\"Inline Checkout\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-inline-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-inline-checkout-03-600x1931.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"product-landing\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:19337;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-inline-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:111:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-inline-checkout-03-600x1931.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/gutenberg/inline-checkout-03/\";}i:1;a:6:{s:2:\"ID\";i:19350;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:96:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-thank-you-03-600x581.jpg\";s:4:\"link\";s:55:\"https://templates.cartflows.com/gutenberg/thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:28;s:4:\"name\";s:15:\"Product Landing\";s:4:\"slug\";s:15:\"product-landing\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:28;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:4;a:11:{s:2:\"ID\";i:19315;s:5:\"title\";s:18:\"Protein Supplement\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:122:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-landing-03-600x1956.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:19317;s:5:\"title\";s:26:\"Protein Supplement Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:122:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-landing-03-600x1956.jpg\";s:4:\"link\";s:72:\"https://templates.cartflows.com/gutenberg/protein-supplement-landing-03/\";}i:1;a:6:{s:2:\"ID\";i:19323;s:5:\"title\";s:16:\"Protein Checkout\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:114:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:122:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-checkout-03-600x920.jpg\";s:4:\"link\";s:73:\"https://templates.cartflows.com/gutenberg/protein-supplement-checkout-03/\";}i:2;a:6:{s:2:\"ID\";i:19328;s:5:\"title\";s:25:\"Protein Supplement Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:112:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-upsell-03.jpg\";s:19:\"thumbnail_image_url\";s:120:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-upsell-03-600x406.jpg\";s:4:\"link\";s:71:\"https://templates.cartflows.com/gutenberg/protein-supplement-upsell-03/\";}i:3;a:6:{s:2:\"ID\";i:19332;s:5:\"title\";s:17:\"Protein Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:115:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:123:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-protein-supplement-thank-you-03-600x535.jpg\";s:4:\"link\";s:74:\"https://templates.cartflows.com/gutenberg/protein-supplement-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:5;a:11:{s:2:\"ID\";i:19281;s:5:\"title\";s:5:\"eBook\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-landing-03-600x1533.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:5:{i:0;a:6:{s:2:\"ID\";i:19283;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:100:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-landing-03-600x1533.jpg\";s:4:\"link\";s:59:\"https://templates.cartflows.com/gutenberg/ebook-landing-03/\";}i:1;a:6:{s:2:\"ID\";i:19299;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-checkout-03-600x1229.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/gutenberg/ebook-checkout-03/\";}i:2;a:6:{s:2:\"ID\";i:19304;s:5:\"title\";s:12:\"EBook Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:99:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-upsell-03.jpg\";s:19:\"thumbnail_image_url\";s:107:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-upsell-03-600x366.jpg\";s:4:\"link\";s:58:\"https://templates.cartflows.com/gutenberg/ebook-upsell-03/\";}i:3;a:6:{s:2:\"ID\";i:19308;s:5:\"title\";s:14:\"EBook Downsell\";s:4:\"type\";s:8:\"downsell\";s:18:\"featured_image_url\";s:101:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-downsell-03.jpg\";s:19:\"thumbnail_image_url\";s:109:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-downsell-03-600x365.jpg\";s:4:\"link\";s:60:\"https://templates.cartflows.com/gutenberg/ebook-downsell-03/\";}i:4;a:6:{s:2:\"ID\";i:19312;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-ebook-thank-you-03-600x662.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/gutenberg/ebook-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:6;a:11:{s:2:\"ID\";i:19255;s:5:\"title\";s:14:\"Beauty Product\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-landing-03-600x1921.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:5:{i:0;a:6:{s:2:\"ID\";i:19257;s:5:\"title\";s:12:\"Landing Page\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:109:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-landing-03-600x1921.jpg\";s:4:\"link\";s:68:\"https://templates.cartflows.com/gutenberg/beauty-product-landing-03/\";}i:1;a:6:{s:2:\"ID\";i:19264;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:110:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-checkout-03-600x1026.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/gutenberg/beauty-product-checkout-03/\";}i:2;a:6:{s:2:\"ID\";i:19270;s:5:\"title\";s:6:\"Upsell\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:108:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-upsell-03.jpg\";s:19:\"thumbnail_image_url\";s:116:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-upsell-03-600x342.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/gutenberg/beauty-product-upsell-03/\";}i:3;a:6:{s:2:\"ID\";i:19274;s:5:\"title\";s:8:\"Downsell\";s:4:\"type\";s:8:\"downsell\";s:18:\"featured_image_url\";s:110:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-downsell-03.jpg\";s:19:\"thumbnail_image_url\";s:118:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-downsell-03-600x324.jpg\";s:4:\"link\";s:69:\"https://templates.cartflows.com/gutenberg/beauty-product-downsell-03/\";}i:4;a:6:{s:2:\"ID\";i:19278;s:5:\"title\";s:14:\"Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:111:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-beauty-product-thank-you-03-600x611.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/gutenberg/beauty-product-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:7;a:11:{s:2:\"ID\";i:19224;s:5:\"title\";s:11:\"Organic Tea\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-landing-03-600x1741.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:19226;s:5:\"title\";s:19:\"Organic Tea Landing\";s:4:\"type\";s:7:\"landing\";s:18:\"featured_image_url\";s:106:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-landing-03.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-landing-03-600x1741.jpg\";s:4:\"link\";s:65:\"https://templates.cartflows.com/gutenberg/organic-tea-landing-03/\";}i:1;a:6:{s:2:\"ID\";i:19244;s:5:\"title\";s:25:\"Organic Tea Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:107:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:115:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-checkout-03-600x953.jpg\";s:4:\"link\";s:66:\"https://templates.cartflows.com/gutenberg/organic-tea-checkout-03/\";}i:2;a:6:{s:2:\"ID\";i:19248;s:5:\"title\";s:23:\"Organic Tea Upsell Page\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-upsell-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-upsell-03-600x383.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/gutenberg/organic-tea-upsell-03/\";}i:3;a:6:{s:2:\"ID\";i:19252;s:5:\"title\";s:26:\"Organic Tea Thank You Page\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:108:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:116:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-organic-tea-thank-you-03-600x500.jpg\";s:4:\"link\";s:67:\"https://templates.cartflows.com/gutenberg/organic-tea-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:8;a:11:{s:2:\"ID\";i:19182;s:5:\"title\";s:26:\"Dog Food Two Step Checkout\";s:4:\"type\";s:3:\"pro\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-checkout-03-600x2160.jpg\";s:8:\"category\";a:1:{i:0;s:12:\"sales-funnel\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:4:{i:0;a:6:{s:2:\"ID\";i:19184;s:5:\"title\";s:13:\"Checkout Page\";s:4:\"type\";s:8:\"checkout\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-checkout-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-checkout-03-600x2160.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/gutenberg/dog-food-checkout-03/\";}i:1;a:6:{s:2:\"ID\";i:19200;s:5:\"title\";s:20:\"Dog Food Upsell Page\";s:4:\"type\";s:6:\"upsell\";s:18:\"featured_image_url\";s:102:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-upsell-03.jpg\";s:19:\"thumbnail_image_url\";s:110:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-upsell-03-600x365.jpg\";s:4:\"link\";s:61:\"https://templates.cartflows.com/gutenberg/dog-food-upsell-03/\";}i:2;a:6:{s:2:\"ID\";i:19204;s:5:\"title\";s:22:\"Dog Food Downsell Page\";s:4:\"type\";s:8:\"downsell\";s:18:\"featured_image_url\";s:104:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-downsell-03.jpg\";s:19:\"thumbnail_image_url\";s:112:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-downsell-03-600x428.jpg\";s:4:\"link\";s:63:\"https://templates.cartflows.com/gutenberg/dog-food-downsell-03/\";}i:3;a:6:{s:2:\"ID\";i:19208;s:5:\"title\";s:18:\"Dog Food Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-dog-food-thank-you-03-600x538.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/gutenberg/dog-food-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:30;s:4:\"name\";s:12:\"Sales Funnel\";s:4:\"slug\";s:12:\"sales-funnel\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:30;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:6;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:29;s:4:\"name\";s:3:\"Pro\";s:4:\"slug\";s:3:\"pro\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:29;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}i:9;a:11:{s:2:\"ID\";i:19211;s:5:\"title\";s:14:\"Download eBook\";s:4:\"type\";s:4:\"free\";s:18:\"featured_image_url\";s:111:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-download-ebook-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-download-ebook-thank-you-03-600x734.jpg\";s:8:\"category\";a:1:{i:0;s:15:\"lead-generation\";}s:12:\"page_builder\";s:9:\"gutenberg\";s:5:\"steps\";a:2:{i:0;a:6:{s:2:\"ID\";i:19213;s:5:\"title\";s:18:\"Download The eBook\";s:4:\"type\";s:5:\"optin\";s:18:\"featured_image_url\";s:111:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-download-ebook-thank-you-03.jpg\";s:19:\"thumbnail_image_url\";s:119:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-download-ebook-thank-you-03-600x734.jpg\";s:4:\"link\";s:64:\"https://templates.cartflows.com/gutenberg/download-the-ebook-03/\";}i:1;a:6:{s:2:\"ID\";i:19220;s:5:\"title\";s:9:\"Thank You\";s:4:\"type\";s:8:\"thankyou\";s:18:\"featured_image_url\";s:105:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-download-the-ebook-03.jpg\";s:19:\"thumbnail_image_url\";s:113:\"https://templates.cartflows.com/gutenberg/wp-content/uploads/sites/4/2020/07/gb-download-the-ebook-03-600x530.jpg\";s:4:\"link\";s:70:\"https://templates.cartflows.com/gutenberg/download-ebook-thank-you-03/\";}}s:27:\"cartflows_flow_page_builder\";a:1:{i:0;a:11:{s:7:\"term_id\";i:32;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:32;s:8:\"taxonomy\";s:27:\"cartflows_flow_page_builder\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:15;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:23:\"cartflows_flow_category\";a:1:{i:0;a:11:{s:7:\"term_id\";i:34;s:4:\"name\";s:15:\"Lead Generation\";s:4:\"slug\";s:15:\"lead-generation\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:34;s:8:\"taxonomy\";s:23:\"cartflows_flow_category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:1;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}s:19:\"cartflows_flow_type\";a:1:{i:0;a:11:{s:7:\"term_id\";i:27;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:27;s:8:\"taxonomy\";s:19:\"cartflows_flow_type\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:7;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";}}}}','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('473','cartflows-last-export-checksums-latest','p6C!^z*UglGW','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('477','cartflows-batch-status-string','Error! Batch Not Start due to disabled cron events!','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('478','woocommerce_task_list_tracked_completed_tasks','a:7:{i:0;s:17:\"launch-your-store\";i:1;s:8:\"shipping\";i:2;s:8:\"payments\";i:3;s:8:\"products\";i:4;s:15:\"customize-store\";i:5;s:15:\"review-shipping\";i:6;s:34:\"setup-google-analytics-integration\";}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('484','cartflows-elementor-requests','1','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('487','cf_analytics_installed_time','1725883082','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('490','cartflows-fresh-site','yes','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('491','cartflows-batch-is-complete','yes','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('497','cartflows_docs_data','O:8:\"stdClass\":2:{s:10:\"categories\";O:8:\"stdClass\":6:{s:13:\"uncategorized\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Uncategorized\";s:13:\"subcategories\";a:0:{}}s:9:\"cartflows\";O:8:\"stdClass\":2:{s:4:\"name\";s:9:\"CartFlows\";s:13:\"subcategories\";O:8:\"stdClass\":17:{s:20:\"installation-updates\";O:8:\"stdClass\":2:{s:4:\"name\";s:26:\"Installation &amp; Updates\";s:13:\"subcategories\";a:0:{}}s:15:\"getting-started\";O:8:\"stdClass\":2:{s:4:\"name\";s:15:\"Getting Started\";s:13:\"subcategories\";a:0:{}}s:7:\"general\";O:8:\"stdClass\":2:{s:4:\"name\";s:7:\"General\";s:13:\"subcategories\";a:0:{}}s:8:\"features\";O:8:\"stdClass\":2:{s:4:\"name\";s:8:\"Features\";s:13:\"subcategories\";a:0:{}}s:15:\"flow-step-clone\";O:8:\"stdClass\":2:{s:4:\"name\";s:19:\"Funnel / Step Clone\";s:13:\"subcategories\";a:0:{}}s:17:\"one-click-upsells\";O:8:\"stdClass\":2:{s:4:\"name\";s:17:\"One Click Upsells\";s:13:\"subcategories\";a:0:{}}s:10:\"order-bump\";O:8:\"stdClass\":2:{s:4:\"name\";s:10:\"Order Bump\";s:13:\"subcategories\";a:0:{}}s:21:\"checkout-field-editor\";O:8:\"stdClass\":2:{s:4:\"name\";s:21:\"Checkout Field Editor\";s:13:\"subcategories\";a:0:{}}s:12:\"integrations\";O:8:\"stdClass\":2:{s:4:\"name\";s:12:\"Integrations\";s:13:\"subcategories\";a:0:{}}s:18:\"permalink-settings\";O:8:\"stdClass\":2:{s:4:\"name\";s:18:\"Permalink Settings\";s:13:\"subcategories\";a:0:{}}s:19:\"translate-cartflows\";O:8:\"stdClass\":2:{s:4:\"name\";s:9:\"Translate\";s:13:\"subcategories\";a:0:{}}s:15:\"flows-analytics\";O:8:\"stdClass\":2:{s:4:\"name\";s:17:\"Funnels Analytics\";s:13:\"subcategories\";a:0:{}}s:15:\"global-checkout\";O:8:\"stdClass\":2:{s:4:\"name\";s:14:\"Store Checkout\";s:13:\"subcategories\";a:0:{}}s:13:\"account-store\";O:8:\"stdClass\":2:{s:4:\"name\";s:19:\"Account &amp; Store\";s:13:\"subcategories\";a:0:{}}s:15:\"troubleshooting\";O:8:\"stdClass\":2:{s:4:\"name\";s:15:\"Troubleshooting\";s:13:\"subcategories\";a:0:{}}s:13:\"code-snippets\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Code Snippets\";s:13:\"subcategories\";a:0:{}}s:14:\"developer-docs\";O:8:\"stdClass\":2:{s:4:\"name\";s:14:\"Developer Docs\";s:13:\"subcategories\";a:0:{}}}}s:27:\"modern-cart-for-woocommerce\";O:8:\"stdClass\":2:{s:4:\"name\";s:11:\"Modern Cart\";s:13:\"subcategories\";a:0:{}}s:16:\"cart-abandonment\";O:8:\"stdClass\":2:{s:4:\"name\";s:16:\"Cart Abandonment\";s:13:\"subcategories\";a:0:{}}s:13:\"power-coupons\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Power Coupons\";s:13:\"subcategories\";a:0:{}}s:18:\"variation-swatches\";O:8:\"stdClass\":2:{s:4:\"name\";s:18:\"Variation Swatches\";s:13:\"subcategories\";a:0:{}}}s:4:\"docs\";a:208:{i:0;O:8:\"stdClass\":8:{s:2:\"id\";i:75493;s:5:\"title\";s:61:\"How to Create and Customize Email Templates for Cart Recovery\";s:7:\"content\";s:10304:\"The Cart Abandonment Recovery plugin lets you build a sequence of automated recovery emails that are sent to customers who leave your store without completing checkout. Each email is fully customizable — you control the subject line, timing, body content, coupon incentives, and the conditions under which the email is delivered.\n\n\n\nThis guide walks through how to create a new email template, configure all available settings, personalize the content using shortcodes, and use Dynamic Conditions to send targeted emails to the right customers.\n\n\n\nAccessing Email Templates\n\n\n\nTo manage your recovery email templates, go to:\n\n\n\nWooCommerce &gt; Cart Abandonment &gt; Follow-up Emails\n\n\n\n\n\n\n\nThis screen lists all existing templates in your recovery sequence. You can create new ones, edit existing templates, toggle them on or off, or delete them.\n\n\n\nCreating a New Email Template\n\n\n\nTo create a new recovery email:\n\n\n\n1.&nbsp; &nbsp; Go to WooCommerce &gt; Cart Abandonment &gt; Follow-up Emails.\n\n\n\n2.&nbsp; &nbsp; Click Add New Template.\n\n\n\n3.&nbsp; &nbsp; Fill in the template fields described in the next section.\n\n\n\n4.&nbsp; &nbsp; Click Save Template when finished.\n\n\n\nNote: You can create multiple templates to build a full recovery sequence — for example, a first reminder after 1 hour, a follow-up after 24 hours, and a final email with a coupon after 3 days.\n\n\n\nTemplate Fields\n\n\n\nEach email template includes the following settings:\n\n\n\nFieldDescriptionEmail SubjectThe subject line of the recovery email. Shortcodes can be used here to personalize it (e.g., include the customer\'s first name or the store name).Send This EmailSets how long after cart abandonment this email is sent. Enter a number and select the unit: Minutes, Hours, or Days.Email BodyThe main content of the email. Use the visual editor to format the message and insert shortcodes to dynamically populate customer and cart details.CouponOptionally attach a WooCommerce coupon to the email. When enabled, the coupon code is auto-applied when the customer clicks the recovery link.Active / InactiveToggles whether this template is enabled in the sending sequence. Inactive templates are saved but will not be sent.\n\n\n\n\n\n\n\nWriting the Email Body\n\n\n\nThe email body editor supports standard HTML formatting — headings, bold text, links, images, and buttons. Use the toolbar to style your content without writing code.\n\n\n\nTo create a high-converting recovery email, it is recommended to include:\n\n\n\n• &nbsp; &nbsp; &nbsp; A personalized greeting using {{customer.firstname}}\n\n\n\n• &nbsp; &nbsp; &nbsp; The abandoned product list using {{cart.product.table}}\n\n\n\n• &nbsp; &nbsp; &nbsp; A prominent recovery button or link using {{cart.checkout_url}}\n\n\n\n• &nbsp; &nbsp; &nbsp; A coupon code (optional) using {{cart.coupon_code}}\n\n\n\n• &nbsp; &nbsp; &nbsp; An unsubscribe link using {{cart.unsubscribe}}\n\n\n\nPersonalizing with Shortcodes\n\n\n\nShortcodes let you insert dynamic content into your email subject and body. The plugin replaces each shortcode with the appropriate value at the time the email is sent.\n\n\n\nShortcodeWhere to UseWhat It Inserts{{customer.firstname}}Subject / BodyCustomer\'s first name{{customer.lastname}}Subject / BodyCustomer\'s last name{{customer.fullname}}Subject / BodyCustomer\'s full name{{cart.checkout_url}}BodyUnique recovery link (restores cart, applies coupon){{cart.coupon_code}}BodyThe coupon code assigned to this template{{cart.product.table}}BodyProduct table with name, image, quantity, and price{{cart.product.names}}BodyPlain-text list of abandoned product names{{cart.abandoned_date}}BodyDate the cart was abandoned{{cart.unsubscribe}}BodyUnsubscribe link for the customer{{admin.firstname}}Subject / BodyShop owner / administrator name{{admin.company}}Subject / BodyShop or company name{{site.url}}BodyMain URL of the store\n\n\n\nHere is the Doc with the complete list of shortcodes: https://cartflows.com/docs/shortcode-reference-for-email-fields/\n\n\n\nAdding a Coupon to a Template\n\n\n\nYou can automatically generate a unique discount coupon for each abandoned cart recovery email.\n\n\n\nWhen a coupon is configured:\n\n\n\n\nThe {{cart.coupon_code}} shortcode in the email body will display the auto-generated coupon code.\n\n\n\nIf Auto-apply coupon is enabled, the coupon is automatically applied when the customer clicks the {{cart.checkout_url}} recovery link — no manual entry required.\n\n\n\n\nTo set up a coupon on a template:\n\n\n\n\nOpen or create an email template.\n\n\n\nIn the Coupon section, toggle on Create Coupon Code.\n\n\n\nChoose a Discount Type (Percentage, Fixed Cart, or Free Shipping).\n\n\n\nEnter the Coupon Amount.\n\n\n\nOptionally set an Expiry period and enable Free Shipping or Individual Use Only.\n\n\n\nEnable Auto-apply coupon if you want the coupon applied automatically when the customer clicks the recovery link.\n\n\n\nSave the template.\n\n\n\n\n\n\n\n\nThe plugin will generate a unique coupon code for each customer automatically — no need to create one manually in WooCommerce.\n\n\n\nNote: You can also exclude specific products from the coupon in the Exclude Products (Pro) Settings.\n\n\n\nSetting the Send Timing\n\n\n\nEach template has a Send This Email field that controls when the email is sent after the cart is abandoned. You can specify a number and select:\n\n\n\n• &nbsp; &nbsp; &nbsp; Minutes — for immediate or near-immediate follow-up (minimum 10 minutes after the cut-off time)\n\n\n\n• &nbsp; &nbsp; &nbsp; Hours — for same-day follow-ups\n\n\n\n• &nbsp; &nbsp; &nbsp; Days — for multi-day recovery sequences\n\n\n\n\n\n\n\nRecommended timing sequence:\n\n\n\nEmail 1 — Send after: 1 Hour (First reminder, no coupon)Email 2 — Send after: 24 Hours&nbsp; (Follow-up, cart contents reminder)Email 3 — Send after: 3 Days (Final email with coupon incentive)\n\n\n\nNote: Emails are only sent if the cart is still in an abandoned state at the scheduled send time. If the customer completes their order before the email is due, the email is automatically skipped.\n\n\n\nConfiguring Email Sender Settings\n\n\n\nThe \"From\" name and address used in recovery emails are set globally in the plugin settings, not per template. To update these:\n\n\n\n1.    Go to WooCommerce > Cart Abandonment > Settings.\n\n\n\n2.  Under Email Settings, configure:\n\n\n\nFieldDescription\"From\" NameThe name displayed as the sender in the customer\'s inbox (e.g., your store name).\"From\" AddressThe email address the recovery emails are sent from.\"Reply-To\" AddressThe address where customer replies are directed. Can differ from the \"From\" address.\n\n\n\n\n\n\n\nUsing Dynamic Conditions (Pro)\n\n\n\nDynamic Conditions allow you to restrict a template so it only sends when specific cart, product, or customer criteria are met. This is a Pro feature available in the Cart Abandonment Recovery Pro plugin.\n\n\n\nWith Dynamic Conditions, you can target emails by:\n\n\n\n• &nbsp; &nbsp; &nbsp; Cart total — e.g., only send for orders above $100\n\n\n\n• &nbsp; &nbsp; &nbsp; Product or product category — e.g., send only when a customer abandons electronics\n\n\n\n• &nbsp; &nbsp; &nbsp; Billing country — e.g., target US-based customers with a specific offer\n\n\n\n•       Number of cart items — e.g., target carts with 3 or more products\n\n\n\nTo know more about how to set up Dynamic Email Conditions, refer to this Doc.\n\n\n\nAvailable Conditions and Operators\n\n\n\nFieldDescriptionCart TotalNumeric operators: is equal to, greater than, less than, greater/less than or equal to.ProductExistence operators: Exists / Does not exist. Search for a specific product by name.Product CategoryEquality operators: Equal to / Not equal to. Select from existing categories.Billing CountryEquality operators: Equal to / Not equal to. Select from country dropdown.Number of Cart ItemsNumeric operators: is equal to, greater than, less than, greater/less than or equal to.\n\n\n\nNote: If none of the conditions in any rule group are met at send time, the email is not sent and the attempt is recorded as rule-blocked in the email history.\n\n\n\nExample Email Templates\n\n\n\nEmail 1 — Simple Reminder (No Coupon)\n\n\n\nSubject:  Hey {{customer.firstname}}, you left something behind! Hi {{customer.firstname}}, It looks like you left some items in your cart at {{admin.company}}.Your cart is saved — just click the button below to pick upwhere you left off. {{cart.product.table}} Complete your purchase: {{cart.checkout_url}} If you have any questions, just reply to this email. Thanks,{{admin.firstname}}{{admin.company}} Unsubscribe: {{cart.unsubscribe}}\n\n\n\nEmail 3 — Final Offer with Coupon\n\n\n\nSubject:  Last chance — here\'s a discount just for you, {{customer.firstname}} Hi {{customer.firstname}}, We noticed you haven\'t completed your order yet. As a thank youfor shopping with us, here\'s an exclusive discount:   Use code: {{cart.coupon_code}} It\'s applied automatically when you click the link below.This offer won\'t last long! {{cart.product.table}} Claim your discount: {{cart.checkout_url}} Unsubscribe: {{cart.unsubscribe}}\n\n\n\nActivating and Deactivating Templates\n\n\n\nEach template has an Active / Inactive toggle on the Follow-up Emails list screen. Only active templates are included in the sending sequence.\n\n\n\nYou can use this toggle to:\n\n\n\n• &nbsp; &nbsp; &nbsp; Pause a template temporarily without deleting it.\n\n\n\n• &nbsp; &nbsp; &nbsp; Test a single template by deactivating all others.\n\n\n\n• &nbsp; &nbsp; &nbsp; Run seasonal campaigns by activating specific templates during promotional periods.\n\n\n\n\n\n\n\nTips for Effective Recovery Emails\n\n\n\n• &nbsp; &nbsp; &nbsp; Keep subject lines short and personal. Including the customer\'s name or a reference to their cart improves open rates.\n\n\n\n• &nbsp; &nbsp; &nbsp; Use a single clear call to action. One prominent recovery button is more effective than multiple links.\n\n\n\n• &nbsp; &nbsp; &nbsp; Delay your first coupon. Send the first email without a coupon to avoid training customers to abandon intentionally. Offer a discount only in a later email.\n\n\n\n• &nbsp; &nbsp; &nbsp; Always include an unsubscribe link. Using {{cart.unsubscribe}} is required for compliance and good email hygiene.\n\n\n\n• &nbsp; &nbsp; &nbsp; Test before activating. Use a test email address and a staging cart to verify that shortcodes, coupon codes, and recovery links all work correctly.\";s:3:\"url\";s:89:\"https://cartflows.com/docs/how-to-create-and-customize-email-templates-for-cart-recovery/\";s:4:\"slug\";s:61:\"how-to-create-and-customize-email-templates-for-cart-recovery\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-10T00:02:24+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:1;O:8:\"stdClass\":8:{s:2:\"id\";i:31284;s:5:\"title\";s:54:\"How to Modify the Checkout Page Using Backend Settings\";s:7:\"content\";s:6097:\"CartFlows allows you to customize the Checkout step directly from the backend settings without editing the page design. These settings help you manage products, offers, layout, checkout form behavior, and other configurations from a single place.\n\n\n\nYou can access these options from the Checkout step settings panel within your funnel.\n\n\n\nHow to Access Checkout Step Settings\n\n\n\nFollow the steps below to open the checkout settings.\n\n\n\nStep 1: Navigate to CartFlows &gt; Funnels from your WordPress dashboard.Step 2: Open the funnel where you want to modify the checkout page.\n\n\n\n\n\n\n\nStep 3:&nbsp;Click the settings icon of the&nbsp;Checkout&nbsp;step.\n\n\n\n\n\n\n\nA settings panel will open where you can configure various options for the checkout page.\n\n\n\nAssign Product\n\n\n\nIn this section, you can assign WooCommerce product that will be purchased through the checkout page.\n\n\n\n\n\n\n\nYou can also configure additional options such as:\n\n\n\n\nApplying coupons for promotions (make sure coupons are enabled in WooCommerce settings)\n\n\n\nManaging product variations\n\n\n\nAdding product restrictions\n\n\n\nEnabling quantity selection\n\n\n\n\nOrder Bump\n\n\n\nThe Order Bump option allows you to present an additional offer on the Checkout page to increase the order value.\n\n\n\nYou can create and configure an order bump directly from this section. Once enabled, customers will see the bump offer on the checkout page and can add it to their order with a single click.\n\n\n\n\n\n\n\nRefer to this documentation for more details about Order Bump: https://cartflows.com/docs/how-to-add-order-bumps-to-woocommerce-sales-funnel/\n\n\n\nCheckout Form\n\n\n\nThe Checkout Form tab allows you to manage and customize the checkout fields displayed on the form.\n\n\n\nFrom this section, you can:\n\n\n\n\nEnable Coupon Field – Allows customers to apply coupon codes during checkout.\n\n\n\nEnable Ship to Different Address – Adds a separate shipping address section.\n\n\n\nEnable Google Address Autocomplete – Allows address auto-completion for faster checkout.\n\n\n\nEnable the Custom Field Editor\n\n\n\nShow or hide specific checkout fields\n\n\n\nReorder fields using drag-and-drop\n\n\n\nModify field labels, placeholders, and requirements\n\n\n\n\n\n\n\n\nThese settings help you collect only the necessary information from customers during checkout.\n\n\n\nRefer to this documentation for more details about the Field Editor: https://cartflows.com/docs/custom-checkout-fields-and-its-settings/\n\n\n\nDynamic Offer\n\n\n\nThe Dynamic Offer allows you to control the redirection to Upsell or Downsell steps based on specific conditions set on the checkout page.\n\n\n\nRefer to this documentation for more details about the Dynamic Offer feature: https://cartflows.com/docs/cartflows-dynamic-offers-rule-engine/\n\n\n\nCheckout Design (Including Shortcode)\n\n\n\nThe Design tab allows you to control the layout and appearance of the checkout page and also access the checkout shortcode when needed.\n\n\n\nYou can configure layout options such as:\n\n\n\n\nModern Checkout\n\n\n\nModern One Column\n\n\n\nMultistep Checkout\n\n\n\nOne Column\n\n\n\nTwo Column\n\n\n\nTwo-Step\n\n\n\n\nYou can also customize the checkout appearance by adjusting:\n\n\n\n\nTypography\n\n\n\nPrimary colors\n\n\n\nForm styling options\n\n\n\n\nIf Advanced Options are enabled, you can further customize elements such as:\n\n\n\n\nHeadings\n\n\n\nInput fields\n\n\n\nButtons\n\n\n\nBackground styles\n\n\n\n\nWithin this tab, you can also find the Checkout Shortcode, which includes:\n\n\n\n\nBilling fields\n\n\n\nShipping fields\n\n\n\nOrder details\n\n\n\nPlace Order button\n\n\n\n\nThis shortcode can be used when building a custom checkout layout manually.\n\n\n\n\n\n\n\nThe Design tab may only be visible when the page builder is set to Other in the CartFlows settings.\n\n\n\nTo enable access to this tab:\n\n\n\nStep 1: Navigate to CartFlows &gt; Settings &gt; General.Step 2: Locate the Page Builder option.Step 3: Select Other from the dropdown.Step 4: Click Save Settings.\n\n\n\nOnce saved, the Checkout Design tab will become available in the checkout step settings, allowing you to configure the checkout layout and access the shortcode if required.\n\n\n\n\n\n\n\nCustom CSS and Script\n\n\n\nThe fields to add custom CSS and script are available under the tab Checkout Settings &gt; Settings &gt; General.\n\n\n\nThis section allows you to add scripts to the checkout page, which can be useful for integrations such as:\n\n\n\n\nCustom JavaScript functionality\n\n\n\nCustom CSS\n\n\n\nAnalytics tracking scripts\n\n\n\n\n\n\n\n\nFrequently Asked Questions (FAQ)\n\n\n\n\nWhat can I configure from the CartFlows checkout step backend settings?From the checkout step settings panel, you can assign products, configure order bumps, manage checkout form fields, set up dynamic offers for upsell or downsell redirection, customize the checkout design and layout, and add custom CSS or JavaScript scripts — all without editing the page design directly.\n\n\n\nHow do I add an order bump to my CartFlows checkout page?Open your funnel in CartFlows → Funnels, click the settings icon on the Checkout step, and go to the Order Bump section. From there you can create and configure an order bump offer that customers can add to their order with a single click directly on the checkout page.\n\n\n\nHow do I enable Google Address Autocomplete on the CartFlows checkout form?Go to CartFlows → Funnels, open your funnel, and click the settings icon on the Checkout step. Open the Checkout Form tab and enable the Google Address Autocomplete option. This allows customers to auto-complete their address during checkout for a faster experience.\n\n\n\nWhy can\'t I see the Design tab in my CartFlows checkout step settings?The Design tab is only visible when your page builder is set to \"Other\" in CartFlows settings. Go to CartFlows → Settings → General, set the Page Builder dropdown to \"Other\", and save. The Design tab will then appear in the checkout step settings.\n\n\n\nHow do I add custom CSS or JavaScript to the CartFlows checkout page?Go to Checkout Settings → Settings → General. You will find fields to add custom CSS and scripts. These can be used for custom JavaScript functionality, styling overrides, or analytics tracking integrations on the checkout page.\";s:3:\"url\";s:48:\"https://cartflows.com/docs/modify-checkout-page/\";s:4:\"slug\";s:20:\"modify-checkout-page\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-10T00:49:04+05:30\";s:8:\"category\";a:1:{i:0;s:21:\"checkout-field-editor\";}}i:2;O:8:\"stdClass\":8:{s:2:\"id\";i:31092;s:5:\"title\";s:37:\"Placing Shortcode in the Right Places\";s:7:\"content\";s:3606:\"When you create a funnel using one of the ready templates, CartFlows automatically adds the Next Step Link or shortcode to your call-to-action buttons or links.\n\n\n\nIf you’re building your own funnel or editing a step manually, you can copy the link or shortcode from the step settings and place it anywhere on the page.\n\n\n\nNote\nShortcodes are only shown in the step settings if you are using a page builder other than the Block Editor, Elementor, Beaver Builder, or Bricks Builder, and have selected “Other” under the Page Builder option in CartFlows settings.\n\n\n\n\nIf you’re using the Block Editor, Elementor, Beaver Builder, or Bricks Builder, CartFlows includes native elements that can be added directly while editing the page.\n\n\n\nEach step has its own unique shortcode, and it only works inside that specific step. If used on a different page, the shortcode will not work.From the WordPress dashboard, go to CartFlows &gt; Funnels and edit your funnel. To edit a specific step, click the gear icon on that step.\n\n\n\n\n\n\n\nLanding Page\n\n\n\nOpen the Landing Page step and scroll down to the Landing Page Settings section. Under the Shortcodes option, you’ll see the Next Step Link.\n\n\n\nUse this link in your call-to-action button to send users to the Checkout page or the next step in the funnel.\n\n\n\n\n\n\n\nCopy the link, edit your page, and paste it into your call-to-action button.\n\n\n\n\n\n\n\nCheckout Page\n\n\n\nOpen the Checkout Page step and go to the Design tab. In the Shortcodes section, you’ll find the Checkout Page shortcode.\n\n\n\n\n\n\n\nCopy the shortcode, then edit your Checkout page and paste it where you want the form to appear. This will display the customer information form, order details, and the purchase button.\n\n\n\n\n\n\n\nThank You Page\n\n\n\nOpen the Thank You Page step and click the Design tab. Under the Shortcode section, you’ll find the Order Details shortcode.\n\n\n\nUse this shortcode to display a summary of the customer’s order. You can also add other content like a video, image, or social sharing buttons.\n\n\n\n\n\n\n\nNote\nEach step has its own unique shortcode, and it only works inside that specific step. If used on a different page, the shortcode will not work.\n\n\n\n\n\n\n\n\n\n\n\n\nFrequently Asked Questions (FAQ)\n\n\n\n\nWhen do I need to manually add shortcodes in CartFlows?Shortcodes are needed when you build a funnel from scratch or edit a step manually without using a ready-made template. When using templates, CartFlows automatically adds the Next Step Link to call-to-action buttons. Shortcodes are only available if your page builder is set to \"Other\" in CartFlows settings — for Elementor, Block Editor, Beaver Builder, and Bricks Builder, CartFlows provides native elements instead.\n\n\n\nHow do I add a Next Step Link to a landing page button in CartFlows?Go to CartFlows → Funnels, edit your funnel, and click the gear icon on the Landing Page step. Scroll down to the Landing Page Settings section and find the Next Step Link under the Shortcodes option. Copy it, then edit your page and paste it into your call-to-action button.\n\n\n\nCan I use a CartFlows shortcode on any page?No. Each step has its own unique shortcode that only works inside that specific step. If a shortcode is placed on a different page, it will not work.\n\n\n\nHow do I display order details on the Thank You page in CartFlows?Open the Thank You Page step and click the Design tab. Under the Shortcode section, you\'ll find the Order Details shortcode. Use this shortcode to display a summary of the customer\'s order. You can also add other content like a video, image, or social sharing buttons alongside it.\";s:3:\"url\";s:65:\"https://cartflows.com/docs/placing-shortcode-in-the-right-places/\";s:4:\"slug\";s:37:\"placing-shortcode-in-the-right-places\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-10T00:46:49+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:3;O:8:\"stdClass\":8:{s:2:\"id\";i:45024;s:5:\"title\";s:62:\"Configuring Cart Abandonment Recovery for WooCommerce Settings\";s:7:\"content\";s:5270:\"This guide explains how to configure the settings available in the Cart Abandonment Recovery for WooCommerce plugin. You can access these settings by navigating to WooCommerce &gt; Cart Abandonment &gt; Settings. The options available here help you track abandoned carts, automate recovery emails, webhook, manage coupons, and ensure privacy compliance.\n\n\n\n\n\n\n\nGeneral Settings\n\n\n\nControl the main behavior for tracking and handling abandoned carts.Enable Tracking\n\n\n\nActivates abandoned cart tracking. When enabled, the plugin monitors carts and triggers recovery actions if checkout is not completed within the set cut-off time.\n\n\n\nCart Abandoned Cut-Off Time\n\n\n\nSet how many minutes after an item is added to the cart (without completing checkout) the cart will be considered abandoned. Minimum: 10 minutes.\n\n\n\nDisable Tracking For\n\n\n\nExclude specific user roles (e.g., Administrator, Editor, Shop Manager) from abandonment tracking. These users will not trigger abandonment or receive recovery emails.\n\n\n\nExclude Email Sending For\n\n\n\nSelect which WooCommerce order statuses (e.g., Processing, Completed) are considered recovered. Once marked as recovered, no further recovery emails are sent.\n\n\n\nNotify Recovery to Admin\n\n\n\nSends a notification email to the site admin when an abandoned cart is recovered.\n\n\n\nWebhook Settings\n\n\n\nControl how webhook events are triggered in your store.\n\n\n\nEnable Webhook\n\n\n\nAllows you to trigger a webhook automatically when a cart is abandoned or recovered. This is useful if you want to connect your store with third-party services for further automation.\n\n\n\nRefer to this documentation to learn more about how to use webhooks.\n\n\n\nCoupon Settings\n\n\n\nManage how recovery coupons are cleaned up.\n\n\n\nDelete Coupons Automatically\n\n\n\nSchedules a weekly cleanup of all expired and used recovery coupons created by the plugin.\n\n\n\nDelete Coupons Manually\n\n\n\nImmediately removes all expired and used coupons created by the plugin.\n\n\n\nEmail Settings\n\n\n\nConfigure sender details for recovery emails.\n\n\n\n“From” Name\n\n\n\nThe name that appears as the sender in recovery emails.\n\n\n\n“From” Address\n\n\n\nThe email address from which recovery emails are sent.\n\n\n\n“Reply-To” Address\n\n\n\nThe email address where customer replies will be sent.\n\n\n\nRecovery Report Settings\n\n\n\nGet regular summary reports about your cart recovery performance.\n\n\n\nSend Recovery Report Emails\n\n\n\nEnable to receive periodic recovery report emails.\n\n\n\nEmail Address\n\n\n\nEnter one or more email addresses (one per line) to receive the reports.\n\n\n\nGDPR Settings\n\n\n\nEnsure your store’s abandoned cart process complies with privacy regulations.\n\n\n\nEnable GDPR Integration\n\n\n\nAdds a consent message below the email field at checkout, informing customers their email and cart details will be saved for recovery purposes.\n\n\n\nGDPR Message\n\n\n\nCustomize the privacy message shown to customers during checkout.\n\n\n\nFor more information about this setting, refer to this documentation.\n\n\n\nAdvanced Settings\n\n\n\nFine-tune plugin behavior and data handling.\n\n\n\nUTM Parameters\n\n\n\nAdd UTM parameters to checkout page links in recovery emails for tracking in analytics. Enter each parameter on a new line.\n\n\n\nDelete Plugin Data\n\n\n\nDelete all plugin data and database tables when uninstalling the plugin. The plugin creates and uses its own database tables to store abandoned cart data. These tables will also be deleted when this option is enabled:\n\n\n\ncartflows_ca_cart_abandonment\ncartflows_ca_email_history\ncartflows_ca_email_templates\nCartflows_ca_email_templates_meta\n\n\n\nNote: All changes are saved automatically, there is no save button in the settings panel.\n\n\n\nFrequently Asked Questions (FAQ)\n\n\n\n\nHow long after cart abandonment does Cart Abandonment Recovery start tracking?You can set the cut-off time yourself — the minimum is 10 minutes after an item is added to the cart without checkout being completed. Once that time passes, the cart is marked as abandoned and recovery emails are triggered.\n\n\n\nCan I exclude certain user roles from abandoned cart tracking?Yes. In the General Settings, use the Disable Tracking For option to exclude specific user roles such as Administrator, Editor, or Shop Manager. Excluded roles will not trigger abandonment tracking or receive recovery emails.\n\n\n\nHow do I stop recovery emails from being sent after an order is completed?Use the Exclude Email Sending For setting to select WooCommerce order statuses such as Processing or Completed. Once an order reaches those statuses, it is marked as recovered and no further recovery emails are sent.\n\n\n\nDoes Cart Abandonment Recovery support GDPR compliance?Yes. Enable the GDPR Integration setting to add a consent message below the email field at checkout, informing customers that their email and cart details will be saved for recovery purposes. You can also customize the consent message text.\n\n\n\nHow do I track recovery email performance in Google Analytics?Go to Advanced Settings and add UTM parameters to the checkout page links included in recovery emails. Enter each parameter on a new line and they will be automatically appended to links in recovery emails for analytics tracking. Note that all changes in this settings panel are saved automatically — there is no save button.\";s:3:\"url\";s:74:\"https://cartflows.com/docs/configuring-cart-abandonment-recovery-settings/\";s:4:\"slug\";s:46:\"configuring-cart-abandonment-recovery-settings\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-10T00:46:17+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:4;O:8:\"stdClass\":8:{s:2:\"id\";i:46245;s:5:\"title\";s:23:\"What is Store Checkout?\";s:7:\"content\";s:2477:\"The Store Checkout feature lets you replace the default WooCommerce Checkout page with a CartFlows-powered checkout. It applies across your entire store, including products not assigned to a funnel.\n\n\n\nPreviously, identifying which funnel was assigned as the Global Checkout could be confusing, especially if you had numerous funnels. The new Store Checkout concept simplifies this by providing a dedicated interface and better control, replacing the old Global Checkout approach.\n\n\n\nOnce enabled, the Store Checkout will replace the default WooCommerce checkout page with your CartFlows-designed checkout experience, making it easier to manage and optimize conversions without confusion.\n\n\n\nWhat’s New in Store Checkout?\n\n\n\nHere are the key changes introduced with the Store Checkout feature:\n\n\n\n\nEnable/Disable Store Checkout: You can now toggle whether CartFlows should take over the WooCommerce checkout page.\n\n\n\nFixed Checkout Step Position: The Checkout step in the store flow cannot be reordered. It will always appear right after the Cart page, ensuring the correct flow of WooCommerce transactions.\n\n\n\nRemoved Product Tab: Since this Checkout is designed to replace the default WooCommerce flow, the Product tab has been removed from the settings. If needed, you can still enable it using a filter as outlined in our documentation.\n\n\n\n\nHow to Set Up Store Checkout\n\n\n\nThere are two ways to set up the Store Checkout in CartFlows:\n\n\n\nOption 1: Through the Onboarding Process\n\n\n\n\nIdeal for new users installing CartFlows for the first time.\n\n\n\n\nOption 2: Manual Setup\n\n\n\nFollow these steps to manually configure the Store Checkout:\n\n\n\nStep 1: Navigate to the Store Checkout Menu\n\n\n\nGo to the CartFlows &gt; Store Checkout section from your WordPress dashboard.\n\n\n\n\n\n\n\nStep 2: Create a Store Checkout \n\n\n\nClick the Create Store Checkout button to begin the setup process.\n\n\n\n\n\n\n\nStep 3: Choose a Template\n\n\n\nSelect from our ready-made templates and click Import Template to bring it into your site.\n\n\n\n\n\n\n\nStep 4: Customize and Enable\n\n\n\nEdit the imported template as needed. Once ready, click the Enable Store Checkout button to activate it. This replaces the WooCommerce default checkout with your new CartFlows checkout.\n\n\n\n\n\n\n\nStep 5: Add Additional Steps (Optional)\n\n\n\nYou may add Upsell or Downsell steps after the Checkout page if desired. Other step types like Optin and Landing pages are not applicable in this Store Checkout.\n\n\n\n\n\n\n\nFrequently Asked Questions\";s:3:\"url\";s:42:\"https://cartflows.com/docs/store-checkout/\";s:4:\"slug\";s:14:\"store-checkout\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-10T00:45:43+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"global-checkout\";}}i:5;O:8:\"stdClass\":8:{s:2:\"id\";i:32705;s:5:\"title\";s:42:\"How to Activate Your CartFlows Pro License\";s:7:\"content\";s:1524:\"To access all CartFlows Pro features and receive automatic updates, you need to activate your license. This documentation will guide you through the process.\n\n\n\nBefore You Start\n\n\n\nBefore activating your license, make sure:\n\n\n\n\nThe CartFlows Pro plugin is installed and activated on your website. If you haven\'t installed it yet, follow this document: How to Install CartFlows Pro\n\n\n\nYou have access to your CartFlows account to retrieve the License Key.\n\n\n\n\nHow to Activate Your CartFlows Pro License\n\n\n\nStep 1: Get Your License Key\n\n\n\n\nLog in to your CartFlows account.\n\n\n\nClick on API Keys from the sidebar.\n\n\n\nCopy your License Key.\n\n\n\n\n\n\n\n\nStep 2: Activate Your License in WordPress\n\n\n\n1. Log in to your WordPress dashboard.2. Go to CartFlows &gt; Settings &gt; License tab.3. Paste your License Key into the field.4. Click the Activate License button.\n\n\n\n\n\n\n\nTroubleshooting License Activation Issues\n\n\n\nIf you’re facing problems while activating your license, refer to this document for detailed troubleshooting steps: Troubleshooting License Activation Issues\n\n\n\nFrequently Asked Questions (FAQ)\n\n\n\n\nWhere do I find my CartFlows Pro license key?Log in to your CartFlows account at my.cartflows.com, click on API Keys from the sidebar, and copy your license key from there.\n\n\n\nHow do I activate my CartFlows Pro license in WordPress?Log in to your WordPress dashboard, go to CartFlows → Settings → License tab, paste your license key into the field, and click the Activate License button to complete activation.\";s:3:\"url\";s:58:\"https://cartflows.com/docs/activate-cartflows-pro-license/\";s:4:\"slug\";s:30:\"activate-cartflows-pro-license\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-10T00:45:18+05:30\";s:8:\"category\";a:1:{i:0;s:20:\"installation-updates\";}}i:6;O:8:\"stdClass\":8:{s:2:\"id\";i:32382;s:5:\"title\";s:39:\"Supported Payment Gateways in CartFlows\";s:7:\"content\";s:4484:\"This documentation lists all payment gateways that work with CartFlows and explains their compatibility with the Checkout page and Upsell or Downsell pages.\n\n\n\nCheckout Page\n\n\n\nThe Checkout page in CartFlows supports all payment gateways that are already supported by WooCommerce.\n\n\n\nTo use a gateway, ensure that its integration is enabled or that the required plugin is installed and activated.\n\n\n\nMost payment gateways used on the Checkout page also work with Pre Checkout Offer and Order Bump.\n\n\n\nUpsell / Downsell\n\n\n\nCartFlows supports the following payment gateways for Upsell and Downsell pages:\n\n\n\n\nCOD\n\n\n\nBACS\n\n\n\nPayPal Standard\n\n\n\nPayPal Payments\n\n\n\nWooCommerce Stripe Payment Gateway\n\n\n\nAuthorize.net\n\n\n\nMollie Credit Card and iDEAL\n\n\n\nWooCommerce Square\n\n\n\nWooCommerce Payments\n\n\n\n\nSome gateways support one click upsells while others do not. More compatibility improvements will be added in future updates.\n\n\n\n Cash on Delivery - COD\n\n\n\n\nPayment Gateway: Cash on Delivery\n\n\n\nPlugin Supported: Not required, comes by default with WooCommerce.\n\n\n\n\n Direct Bank Transfers - BACS\n\n\n\n\nPayment Gateway: Direct Bank Transfer\n\n\n\nPlugin Supported: Not required, comes by default with WooCommerce.\n\n\n\n\n PayPal Standard\n\n\n\n\nPayment Gateway: WooCommerce PayPal Payment Gateway\n\n\n\nPlugin Required: None. This gateway is included with WooCommerce.\n\n\n\nTo view the built in WooCommerce gateways go to WordPress Dashboard &gt; WooCommerce &gt; Settings &gt; Payments.\n\n\n\n\n\n\n\n\nWooCommerce PayPal Payments\n\n\n\n\nPayment Gateway: PayPal Payments\n\n\n\nPlugin Required: WooCommerce PayPal Payments plugin from WordPress.org\n\n\n\n\n\n\n\n\nStripe\n\n\n\n\nPayment Gateway: Stripe Payment Gateway\n\n\n\nPlugin Required: WooCommerce Stripe Payment Gateway plugin from WordPress.org\n\n\n\nInfo: CartFlows supports Stripe credit card payments. Other Stripe payment methods are not supported at this time.\n\n\n\n\n\n\n\n\nAuthorize.net\n\n\n\n\nPayment Gateway: Authorize Net Credit Card\n\n\n\nPlugin Required: The official Authorize.net plugin from the WooCommerce store.\n\n\n\nInfo: CartFlows supports only the credit card option provided by Authorize Net.\n\n\n\n\n\n\n\n\nMollie\n\n\n\n\n\n\n\n\nPayment Gateway: Mollie Payments for WooCommerce\n\n\n\nPlugin Required: The official \"Mollie Payments for WooCommerce\" plugin which is available on WordPress.org.\n\n\n\nInfo: CartFlows currently supports only Credit Card and iDEAL Option of Mollie Payment Gateway.\n\n\n\n\nWooCommerce Square\n\n\n\n\n\n\n\n\n\n\n\n\nPayment Gateway: WooCommerce Square\n\n\n\nPlugin Required: The official \"WooCommerce Square\" plugin which is available on WordPress.org.\n\n\n\nInfo: CartFlows currently supports only the Credit Card option of Square Payment Gateway.\n\n\n\n\nWooCommerce Payments\n\n\n\n\n\n\n\n\nPayment Gateway: WooCommerce Payments\n\n\n\nPlugin Required: The official \"WooCommerce Payments\" plugin which is available on WordPress.org.\n\n\n\n\nWe are striving to add more Payment Gateways and they are lined up. Stay Tuned!\n\n\n\nNote\nNot all payment gateways support the one-click upsells feature, but yet we will add more gateway support in the future updates of CartFlows for upsell/downsells.\n\n\n\n\n\n\n\n\nFrequently Asked Questions (FAQ)\n\n\n\n\nWhich payment gateways does CartFlows support on the checkout page?CartFlows supports all payment gateways that work with WooCommerce on the checkout page. To use a gateway, ensure its plugin is installed and activated. Most gateways that work on the checkout page also work with Pre Checkout Offers and Order Bumps.\n\n\n\nWhich payment gateways support one-click upsells and downsells in CartFlows?CartFlows supports the following gateways for upsell and downsell pages: Cash on Delivery, Direct Bank Transfer (BACS), PayPal Standard, WooCommerce PayPal Payments, Stripe, Authorize.net, Mollie (Credit Card and iDEAL), WooCommerce Square (Credit Card only), and WooCommerce Payments. Note that not all of these gateways support the one-click upsells feature.\n\n\n\nDoes CartFlows support all Stripe payment methods for upsells?No. CartFlows currently supports only Stripe credit card payments for upsell and downsell pages. Other Stripe payment methods are not supported at this time.\n\n\n\nDo I need an additional plugin to use PayPal Standard with CartFlows?No. PayPal Standard (WooCommerce PayPal Payment Gateway) is included with WooCommerce by default and does not require an additional plugin. You can find it under WordPress Dashboard → WooCommerce → Settings → Payments. Note that WooCommerce PayPal Payments is a separate plugin that does require installation.\";s:3:\"url\";s:67:\"https://cartflows.com/docs/supported-payment-gateways-by-cartflows/\";s:4:\"slug\";s:39:\"supported-payment-gateways-by-cartflows\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-10T00:44:49+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:7;O:8:\"stdClass\":8:{s:2:\"id\";i:31339;s:5:\"title\";s:45:\"How to Customize Checkout Fields in CartFlows\";s:7:\"content\";s:2865:\"CartFlows allows you to customize the checkout fields on your checkout step so you can collect only the information you need from your customers. This helps create a simpler and more optimized checkout experience.\n\n\n\nYou can easily add, remove, reorder, or modify checkout fields directly from the checkout step settings.\n\n\n\nHow to Customize Checkout Fields\n\n\n\nFollow the steps below to customize the checkout fields in your CartFlows checkout step.\n\n\n\nStep 1: Navigate to CartFlows &gt; Funnels.Step 2: Open the funnel where you want to customize the checkout fields.\n\n\n\n\n\n\n\nStep 3: Click the settings icon of the&nbsp;Checkout&nbsp;step.\n\n\n\n\n\n\n\nStep 4: Navigate to the Checkout Form &gt; Field Editor and enable Custom Field Editor.\n\n\n\n\n\n\n\nHere you will see the list of fields available for the checkout form.\n\n\n\nManaging Checkout Fields\n\n\n\nWithin the Checkout Fields section, you can customize the fields in the following ways:\n\n\n\nEnable or Disable FieldsYou can enable or disable specific fields depending on the information you want to collect from customers.\n\n\n\nMake Fields Required or OptionalYou can set fields as required if customers must fill them before completing the order.\n\n\n\nReorder FieldsFields can be rearranged using drag-and-drop to change the order in which they appear on the checkout page.\n\n\n\nEdit Field Labels and PlaceholdersYou can modify the field labels and placeholder text to better match your store’s requirements.\n\n\n\n\n\n\n\nSaving Your Changes\n\n\n\nOnce you finish customizing the checkout fields, click Save Settings to apply the settings.\n\n\n\nYour checkout page will now display the updated fields according to your configuration.\n\n\n\nCustomizing checkout fields helps you create a cleaner checkout experience and collect only the necessary information from your customers, improving overall conversion rates.\n\n\n\nFrequently Asked Questions (FAQ)\n\n\n\n\nHow do I access the checkout field editor in CartFlows?Go to CartFlows → Funnels, open the funnel containing your checkout step, click the settings icon on the Checkout step, then navigate to Checkout Form → Field Editor and enable the Custom Field Editor.\n\n\n\nCan I make checkout fields required or optional in CartFlows?Yes. In the Field Editor, you can set fields as required — customers must fill these before completing their order. You can also enable or disable specific fields depending on what information you want to collect.\n\n\n\nCan I reorder checkout fields in CartFlows?Yes. CartFlows supports drag-and-drop reordering of checkout fields. Simply drag a field to the position you want it to appear on the checkout page.\n\n\n\nCan I edit the labels and placeholder text of checkout fields?Yes. You can modify the field labels and placeholder text for any checkout field to match your store\'s language or requirements. After making changes, click Save Settings to apply them.\";s:3:\"url\";s:67:\"https://cartflows.com/docs/custom-checkout-fields-and-its-settings/\";s:4:\"slug\";s:39:\"custom-checkout-fields-and-its-settings\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-10T00:43:50+05:30\";s:8:\"category\";a:1:{i:0;s:21:\"checkout-field-editor\";}}i:8;O:8:\"stdClass\":8:{s:2:\"id\";i:30155;s:5:\"title\";s:59:\"How to Embed a Checkout Form on the CartFlows Checkout Page\";s:7:\"content\";s:3039:\"CartFlows allows you to customize the layout and content within the Checkout step of your funnel. If you\'d like to create a landing or sales page-style layout while still using the CartFlows checkout form, you can place the checkout form shortcode directly inside the Checkout step.\n\n\n\nThis documentation explains how to embed the checkout form on the CartFlows Checkout page.\n\n\n\nSteps to Embed a Checkout Form\n\n\n\nStep 1: Enable the Design Tab for Shortcode Access\n\n\n\n\nTo access the Design tab where the shortcode is available, ensure that your page builder is set to \"Other\" in the CartFlows settings.\n\n\n\nFrom your WordPress dashboard, go to CartFlows &gt; Settings &gt; General and select Other from the page builder list.\n\n\n\nClick Save Settings.\n\n\n\n\n\n\n\n\n\nAfter saving the settings, go to the funnel and open the settings of Checkout step settings by clicking the gear icon.\n\n\n\n\n\n\n\n\n\nYou will now see the Design tab. Open it to find the CartFlows Checkout Shortcode ([cartflows_checkout]).\n\n\n\nCopy the shortcode.\n\n\n\n\n\n\n\n\nStep 2: Add the Shortcode to the Checkout Page\n\n\n\n\nEdit the Checkout page using your page builder.\n\n\n\nPaste the shortcode wherever you want the checkout form to appear on the page.\n\n\n\nThis will display the CartFlows checkout fields, allowing users to complete their purchase directly on that section of the page.\n\n\n\n\nNote: If you\'re using the Block Editor, Elementor, Beaver Builder, or Bricks Builder, you don’t need to use the shortcode. CartFlows provides a dedicated Checkout Form element that you can add directly when editing the page using your page builder.\n\n\n\nImportant Notes\n\n\n\n\nThe shortcode must be used only on the CartFlows Checkout page. It will not work if added to any other page.\n\n\n\n\n\n\n\n\n\nIf the shortcode is placed incorrectly or on a different page, you may see an error saying: “Checkout ID not found”\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nIf you need more information about placing shortcodes correctly, refer to this documentation: https://cartflows.com/docs/placing-shortcode-in-the-right-places\n\n\n\nFrequently Asked Questions (FAQ)\n\n\n\n\nHow do I embed a checkout form on the CartFlows checkout page?Set your page builder to \"Other\" in CartFlows → Dashboard → Settings → General and save. Then open the Checkout step settings by clicking the gear icon, go to the Design tab, and copy the [cartflows_checkout] shortcode. Paste this shortcode wherever you want the checkout form to appear on your checkout page.\n\n\n\nDo I need a shortcode to add a checkout form in Elementor or the Block Editor?No. If you are using the Block Editor, Elementor, Beaver Builder, or Bricks Builder, you do not need the shortcode. CartFlows provides a dedicated Checkout Form element that you can add directly from within your page builder.\n\n\n\nWhat happens if the CartFlows checkout shortcode is placed on the wrong page?The shortcode only works on the CartFlows Checkout page. If it is placed on any other page, you may see a \"Checkout ID not found\" error. Make sure the shortcode is used only within the CartFlows Checkout step.\";s:3:\"url\";s:56:\"https://cartflows.com/docs/how-to-embed-a-checkout-form/\";s:4:\"slug\";s:28:\"how-to-embed-a-checkout-form\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-10T00:43:23+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:9;O:8:\"stdClass\":8:{s:2:\"id\";i:32904;s:5:\"title\";s:53:\"How to Fix Checkout Page Redirecting to the Home Page\";s:7:\"content\";s:1663:\"If your CartFlows checkout page redirects to the homepage of your website instead of loading the correct checkout page, it’s likely due to a missing setting in your WooCommerce configuration.\n\n\n\nThis issue commonly occurs when using Store Checkout.\n\n\n\nWhy the Redirect Happens\n\n\n\nWhen Store Checkout is enabled, WooCommerce needs to know which page to treat as the Checkout page. If the Checkout page is not set under WooCommerce → Settings, WooCommerce doesn’t know where to send the customer, and it defaults to the homepage.\n\n\n\nFix the Redirect Issue\n\n\n\nFollow these steps to stop the redirection and make sure the correct checkout page is used:\n\n\n\n\nGo to WooCommerce → Settings → Advanced.\n\n\n\nIn the Page setup section, find the Checkout page option.\n\n\n\nSelect the correct page that’s used for your Checkout page.\n\n\n\nClick Save changes.\n\n\n\n\n\n\n\n\nNote: Only standard WordPress pages will appear in the Checkout page dropdown. Your CartFlows checkout step should be built on one of these pages.\n\n\n\nFrequently Asked Questions (FAQ)\n\n\n\n\nWhy does the checkout page redirect to the homepage?This happens when WooCommerce doesn\'t have a Checkout page assigned under its settings. When Store Checkout is enabled and no Checkout page is set, WooCommerce defaults to redirecting customers to the homepage.\n\n\n\nHow do I stop the checkout page from redirecting to the homepage?Go to WooCommerce → Settings → Advanced, find the Checkout page option under Page setup, select the correct page used for your checkout, and save changes. Make sure only standard WordPress pages appear in this dropdown — your checkout step should be built on one of those pages.\";s:3:\"url\";s:70:\"https://cartflows.com/docs/resolve-checkout-page-homepage-redirection/\";s:4:\"slug\";s:42:\"resolve-checkout-page-homepage-redirection\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-10T00:42:55+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:10;O:8:\"stdClass\":8:{s:2:\"id\";i:32713;s:5:\"title\";s:74:\"How to Fix the &#8220;Sorry, This Product Cannot Be Purchased&#8221; Error\";s:7:\"content\";s:2039:\"If you see the message “Sorry, this product cannot be purchased” on your CartFlows Checkout page, it means one or more of the selected products are not purchasable.\n\n\n\nThis documentation explains why the error appears and how to resolve it.\n\n\n\nWhy This Happens\n\n\n\nThe error typically occurs when WooCommerce restricts the product from being purchased due to one of the following reasons:\n\n\n\n\nThe product has no price set\n\n\n\nThe product is in draft or private status\n\n\n\nRequired details (such as for subscription products) are missing\n\n\n\nStock or catalog settings are preventing purchase\n\n\n\n\nTo confirm that the issue is product-related, try purchasing the same product using the default WooCommerce Checkout page. If you see the same error there, the product is not configured properly.\n\n\n\nHow to Fix the Error\n\n\n\n\nGo to Products &gt; All Products and edit the product causing the issue.\n\n\n\nMake sure all required details are set, including:\n\nProduct name\n\n\n\nRegular or sale price\n\n\n\nStock status and quantity\n\n\n\nSubscription details (if applicable)\n\n\n\n\n\nSave or update the product.\n\n\n\nTest the product again on the default WooCommerce Checkout page.\n\n\n\n\nOnce it works correctly there, it will also work without issue on your CartFlows Checkout page.\n\n\n\nFrequently Asked Questions (FAQ)\n\n\n\n\nWhat causes the \"Sorry, this product cannot be purchased\" error on the checkout page?This error appears when WooCommerce restricts a product from being purchased. Common causes include the product having no price set, the product being in draft or private status, missing subscription details, or stock and catalog settings preventing purchase.\n\n\n\nHow do I fix the \"Sorry, this product cannot be purchased\" error?Go to Products > All Products and edit the product causing the issue. Make sure the product name, regular or sale price, stock status, and any subscription details are all properly configured. Save the product and test it on the default WooCommerce checkout page first — if it works there, it will work on your checkout page too.\";s:3:\"url\";s:83:\"https://cartflows.com/docs/resolve-sorry-product-cannot-be-purchased-error-message/\";s:4:\"slug\";s:55:\"resolve-sorry-product-cannot-be-purchased-error-message\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-10T00:41:58+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:11;O:8:\"stdClass\":8:{s:2:\"id\";i:32671;s:5:\"title\";s:58:\"How to Fix the &#8220;Session Expired&#8221; Error Message\";s:7:\"content\";s:4660:\"If you’re seeing a “Your session has expired” message on your Upsell or Downsell pages in CartFlows, it means the session data from the original checkout step is no longer available.\n\n\n\nThis documentation explains why this happens and how to resolve it.\n\n\n\nWhy This Happens\n\n\n\nCartFlows relies on session cookies to pass data from the checkout page to the upsell and downsell steps. When that session data is missing or blocked, CartFlows cannot process the offer step, resulting in the “Session Expired” error.\n\n\n\nBelow are common causes of this issue.\n\n\n\nCase 1: Page Opened Directly Without Test Mode\n\n\n\nIf the upsell or downsell page is opened directly by URL (outside the actual Funnel) and Test Mode is not enabled, the session key will not be set. This will trigger the error, especially for users who are not logged in.\n\n\n\nSolution: If you want to preview the page layout or design, enable Test Mode and make sure you’re logged in while viewing the step.\n\n\n\nFor help, see this guide: Funnel in Test Mode\n\n\n\nCase 2: Upsell or Downsell Placed After an Opt-in Step\n\n\n\nOpt-in steps do not collect payment or generate an order. If you place an upsell or downsell after an opt-in step, CartFlows will not have the required session to proceed.\n\n\n\nSolution: Do not place upsell or downsell steps immediately after an opt-in step. Make sure the customer completes a purchase on the checkout page first.\n\n\n\nCase 3: Cookie Naming Restrictions by Hosting Provider\n\n\n\nSome hosting environments (like Pantheon) block cookies that don’t follow a specific naming format (e.g. wp_, woocommerce_). Since CartFlows uses its own cookie (cartflows_session_), this may be blocked.\n\n\n\nSolution: Contact your hosting provider and ask if they allow third-party cookies. If needed, request that they exclude CartFlows cookies from any restrictions. For reference, here’s the full list of CartFlows cookies.\n\n\n\nCase 4: Missing SSL or Improper HTTPS Configuration\n\n\n\nCartFlows cookies require a secure HTTPS connection. If your site does not have SSL properly installed or configured, session cookies may not register.\n\n\n\nSolution: Make sure your website is fully configured to use HTTPS with a valid SSL certificate.\n\n\n\nCase 5: Caching Conflicts\n\n\n\nIf CartFlows pages are cached at the browser, plugin, or server level, the session cookie may be blocked or not set correctly.\n\n\n\nSolution:\n\n\n\n\nClear all site and browser cache\n\n\n\nTemporarily disable any active caching plugins\n\n\n\nExclude CartFlows checkout, upsell, and downsell pages from caching\n\n\n\n\nRefer to this doc for help: How to Disable Caching\n\n\n\nFrequently Asked Questions (FAQ)\n\n\n\n\nWhat causes the \"Session Expired\" error on upsell or downsell pages?The session expired error occurs when session data from the original checkout step is missing or blocked. Common causes include opening the upsell page directly by URL without Test Mode enabled, placing a upsell after an opt-in step, hosting providers blocking CartFlows cookies, missing SSL configuration, or caching conflicts on checkout pages.\n\n\n\nHow do I fix the session expired error when previewing an upsell or downsell page?Enable Test Mode in your funnel settings and make sure you are logged in while viewing the step. Opening upsell or downsell pages directly by URL without Test Mode active will always trigger this error.\n\n\n\nCan caching plugins cause the session expired error in a sales funnel?Yes. If checkout, upsell, or downsell pages are cached at the browser, plugin, or server level, session cookies may not register correctly. To fix this, clear all site and browser cache, temporarily disable caching plugins, and exclude CartFlows checkout and offer pages from your caching system.\n\n\n\nWhy does my hosting provider block CartFlows session cookies?Some hosting environments like Pantheon block cookies that do not follow specific naming formats like wp_ or woocommerce_. Since CartFlows uses its own cartflows_session_ cookie, it may be blocked. Contact your hosting provider and ask them to allow CartFlows cookies or exclude them from any cookie restrictions.\n\n\n\nWhy do I see the session expired error on the checkout page instead of the upsell page?This usually means the CartFlows or WooCommerce session cookie is not being registered, most often due to caching. Clear your cache and exclude the CartFlows checkout page from any caching system.\n\n\n\nWhat if I see the error on the checkout page instead of an upsell or downsell page?This usually means the CartFlows or WooCommerce session cookie is not being registered. It’s often due to caching. Clear the cache and exclude the CartFlows checkout page from any caching system.\";s:3:\"url\";s:57:\"https://cartflows.com/docs/session-expired-error-message/\";s:4:\"slug\";s:29:\"session-expired-error-message\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-10T00:41:29+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:12;O:8:\"stdClass\":8:{s:2:\"id\";i:34939;s:5:\"title\";s:98:\"How to Fix the &#8220;Sorry, the content area was not found in your page&#8221; Error in Elementor\";s:7:\"content\";s:2955:\"If you\'re using Elementor to edit CartFlows Steps and see the following message:\n\n\n\n\n“Sorry, the content area was not found in your page. You must call the_content function in the current template, in order for Elementor to work on this page.”\n\n\n\n\n\n\n\n\nThis documentation explains why the error appears and how to fix it.\n\n\n\nWhy This Error Happens\n\n\n\nThis message typically appears when Elementor can’t detect the proper content area (usually the_content function) in the template you’re trying to edit. In most cases, this occurs when editing dynamic pages or if there are configuration conflicts.\n\n\n\nHere are the most common causes and solutions:\n\n\n\n1. Issue with Permalinks\n\n\n\nSometimes the permalink structure may be out of sync. To fix it:\n\n\n\n\nGo to Settings &gt; Permalinks in your WordPress admin\n\n\n\nClick Save Changes without changing anything\n\n\n\nRepeat this 2–3 times if necessary\n\n\n\n\nThis flushes the rewrite rules and often resolves the issue. Learn how to refresh WordPress permalinks\n\n\n\n2. Editing a Dynamic Page\n\n\n\nIf you’re trying to edit a Blog or Posts page, Elementor won’t allow you to edit it directly unless you’re using Elementor Pro.\n\n\n\nSolution: Only static pages (like those used in CartFlows Steps) can be edited with Elementor Free. If you\'re trying to edit archive pages or blog templates, refer to Elementor’s Theme Builder documentation.\n\n\n\n3. Plugin Conflict\n\n\n\nAnother possible cause is a plugin conflict. To test:\n\n\n\n\nTemporarily deactivate all plugins except Elementor and CartFlows\n\n\n\nTry editing the page again\n\n\n\nIf the error disappears, reactivate the plugins one by one to find the conflicting one\n\n\n\n\nOnce found, consider replacing or removing that plugin — or reaching out to its support team.\n\n\n\nStill Not Working?\n\n\n\nIf none of the above solutions fix the issue, try the following:\n\n\n\n\nRefer to Elementor’s troubleshooting guide\n\n\n\nContact our support team — we’re happy to help\n\n\n\n\nFrequently Asked Questions (FAQ)\n\n\n\n\nWhat causes the \"Sorry, the content area was not found in your page\" error in Elementor?This error is usually caused by one of three things: a permalink structure issue that needs refreshing, trying to edit a dynamic page like the blog page directly in Elementor, or a conflict with another plugin installed on the site.\n\n\n\nHow do I fix the content area not found error in Elementor?Start by refreshing your WordPress permalinks two to three times — this resolves the issue in most cases. If that does not work, temporarily deactivate all plugins except Elementor and CartFlows to check for a plugin conflict, then reactivate them one by one to identify the problem plugin.\n\n\n\nCan I edit the WordPress blog page directly with Elementor?No. Dynamic pages like the WordPress blog page cannot be edited directly with Elementor Free. Only static pages like CartFlows steps can be edited. For archive or blog templates, you will need Elementor Pro and its Theme Builder.\";s:3:\"url\";s:56:\"https://cartflows.com/docs/content-area-not-found-error/\";s:4:\"slug\";s:28:\"content-area-not-found-error\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-10T00:40:57+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:13;O:8:\"stdClass\":8:{s:2:\"id\";i:32796;s:5:\"title\";s:53:\"How to Fix the “Your Cart is Empty” Error Message\";s:7:\"content\";s:2238:\"If you\'re seeing the “Your Cart is Empty” message on your Checkout page, it usually means no product has been added to the cart before accessing the page.\n\n\n\nThis documentation explains why this happens and how to resolve it.\n\n\n\nWhy This Happens\n\n\n\nThe error appears when you are using the Store Checkout feature in CartFlows and a customer lands directly on the checkout page without having added any product to the cart.\n\n\n\nIn Store Checkout, the expected flow is: Shop page &gt; Add to Cart &gt; Cart page &gt; Checkout page\n\n\n\nIf the checkout page is accessed directly (for example, through a bookmarked URL or direct link) without adding a product first, the system has nothing to show and displays the “Your Cart is Empty” message.\n\n\n\n\n\n\n\nTo learn more about how Store Checkout works, refer to the Store Checkout documentation.\n\n\n\nHow to Avoid This\n\n\n\nTo prevent this error:\n\n\n\n\nMake sure customers follow the complete flow starting from the shop or product page\n\n\n\nAvoid linking directly to the Checkout page unless a product is already in the cart\n\n\n\n\nNote: Make sure the default WooCommerce Cart and Checkout pages are created and published under Pages in your WordPress dashboard. These are required for proper handling of cart and checkout logic in Store Checkout.\n\n\n\nFrequently Asked Questions (FAQ)\n\n\n\n\nWhat causes the \"Your Cart is Empty\" error on the CartFlows checkout page?This error appears when using the Store Checkout feature in CartFlows and a customer lands directly on the checkout page without adding a product to the cart first. The expected flow is: Shop page > Add to Cart > Cart page > Checkout page.\n\n\n\nHow do I fix the \"Your Cart is Empty\" error in CartFlows?To fix this error, make sure customers follow the complete purchase flow starting from the shop or product page instead of accessing the checkout page directly. Avoid linking directly to the checkout page unless a product is already in the cart.\n\n\n\nDo I need WooCommerce Cart and Checkout pages for CartFlows Store Checkout to work?Yes. The default WooCommerce Cart and Checkout pages must be created and published under Pages in your WordPress dashboard. These are required for proper cart and checkout logic to function in Store Checkout.\";s:3:\"url\";s:60:\"https://cartflows.com/docs/resolve-your-cart-is-empty-error/\";s:4:\"slug\";s:32:\"resolve-your-cart-is-empty-error\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-10T00:38:50+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:14;O:8:\"stdClass\":8:{s:2:\"id\";i:75337;s:5:\"title\";s:35:\"How Cart Abandonment Tracking Works\";s:7:\"content\";s:9254:\"The Cart Abandonment Recovery plugin tracks shoppers as they move through your WooCommerce checkout process. It captures cart data as soon as a customer provides their email address, monitors whether they complete the order, and — if they do not — marks the cart as abandoned and queues any scheduled recovery emails.\n\n\n\nThis document explains precisely how and when a cart is captured, what defines the abandonment cut-off, how the cart lifecycle progresses through its various states, and what conditions will prevent a cart from being tracked.\n\n\n\nHow Tracking Is Triggered\n\n\n\nTracking begins the moment a customer enters their email address on the WooCommerce Checkout page. The plugin captures the email and saves the current cart contents to the database at that point — it does not wait for any other field to be filled in.\n\n\n\nThis means:\n\n\n\n\nA cart is captured even if the customer only types their email and immediately leaves the page.\n\n\n\nNo payment details are ever stored by the plugin. Only the cart contents, customer contact details, and checkout metadata are saved.\n\n\n\nGuest customers and logged-in customers are both tracked, as long as an email address has been entered.\n\n\n\n\nNote\nTracking requires the Enable Tracking toggle to be switched ON in WooCommerce > Cart Abandonment > Settings > General Settings. If tracking is disabled, no carts will be captured regardless of other settings.\n\n\n\n\n\n\n\n\nThe Cart Abandoned Cut-Off Time\n\n\n\nOnce a cart is captured, the plugin does not immediately consider it abandoned. It waits for a configurable period — the Cart Abandoned Cut-Off Time — before marking the cart as abandoned and starting the recovery email sequence.\n\n\n\nWhat the Cut-Off Time Controls\n\n\n\nThe cut-off time defines the minimum number of minutes that must pass after a cart is captured without the order being completed before the cart is treated as abandoned. The default and minimum value is 10 minutes.\n\n\n\nFor example, if the cut-off time is set to 60 minutes:\n\n\n\n\nA customer enters their email at 2:00 PM and leaves.\n\n\n\nThe plugin captures the cart at 2:00 PM.\n\n\n\nAt 3:00 PM (60 minutes later), a background check runs.\n\n\n\nIf the order has not been completed, the cart is marked as abandoned and the recovery email sequence begins.\n\n\n\n\nHow to Configure the Cut-Off Time\n\n\n\n\nGo to WooCommerce > Cart Abandonment > Settings.\n\n\n\nUnder General Settings, find the Cart Abandoned Cut-Off Time field.\n\n\n\nEnter the number of minutes after which an incomplete cart should be considered abandoned. The minimum is 10 minutes.\n\n\n\nChanges are saved automatically — there is no save button.\n\n\n\n\n\n\n\n\nTip: A cut-off time of 15–30 minutes is typically a good balance for most stores. Setting it too short can result in capturing customers who are still actively filling in their details; setting it too long delays the first recovery email.\n\n\n\nHow the Background Check Works\n\n\n\nThe plugin uses a WP-Cron scheduled job to periodically scan the database and check whether any captured carts have passed the cut-off time without completing checkout. This job is named:\n\n\n\ncartflows_ca_update_order_status_action\n\n\n\nThis cron job runs every 15 minutes. It checks all carts in a capturing state and promotes those that have exceeded the cut-off time to abandoned status, which triggers the recovery email queue.\n\n\n\nWhy WP-Cron Must Be Active\n\n\n\nIf WP-Cron is disabled on your WordPress installation, the status-check job will not run. This means:\n\n\n\n\nCaptured carts will never be promoted to abandoned status.\n\n\n\nNo recovery emails will be sent.\n\n\n\nThe abandoned orders list in the plugin dashboard will remain empty.\n\n\n\n\nImportant: If abandoned carts are not appearing in your dashboard, the most common cause is a disabled WP-Cron. Check your wp-config.php file and ensure the following line is not present or is set to false:\n\n\n\ndefine(\'DISABLE_WP_CRON\', true);   // Disable WP-Cron and will break tracking\n\n\n\nTo re-enable WP-Cron, either remove that line or change it to:\n\n\n\ndefine(\'DISABLE_WP_CRON\', false);\n\n\n\nAlternatively, if you prefer to run cron tasks via a server-level scheduler (e.g., cPanel), you can set up an external cron job to call the WordPress cron URL at regular intervals. This is often the more reliable approach for high-traffic sites.\n\n\n\nCart Lifecycle: The Possible States\n\n\n\nEvery tracked cart moves through a defined set of states from the moment it is captured to the time it is resolved. Understanding these states helps you interpret the data shown in WooCommerce > Cart Abandonment > Reports > Follow Up.\n\n\n\nStageOrder StatusWhat It MeansCapturingNormalThe customer\'s email has been recorded and the cart is saved. The cut-off time has not yet elapsed. No emails have been sent.AbandonedAbandonedThe cut-off time has elapsed without the order being completed. The cart is now eligible for recovery emails. The recovery sequence begins.RecoveredSuccessfulThe customer completed their order — either by clicking a recovery link or by returning to the store independently. No further emails are sent.UnsubscribedUnsubscribedThe customer clicked the unsubscribe link in a recovery email. They will not receive any further recovery emails for this abandoned carts.LostFailedThe cart was abandoned and the full recovery sequence has been exhausted without conversion. No further action is taken.\n\n\n\n\n\n\n\nRecovering a Cart\n\n\n\nA cart transitions from abandoned to recovered when the associated WooCommerce order reaches one of the statuses configured in the Exclude Email Sending For setting (typically Processing or Completed). This transition happens automatically — you do not need to manually mark anything.\n\n\n\nOnce a cart is recovered, all pending scheduled recovery emails for that cart are cancelled.\n\n\n\nWhat Carts Are Not Tracked\n\n\n\nNot all checkout sessions are eligible for tracking. The following conditions will prevent a cart from being captured:\n\n\n\nTracking Is Disabled\n\n\n\nIf the Enable Tracking toggle is turned OFF in the plugin settings, no carts will be tracked, regardless of any other configuration.\n\n\n\nNo Email Address Entered\n\n\n\nTracking only begins when a customer types their email address into the checkout email field. If a customer adds items to the cart but never reaches the checkout page, or reaches the checkout page but does not enter an email, no cart data is captured.\n\n\n\nUser Role Is Excluded\n\n\n\nThe Disable Tracking For setting allows specific WordPress user roles to be excluded from tracking entirely. By default, it is recommended to exclude administrator and shop manager roles to avoid logging internal test orders.\n\n\n\nTo check or update which roles are excluded:\n\n\n\n\nGo to WooCommerce > Cart Abandonment > Settings.\n\n\n\nUnder General section, review the Disable Tracking For field.\n\n\n\nAdd or remove roles as needed.\n\n\n\n\n\n\n\n\nEmail Address Is Blacklisted\n\n\n\nIf a customer\'s email address or domain is on the Email/Domain Blacklist, the cart will be captured but no recovery emails will be sent to that address. This is useful for excluding known test accounts, internal addresses, or competitor domains.\n\n\n\nOrder Is Already Completed\n\n\n\nIf the customer completes their order normally (without abandoning), the cart is never promoted to abandoned status. The plugin continuously checks whether the associated WooCommerce order has been paid, and if so, the cart session is immediately resolved.\n\n\n\nTracking and GDPR Compliance\n\n\n\nSending abandoned cart recovery emails falls under legitimate interest for data processing under GDPR guidelines. This means no separate opt-in consent is required to capture cart data and send recovery emails, though transparency in your store\'s privacy policy is strongly recommended.\n\n\n\nIf you prefer to give customers an explicit opt-in mechanism at the checkout page, the plugin includes an optional GDPR Integration setting.\n\n\n\nEnabling the GDPR Consent Message\n\n\n\n\nGo to WooCommerce > Cart Abandonment > Settings.\n\n\n\nClick the GDPR tab.\n\n\n\nToggle Enable GDPR Integration ON.\n\n\n\nOptionally customize the GDPR Message text shown below the email field at checkout.\n\n\n\n\n\n\n\n\nWhen enabled, a consent notice appears below the email field. If the customer clicks \"No thanks\", their cart will not be tracked. This ensures full opt-in compliance for stores that require it.\n\n\n\nNote\nEnabling the GDPR confirmation message may reduce the number of carts captured, since some customers will decline. Only enable it if your store\'s compliance requirements specifically demand an explicit opt-in for abandoned cart tracking.\n\n\n\n\nQuick Reference Summary\n\n\n\nSetting / ConceptDetailsTracking triggerCustomer enters email address on the checkout page.Cut-off timeConfigurable (minimum 10 minutes). Defines when a cart becomes \"abandoned\".Background check frequencyEvery 15 minutes via the cartflows_ca_update_order_status_action WP-Cron job.Cart statescapturing → abandoned → recovered or lost. Customers can also unsubscribe.Excluded from trackingSpecific user roles, blacklisted emails/domains, customers who opt out via GDPR message.Recovery triggerOrder reaches a status listed in \"Exclude Email Sending For\" (e.g., Processing, Completed).GDPRAbandoned cart emails fall under legitimate interest. Optional opt-in consent message available.\";s:3:\"url\";s:63:\"https://cartflows.com/docs/how-cart-abandonment-tracking-works/\";s:4:\"slug\";s:35:\"how-cart-abandonment-tracking-works\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-05T16:23:09+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:15;O:8:\"stdClass\":8:{s:2:\"id\";i:74056;s:5:\"title\";s:41:\"How to Activate Power Coupons License Key\";s:7:\"content\";s:1101:\"To start using Power Coupons Pro and receive automatic updates, you need to activate your license. This documentation will guide you through the process.\n\n\n\nBefore You Start\n\n\n\nBefore activating your license, make sure:\n\n\n\n\nThe Power Coupons Free plugin is installed and activated on your website.If you haven’t installed it yet, follow this document: How to Install Power Coupons\n\n\n\nYou have access to your account to retrieve the license key.\n\n\n\n\nHow to Activate Your Power Coupons Pro License\n\n\n\nStep 1: Get Your License Key\n\n\n\n\nLog in to Membership Area.\n\n\n\nClick on API Keys from the sidebar.\n\n\n\nCopy your License Key.\n\n\n\n\n\n\n\n\nStep 2: Activate Your License in WordPress\n\n\n\n\nLog in to your WordPress dashboard.\n\n\n\nGo to Power Coupons &gt; Settings &gt; License.\n\n\n\nClick on the My Account tab.\n\n\n\nPaste your License Key into the provided field.\n\n\n\nClick the Activate License button.\n\n\n\n\n\n\n\n\nTroubleshooting License Activation Issues\n\n\n\nIf you’re facing problems while activating your license, refer to this document for detailed troubleshooting steps: Troubleshooting License Activation Issues\";s:3:\"url\";s:69:\"https://cartflows.com/docs/how-to-activate-power-coupons-license-key/\";s:4:\"slug\";s:41:\"how-to-activate-power-coupons-license-key\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-15T14:04:12+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"power-coupons\";}}i:16;O:8:\"stdClass\":8:{s:2:\"id\";i:74046;s:5:\"title\";s:32:\"How to Install Power Coupons Pro\";s:7:\"content\";s:1450:\"This documentation explains how to install the Power Coupons Pro plugin on your website. You can install the plugin by downloading it from your account and uploading it to your WordPress site.\n\n\n\nNote\nTo use Power Coupons Pro, the Power Coupons Free plugin must also be installed and activated. Refer to&nbsp;this doc&nbsp;to learn how to install Power Coupons Free.\n\n\n\n\nSteps to Install Power Coupons Pro\n\n\n\nStep 1: Go to Your Account and Click on Your Products\n\n\n\nIn your account page, go to Your Products to view all your purchased products.\n\n\n\n\n\n\n\nStep 2: Download Power Coupons Pro\n\n\n\nClick Download to start the .zip file download.\n\n\n\n\n\n\n\nStep 3: Log in to Your WordPress Website\n\n\n\nWhen you log in, you will be in your Dashboard.\n\n\n\nStep 4: In the Plugins Menu, Click on Add New Plugin\n\n\n\nGo to Plugins &gt; Add New Plugin from the WordPress menu.\n\n\n\n\n\n\n\nStep 5: Click Upload Plugin at the Top of the Screen\n\n\n\nThe screen will expand with the option to upload a plugin.\n\n\n\n\n\n\n\nStep 6: Upload the Plugin and Click Install Now\n\n\n\nClick Choose File, select the downloaded .zip file, and then click Install Now to begin the installation.\n\n\n\n\n\n\n\nStep 7: Click Activate Plugin\n\n\n\nOnce the plugin is installed, click Activate Plugin to complete the installation.\n\n\n\n\n\n\n\nWhat’s Next?\n\n\n\nMake sure to activate your license key to start using the plugin and receive plugin updates. Click here to learn how to activate your Power Coupons Pro license.\";s:3:\"url\";s:60:\"https://cartflows.com/docs/how-to-install-power-coupons-pro/\";s:4:\"slug\";s:32:\"how-to-install-power-coupons-pro\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-15T14:07:08+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"power-coupons\";}}i:17;O:8:\"stdClass\":8:{s:2:\"id\";i:73357;s:5:\"title\";s:51:\"How to Set Preferred Countries on the Checkout Page\";s:7:\"content\";s:2646:\"By default, the country dropdown on your checkout page lists every country in alphabetical order. If most of your customers come from the same few countries, that long list can feel like a chore. Preferred Countries lets you pin your top countries to the top of the dropdown so customers can pick their country in one click.\n\n\n\nThis setting is configured per Checkout step, so different funnels can have different preferred countries.\n\n\n\nHow to Enable Preferred Countries\n\n\n\nPreferred Countries lives inside the Advanced tab of your Checkout step settings.\n\n\n\n\nOpen the funnel that contains your Checkout step.\nClick Settings on the Checkout step.\nSwitch to the Advanced tab.\nTurn on Enable Preferred Countries.\nIn the Select Preferred Countries field, search and pick the countries you want to pin. You can add as many as you like.\nSave your changes.\n\n\n\n\n\n\n\n\n\n\n\n\nThe countries appear at the top of the dropdown in the same order you add them, so add your most important country first.\n\n\n\nWhat Customers See on the Checkout Page\n\n\n\nWhen a customer opens the country dropdown on your checkout page, the countries you pinned show up first. Below them, the rest of the countries continue in their usual alphabetical order.\n\n\n\nThis applies to both the billing and shipping country dropdowns.\n\n\n\n\n\n\n\nThings to Keep in Mind\n\n\n\n\nThe order of pinned countries matches the order you select them. Add the most important one first.\nIf you have restricted WooCommerce to ship only to specific countries, Preferred Countries will respect that restriction. Any country you pinned that is not allowed for shipping will simply not appear.\nTurning the toggle on without selecting any countries has no effect — the dropdown will look like a default WooCommerce checkout.\nPreferred Countries works on every Checkout step layout CartFlows offers.\n\n\n\n\nFrequently Asked Questions\n\n\n\nQ: Does this remove other countries from the dropdown?A: No. The countries you pin are added to the top of the list. All other countries still appear below them in alphabetical order.\n\n\n\nQ: Can I set different preferred countries for different funnels?A: Yes. The setting is configured on each Checkout step individually, so every funnel can have its own list.\n\n\n\nQ: Does it apply to the shipping country field as well?A: Yes. The pinned countries appear at the top of both the billing and shipping country dropdowns.\n\n\n\nQ: Will it work if I sell to all countries?A: Yes. Whether your store is set to sell to specific countries or all countries, your pinned list will show at the top of the dropdown.\n\n\n\nStill have questions? Reach out to our support team and we\'ll be happy to help.\";s:3:\"url\";s:56:\"https://cartflows.com/docs/preferred-countries-checkout/\";s:4:\"slug\";s:28:\"preferred-countries-checkout\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-04T15:38:55+05:30\";s:8:\"category\";a:2:{i:0;s:8:\"features\";i:1;s:15:\"global-checkout\";}}i:18;O:8:\"stdClass\":8:{s:2:\"id\";i:72764;s:5:\"title\";s:21:\"CartFlows Smart Login\";s:7:\"content\";s:5178:\"CartFlows Pro includes a feature called Smart Login that helps returning customers sign in to their account during checkout without leaving the page. When a registered customer enters their email, a friendly prompt appears, and a single click opens a clean login window right on top of the checkout.\n\n\n\nThis guide walks you through how Smart Login works, how to enable it on a checkout step, and what the experience looks like for your shoppers.\n\n\n\nHow Smart Login Works\n\n\n\nWhen a guest reaches your checkout page and enters their email address, CartFlows quietly checks whether the email belongs to an existing customer.\n\n\n\n\nIf the email is not registered, nothing changes. The guest continues with checkout as usual.\n\n\nIf the email is registered, a small message appears below the email field inviting the customer to sign in.\n\n\nWhen the customer clicks the prompt, a centered login window opens on top of the checkout. They sign in, the page refreshes, and their saved details are populated automatically.\n\n\n\n\nThe customer never leaves the checkout page, and the cart they were building is preserved.\n\n\n\nHow to Set Up Smart Login\n\n\n\nSmart Login is configured per checkout step, so you can turn it on for some funnels and leave it off for others.\n\n\n\nStep 1. From the WordPress admin, go to CartFlows &rarr; Funnels and open the funnel that contains the checkout step you want to update.\n\n\n\nStep 2. Click the checkout step to open its settings.\n\n\n\nStep 3. In the left sidebar of the step settings, click Settings &rarr; Advanced.\n\n\n\nStep 4. Scroll to the Smart Login options.\n\n\n\n\n\n\n\nStep 5. Configure the four options:\n\n\n\n\nEnable Smart Login &mdash; Turn this on to activate the feature for this checkout step.\n\n\nLogin Form Style &mdash; Choose Overlay to open a centered window above the checkout (recommended), or Inline to show the login form inside the checkout page between fields.\n\n\nNudge Returning Users &mdash; When enabled, a short message appears below the email field if the customer&rsquo;s email is recognised.\n\n\nMessage &mdash; The text shown in the prompt. You can use the placeholder {{site_title}} and it will be replaced with your store&rsquo;s name automatically.\n\n\n\n\nStep 6. Click Save Settings at the top right.\n\n\n\nSmart Login is now active on that checkout step.\n\n\n\nThe Login Window in Action\n\n\n\nOnce Smart Login is enabled, customers see the standard checkout page until they enter a registered email. After they click the prompt (or the &ldquo;Log in&rdquo; link in the checkout header), the login window appears.\n\n\n\n\n\n\n\nThe window is centered on the screen with a darkened background. Customers enter their password and click Login. The page reloads, and they are signed in and ready to continue.\n\n\n\nThe window can be closed at any time by clicking outside of it, pressing the Esc key, or clicking the close button in the top right.\n\n\n\nOn Mobile Devices\n\n\n\nOn smaller screens, the window automatically adjusts to fit the viewport with comfortable spacing and large touch targets.\n\n\n\n\n\n\n\nForgot Password Flow\n\n\n\nIf a returning customer can&rsquo;t remember their password, they can click Lost your password? in the login window.\n\n\n\n\n\n\n\nThe customer enters their email and clicks Reset Password. They receive a password reset email, and after completing the reset they are returned to the same checkout step they started on, ready to finish their purchase.\n\n\n\nFor security, the same confirmation message is shown whether or not the email matches an existing account. This prevents anyone from probing your store to discover which emails are registered.\n\n\n\nFrequently Asked Questions\n\n\n\nDoes Smart Login work without CartFlows Pro?\n\n\n\nNo. Smart Login is a CartFlows Pro feature and requires both CartFlows and CartFlows Pro to be active.\n\n\n\nWill it interfere with my existing checkout?\n\n\n\nNo. When Smart Login is turned off, the checkout behaves exactly as before. When it is on, it only adds the prompt and login window &mdash; your checkout fields, payment options, and order summary remain unchanged.\n\n\n\nWhat happens if a logged-in customer visits the checkout page?\n\n\n\nNothing extra happens. Smart Login only runs for guests. Logged-in customers see the regular checkout.\n\n\n\nDoes the customer&rsquo;s cart get preserved during the password reset?\n\n\n\nYes. When the customer follows the reset link from their email, completes the password reset, and signs in, they are redirected back to the same checkout step with their cart intact.\n\n\n\nCan I customise the prompt message?\n\n\n\nYes. The Message field lets you write any text that fits your store&rsquo;s voice. Use the {{site_title}} placeholder if you want your store&rsquo;s name to appear in the message.\n\n\n\nIs it available on every checkout layout?\n\n\n\nYes. Smart Login works with the Default and Instant Checkout layouts and is compatible with the supported page builders.\n\n\n\nCan I use Inline mode instead of the popup?\n\n\n\nYes. Set Login Form Style to Inline and the existing slide-down login form is used instead of the centered window. The recognition prompt still appears.\n\n\n\n\n\n\n\nIf you have any questions or run into trouble, please reach out to our support team and we&rsquo;ll be happy to help.\";s:3:\"url\";s:39:\"https://cartflows.com/docs/smart-login/\";s:4:\"slug\";s:11:\"smart-login\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-04T15:40:59+05:30\";s:8:\"category\";a:2:{i:0;s:8:\"features\";i:1;s:15:\"global-checkout\";}}i:19;O:8:\"stdClass\":8:{s:2:\"id\";i:68918;s:5:\"title\";s:21:\"How to Use Gift Cards\";s:7:\"content\";s:14549:\"The Gift Cards feature in Power Coupons Pro lets you sell digital gift cards that customers can purchase and send to anyone via email. Recipients receive a unique coupon code they can redeem at checkout, with support for partial redemption across multiple orders.\n\n\n\nKey highlights:\n\n\n\n\nSell gift cards as WooCommerce products with preset or custom amounts\n\n\n\nCustomers fill in recipient name, email, and a personal message at purchase\n\n\n\nUnique coupon codes are auto-generated and emailed to recipients on order completion\n\n\n\nPartial redemption support — recipients can use gift cards across multiple orders\n\n\n\nConfigurable expiry, product/category restrictions, and text customization\n\n\n\nMy Account \"Gift Cards\" tab for customers to view received and sent gift cards\n\n\n\nGift cards are protected from discounts — no coupons or loyalty credits can be applied to gift card purchases\n\n\n\n\nRequirements: WordPress 6.0+, WooCommerce 3.0+, Power Coupons (free) plugin installed and active, Power Coupons Pro plugin installed, active, and license activated.\n\n\n\nGetting Started\n\n\n\nEnabling Gift Cards\n\n\n\n\nGo to Power Coupons → Settings in your WordPress admin.\n\n\n\nClick on the Gift Cards tab (in the settings navigation).\n\n\n\nUnder the General sub-tab, toggle Enable Gift Cards to ON.\n\n\n\nThe setting saves automatically. Once enabled, the gift card system becomes active.\n\n\n\n\n\n\n\n\nWhen Gift Cards is disabled, customers cannot purchase gift cards and the My Account tab is hidden. Any existing gift card coupons remain in the system and will work again when re-enabled.\n\n\n\nSettings Overview\n\n\n\nGift Cards settings are organized into two sub-tabs under Power Coupons → Settings → Gift Cards: General and Restrictions.\n\n\n\nGeneral Settings\n\n\n\n\nEnable Gift Cards – Master toggle for the entire feature. When OFF, no gift cards can be purchased or redeemed. Default: OFF.\n\n\n\nPreset Gift Card Values – Comma-separated list of amounts shown in the amount dropdown on the product page (e.g., 10,25,50,100). Only positive numeric values are accepted. Non-numeric values are automatically stripped on save. Default: 10,25,50,100.\n\n\n\nAllow Custom Amount – Let customers enter a custom gift card value instead of choosing from presets. Default: ON.\n\n\n\nMinimum Custom Amount – Minimum value for custom amounts. Only visible when Allow Custom Amount is enabled. Default: 5.\n\n\n\nMaximum Custom Amount – Maximum value for custom amounts. Only visible when Allow Custom Amount is enabled. If set lower than minimum, it is auto-corrected to match. Default: 500.\n\n\n\nGift Card Expiry – How long gift cards remain valid after purchase. Options: 1 Month, 3 Months, 6 Months, 9 Months, 1 Year, No Expiry. Default: 1 Year.\n\n\n\nAllow Partial Redemption – Allow recipients to use gift cards across multiple orders until the balance is exhausted. When OFF, the gift card can only be used once. Default: ON.\n\n\n\nSend Sender Confirmation – Send a confirmation email to the buyer when the gift card is delivered to the recipient. Default: ON.\n\n\n\n\n\n\n\n\nRestrictions Settings\n\n\n\nControl where gift cards can be redeemed. These restrictions are applied to the generated coupon codes.\n\n\n\n\nRestrict to Products – Gift cards can only be redeemed on these specific products. Leave empty for no restriction.\n\n\n\nRestrict to Categories – Gift cards can only be redeemed on products in these categories. Leave empty for no restriction.\n\n\n\nExclude Products – Gift cards cannot be redeemed on these specific products.\n\n\n\nExclude Categories – Gift cards cannot be redeemed on products in these categories.\n\n\n\n\n\n\n\n\nCreating a Gift Card Product\n\n\n\nGift cards are sold as regular WooCommerce Simple products with the Gift Card option enabled.\n\n\n\nSetting Up a Gift Card Product\n\n\n\n\nGo to Products → Add New in your WordPress admin.\n\n\n\nEnter a product name (e.g., \"Gift Card\") and add a description and product image.\n\n\n\nIn the Product data section, ensure the product type is set to Simple product.\n\n\n\nCheck the Gift Card checkbox (next to Virtual and Downloadable). The Virtual checkbox will be automatically checked and locked — gift cards are always virtual.\n\n\n\nA new Gift Card tab appears in the product data panel. Click on it.\n\n\n\n\n\n\n\n\nGift Card Product Settings\n\n\n\nThe Gift Card tab allows you to override global settings at the product level:\n\n\n\n\nGift Card Amounts – Enter preset denominations separated by commas (e.g., 25,50,100). Leave empty to use the global preset values from the Gift Cards settings page.\n\n\n\nAllow custom amount – Let customers enter their own gift card value for this product.\n\n\n\nMinimum amount – Minimum value for custom amounts. Leave empty to use the global setting. Only visible when Allow custom amount is checked.\n\n\n\nMaximum amount – Maximum value for custom amounts. Leave empty to use the global setting. Only visible when Allow custom amount is checked.\n\n\n\n\n\n\n\n\n\nYou do not need to set a product price — the price is determined by the customer\'s selected amount. A $0 price is set automatically to ensure the add-to-cart form renders.\n\n\n\nClick Publish (or Update) to save the product.\n\n\n\n\nCustomer Experience\n\n\n\nProduct Page\n\n\n\nWhen a customer visits a gift card product page, they see:\n\n\n\n\nPrice range – Instead of a fixed price, the product shows a range based on preset amounts (e.g., \"$10.00 – $100.00\").\n\n\n\nAmount dropdown – A select dropdown with all preset amounts. If custom amounts are enabled, a \"Custom Amount\" option appears at the end.\n\n\n\nCustom amount input – When \"Custom Amount\" is selected from the dropdown, a number input appears with the currency symbol and min/max placeholder (e.g., \"5.00 – 500.00\").\n\n\n\nRecipient fields – A section with fields for the recipient\'s name (required), email address (required), and a personal message (optional, up to 500 characters).\n\n\n\n\n\n\n\n\nWhen the quantity is set to more than 1, additional recipient groups are added automatically — one for each gift card. Each recipient requires a name and email.\n\n\n\nValidation\n\n\n\nThe following validations are enforced before a gift card can be added to the cart:\n\n\n\n\nAn amount must be selected (preset or custom).\n\n\n\nCustom amount must be within the configured min/max range.\n\n\n\nRecipient name is required for each gift card.\n\n\n\nA valid email address is required for each recipient.\n\n\n\nThe number of recipients must match the quantity.\n\n\n\n\nValidation runs both in the browser (JavaScript) and on the server (PHP) to prevent bypassing.\n\n\n\nShop Archive\n\n\n\nOn shop and category pages, gift card products display a \"Select options\" button instead of \"Add to cart\". This redirects customers to the single product page where they can fill in recipient details. AJAX add-to-cart is disabled for gift cards.\n\n\n\nCart and Checkout\n\n\n\nAfter adding a gift card to the cart:\n\n\n\n\nThe cart displays the Gift Card Amount, Recipient name and email, and Message for each gift card item.\n\n\n\nEach gift card is treated as a unique cart item, even if the same product and amount are selected.\n\n\n\nQuantity cannot be changed in the cart or mini-cart — it is locked to the value set on the product page because recipients are tied to the quantity.\n\n\n\nDiscounts are blocked — no coupons or loyalty credits can reduce the price of gift card items. This prevents a financial loophole where someone could buy a discounted gift card and redeem it at full value.\n\n\n\n\n\n\n\n\nWhat Happens After Purchase\n\n\n\nCoupon Generation\n\n\n\nWhen the order status changes to Completed, the following happens automatically for each gift card item in the order:\n\n\n\n\nA unique WooCommerce coupon is generated for each recipient with a code in the format gc-xxxxxxxx (8 random characters).\n\n\n\nThe coupon is configured as a fixed cart discount with the face value of the gift card.\n\n\n\nProduct and category restrictions from the Gift Cards settings are applied to the coupon.\n\n\n\nThe expiry date is set based on the configured Gift Card Expiry setting.\n\n\n\nAn email is sent to the recipient with the gift card code, amount, sender\'s name, personal message, and a link to the shop.\n\n\n\nIf enabled, a confirmation email is sent to the buyer confirming the gift card has been delivered.\n\n\n\n\nThe order is flagged to prevent double-processing if the status changes multiple times.\n\n\n\nEmail Notifications\n\n\n\nTwo types of emails are sent (both use the WooCommerce email template with your store\'s header and footer):\n\n\n\n\nRecipient Email – Sent to the recipient\'s email address. Contains the gift card code, amount, sender\'s name, personal message, expiry date, and a link to the shop. Subject line is customizable (default: \"You\'ve received a {amount} gift card!\").\n\n\n\nSender Confirmation Email – Sent to the buyer\'s billing email (only if \"Send Sender Confirmation\" is enabled). Contains the recipient\'s name, amount, and coupon code. Subject line is customizable (default: \"Your {amount} gift card has been sent!\").\n\n\n\n\nGift Card Redemption\n\n\n\nRecipients redeem gift cards by entering the coupon code at checkout, just like any WooCommerce coupon.\n\n\n\nPartial Redemption\n\n\n\nWhen Allow Partial Redemption is enabled (default), gift cards work as a stored balance:\n\n\n\n\nIf the order total is less than the gift card balance, only the order amount is deducted and the remaining balance is preserved.\n\n\n\nThe recipient can use the same code on future orders until the balance is exhausted.\n\n\n\nA success notice shows the remaining balance when the gift card is applied (e.g., \"Gift card applied! Remaining balance: $70.00\").\n\n\n\nWhen the balance reaches $0, the gift card is marked as fully redeemed and cannot be used again.\n\n\n\n\nWhen partial redemption is disabled, the gift card can only be used once regardless of the remaining balance.\n\n\n\nBalance Tracking\n\n\n\nGift card balances are updated atomically when orders are completed. This means even if two orders using the same gift card are processed simultaneously, the balance will be calculated correctly without race conditions.\n\n\n\nThe discount is also capped to the remaining balance — a gift card can never give more discount than its current balance, even when applied to a cart with multiple items.\n\n\n\nMy Account — Gift Cards Tab\n\n\n\nA Gift Cards tab is added to the WooCommerce My Account page (placed after \"Orders\"). The tab label is customizable via Text Customization settings.\n\n\n\nMy Gift Cards (Received)\n\n\n\nShows all gift cards the customer has received, with the following columns:\n\n\n\n\nCode – Partially masked code (e.g., gc-****dcas) to prevent shoulder-surfing.\n\n\n\nOriginal Amount – The face value of the gift card.\n\n\n\nBalance – Current remaining balance.\n\n\n\nStatus – Active, Partially Used, Fully Redeemed, or Expired.\n\n\n\nExpiry – Expiry date or \"No expiry\".\n\n\n\nCopy Code – A button (shown only for Active gift cards) that copies the full code to the clipboard.\n\n\n\n\n\n\n\n\nSent Gift Cards\n\n\n\nShows all gift cards the customer has purchased and sent, with columns for:\n\n\n\n\nRecipient – Name and email of the recipient.\n\n\n\nAmount – The gift card value.\n\n\n\nCode – Masked code, or \"Pending\" if the order hasn\'t been completed yet.\n\n\n\nStatus – Delivered, Active, Partially Used, Fully Redeemed, or Expired.\n\n\n\nDate – When the gift card was sent.\n\n\n\n\n\n\n\n\nText Customization\n\n\n\nAll customer-facing text strings can be customized under Power Coupons → Settings → Text Customization → Gift Cards sub-tab.\n\n\n\nAvailable Customizations\n\n\n\n\nAmount Selector Label – Label above the amount dropdown. Default: \"Select Amount\".\n\n\n\nCustom Amount Option Label – Text for the custom amount option. Default: \"Custom Amount\".\n\n\n\nRecipient Section Label – Label above recipient fields. Default: \"Send this gift card to...\".\n\n\n\nName Placeholder – Placeholder for recipient name. Default: \"Recipient\'s name\".\n\n\n\nEmail Placeholder – Placeholder for recipient email. Default: \"Recipient\'s email address\".\n\n\n\nMessage Placeholder – Placeholder for personal message. Default: \"Add a personal message (optional)\".\n\n\n\nBalance Applied Message – Notice when gift card is applied. Default: \"Gift card applied! Remaining balance: {balance}\".\n\n\n\nFully Redeemed Message – Error when a used-up gift card is applied. Default: \"This gift card has been fully redeemed.\".\n\n\n\nRecipient Email Subject – Subject for recipient email. Default: \"You\'ve received a {amount} gift card!\".\n\n\n\nSender Confirmation Email Subject – Subject for buyer email. Default: \"Your {amount} gift card has been sent!\".\n\n\n\nMy Account Tab Label – Label for the Gift Cards tab. Default: \"Gift Cards\".\n\n\n\n\n\n\n\n\nPlaceholder Reference\n\n\n\nThe following placeholders can be used in text customization fields:\n\n\n\n\n{amount} – The gift card amount with currency symbol (used in email subjects).\n\n\n\n{balance} – The remaining gift card balance with currency symbol (used in the balance applied message).\n\n\n\n\nGift Cards in the Admin\n\n\n\nOrder Details\n\n\n\nWhen viewing an order that contains gift card items in WooCommerce → Orders, the order item meta shows:\n\n\n\n\nGift Card Amount – The face value selected by the customer.\n\n\n\nRecipients – Each recipient\'s name, email, and personal message.\n\n\n\n\nGenerated Coupons\n\n\n\nGift card coupons appear in WooCommerce → Coupons (or Marketing → Coupons) with the code format gc-xxxxxxxx. Each coupon stores:\n\n\n\n\nThe current balance (as the coupon amount).\n\n\n\nThe initial face value.\n\n\n\nThe source order ID and item ID.\n\n\n\nThe recipient email.\n\n\n\n\nGift card coupons are automatically hidden from the frontend \"View All Coupons\" drawer and coupon display lists. They are personal, recipient-specific codes and should not be browsed alongside promotional coupons.\n\n\n\nFully redeemed gift card coupons are kept in the system (not trashed) to preserve the audit trail for customer support and order history.\n\n\n\nExample Setup\n\n\n\nHere is a quick example of setting up gift cards for your store:\n\n\n\n\nGo to Power Coupons → Settings → Gift Cards and enable Gift Cards.\n\n\n\nSet preset amounts to 25,50,100,200.\n\n\n\nEnable Allow Custom Amount with a minimum of 10 and maximum of 500.\n\n\n\nSet expiry to 1 Year and enable Partial Redemption.\n\n\n\nGo to Products → Add New, create a product called \"Gift Card\".\n\n\n\nCheck the Gift Card checkbox and publish.\n\n\n\n\nResult: Customers can now visit your gift card product page, choose an amount ($25, $50, $100, $200, or a custom value between $10–$500), enter the recipient\'s details, and purchase. On order completion, the recipient receives an email with a unique coupon code they can use at checkout. The balance tracks across multiple orders for up to one year.\";s:3:\"url\";s:49:\"https://cartflows.com/docs/how-to-use-gift-cards/\";s:4:\"slug\";s:21:\"how-to-use-gift-cards\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-04-16T22:33:37+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"power-coupons\";}}i:20;O:8:\"stdClass\":8:{s:2:\"id\";i:68797;s:5:\"title\";s:47:\"How to Use Loyalty Rewards &#038; Store Credits\";s:7:\"content\";s:12830:\"The Loyalty Rewards feature in Power Coupons Pro lets you reward customers with store credits for purchases, signups, and product reviews. Customers earn credits automatically and can redeem them for discounts on future orders, driving repeat purchases and customer loyalty.\n\n\n\nKey highlights:\n\n\n\n\nEarn credits on orders, signups, and product reviews\n\n\n\nFlexible earning campaigns with conditions and priority-based matching\n\n\n\nTwo redemption modes: Full Credits and Max Limit\n\n\n\nCredit expiry with configurable notice period\n\n\n\nFrontend widgets on product, cart, checkout, and My Account pages\n\n\n\nAdmin dashboard for campaign management, credit history, and manual adjustments\n\n\n\n\nRequirements: WordPress 6.0+, WooCommerce 3.0+, Power Coupons (free) plugin installed and active, Power Coupons Pro plugin installed, active, and license activated.\n\n\n\nGetting Started\n\n\n\nEnabling Loyalty Rewards\n\n\n\n\nGo to Power Coupons → Settings in your WordPress admin.\n\n\n\nClick on the Loyalty Rewards tab (in the settings navigation).\n\n\n\nUnder the General sub-tab, toggle Enable Loyalty Rewards to ON.\n\n\n\nThe setting saves automatically. Once enabled, the entire credits system becomes active.\n\n\n\n\n\n\n\n\nWhen Loyalty Rewards is disabled, all earning, redemption, and frontend displays are turned off. Customer balances are preserved and will be available when re-enabled.\n\n\n\nSettings Overview\n\n\n\nLoyalty Rewards settings are organized into three sub-tabs under Power Coupons → Settings → Loyalty Rewards: General, Earning, and Redemption.\n\n\n\nGeneral Settings\n\n\n\n\nEnable Loyalty Rewards – Master toggle for the entire feature. When OFF, no credits are earned or redeemed. Default: OFF.\n\n\n\nEnable Credits Expiry – When ON, earned credits expire after the configured period. Default: OFF.\n\n\n\nExpiry Period (Days) – Number of days after which earned credits expire. Minimum: 1. Default: 365.\n\n\n\nExpiry Notice (Days Before) – How many days before expiry to send a warning email to the customer. Must be less than the expiry period. Default: 30.\n\n\n\nShow on Product Page – Display \"Earn X Credits\" message on single product pages. Default: ON.\n\n\n\nShow on Cart Page – Display earning message and redemption widget on the cart page. Default: ON.\n\n\n\nShow on Checkout Page – Display earning message and redemption widget on checkout. Default: ON.\n\n\n\n\nEarning Settings\n\n\n\n\nDefault Earn Rate – Fallback credits per currency unit when no campaign matches. For example, 1.0 means the customer earns 1 credit per $1 spent. Default: 1.0.\n\n\n\nRound Credits – How to round fractional credits: Round to Nearest, Round Down (floor), or Round Up (ceil). Default: Round to Nearest.\n\n\n\nEarning Applies To – Calculate credits based on Subtotal (before tax and shipping) or Total (after tax and shipping). Default: Subtotal.\n\n\n\nExclude Sale Items – When ON, products on sale do not earn credits. Default: OFF.\n\n\n\nExclude Couponed Orders – When ON, orders that use a coupon do not earn credits (unless the coupon has a custom earning override). Default: OFF.\n\n\n\n\nRedemption Settings\n\n\n\n\nRedemption Mode – Choose how customers redeem credits:\nFull Credits – Customers must redeem their entire credit balance at once.\nMax Limit – Customers can choose how many credits to redeem, up to a maximum cap.\n\n\n\nMax Credits per Order – Cap per order when using Max Limit mode. Set to 0 for no limit. Default: 0.\n\n\n\nRedemption Ratio – How many credits equal $1 of discount. Example: 100 means 100 credits = $1 discount. Default: 100.\n\n\n\nMaximum Discount Type – Cap the discount from credits: No Limit, Fixed Amount, or Percentage of Cart Total. Default: No Limit.\n\n\n\nMaximum Discount Value – The limit amount (when type is Fixed or Percentage). Set to 0 for no limit. Default: 0.\n\n\n\nCombine with Coupons – Allow credits to be used alongside regular WooCommerce coupons. When OFF, customers must choose one or the other. Default: ON.\n\n\n\n\nEarning Campaigns\n\n\n\nCampaigns define how and when customers earn credits. You can create multiple campaigns with different rules, and the system automatically picks the best-matching one based on priority.\n\n\n\nAccessing Campaigns\n\n\n\nGo to Power Coupons → Loyalty Rewards in the WordPress admin sidebar. This opens the campaigns management page.\n\n\n\n\n\n\n\nCampaign Types (Action Types)\n\n\n\n\nOrder Earning – Credits based on order amount. Most common type. Supports fixed, per-currency, and percentage earn types.\n\n\n\nSignup Bonus – One-time fixed credit bonus when a new customer creates an account.\n\n\n\nProduct Review – Credits awarded when a customer\'s product review is approved by admin. Each product can only earn review credits once per customer.\n\n\n\n\nEarn Types (for Order Earning Campaigns)\n\n\n\nWhen the action type is Order Earning, you choose how credits are calculated:\n\n\n\n\nFixed – A flat number of credits per order, regardless of order total. Example: Earn Value = 50 → Customer gets 50 credits on every qualifying order.\n\n\n\nPer Currency Unit – Credits multiplied by the order amount. Example: Earn Value = 2 → A $75 order earns 150 credits (75 x 2).\n\n\n\nPercentage – Credits as a percentage of the order amount. Example: Earn Value = 10 → A $75 order earns 7.5 credits (10{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} of 75).\n\n\n\n\nCampaign Conditions\n\n\n\nCampaigns can have optional conditions to control when they apply:\n\n\n\n\nMinimum Order Amount – The order must meet a minimum subtotal/total.\n\n\n\nMaximum Order Amount – The order must not exceed this amount.\n\n\n\nSpecific Products – Only orders containing specific products qualify.\n\n\n\nSpecific Categories – Only orders containing products from specific categories qualify.\n\n\n\nUser Roles – Only specific user roles (e.g., Wholesale, VIP) qualify.\n\n\n\n\n\n\n\n\n\n\n\n\nCampaign Fields Reference\n\n\n\n\nCampaign Name – A descriptive name for the campaign (e.g., \"Double Credits on Electronics\").\n\n\n\nAction Type – Order Earning, Signup Bonus, or Product Review.\n\n\n\nEarn Type – Fixed, Per Currency Unit, or Percentage (for Order Earning only).\n\n\n\nEarn Value – The numeric value used for credit calculation.\n\n\n\nPriority – When multiple campaigns match, the one with the highest priority (lowest number) wins. Default: 10.\n\n\n\nStatus – Active or Inactive. Inactive campaigns are ignored during matching.\n\n\n\n\nHow Campaign Matching Works\n\n\n\nWhen an order is completed, the system evaluates all active campaigns in priority order (lowest number first). The first campaign whose conditions match the order is used. If no campaign matches, the Default Earn Rate from Earning Settings is used as a fallback.\n\n\n\nHow Credits Are Earned\n\n\n\nOrder Earning Flow\n\n\n\n\nCustomer places an order.\n\n\n\nWhen the order status changes to Completed, the system evaluates active campaigns.\n\n\n\nThe best-matching campaign (by priority) determines the credit amount.\n\n\n\nCredits are added to the customer\'s balance.\n\n\n\nA log entry is created in the credit history.\n\n\n\n\nWhat happens if an order is refunded? If an order is fully or partially refunded, the credits earned from that order are automatically deducted from the customer\'s balance. A \"Pending Refund\" entry appears in the credit history until the refund is processed.\n\n\n\nSignup Bonus\n\n\n\nWhen a Signup Bonus campaign is active, new customers who create an account receive a one-time fixed credit bonus. The bonus is awarded immediately upon registration.\n\n\n\nProduct Review Credits\n\n\n\nWhen a Product Review campaign is active, customers earn credits when their product review is approved by an admin. Each product can only earn review credits once per customer to prevent abuse.\n\n\n\nCoupon Overrides on Earning\n\n\n\nIndividual WooCommerce coupons can override the default earning behavior. When editing a coupon, you can set a custom earning rate that applies when that coupon is used, even if \"Exclude Couponed Orders\" is enabled in settings.\n\n\n\nCredit Redemption\n\n\n\nCustomers can redeem their earned credits for discounts on future orders. The redemption widget appears on the cart and checkout pages (when enabled in General Settings).\n\n\n\nFull Credits Mode\n\n\n\nIn this mode, customers redeem their entire credit balance at once. A single \"Apply Credits\" button is shown. The discount is calculated as: Credits ÷ Redemption Ratio = Discount Amount.\n\n\n\n\n\n\n\nMax Limit Mode\n\n\n\nIn this mode, customers can choose how many credits to redeem via an input field, up to the configured maximum. This gives customers flexibility to save credits for larger purchases.\n\n\n\nFrontend Display\n\n\n\nLoyalty Rewards adds several customer-facing elements throughout your store:\n\n\n\nProduct Page\n\n\n\nShows an \"Earn X Credits\" message on single product pages, letting customers know how many credits they\'ll earn by purchasing the product.\n\n\n\n\n\n\n\nCart Page\n\n\n\nDisplays the earning message (how many credits will be earned for the current cart) and the credit redemption widget where customers can apply their credits.\n\n\n\nCheckout Page\n\n\n\nSame as the cart page – shows earning information and the redemption widget for applying credits at checkout.\n\n\n\nThank You / Order Confirmation\n\n\n\nAfter a successful purchase, the order confirmation page shows how many credits were earned from the order.\n\n\n\nMy Account → My Credits\n\n\n\nA dedicated \"My Credits\" tab is added to the WooCommerce My Account page, featuring:\n\n\n\n\nSummary Cards – Show the customer\'s total credit balance, total earned, total redeemed, and credits expiring soon.\n\n\n\nCredit History Table – A detailed log of all credit transactions (earned, redeemed, expired, adjusted) with dates, amounts, and notes.\n\n\n\n\n\n\n\n\nEmail Notifications\n\n\n\nThe system sends email notifications for credit-related events, including credits earned on order completion and credit expiry warnings (sent the configured number of days before expiry).\n\n\n\nAdmin Management\n\n\n\nCampaigns List\n\n\n\nThe Power Coupons → Loyalty Rewards page shows all campaigns in a table with columns for Campaign Name, Action Type, Earn Type, Earn Value, Priority, Status, and Actions (Edit, Clone, Delete). You can toggle campaigns active/inactive with the status switch.\n\n\n\nCredits History / Logs\n\n\n\nThe Logs page provides a complete audit trail of all credit transactions across all customers. Each entry shows the customer, transaction type (earned, redeemed, expired, adjusted), amount, date, and related order or campaign.\n\n\n\n\n\n\n\nFiltering the Logs: You can filter the log by date range, customer, transaction type, and campaign to quickly find specific entries.\n\n\n\nManual Credit Adjustments\n\n\n\nAdmins can manually add or deduct credits from any customer\'s balance. This is useful for:\n\n\n\n\nCompensating a customer for a service issue\n\n\n\nRunning a special promotion with bonus credits\n\n\n\nCorrecting an error in earned credits\n\n\n\n\nManual adjustments are logged in the credit history with an \"Adjustment\" type and an optional admin note.\n\n\n\nText Customization\n\n\n\nAll customer-facing text strings can be customized under Power Coupons → Settings → Text Customization → Loyalty Rewards sub-tab.\n\n\n\nAvailable Customizations\n\n\n\n\nProduct page earning message\n\n\n\nCart/Checkout earning message\n\n\n\nRedemption widget labels and button text\n\n\n\nMy Account credits page headings\n\n\n\nOrder confirmation earning message\n\n\n\n\n\n\n\n\nPlaceholder Reference\n\n\n\nThe following placeholders can be used in text customization fields:\n\n\n\n\n{credits} – The number of credits (earned or available)\n\n\n\n{credits_value} – The monetary value of the credits\n\n\n\n{balance} – The customer\'s current credit balance\n\n\n\n{expiry_date} – The date when credits will expire\n\n\n\n\nExample Setups\n\n\n\nExample 1: Simple Loyalty Program\n\n\n\nA straightforward setup where every customer earns credits on every order:\n\n\n\n\nEnable Loyalty Rewards in General Settings.\n\n\n\nSet the Default Earn Rate to 1.0 (1 credit per $1 spent).\n\n\n\nSet the Redemption Ratio to 100 (100 credits = $1 discount).\n\n\n\nUse Full Credits redemption mode for simplicity.\n\n\n\nEnable display on Product, Cart, and Checkout pages.\n\n\n\n\nResult: A customer who spends $100 earns 100 credits, which they can redeem for a $1 discount on their next order.\n\n\n\nExample 2: Tiered Earning with Signup Bonus\n\n\n\nA more advanced setup with multiple campaigns:\n\n\n\n\nCreate a Signup Bonus campaign: 500 credits for new registrations.\n\n\n\nCreate an Order Earning campaign for orders over $100: Per Currency Unit, Earn Value = 3 (triple credits), Priority = 1.\n\n\n\nCreate a default Order Earning campaign with no conditions: Per Currency Unit, Earn Value = 1, Priority = 10.\n\n\n\nCreate a Product Review campaign: 50 credits per approved review.\n\n\n\nSet Redemption Mode to Max Limit with Max Credits per Order = 500.\n\n\n\n\nResult: New customers get 500 bonus credits. Orders over $100 earn triple credits. All other orders earn standard credits. Customers can also earn 50 credits per product review. They can redeem up to 500 credits per order.\";s:3:\"url\";s:68:\"https://cartflows.com/docs/how-to-use-loyalty-rewards-store-credits/\";s:4:\"slug\";s:40:\"how-to-use-loyalty-rewards-store-credits\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-03-27T12:01:41+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"power-coupons\";}}i:21;O:8:\"stdClass\":8:{s:2:\"id\";i:68793;s:5:\"title\";s:22:\"How to Use BOGO Offers\";s:7:\"content\";s:10046:\"BOGO (Buy One Get One) Offers is a PRO feature in Power Coupons for WooCommerce that lets you create intelligent promotional offers to drive sales. With BOGO, you can reward customers with free or discounted products based on what they buy or how much they spend.\n\n\n\nKey highlights:\n\n\n\n\n6 pre-built offer types covering quantity-based and spend-based promotions\n\n\n\nChoose reward type: free product, percentage discount, or fixed amount discount\n\n\n\nAuto-apply offers or require a coupon code\n\n\n\nTarget any product or specific products only\n\n\n\nCart progress bar for spend-based offers to encourage customers to spend more\n\n\n\nVariable product support – customers can select size, color, etc. when claiming gifts\n\n\n\n\nRequirements: Both the free Power Coupons plugin and the Power Coupons PRO plugin must be installed and active for BOGO offers to work.\n\n\n\nAccessing BOGO Offers\n\n\n\nNavigate to your WordPress admin dashboard and go to:\n\n\n\nPower Coupons → BOGO Offers\n\n\n\nYou can also access it from the top navigation tabs on the Power Coupons settings page by clicking the BOGO Offers tab.\n\n\n\n\n\n\n\nBOGO Offer Types\n\n\n\nWhen you click \"+ Create New Offer\", you will see 6 pre-built offer type templates to choose from. These are divided into two categories:\n\n\n\n\n\n\n\nQuantity-Based Offers\n\n\n\nThese offers are triggered when the customer adds a specific number of qualifying products to their cart.\n\n\n\n\nBuy X Get X Free – Give the same product free when customers buy X quantity. For example, \"Buy 2 T-shirts, get 1 T-shirt free.\"\n\n\n\nBuy X Get Y – Offer a different product free with a qualifying purchase. For example, \"Buy 3 Eggs, get 1 Honey free.\"\n\n\n\nBuy X Get Y at X{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} Off – Give a discounted product when X is purchased. For example, \"Buy 2 Shirts, get 1 Pair of Pants at 50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} off.\"\n\n\n\n\nSpend-Based Offers\n\n\n\nThese offers are triggered when the customer\'s cart total reaches a minimum spend amount.\n\n\n\n\nSpend $X Get Y for Free – Offer a free product when the cart reaches a minimum value. For example, \"Spend $100, get a free Gift Box.\"\n\n\n\nSpend $X Get Y at X{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} Off – Unlock a discounted product after spending a minimum amount. For example, \"Spend $75, get a Premium Case at 30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} off.\"\n\n\n\nSpend $X Get Free Shipping – Enable free shipping when the cart total reaches a threshold. For example, \"Spend $50 and get free shipping on your order.\"\n\n\n\n\nCreating a BOGO Offer\n\n\n\nThe offer creation process uses a multi-step wizard with 3 tabs (or 4 tabs for spend-based offers). Here is a walkthrough of each step:\n\n\n\nStep 1: Basic Settings\n\n\n\nAfter selecting an offer type, you will be taken to the Basic Settings tab.\n\n\n\n\n\n\n\n\nOffer Name (Required) – A descriptive name for your offer. This name is displayed to customers in the cart summary when the offer is applied.\n\n\n\nDescription (Optional) – An internal description to help you identify the offer\'s purpose.\n\n\n\nActivate Offer (Required) – Choose how the offer is triggered:Automatically – The offer applies automatically when the customer\'s cart meets the conditions. This is the default option.Using Coupon Code – The customer must enter a specific coupon code to activate the offer.\n\n\n\n\nClick \"Save &amp; Continue\" to proceed to the next step.\n\n\n\nStep 2: Offer Conditions\n\n\n\nThis tab defines the specific conditions and discount details for your offer.\n\n\n\n\n\n\n\nDiscount Type – Choose one of three discount types:\n\n\n\n\nFree – The reward product is completely free (100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} discount)\n\n\n\nPercentage – A percentage discount is applied to the reward product (e.g., 50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} off)\n\n\n\nFixed Amount – A fixed dollar amount is deducted from the reward product price (e.g., $5 off)\n\n\n\n\nFor Quantity-Based Offers:\n\n\n\n\nBuy Quantity – The number of qualifying products the customer must add to their cart (minimum: 1)\n\n\n\nGet Quantity – The number of reward products the customer will receive (minimum: 1)\n\n\n\n\nFor Spend-Based Offers:\n\n\n\n\nMinimum Spend Amount – The minimum cart subtotal required to trigger the offer\n\n\n\nGet Quantity – The number of reward products (not shown for \"Spend $X Get Free Shipping\")\n\n\n\n\nAdditional fields:\n\n\n\n\nDiscount Percentage – Shown when Discount Type is \"Percentage\". Enter a value between 1–100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}.\n\n\n\nFixed Discount Amount – Shown when Discount Type is \"Fixed Amount\".\n\n\n\nInclude Free Shipping – An optional checkbox to add free shipping on top of the product discount.\n\n\n\n\nStep 3: Product Selection\n\n\n\nThis tab lets you define which products trigger the offer and which products customers receive as rewards.\n\n\n\n\n\n\n\nTrigger Type (Quantity-Based Offers Only):\n\n\n\n\nAny Product – The offer triggers when the cart contains any product meeting the quantity requirement.\n\n\n\nSpecific Products – The offer only triggers when the customer buys one of the selected products.\n\n\n\n\nProducts to Buy – Use the searchable product selector to choose which products qualify for the offer. Type at least 3 characters to search. You can select multiple products.\n\n\n\nProducts to Get (Reward Products) – Select which products the customer will receive as their reward. This field is hidden for \"Buy X Get X Free\" (same product is given) and \"Spend $X Get Free Shipping\" (no product reward).\n\n\n\nUsage Limit – Optionally set a maximum number of times this offer can be redeemed across all customers. Leave empty for unlimited usage.\n\n\n\nStep 4: Cart Progress Bar (Spend-Based Offers Only)\n\n\n\nThis tab is only available for spend-based offer types. It allows you to show a progress bar on the cart/checkout page that motivates customers to spend more to unlock the offer.\n\n\n\n\n\n\n\n\nEnable Progress Bar – Toggle to enable or disable the progress bar.\n\n\n\nIcon – Choose an icon: Tag, Truck, Gift, or Percent. Default: Gift.\n\n\n\nPriority – Display order if multiple offers have progress bars. Lower numbers display first.\n\n\n\nProgress Message – Message shown before reaching the threshold. Default: \"Spend {remaining} more to unlock {coupon_name}!\" Placeholders: {remaining}, {threshold}, {coupon_name}.\n\n\n\nSuccess Message – Message shown after reaching the threshold. Default: \"You unlocked {coupon_name}!\" Placeholders: {remaining}, {coupon_name}.\n\n\n\n\nClick \"Create Offer\" (or \"Update Offer\") to save.\n\n\n\nManaging BOGO Offers\n\n\n\nThe main BOGO Offers page shows a table listing all your offers.\n\n\n\nOffers Table\n\n\n\n\n\n\n\n\nOffer Name – Clickable to edit the offer\n\n\n\nDescription – A truncated preview of the offer description\n\n\n\nOffer Type – Shows the preset type (e.g., \"Buy X Get Y\") or \"Custom\"\n\n\n\nStatus – Toggle switch to quickly enable or disable an offer\n\n\n\nActions:Preview (eye icon) – View a read-only summary of the offerEdit (pencil icon) – Open the multi-step editorClone (copy icon) – Duplicate the offer with all settingsDelete (trash icon) – Permanently remove the offer\n\n\n\n\nSearch, Bulk Actions, and Status Toggle\n\n\n\n\nUse the search bar to filter offers by name or description in real time.\n\n\n\nSelect multiple offers using checkboxes for bulk delete operations.\n\n\n\nUse the status toggle to quickly enable or disable any offer. Inactive offers remain in your list but won\'t apply to customer carts.\n\n\n\n\nOffer Preview\n\n\n\nClick the Preview (eye) icon on any offer to see a read-only summary modal displaying:\n\n\n\n\n\n\n\n\nOffer Settings – Activation method, Discount Type, Discount Value\n\n\n\nConditions – Buy Quantity or Minimum Spend, Get Quantity, Trigger type\n\n\n\nProducts – Products to Buy and Products to Get\n\n\n\nStatus Badge – \"Active\" (green) or \"Inactive\" (gray)\n\n\n\nOffer Type Badge – Displays the preset type name\n\n\n\n\nHow BOGO Offers Work on the Frontend\n\n\n\nOnce an offer is active, here is what your customers will experience:\n\n\n\nCart and Checkout Notifications\n\n\n\nWhen a customer\'s cart meets the BOGO offer conditions, a notification appears on the cart and checkout pages:\n\n\n\n\n\n\n\n\nProduct image thumbnail of the reward product\n\n\n\nOffer name and description\n\n\n\nA status badge showing \"Available Offer\" (blue) or \"Offer Applied\" (green)\n\n\n\nAn \"Apply Offer\" button for auto-apply offers, or instructions to enter the coupon code\n\n\n\nOnce applied, the text changes to \"This offer has been applied to your cart\"\n\n\n\n\nCart Progress Bar (Spend-Based Offers)\n\n\n\nIf the Cart Progress Bar is enabled for a spend-based offer, customers see a visual progress indicator showing:\n\n\n\n\nHow much more they need to spend to unlock the offer\n\n\n\nA progress bar that fills as the cart total increases\n\n\n\nThe configured icon (Tag, Truck, Gift, or Percent)\n\n\n\nOnce the threshold is reached, the Success Message is displayed\n\n\n\n\nImportant Notes\n\n\n\n\nBOGO offers are separate from regular coupons. They do not appear in the standard WooCommerce coupon list or the Power Coupons coupon drawer.\n\n\n\nBoth plugins required. The free Power Coupons plugin and the Power Coupons PRO plugin must both be installed and activated.\n\n\n\nOffer stacking. Multiple BOGO offers can be active simultaneously. Each offer is evaluated independently.\n\n\n\nCoupon code mode. When \"Using Coupon Code\" is selected, a WooCommerce coupon is automatically created and linked to the BOGO offer.\n\n\n\nUsage limits. If a usage limit is set, the offer stops being available once the total redemption count reaches the limit.\n\n\n\nCloning offers. Use the Clone action to quickly duplicate an existing offer and modify it for similar promotions.\n\n\n\n\nExample Use Cases\n\n\n\nClearance Sale\n\n\n\nCreate a \"Buy X Get X Free\" offer targeting clearance products. Set Buy Quantity to 1 and Get Quantity to 1 so customers get a second item free when they buy one.\n\n\n\nCross-Sell Promotion\n\n\n\nUse \"Buy X Get Y\" to offer a complementary product free. For example, buy a Phone Case and get a Screen Protector free.\n\n\n\nTiered Spend Incentive\n\n\n\nCreate multiple spend-based offers with different thresholds and enable the Cart Progress Bar on each. For example: Spend $50 for 10{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} off an accessory, Spend $100 for a free gift, Spend $150 for free shipping.\n\n\n\nLimited-Time Free Gift\n\n\n\nUse \"Spend $X Get Y for Free\" with a usage limit to offer the first 100 customers a free gift when they spend over $75.\";s:3:\"url\";s:50:\"https://cartflows.com/docs/how-to-use-bogo-offers/\";s:4:\"slug\";s:22:\"how-to-use-bogo-offers\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-03-27T11:20:23+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"power-coupons\";}}i:22;O:8:\"stdClass\":8:{s:2:\"id\";i:67725;s:5:\"title\";s:52:\"Email/Domain Blacklist for Cart Abandonment Recovery\";s:7:\"content\";s:3086:\"The Email/Domain Blacklist feature in Cart Abandonment Recovery Pro allows store owners to prevent recovery messages (email, SMS, WhatsApp) from being sent to specific email addresses or entire domains. Blacklisted carts are excluded from messaging while the cart record remains in the database.\n\n\n\nThis feature ensures that recovery messages are suppressed for unwanted or disposable addresses without affecting cart visibility or checkout functionality.\n\n\n\n1. Where to Find It\n\n\n\nAdmin Path: WooCommerce &gt; Cart Abandonment Recovery &gt; Settings &gt; Blacklist\n\n\n\n\n\n\n\nThis section is available only in the Pro version with an active license.\n\n\n\n2. Settings\n\n\n\n1. Enable Blacklist (Toggle)\n\n\n\n\nDefault: Off\n\n\n\nTurns the blacklist feature on or off.\n\n\n\nWhen disabled, no blacklist checks are performed, even if entries exist.\n\n\n\n\n2. Blacklisted Emails &amp; Domains (Textarea with Dropdown)\n\n\n\n\nDefault: Empty\n\n\n\nMultiline input; each line represents one blacklist rule.\n\n\n\nIncludes a searchable dropdown of 5,100+ known disposable email domains (e.g., tempmail.com, 10minutemail.com) that can be added with a click.\n\n\n\n\n3. How to Add Entries\n\n\n\nFormats Supported:\n\n\n\n\nExact Email Address\n\nExample: john@example.com\n\n\n\nBlocks only this specific email.\n\n\n\n\n\nDomain Wildcard\n\nExample: *tempmail.com\n\n\n\nBlocks all emails from @tempmail.com.\n\n\n\n\n\n\nRules:\n\n\n\n\nOne entry per line.\n\n\n\nCase-insensitive matching.\n\n\n\nDomain wildcard must start with an asterisk (*).\n\n\n\n\n4. How It Works\n\n\n\n1. Automatic Blacklist Check (On Cart Abandonment)\n\n\n\n\nCustomer abandons cart and enters email.\n\n\n\nPlugin saves the abandonment record.\n\n\n\nBlacklist check runs automatically.\n\n\n\nCustomer email/domain is compared against blacklist entries.\n\n\n\nIf a match is found, cart status is set to \"Blacklisted.\"\n\n\n\nRecovery message scheduler skips blacklisted carts — no emails, SMS, or WhatsApp messages are sent.\n\n\n\n\n2. Manual Blacklisting from Admin Dashboard\n\n\n\n\nGo to abandoned cart details page.\n\n\n\nClick Blacklist button.\n\n\n\nCart status updates to \"Blacklisted.\"\n\n\n\nCustomer email is added to Blacklisted Emails &amp; Domains list.\n\n\n\n\n\n\n\n\n3. Removing from Blacklist (Whitelisting)\n\n\n\n\nGo to blacklisted cart details page.\n\n\n\nClick Whitelist button.\n\n\n\nCart status restores to \"Abandoned.\"\n\n\n\nCustomer email is removed from blacklist.\n\n\n\n\n\n\n\n\n5. What Gets Blocked\n\n\n\nWhen a cart is blacklisted, the following are suppressed:\n\n\n\n\nRecovery Emails\n\n\n\nRecovery SMS messages\n\n\n\nRecovery WhatsApp messages\n\n\n\n\nAll three channels respect the blacklist status.\n\n\n\n6. What Does NOT Happen\n\n\n\n\nCart data is not deleted; blacklisted carts remain visible.\n\n\n\nCustomers can still complete purchases.\n\n\n\nAlready-sent messages are unaffected; blacklist only applies to future messages.\n\n\n\nWooCommerce checkout and order creation are unaffected.\n\n\n\n\n7. Disposable/Temporary Email Domain Suggestions\n\n\n\nThe textarea includes a searchable dropdown with 5,100+ pre-configured temporary email domains. These suggestions are not blacklisted by default; the store owner must explicitly add them.\n\n\n\n8. Frequently Asked Questions\";s:3:\"url\";s:80:\"https://cartflows.com/docs/email-domain-blacklist-for-cart-abandonment-recovery/\";s:4:\"slug\";s:52:\"email-domain-blacklist-for-cart-abandonment-recovery\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-03-05T22:44:16+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:23;O:8:\"stdClass\":8:{s:2:\"id\";i:67713;s:5:\"title\";s:50:\"WhatsApp Integration for Cart Abandonment Recovery\";s:7:\"content\";s:11639:\"The WhatsApp Followup feature in Cart Abandonment Recovery Pro enables store owners to automatically send WhatsApp messages to customers who abandon their carts at checkout. Messages are delivered using the Meta (Facebook) WhatsApp Cloud API and pre-approved templates created in Meta Business Manager.\n\n\n\nThis feature allows multiple follow-up templates with customizable delays, discount coupons, and targeting conditions. A global integration settings section and per-template configuration system provide full control over message automation.\n\n\n\nHow It Works - The Big Picture\n\n\n\nBefore diving into setup, here\'s what you\'re building and why each piece matters:\n\n\n\nComponentWhat It DoesMeta (WhatsApp Cloud API)The platform that actually delivers WhatsApp messages to your customers. You need a Meta Business account to use it.Message TemplatesPre-written message formats that Meta approves before you can send them. You create these in Meta, then use them in Cart Abandonment Recovery.Cart Abandonment Recovery​Cart Abandonment Pro PluginDetects when someone leaves without buying, and triggers your approved WhatsApp templates automatically.Customer Phone ConsentWhatsApp legally requires customers to opt in before you message them. This is captured at checkout.\n\n\n\nTime EstimateThe setup has two sides: (1) Setting up your Meta/WhatsApp account and creating message templates, and (2) Connecting those templates to Cart Abandonment RecoCart Abandonment Recovery​. Plan for 30–60 minutes for your first-time setup.\n\n\n\n1. Prerequisites\n\n\n\nMake sure you have all of the following ready. Missing any one of these will block the setup.\n\n\n\n\nCart Abandonment Recovery Pro - an active Pro license is required. The WhatsApp feature is not available in the free version.\n\n\n\nMeta (Facebook) Business Account - if you don\'t have one, create it at business.facebook.com.\n\n\n\nWhatsApp Business Account - must be linked to your Meta Business account.\n\n\n\nA verified phone number - added to your WhatsApp Business account. This is the sender number your customers will see.\n\n\n\nAt least one approved message template - you\'ll create this in Meta Business Manager. Templates must be approved before Cart Abandonment Recovery can use them.\n\n\n\nPhone Number and Phone Consent fields - must be enabled on your WooCommerce checkout page (covered in Step 3).\n\n\n\n\n2. Setting Up Your Meta WhatsApp Account\n\n\n\nThis is the most technical part of the setup. Follow each sub-step carefully - you\'ll be collecting three pieces of information you\'ll need later: a Phone Number ID, a WhatsApp Business Account ID, and an Access Token.\n\n\n\n2A. Create a Meta Developer App\n\n\n\n\nLog in at Meta for Developers.\n\n\n\nNavigate to My Apps &gt; Create App.\n\n\n\nSelect Business as the app type.\n\n\n\nGive your app a name (e.g., \"My Store WhatsApp\"), then click Create App.\n\n\n\nAfter creation, click Add Product &gt; WhatsApp &gt; Set Up.\n\n\n\n\n2B. Retrieve Phone Number ID and WhatsApp Business Account ID\n\n\n\n\nGo to WhatsApp &gt; Getting Started in your app.\n\n\n\nCopy and save somewhere safe the Phone Number ID and WhatsApp Business Account ID.\n\n\n\n\n2C. Create a Permanent Access Token\n\n\n\nImportant\nWhy \"permanent\"? Temporary tokens expire and will break your WhatsApp messages silently. Always generate a token set to \"Never\" expire.\n\n\n\n\n\nVisit Meta Business Suite &gt; Settings &gt; Business Settings &gt; Users &gt; System Users.\n\n\n\nCreate a new system user (e.g., “WhatsApp Bot”) with Admin role.\n\n\n\nAdd your app as an asset with Full Control.\n\n\n\nGenerate a new token with permissions: whatsapp_business_messaging and whatsapp_business_management.\n\n\n\nSet expiration to Never and copy the token immediately - Meta only shows it once. Store it securely.\n\n\n\n\n2D. Create a WhatsApp Message Template\n\n\n\nMessage templates are the pre-approved messages Meta allows you to send. You must create and get at least one approved before Cart Abandonment Recovery can send any messages.\n\n\n\n\nGo to Meta Business Suite &gt; Account Tools &gt; Message Templates (or search for \"Message Templates\" in the search bar).\n\n\n\nClick Create Template, choose Marketing (for promotional messages with discounts) or Utility (for transactional/recovery messages).\n\n\n\nAdd a name (e.g., cart_recovery_reminder) and select the language.\n\n\n\nBuild your template:\n\nHeader (optional): A short title or image shown at the top of the message.\n\n\n\nBody (required): The main message. Use {{1}}, {{2}} etc. as placeholders for dynamic content like customer name, cart total, or recovery link.\n\n\n\nButtons (optional): You can add a \"Complete Purchase\" button that links to the cart recovery URL.\n\n\n\n\n\nSubmit for approval. Approval usually takes a few minutes to a few hours.\n\n\n\n\nImportant\nOnly Approved templates will appear in Cart Abandonment Recovery. If your template shows as Pending or Rejected, it won\'t show up in the plugin dropdown. Check your template status in Meta Business Manager before continuing.\n\n\n\n\n3. Enable Phone &amp; Consent Fields on Your Checkout\n\n\n\nWhatsApp messages can only be sent to customers who provided their phone number AND explicitly agreed to receive WhatsApp messages at checkout. This is a legal requirement.\n\n\n\n1. In your WordPress admin, go to WooCommerce &gt; Cart Abandonment Recovery &gt; Settings.2. Find the GDPR options and make sure both Phone Number and Phone Consent (GDPR opt-in checkbox) are enabled.\n\n\n\n\n\n\n\n3. These fields will now appear on your Checkout page - customers must fill them in and check the box for WhatsApp messages to be sent to them.\n\n\n\n\n\n\n\nNote:\nCustomers who don\'t check the consent box will never receive WhatsApp messages - even if they provide a phone number. This is by design to stay compliant with messaging regulations.\n\n\n\n\n4. Configure Global WhatsApp Settings\n\n\n\nNow you\'ll connect the Meta credentials you collected earlier to the Cart Abandonment Recovery plugin.\n\n\n\nNavigate to: WooCommerce &gt; Cart Abandonment Recovery &gt; Settings &gt; Integrations &gt; WhatsApp\n\n\n\n\n\n\n\n1. Enable WhatsApp - Toggle to activate the feature (default: off).2. Phone Number ID - Enter the Phone Number ID from Meta Developer App you saved in the earlier step.3. WhatsApp Business Account ID - Enter your WABA ID from Meta Developer App you saved in the earlier step.4. Access Token - Enter the permanent token created earlier.5. WhatsApp Template - Select an approved template from Meta. Use the refresh button to fetch updates.6. Map Variables - for Header and Body placeholders (e.g., {{1}}, {{2}}), select which Cart Abandonment Recovery data should fill each one:\n\n\n\nAvailable VariableWhat It InsertsCustomer First NameThe first name from the checkout billing fieldsCustomer Last NameThe last name from the checkout billing fieldsCart TotalThe total value of the abandoned cartCoupon CodeA discount coupon if configured on the templateCart Recovery URLThe unique link that restores the customer\'s cart\n\n\n\n7. Test WhatsApp Message - use this to send a test message to your own phone number and verify the integration works before going live.\n\n\n\n5. WhatsApp Follow-up Templates\n\n\n\nThis is where you define when and how many WhatsApp messages to send after a cart is abandoned. You can create multiple templates with different time delays - for example, a gentle reminder at 1 hour and a discount offer at 24 hours.\n\n\n\nNavigate to: WooCommerce &gt; Cart Abandonment Recovery &gt; Follow Up Templates &gt; WhatsApp\n\n\n\n\n\n\n\n1. Click Create New Template to create your first followup.2. Template Name - this is just an internal label for your reference (e.g., \"1-hour reminder\").3. WhatsApp Template - choose an approved Meta template from the dropdown.4. Map Variables - same as in Step 4: assign Cart Abandonment Recovery data to each placeholder in the template.5. Send This Message  - choose how long after abandonment the message should be sent (e.g., 60 minutes, 24 hours).6. Create Coupon Code (optional) - attach a discount coupon to this template if you want to incentivize purchase.7. Activate Template - turn this on when you\'re ready for it to go live. Inactive templates are saved but don\'t send.8. Repeat to add more followup messages at different delays.\n\n\n\n\n\n\n\n6. Test Before Going Live\n\n\n\nBefore real customers see your messages, test the full flow:\n\n\n\n\nOpen your store in an incognito/private browser window.\n\n\n\nAdd a product to cart and go to Checkout page.\n\n\n\nFill in your own name, email, and real phone number (in international format, e.g., +919876543210).\n\n\n\nCheck the WhatsApp consent checkbox.\n\n\n\nClose the browser tab without completing the purchase.\n\n\n\nWait for the time delay you set on your first template to pass.\n\n\n\nCheck your WhatsApp - you should receive the message.\n\n\n\n\nPhone Format:\nPhone number format matters! The number must include the country code (e.g., +91 for India, +1 for US). Cart Abandonment Recovery tries to auto-add this based on billing country, but asking customers to enter their full number including country code is safest.\n\n\n\n\n7. Unsubscribe / Opt-Out\n\n\n\nCustomers who unsubscribe from one channel (WhatsApp, SMS, or email) are unsubscribed from all recovery messages for that abandoned cart session. You don\'t need to manage this separately per channel.\n\n\n\n8. Troubleshooting - Common Problems &amp; Fixes\n\n\n\n8A: Template dropdown is empty\n\n\n\n\nCheck credentials - Make sure Phone Number ID, Business Account ID, and Access Token are all saved in Settings.\n\n\n\nClick Refresh - Use the refresh button next to the template dropdown to fetch from Meta.\n\n\n\nCheck template status - Only templates with Approved status in Meta Business Manager appear here. Pending or Rejected templates are excluded.\n\n\n\n\n8B:Test message works, but live messages aren\'t sending\n\n\n\n\nToggle check - Confirm the WhatsApp Enable toggle is turned ON in global settings.\n\n\n\nTemplate activation - Make sure at least one followup template has \"Activate Template\" turned on.\n\n\n\nCustomer consent - The customer must have checked the phone consent checkbox at checkout. Without it, no message is sent - even if a phone number was entered.\n\n\n\n\n8C: Customer didn\'t receive the message\n\n\n\n\nPhone number format - Must include country code (e.g., +91XXXXXXXXXX, +1XXXXXXXXXX). Missing the country code will cause silent delivery failure.\n\n\n\nNo consent given - Customer didn\'t check the consent checkbox at checkout.\n\n\n\nWhatsApp not installed - The customer\'s phone number must be registered and active on WhatsApp. If they don\'t have the app, delivery fails.\n\n\n\nTemplate status changed - If the Meta template was edited or rejected after being selected in the plugin, messages will stop working. Re-check the template\'s status in Meta.\n\n\n\n\n8D: Access token expired or became invalid\n\n\n\n\nGo back to Meta Business Suite &gt; Settings &gt; Business Settings &gt; Users &gt; System Users and regenerate a new token with the same permissions.\n\n\n\nUpdate the token in Cart Abandonment Recovery &gt; Integrations &gt; WhatsApp and save.\n\n\n\nSend a test message to confirm it works again.\n\n\n\n\n9. Frequently Asked Questions\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWhat You Need to DoWhere to GoEnable WhatsApp &amp; enter credentialsWooCommerce &gt; Cart Abandonment Recovery &gt; Settings &gt; Integrations &gt; WhatsAppCreate / manage followup templatesWooCommerce &gt; Cart Abandonment Recovery &gt; WhatsAppEnable phone &amp; consent fieldsWooCommerce &gt; Cart Abandonment Recovery &gt; SettingsCreate / manage message templatesMeta Business Suite &gt; Account Tools &gt; Message TemplatesGenerate / renew access tokenMeta Business Suite &gt; Settings &gt; System UsersFind Phone Number ID &amp; WABA IDMeta Developer App &gt; WhatsApp &gt; Getting Started\";s:3:\"url\";s:78:\"https://cartflows.com/docs/whatsapp-integration-for-cart-abandonment-recovery/\";s:4:\"slug\";s:50:\"whatsapp-integration-for-cart-abandonment-recovery\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-03-05T22:50:05+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:24;O:8:\"stdClass\":8:{s:2:\"id\";i:67322;s:5:\"title\";s:38:\"How to Edit and Customise Funnel Steps\";s:7:\"content\";s:4917:\"This documentation provides an overview of the general step controls and the available settings inside each funnel step type in CartFlows.\n\n\n\nEach step includes action controls and dedicated configuration tabs depending on its function within the funnel.\n\n\n\n1. General Step Actions (Available on Every Step)\n\n\n\nOn the right side of every funnel step, you will see four action options:\n\n\n\nView StepOpens the step on the frontend to preview how it appears to users.\n\n\n\nEdit StepOpens the step inside the page builder or editor to modify its design and content.\n\n\n\nSettingsOpens the step configuration panel where you can manage products, behavior, scripts, and advanced options.\n\n\n\nMore OptionsProvides additional actions such as:\n\n\n\n\nDuplicate Step\n\n\n\nA/B Test (Pro)\n\n\n\nDelete Step\n\n\n\n\n\n\n\n\nThese options help you manage and organize your funnel efficiently.\n\n\n\nThe Settings option is where most functional customization takes place. The available tabs inside the Settings panel depend on the type of step.\n\n\n\n2. Landing Step\n\n\n\nThe Landing step is typically used to present your offer before sending users to checkout. It does not process payments. When you click Settings on a Landing step, a settings panel appears with configuration options specific to that step.\n\n\n\nSettings Tab\n\n\n\nStep SlugDefines the URL path of the landing page.\n\n\n\nCustom CSS/ScriptsAllows adding custom CSS, custom JavaScript or tracking scripts specific to this step.\n\n\n\n\n\n\n\n3. Checkout Step\n\n\n\nThe Checkout step processes payments and finalizes purchases. It includes multiple configuration tabs. Clicking Settings on the Checkout step opens several tabs that control products, checkout layout, conditional logic, and advanced behavior.\n\n\n\nProducts\n\n\n\nProductsAssign WooCommerce products to this checkout step. Here is Doc for the step by step guide.\n\n\n\nAuto Apply CouponAutomatically applies a selected coupon when customers land on the checkout page.\n\n\n\nProduct OptionsControls how products are displayed and selected at checkout. You can refer to this related Doc\n\n\n\n\n\n\n\nOrder Bumps\n\n\n\nTurn your checkout into a powerful upsell moment. Add an order bump offer directly on the checkout page and let customers add it with a single click. No friction, no redirects.\n\n\n\nIn this section, you can:\n\n\n\n\nEnable or disable the bump anytime\n\n\n\nSelect the product you want to offer\n\n\n\nCustomize the headline, description, layout, and overall design\n\n\n\n\nRefer to the Order Bump documentation for detailed setup instructions.\n\n\n\n\n\n\n\nCheckout Form\n\n\n\nDesign your checkout form to work best for your store. Improve clarity, reduce friction, and create a smoother buying experience.\n\n\n\nWith this section, you can:\n\n\n\n\nModify checkout fields (add, remove, or edit)\n\n\n\nCustomize the field layout and positioning\n\n\n\nAdjust and organize form sections\n\n\n\n\nNeed step by step guidance? Check this documentation.\n\n\n\n\n\n\n\nDynamic Offers\n\n\n\nSend customers to the right offer at the right time with rule-based conditional redirection. Show different upsell or downsell steps based on what they buy and how they behave.\n\n\n\nWith dynamic offers, you can:\n\n\n\n\nCreate multiple rule groups\n\n\n\nDefine specific conditions\n\n\n\nDynamically redirect customers to relevant upsell/downsell steps\n\n\n\n\nNeed help? Check this documentation.\n\n\n\n\n\n\n\nSettings\n\n\n\nAdvanced Section\n\n\n\nDisplay Product ImagesShows or hides product images in the order summary.\n\n\n\nEnable Cart Editing on CheckoutAllows customers to remove cart items directly on the checkout page.\n\n\n\nEnable Browser Tab AnimationAdds attention-grabbing animation to the browser tab.\n\n\n\n\n\n\n\nGeneral Section\n\n\n\nStep SlugDefines the URL path of the checkout step.\n\n\n\nCustom CSS/ScriptAdds custom CSS, tracking or custom JavaScript specific to this step.\n\n\n\n\n\n\n\n4. Thank You Step\n\n\n\nDisplayed after successful order completion. Clicking Settings opens configuration options for controlling what information is displayed and what happens after purchase.\n\n\n\nSettings\n\n\n\nOptions Section\n\n\n\nEnable Order OverviewDisplays a summary of purchased items.\n\n\n\nEnable Order DetailsShows full order breakdown.\n\n\n\nEnable Billing DetailsDisplays billing information.\n\n\n\nEnable Shipping DetailsDisplays shipping information (if applicable).\n\n\n\n\n\n\n\nAdvanced Section\n\n\n\nThank You Page TextCustomize the confirmation message shown to customers.\n\n\n\nRedirect After PurchaseRedirect customers to a different URL after the Thank You page loads.\n\n\n\n\n\n\n\nGeneral Section\n\n\n\nStep SlugDefines the URL path of the step.\n\n\n\nCustom CSS/ScriptAdd step-specific scripts or tracking code.\n\n\n\n\n\n\n\n5. Upsell/Downsell Steps\n\n\n\nThe Upsell/Downsell step allows you to offer an additional product immediately after checkout using one-click purchase functionality. When you click Settings, you can configure the offer product and its behavior.\n\n\n\nRefer to this documentation for more detail about Upsell: How to Create One-Click Upsell and Downsell Offers in CartFlows\";s:3:\"url\";s:64:\"https://cartflows.com/docs/editing-and-customising-funnel-steps/\";s:4:\"slug\";s:36:\"editing-and-customising-funnel-steps\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-08T16:03:42+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"getting-started\";}}i:25;O:8:\"stdClass\":8:{s:2:\"id\";i:67314;s:5:\"title\";s:63:\"How to Create One-Click Upsell and Downsell Offers in CartFlows\";s:7:\"content\";s:1535:\"Creating one-click upsell and downsell offers in CartFlows (Pro) allows you to present additional products to customers immediately after checkout without requiring them to re-enter payment information. This method helps increase your average order value (AOV) by giving users an easy way to accept extra offers.\n\n\n\nStep 1: Create or Edit a Funnel\n\n\n\nNavigate to CartFlows &gt; Funnels in your WordPress dashboard. Select an existing funnel or click Add New to start a fresh funnel.\n\n\n\n\n\n\n\nStep 2: Add Upsell/Downsell Step\n\n\n\nWithin your selected funnel, click Add New Step and choose Upsell or Downsell from the available step types.\n\n\n\n\n\n\n\nStep 3: Position the Step\n\n\n\nEnsure the new Upsell or Downsell step is placed after the Checkout step and before the Thank You page.\n\n\n\nStep 4: Assign Products\n\n\n\nClick on the settings icon on the upsell step. Under the Products tab, assign the specific product you want to offer for upsell or downsell.\n\n\n\n\n\n\n\n\n\n\n\nStep 5: Configure the Conditional Redirection\n\n\n\nUnder Settings Tab ,Configure the conditional redirection to direct customers who decline the upsell to either a downsell page (if applicable) or the final Thank You page.\n\n\n\n\n\n\n\nStep 6: Use a Supported Payment Gateway\n\n\n\nEnsure your WooCommerce store uses a payment gateway that supports Upsell/Downsell, to allow seamless purchases.\n\n\n\nStep 7: Save and Publish\n\n\n\nSave your changes and publish the flow. Test the upsell and downsell steps to confirm that accepting or declining the offers works correctly and updates the order.\";s:3:\"url\";s:66:\"https://cartflows.com/docs/create-oneclick-upsell-downsell-offers/\";s:4:\"slug\";s:38:\"create-oneclick-upsell-downsell-offers\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-12T20:15:51+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"getting-started\";}}i:26;O:8:\"stdClass\":8:{s:2:\"id\";i:67274;s:5:\"title\";s:34:\"How to Add Products in WooCommerce\";s:7:\"content\";s:3090:\"This documentation explains how to add products in WooCommerce using the WordPress dashboard. WooCommerce supports different product types, allowing you to sell physical products, digital items, services, and grouped products based on your store requirements.\n\n\n\nBefore You Start\n\n\n\nMake sure WooCommerce is installed and activated on your WordPress site. You also need sufficient permissions to create and manage products.\n\n\n\nAccess the Add Product Screen\n\n\n\nTo create a new product: \n\n\n\n1. o to WordPress Dashboard > Products > Add New\n\n\n\n\n\n\n\n2. Enter the product name\n\n\n\n3. Add the product description\n\n\n\n\n\n\n\nYou can now configure the product using the Product data panel.\n\n\n\nWooCommerce Product Types\n\n\n\nWooCommerce supports several product types. This documentation covers the most commonly used ones.\n\n\n\n\nSimple product\n\n\n\nGrouped product\n\n\n\nVariable product\n\n\n\nVirtual product\n\n\n\n\nAdd a Simple Product in WooCommerce\n\n\n\nA Simple product is a single product without variations. This is the most commonly used product type.\n\n\n\n\nFrom the Product data dropdown, select Simple product\n\n\n\nSet the regular price and optional sale price\n\n\n\nConfigure inventory, shipping, and tax settings if required\n\n\n\nAdd a product image and optional gallery\n\n\n\nClick Publish\n\n\n\n\n\n\n\n\nAdd a Grouped Product in WooCommerce\n\n\n\nA Grouped product lets you display multiple related products together on a single product page.\n\n\n\n\nSelect Grouped product from the Product data dropdown\n\n\n\nLeave pricing fields empty\n\n\n\nOpen the Linked Products tab\n\n\n\nSelect the products you want to include\n\n\n\nPublish the product\n\n\n\n\n\n\n\n\nAdd a Variable Product in WooCommerce\n\n\n\nA Variable product allows you to offer different variations of the same product, such as size or color.\n\n\n\nBecause variable products require additional configuration, please refer to the dedicated documentation below:\n\n\n\nHow to Add a Variable Product in WooCommercehttps://cartflows.com/docs/creating-variable-products/\n\n\n\nAdd a Virtual Product in WooCommerce\n\n\n\nA Virtual product is used for items that do not require shipping, such as services or digital offerings.\n\n\n\n\nSelect Simple product from the Product data dropdown\n\n\n\nEnable the Virtual option\n\n\n\nConfigure pricing and relevant settings\n\n\n\nAdd a product image and optional gallery\n\n\n\nPublish the product\n\n\n\n\n\n\n\n\nWhen the Virtual option is enabled, shipping related settings are automatically disabled.\n\n\n\nAdditional Product Settings\n\n\n\nDepending on the product type, you may also configure the following settings:\n\n\n\n\nInventory and stock status\n\n\n\nLinked products such as upsells and cross sells\n\n\n\nProduct categories and tags\n\n\n\nShort description shown on the product page\n\n\n\n\nPublish the Product\n\n\n\nOnce all required details are set, click Publish to make the product live. You can update or edit the product at any time from Products &gt; All Products.\n\n\n\nLearn More About WooCommerce Products\n\n\n\nFor a complete explanation of all product options and advanced configurations, refer to the official WooCommerce documentation: https://woocommerce.com/document/managing-products/add-product/\";s:3:\"url\";s:62:\"https://cartflows.com/docs/how-to-add-products-in-woocommerce/\";s:4:\"slug\";s:34:\"how-to-add-products-in-woocommerce\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-02-05T14:00:20+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:27;O:8:\"stdClass\":8:{s:2:\"id\";i:67249;s:5:\"title\";s:59:\"How to Add /Assign Products to a Checkout Step in CartFlows\";s:7:\"content\";s:2738:\"Adding or assigning products to a checkout step in CartFlows allows you to define exactly what customers will purchase during the funnel flow. You can add single or multiple products, set default selections, enable variations, and even control quantity options — all directly from the checkout step settings.\n\n\n\nStep-by-Step: Add Products to a CartFlows Checkout Step\n\n\n\nStep 1: Open the Funnel Checkout Step\n\n\n\nNavigate to CartFlows &gt; Funnels from your WordPress dashboard.\n\n\n\n\n\n\n\nOpen the funnel you want to edit and click the Edit (gear icon) on the Checkout step.\n\n\n\n\n\n\n\nStep 2: Access the Products Tab\n\n\n\nIn the checkout step editor, go to the Products tab.\n\n\n\nClick on + Add New Product to begin.\n\n\n\nStep 3: Add Products to the Checkout\n\n\n\nUse the search field to find your WooCommerce product.\n\n\n\nSelect the product and click Add.\n\n\n\n\n\n\n\nYou can repeat this process to add multiple products to the same checkout step.\n\n\n\nNot sure how to create products in WooCommerce? Check this guide.\n\n\n\nConfigure Product Options (Optional)\n\n\n\nOnce a product is added, you can further customize how it appears and behaves on the checkout page:\n\n\n\n\nVariable Products: If you’ve added a variable product, enable the Variation option to display variation choices (such as size or color) directly on the checkout page.\n\n\n\nSet Default Product: When multiple products are added, you can choose one as the default selection by enabling the radio button next to it in the Product Options section.\n\n\n\nQuantity Selector: Enable the quantity option to allow customers to adjust product quantity directly on the checkout page.\n\n\n\n\n\n\n\n\nStep 4: Save Your Changes\n\n\n\nAfter configuring your products and options, click Save Settings to apply the changes to the checkout step.\n\n\n\nAlternative Ways to Add Products to a Checkout\n\n\n\nCartFlows also provides additional methods to assign products to a checkout step:\n\n\n\nAdd Products via URL Parameter\n\n\n\nYou can dynamically add products to the checkout using a URL parameter such as:\n\n\n\nhttps:&#47;&#47;yourdomain.com/checkout-page/?wcf-add-to-cart=3&amp;wcf-qty=4\n\n\n\nThis is useful for targeted campaigns or custom links. Here is the Doc for further details\n\n\n\nAssign Product from WooCommerce Product Page\n\n\n\nFrom the WooCommerce product edit screen, use the CartFlows tab to force the product to start a specific funnel. This automatically adds the product to the checkout step when the funnel starts.\n\n\n\nImportant Notes\n\n\n\n\nIf you see the error “No product is selected”, make sure at least one product is assigned in the Backend Settings of the checkout step.\n\n\n\nFor subscription products, ensure the WooCommerce Subscriptions plugin is installed and active before assigning the product to the checkout.\";s:3:\"url\";s:86:\"https://cartflows.com/docs/how-to-add-assign-products-to-a-checkout-step-in-cartflows/\";s:4:\"slug\";s:58:\"how-to-add-assign-products-to-a-checkout-step-in-cartflows\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-12T19:41:58+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"getting-started\";}}i:28;O:8:\"stdClass\":8:{s:2:\"id\";i:67240;s:5:\"title\";s:41:\"How to Create Your First CartFlows Funnel\";s:7:\"content\";s:2800:\"Creating your first funnel with CartFlows is straightforward and helps you guide customers through a smooth buying journey. By using pre-made templates and connecting your WooCommerce products, you can quickly set up an optimized sales funnel.\n\n\n\nStep 1: Install and Activate CartFlows\n\n\n\nInstall the CartFlows plugin from your WordPress dashboard. After activation, choose your preferred page builder in the settings, such as Block Editor, Elementor or Beaver Builder, for designing your funnel steps.\n\n\n\nStep 2: Create a New Funnel\n\n\n\nNavigate to CartFlows > Dashboard and click Create New Funnel to start creating a new funnel.\n\n\n\n\n\n\n\nStep 3: Select a Template\n\n\n\nPick a pre-made template that matches your goal, such as Sales or Lead Generation. These templates typically include:\n\n\n\n\nSales Landing Page\n\n\n\nCheckout Page\n\n\n\nThank You Page\n\n\n\n\nIf you prefer full control over the structure and design, you can also create a blank funnel by choosing Start from Scratch and build each step according to your specific requirements.\n\n\n\n\n\n\n\nStep 4: Configure the Funnel Steps\n\n\n\nCustomize Each Step\n\n\n\nClick the pencil icon to edit each page using your page builder. Adjust the design to match your brand and style. \n\n\n\nCartFlows also provides Instant Layouts for a faster setup with pre-designed, conversion-focused designs. To learn how to use Instant Layouts, refer to the documentation below: https://cartflows.com/docs/cartflows-instant-layout/\n\n\n\n\n\n\n\nAdd a Product\n\n\n\nIn the Checkout step, select the WooCommerce product you want to sell and save settings\n\n\n\n\n\n\n\nConfigure Checkout Fields\n\n\n\nModify the checkout fields to suit your product. For example, remove unnecessary shipping fields for digital products.\n\n\n\n\n\n\n\nStep 5: Save and Publish\n\n\n\nOnce all steps are configured, click Publish to make your funnel live.\n\n\n\n\n\n\n\nKey Tips for Success\n\n\n\n\nKeep it Simple: Maintain a clean, concise checkout page to reduce friction.\n\n\n\nTest Everything: Test the full checkout process to ensure it works smoothly before launch.\n\n\n\n\nIncrease Conversions with Additional Offers\n\n\n\nYou can further optimize your funnel by adding post-purchase and in-checkout offers.\n\n\n\nAdd an Order Bump\n\n\n\nAn Order Bump is a small complementary offer displayed on the checkout page. It helps increase your average order value by allowing customers to add an extra product with a single click.\n\n\n\nTo learn more about creating an Order Bump, refer to this document. \n\n\n\nAdd Upsell / Downsell Offers\n\n\n\nAn Upsell is a higher-value offer shown after the initial purchase, while a Downsell is an alternative offer presented if the customer declines the upsell. These help maximize revenue without interrupting the checkout experience.\n\n\n\nTo learn more about creating one-click Upsell and Downsell offers, refer to this document.\";s:3:\"url\";s:69:\"https://cartflows.com/docs/how-to-create-your-first-cartflows-funnel/\";s:4:\"slug\";s:41:\"how-to-create-your-first-cartflows-funnel\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-12T21:02:36+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"getting-started\";}}i:29;O:8:\"stdClass\":8:{s:2:\"id\";i:67140;s:5:\"title\";s:28:\"CartFlows Advanced Analytics\";s:7:\"content\";s:5217:\"CartFlows Advanced Analytics provides detailed insights into how your funnels perform by tracking visitors, conversions, revenue, and opt-ins. It presents this data through key performance indicators (KPIs), visual charts, and structured tables, making it easier to understand funnel performance and identify areas for improvement.\n\n\n\nThe Analytics Dashboard is organised into dedicated sections that focus on different aspects of funnel performance, including Funnels, Conversions, and Opt-ins.\n\n\n\nNote\nAdvanced Analytics requires version 2.2.0 or higher of both CartFlows Free and Pro.\n\n\n\n\nHow CartFlows Advanced Analytics Works\n\n\n\nCartFlows Advanced Analytics automatically collects and organises performance data across your funnels. This data is displayed in dashboards that combine KPIs, trend charts, and detailed tables so you can review performance at both a high level and a detailed level.\n\n\n\nYou can use these insights to evaluate funnel effectiveness, understand user behaviour, and make informed decisions based on real data.\n\n\n\nAnalytics Overview\n\n\n\nThe Analytics section includes three reporting pages, each focused on a specific area of funnel performance.\n\n\n\n\nFunnel Analytics\n\n\n\nConversions Analytics\n\n\n\nOpt-in Analytics\n\n\n\n\nTogether, these pages provide a complete view of how visitors interact with your funnels and where conversions and revenue are generated.\n\n\n\nAvailable KPIs\n\n\n\nTotal VisitorsTotal number of visitors across all steps in the funnel\n\n\n\nTotal OrdersTotal number of successful orders generated by the funnel\n\n\n\nTotal RevenueCombined revenue generated across all funnel steps\n\n\n\nAverage Order ValueAverage revenue generated per order\n\n\n\nOrder Bump RevenueTotal revenue generated from order bump offers\n\n\n\nOffer RevenueCombined revenue generated from upsell and downsell offers\n\n\n\nRevenue Per VisitAverage revenue generated per visit\n\n\n\nRevenue Per Unique VisitorAverage revenue generated per unique visitor\n\n\n\nEach KPI includes a visual chart that helps you track performance trends over time.\n\n\n\n\n\n\n\nAdditional Funnel Data\n\n\n\nThe Funnel Analytics page also includes a table that displays funnel level metrics such as visits, conversions, conversion rate, and revenue across all funnels.\n\n\n\n\n\n\n\nConversions Analytics\n\n\n\nThe Conversions Analytics page focuses on how users convert across funnel steps, offers, and devices.\n\n\n\nAvailable KPIs\n\n\n\nTotal VisitorsTotal number of visitors across all steps in the selected funnel or funnels\n\n\n\nTotal ConversionsTotal number of successful conversions across all steps\n\n\n\nOrder Bump ConversionsNumber of successful order bump purchases\n\n\n\nOffer ConversionsTotal number of successful upsell and downsell conversions\n\n\n\nLaptop ConversionsConversions completed on laptop and desktop devices\n\n\n\nMobile ConversionsConversions completed on mobile devices\n\n\n\nEach KPI includes a chart that allows you to analyse conversion trends over time.\n\n\n\n\n\n\n\nAdditional Conversion Data\n\n\n\nThis page includes two tables for deeper analysis.\n\n\n\nStep-level analytics table for the selected funnel\n\n\n\n\n\n\n\nProduct-level analytics table for products associated with funnel steps\n\n\n\n\n\n\n\nOpt-in Analytics\n\n\n\nThe Opt-in Analytics page provides insights into opt-in form performance across your funnels.\n\n\n\nAvailable KPIs\n\n\n\nTotal SubmissionsTotal number of successful opt-in form submissions\n\n\n\nConversion RatePercentage of visitors who successfully submitted the opt-in form\n\n\n\nEach KPI is supported by visual charts to help identify trends.\n\n\n\n\n\n\n\nAdditional Opt-in Data\n\n\n\nThe Opt-in Analytics table displays funnel name, opt-in step, total submissions, and conversion rate.\n\n\n\n\n\n\n\nFilters and Comparison Options\n\n\n\nEach Analytics page includes filtering and comparison options to help refine your analysis.\n\n\n\nTimeframe filterView data for predefined ranges such as Today, Yesterday, Last 7 Days, This Month, or a custom date range\n\n\n\nFunnel selectorView analytics for all funnels or a specific funnel\n\n\n\nTrend comparisonCompare the selected timeframe with the previous period or the same period in the previous year\n\n\n\n\n\n\n\nTrend Indicators\n\n\n\nEach KPI includes a trend indicator that shows how performance has changed over time.\n\n\n\nTrend indicators compare the current data with:\n\n\n\n\nthe previous period\n\n\n\nthe same period from the previous year\n\n\n\n\n\n\n\n\nThis makes it easier to identify growth, declines, and performance shifts at a glance.\n\n\n\nTop Performing Funnels (Dashboard Overview)\n\n\n\nThe Analytics Dashboard includes a Top Performing Funnels table that highlights the top five funnels based on revenue. This provides a quick overview of which funnels contribute most to overall performance.\n\n\n\n\n\n\n\nFunnel Editor KPIs\n\n\n\nKey performance indicators are also available directly in the Funnel Editor. This allows you to review funnel performance while building or editing funnels, without switching to the Analytics pages.\n\n\n\nAvailable KPIs in the Funnel Editor\n\n\n\n\nTotal Visitors\n\n\n\nTotal Orders\n\n\n\nTotal Revenue\n\n\n\nAverage Order Value (AOV)\n\n\n\nOrder Bump Revenue\n\n\n\nOffer Revenue\n\n\n\nRevenue Per Visit (RPV)\n\n\n\nRevenue Per Unique Visitor (RPUV)\n\n\n\n\nThese KPIs help you quickly assess funnel performance and make optimisation decisions during funnel creation.\";s:3:\"url\";s:56:\"https://cartflows.com/docs/cartflows-advanced-analytics/\";s:4:\"slug\";s:28:\"cartflows-advanced-analytics\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-04-24T16:44:58+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"flows-analytics\";}}i:30;O:8:\"stdClass\":8:{s:2:\"id\";i:67094;s:5:\"title\";s:31:\"Power Coupons Settings Overview\";s:7:\"content\";s:2506:\"Power Coupons is a WooCommerce enhancement plugin that helps increase coupon visibility and usage directly on your Cart and Checkout pages. By displaying available coupons in a clear and engaging way, it encourages customers to apply discounts, improving both their shopping experience and your store conversions.\n\n\n\nHow to Access Power Coupons Settings\n\n\n\n\nLog in to your WordPress admin dashboard.\n\n\n\nNavigate to Dashboard > Power Coupons > Settings\n\n\n\n\nThe settings are divided into three main sections for easier management:\n\n\n\n\nGeneral\n\n\n\nCoupon Styling\n\n\n\nText Customization\n\n\n\n\nGeneral Settings\n\n\n\nThese options control the overall behavior of Power Coupons across your site.\n\n\n\n1. Enable Plugin\n\n\n\nToggle this option to enable or disable Power Coupons functionality site-wide.\n\n\n\n2. Show on Cart\n\n\n\nDisplays available coupons on the Cart page so customers can easily view discounts before proceeding to checkout.\n\n\n\n3. Show on Checkout\n\n\n\nDisplays available coupons on the Checkout page to encourage last-minute coupon usage.\n\n\n\n4. Enable for Guests\n\n\n\nAllows visitors who are not logged in to view and apply coupons, helping to increase conversions.\n\n\n\n5. Show Applied Coupons\n\n\n\nDisplays a list of coupons that have already been applied, so customers can track discounts in real-time.\n\n\n\n6. Show Expiry Info\n\n\n\nShows coupon expiry dates, creating urgency and driving faster conversions.\n\n\n\nCoupon Styling Settings\n\n\n\nThis section lets you control the visual presentation of your coupons.\n\n\n\nChoose Coupon Styling\n\n\n\nSelect from available coupon design templates to match your store’s branding.\n\n\n\nText Customization Settings\n\n\n\nCustomize all customer-facing text for coupons to match your store’s tone and messaging.\n\n\n\n1. Drawer Heading\n\n\n\nText displayed at the top of the coupon drawer. Example: Available Coupons\n\n\n\n\n\n\n\n2. Drawer Trigger Button Label\n\n\n\nText shown on the button that opens the coupon drawer. Example: View Available Coupons\n\n\n\n\n\n\n\n3. Coupon Applying Text\n\n\n\nText shown while a coupon is in the process of being applied. Example: Applying...\n\n\n\n\n\n\n\n4. Coupon Applied Text\n\n\n\nText displayed after a coupon is successfully applied. Example: Applied\n\n\n\n\n\n\n\n5. No Coupons Text\n\n\n\nMessage displayed when no valid coupons are available. Example: No coupons available at this time.\n\n\n\n\n\n\n\n6. Coupons Loading Text\n\n\n\nText displayed while coupons are being fetched inside the drawer. Example: Loading coupons...\n\n\n\n\n\n\n\nThis helpful for setting user expectations during AJAX loading.\";s:3:\"url\";s:59:\"https://cartflows.com/docs/power-coupons-settings-overview/\";s:4:\"slug\";s:31:\"power-coupons-settings-overview\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-02-12T10:46:55+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"power-coupons\";}}i:31;O:8:\"stdClass\":8:{s:2:\"id\";i:67089;s:5:\"title\";s:28:\"How to Install Power Coupons\";s:7:\"content\";s:816:\"This documentation explains how to install the Power Coupons plugin on your WordPress site.\n\n\n\nHow to install Power Coupons\n\n\n\nTo install the Power Coupons plugin on your WordPress site, follow the steps below.\n\n\n\nStep 1: Log in to your WordPress website\n\n\n\nWhen you log in, you will be in your Dashboard.\n\n\n\nStep 2: In the Plugins menu, click on Add New Plugin\n\n\n\nFrom your WordPress dashboard, go to Plugins &gt; Add New Plugin to open the plugin installation screen.\n\n\n\n\n\n\n\nStep 3: Search for Power Coupons\n\n\n\nIn the search bar, search for Power Coupons.\n\n\n\n\n\n\n\nStep 4: Click Install Now\n\n\n\nIn the Power Coupons card, click Install Now.\n\n\n\n\n\n\n\nStep 5: Click Activate\n\n\n\nOnce the installation has finished, click Activate.\n\n\n\n\n\n\n\nYou’ve successfully installed the Power Coupons plugin on your website. Well Done!\";s:3:\"url\";s:56:\"https://cartflows.com/docs/how-to-install-power-coupons/\";s:4:\"slug\";s:28:\"how-to-install-power-coupons\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-15T13:26:43+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"power-coupons\";}}i:32;O:8:\"stdClass\":8:{s:2:\"id\";i:66898;s:5:\"title\";s:45:\"SMS Integration for Cart Abandonment Recovery\";s:7:\"content\";s:4692:\"The SMS Integration is part of the Cart Abandonment Recovery Pro feature and allows you to automatically send SMS follow-ups to users who leave the checkout without completing their purchase. By using Twilio as the SMS provider, this feature helps re‑engage customers with timely reminders, personalized content, recovery links, and optional discount coupons.\n\n\n\nThe SMS recovery flow works alongside existing cart abandonment logic and ensures messages are sent only when a cart is genuinely abandoned and all required conditions, such as consent and product availability, are met.\n\n\n\nOverview\n\n\n\nThe SMS integration enables automated SMS notifications for cart abandonment recovery via Twilio. It includes SMS template management, scheduling, dynamic placeholders, coupon generation, delivery tracking, and built‑in compliance checks.\n\n\n\nThis feature is designed to complement email-based recovery and provides an additional channel to reconnect with potential customers.\n\n\n\nTwilio Integration\n\n\n\nCart Abandonment Recovery uses Twilio as the SMS delivery provider.\n\n\n\nAuthentication Requirements\n\n\n\n\nTwilio Account SID\n\n\n\nTwilio Auth Token\n\n\n\nSend From value (phone number or alphanumeric sender ID in E.164 format)\n\n\n\n\n\n\n\n\nIntegration Settings\n\n\n\nThe SMS integration settings allow you to manage and validate the SMS configuration used for cart recovery:\n\n\n\n\nEnable or disable SMS tracking for abandoned carts\n\n\n\nConfigure the Send From phone number or sender ID\n\n\n\nEnter Twilio Account SID\n\n\n\nEnter Twilio Auth Token (stored securely in encrypted form)\n\n\n\nSend a test SMS to verify the setup\n\n\n\n\n\n\n\n\nThese settings ensure SMS delivery is properly configured before recovery messages are sent to users.\n\n\n\nGDPR Compliance Settings\n\n\n\nTo ensure compliance with privacy regulations, Cart Abandonment Recovery includes dedicated GDPR controls for SMS communication:\n\n\n\n\nPhone number GDPR consent toggle\n\n\n\nCustomizable consent message shown during checkout\n\n\n\nConsent validation before scheduling or sending any SMS\n\n\n\n\n\n\n\n\nSMS follow-ups are only scheduled when explicit consent is available.\n\n\n\nSMS Template Creation &amp; Scheduling\n\n\n\nSMS templates define the content and timing of recovery messages:\n\n\n\n\nCreate, edit, clone, or delete SMS templates\n\n\n\nRestore default SMS templates at any time\n\n\n\nAutomatically trigger SMS when a cart is marked as abandoned\n\n\n\nRespect GDPR consent requirements\n\n\n\nSkip SMS if the user has unsubscribed or the order is completed\n\n\n\nReschedule SMS messages when needed\n\n\n\n\n\n\n\n\n\n\n\n\nTemplates support dynamic placeholders such as customer details, cart data, recovery URLs, and coupon codes.\n\n\n\nPre‑Send Checks\n\n\n\nBefore sending an SMS, Cart Abandonment Recovery performs multiple checks:\n\n\n\n\nOut‑of‑stock product validation\n\n\n\nRule engine evaluation\n\n\n\nFilter hooks for custom logic and conditions\n\n\n\n\nThese checks help ensure recovery messages remain relevant and accurate.\n\n\n\nPreview SMS\n\n\n\nYou can preview and test SMS content before activating templates:\n\n\n\n\nSend a test SMS directly from the template editor\n\n\n\nUses dummy session data for safe previewing\n\n\n\n\n\n\n\n\nThis helps confirm formatting, placeholders, and message tone.\n\n\n\nTest SMS\n\n\n\nA global test option is also available from the integration settings:\n\n\n\n\nSends a test SMS using the configured Twilio credentials\n\n\n\nValidates the complete SMS recovery configuration\n\n\n\n\nPrivacy &amp; Unsubscribe Support\n\n\n\nUser privacy is respected throughout the SMS recovery process:\n\n\n\n\nGDPR consent is required before sending SMS\n\n\n\nBuilt‑in unsubscribe support ensures users can opt out of SMS recovery messages\n\n\n\n\n\n\n\n\nFilter Hooks &amp; Extensibility\n\n\n\nDevelopers can customize and extend Cart Abandonment Recovery SMS behavior using the following hooks.\n\n\n\nAvailable Filters\n\n\n\n\nwcf_ca_should_schedule_sms_template – Control whether an SMS template should be scheduled\n\n\n\nwcf_ca_should_send_sms – Control whether an SMS should be sent\n\n\n\nwoo_ca_recovery_sms_data – Modify SMS payload data\n\n\n\nwcf_ca_sms_body_before_send – Modify the SMS body before sending\n\n\n\nwoo_ca_generate_sms_coupon – Customize generated coupon data\n\n\n\nwcar_followup_sms_data – Modify follow‑up template data\n\n\n\nwcar_admin_sms_template_fields – Customize admin template fields\n\n\n\n\nAvailable Actions\n\n\n\n\nwcf_ca_after_sms_coupon_created – Triggered after an SMS coupon is generated\n\n\n\nwcf_ca_process_abandoned_order – Fired when an order is marked as abandoned\n\n\n\nwcf_ca_send_notices – Cron‑based trigger for sending recovery SMS\n\n\n\n\nThis SMS integration provides a compliant, extensible, and effective way to recover abandoned carts using SMS as part of the Cart Abandonment Recovery workflow.\";s:3:\"url\";s:73:\"https://cartflows.com/docs/sms-integration-for-cart-abandonment-recovery/\";s:4:\"slug\";s:45:\"sms-integration-for-cart-abandonment-recovery\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-12-30T17:42:23+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:33;O:8:\"stdClass\":8:{s:2:\"id\";i:65714;s:5:\"title\";s:41:\"Troubleshooting License Activation Issues\";s:7:\"content\";s:1105:\"If you’re having trouble activating a license, this documentation will help you identify and resolve the most common activation errors. These issues can occur if your site has been migrated, your license key was entered incorrectly, or the key is already linked to another site.\n\n\n\n1. License is already activated for this website\n\n\n\nIf you see this error, your license may already be linked to your site.\n\n\n\nSolution:\n\n\n\n\nLog in to your account.\n\n\n\nClick on API Keys from the sidebar.\n\n\n\nDelete the existing entry for your website.\n\n\n\nTry activating the license again.\n\n\n\n\n\n\n\n\n2. License is activated for the same instance ID\n\n\n\nThis error may occur if you migrated your site or are re-activating the license.\n\n\n\nTo resolve this, follow the steps in this document: How to Resolve “Cannot Activate API Key. Key Already Activated with the same Instance ID” Error Message?\n\n\n\n3. A customer account does not exist for this API Key\n\n\n\nThis error means the License Key is incorrect.\n\n\n\nSolution:\n\n\n\n\nLog in to Membership Area.\n\n\n\nCopy the correct License Key and paste it into the activation field again.\";s:3:\"url\";s:69:\"https://cartflows.com/docs/troubleshooting-license-activation-issues/\";s:4:\"slug\";s:41:\"troubleshooting-license-activation-issues\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-27T14:25:52+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:34;O:8:\"stdClass\":8:{s:2:\"id\";i:65257;s:5:\"title\";s:60:\"How to Install Cart Abandonment Recovery for WooCommerce Pro\";s:7:\"content\";s:1594:\"This documentation explains how to install the Cart Abandonment Recovery for WooCommerce Pro plugin on your website. You can install the plugin by downloading it from your account and uploading it to your WordPress site.\n\n\n\nNote: To use Cart Abandonment Recovery for WooCommerce Pro, the Cart Abandonment Recovery Free plugin must also be installed and activated. Refer to this doc to learn how to install Cart Abandonment Recovery Free.\n\n\n\nSteps to Install Cart Abandonment for WooCommerce Pro\n\n\n\nStep 1: Go to Your Account and Click on Your Products\n\n\n\nIn your account page, go to Your Products to view all your purchased products.\n\n\n\n\n\n\n\nStep 2: Download Cart Abandonment Recovery for WooCommerce Pro\n\n\n\nClick Download to start the .zip file download.\n\n\n\n\n\n\n\nStep 3: Log in to Your WordPress Website\n\n\n\nWhen you log in, you will be in your Dashboard.\n\n\n\nStep 4: In the Plugins Menu, Click on Add New Plugin\n\n\n\nGo to Plugins &gt; Add New Plugin from the WordPress menu.\n\n\n\n\n\n\n\nStep 5: Click Upload Plugin at the Top of the Screen\n\n\n\nThe screen will expand with the option to upload a plugin.\n\n\n\n\n\n\n\nStep 6: Upload the Plugin and Click Install Now\n\n\n\nClick Choose File, select the downloaded .zip file, and then click Install Now to begin the installation.\n\n\n\n\n\n\n\nStep 7: Click Activate Plugin\n\n\n\nOnce the plugin is installed, click Activate Plugin to complete the installation.\n\n\n\n\n\n\n\nWhat\'s Next?\n\n\n\nMake sure to activate your license key to start using the plugin and receive plugin updates. Click here to learn how to activate your Cart Abandonment Recovery for WooCommerce Pro license.\";s:3:\"url\";s:65:\"https://cartflows.com/docs/install-cart-abandonment-recovery-pro/\";s:4:\"slug\";s:37:\"install-cart-abandonment-recovery-pro\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-10-06T22:08:00+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:35;O:8:\"stdClass\":8:{s:2:\"id\";i:65283;s:5:\"title\";s:73:\"How to Activate Abandonment Cart Recovery for WooCommerce Pro License Key\";s:7:\"content\";s:1218:\"To start using Cart Abandonment Recovery for WooCommerce Pro and receive automatic updates, you need to activate your license. This documentation will guide you through the process.\n\n\n\nBefore You Start\n\n\n\nBefore activating your license, make sure:\n\n\n\n\nThe Cart Abandonment Recovery for WooCommerce Pro plugin is installed and activated on your website.If you haven’t installed it yet, follow this document: How to Install Cart Abandonment Recovery for WooCommerce Pro\n\n\n\nYou have access to your account to retrieve the license key.\n\n\n\n\nHow to Activate Your Cart Abandonment Recovery for WooCommerce Pro License\n\n\n\nStep 1: Get Your License Key\n\n\n\n\nLog in to Membership Area.\n\n\n\nClick on API Keys from the sidebar.\n\n\n\nCopy your License Key.\n\n\n\n\n\n\n\n\nStep 2: Activate Your License in WordPress\n\n\n\n\nLog in to your WordPress dashboard.\n\n\n\nGo to WooCommerce &gt; Cart Abandonment Recovery.\n\n\n\nClick on the My Account tab.\n\n\n\nPaste your License Key into the provided field.\n\n\n\nClick the Activate License button.\n\n\n\n\n\n\n\n\nTroubleshooting License Activation Issues\n\n\n\nIf you’re facing problems while activating your license, refer to this document for detailed troubleshooting steps: Troubleshooting License Activation Issues\";s:3:\"url\";s:74:\"https://cartflows.com/docs/activate-abandonment-cart-recovery-license-key/\";s:4:\"slug\";s:46:\"activate-abandonment-cart-recovery-license-key\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-15T13:58:20+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:36;O:8:\"stdClass\":8:{s:2:\"id\";i:64976;s:5:\"title\";s:56:\"Product Reports in WooCommerce Cart Abandonment Recovery\";s:7:\"content\";s:1931:\"The Product Reports feature in WooCommerce Cart Abandonment Recovery Pro helps you track which products are abandoned and recovered most frequently. It gives store owners valuable insights into product performance so you can make smarter inventory, marketing, and recovery decisions.\n\n\n\nHow It Works\n\n\n\n\nData Collection: Tracks abandoned and recovered products automatically.\n\n\n\nReal-Time Analytics: Updates instantly as events occur.\n\n\n\nEasy Interface: Displays data in a clean table with product names, images, and stats.\n\n\n\nExport: Download data in Excel for deeper analysis.\n\n\n\n\nWhere to Find Product Reports\n\n\n\n\nGo to WordPress Admin &gt; WooCommerce &gt; Cart Abandonment Recovery.\n\n\n\nClick on the Product tab.\n\n\n\nView your Product Reports dashboard.\n\n\n\n\n\n\n\n\nYou can also access a summary widget on the main dashboard with a quick link to View All.\n\n\n\n\n\n\n\nHow It’s Useful\n\n\n\n\nProduct Insights: See which products are abandoned most often.\n\n\n\nRecovery Optimization: Focus recovery campaigns on high-value items.\n\n\n\nInventory Planning: Adjust stock and pricing based on abandonment trends.\n\n\n\nMarketing Strategy: Build targeted campaigns around product-level behavior.\n\n\n\n\nUse Cases:\n\n\n\n\nIdentify products needing better descriptions or offers.\n\n\n\nMeasure recovery success rates for specific items.\n\n\n\nImprove product pages and checkout flow.\n\n\n\nForecast sales and marketing needs.\n\n\n\n\nHow to Use Product Reports\n\n\n\nStep 1: NavigateGo to WooCommerce &gt; Cart Abandonment Recovery &gt; Reports &gt; Product tab.\n\n\n\n\n\n\n\nStep 2: Explore Interface\n\n\n\n\nSearch for products by name.\n\n\n\nUse pagination for large datasets.\n\n\n\nExport data for external analysis.\n\n\n\nClick product links to view them directly.\n\n\n\n\n\n\n\n\nStep 3: Read the DataEach row shows:\n\n\n\n\nProduct name &amp; ID\n\n\n\nThumbnail image\n\n\n\nTimes abandoned (with value)\n\n\n\nTimes recovered (with value)\n\n\n\nActions to view or delete records\n\n\n\n\n\n\n\n\nFrequently Asked Questions\";s:3:\"url\";s:43:\"https://cartflows.com/docs/product-reports/\";s:4:\"slug\";s:15:\"product-reports\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-09-30T20:45:39+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:37;O:8:\"stdClass\":8:{s:2:\"id\";i:64935;s:5:\"title\";s:48:\"Dynamic Email Rules in Cart Abandonment Recovery\";s:7:\"content\";s:4438:\"Dynamic Email Rules is a powerful feature in WooCommerce Cart Abandonment Recovery Pro that allows you to apply conditional logic to your abandoned cart email templates. This ensures that emails are only sent when specific cart, customer, or product criteria are met, resulting in more personalized and effective recovery campaigns.\n\n\n\nBy using Dynamic Rules, you can automatically control email delivery and target customers with the right messages at the right time.\n\n\n\nHow It Works\n\n\n\n\nRule Engine: Evaluates conditions before sending each email.\n\n\n\nConditional Logic: Supports AND/OR logic for flexible targeting.\n\n\n\nReal-time Evaluation: Conditions are checked at the time of sending.\n\n\n\nEmail Blocking: Prevents irrelevant emails from being delivered.\n\n\n\n\nWhere to Find This Setting\n\n\n\n1: Go to WordPress Admin > WooCommerce > Cart Abandonment Recovery.\n\n\n\n\n\n\n\n2: Navigate to the Follow-up Emails tab.\n\n\n\n\n\n\n\n3: Click Add New Template or edit an existing template.\n\n\n\n\n\n\n\n4: Scroll down to the Dynamic Conditions section.\n\n\n\n\n\n\n\nWhy It’s Useful\n\n\n\n\nTargeted Marketing: Send tailored emails only to relevant customers.\n\n\n\nReduce Spam: Avoid sending unnecessary emails.\n\n\n\nIncrease Conversions: Improve the impact of recovery campaigns.\n\n\n\nSave Costs: Reduce email volume by targeting effectively.\n\n\n\n\nUse Cases:\n\n\n\n\nHigh-value orders (e.g., send emails only for carts above $100).\n\n\n\nProduct-specific targeting (e.g., electronics or clothing).\n\n\n\nGeographic targeting (e.g., US-based customers).\n\n\n\nCustomer segmentation by user role.\n\n\n\nSeasonal or category-specific campaigns.\n\n\n\n\nPerformance Benefits:\n\n\n\n\nReduced server load.\n\n\n\nBetter analytics and insights.\n\n\n\nImproved deliverability with higher engagement.\n\n\n\n\nHow to Set Up Dynamic Rules for an Email Template\n\n\n\nStep 1: Access Template SettingsNavigate to WooCommerce > Cart Abandonment Recovery > Follow-up Emails. Edit or create a template and fill in its basic details.\n\n\n\n\n\n\n\nStep 2: Enable Dynamic ConditionsScroll down to Dynamic Conditions and toggle it ON. The rule builder will appear.\n\n\n\n\n\n\n\nStep 3: Create Rule Groups\n\n\n\n\nClick Add Rule (groups work with OR logic).\n\n\n\nClick Add Condition within a group, rules must ALL match (AND logic).\n\n\n\n\n\n\n\n\nStep 4: Add Individual RulesEach rule requires:\n\n\n\n\nCondition (e.g., cart total, product, country).\n\n\n\nOperator (e.g., equals, greater than, Exists).\n\n\n\nValue (e.g., $100, US, specific product).\n\n\n\n\n\n\n\n\nStep 5: Available Conditions\n\n\n\n\nCart Total: The total value of the cart.\n\n\n\nProduct: Specific products in the cart.\n\n\n\nProduct Category: Specific product categories in the cart.\n\n\n\nBilling Country: The customer’s billing country.\n\n\n\nNumber of Cart Items: The total number of items in the cart.\n\n\n\n\n\n\n\n\nStep 6: Choose Operators\n\n\n\n\nNumeric Operators: For numbers like cart total or item count. Examples: is equal to, is not equal to, greater than, less than, greater than or equal to, less than or equal to.\n\n\n\nText Operators: For values like product names and categories. Examples: Exists, does not exists.\n\n\n\nList Operators: For conditions with multiple options (like categories or countries). Examples: Equal to, not equal to.\n\n\n\n\n\n\n\n\nStep 7: Configure Values\n\n\n\n\nEnter numbers for conditions like cart total or number of items.\n\n\n\nUse the product search field to select specific products.\n\n\n\nSelect countries or Product Categories from dropdown menus.\n\n\n\n\n\n\n\n\nStep 8: Save &amp; Test\n\n\n\n\nReview rules.\n\n\n\nTest with sample data.\n\n\n\nSave and activate your template.\n\n\n\n\nExample Rule Configurations\n\n\n\n\nHigh-Value Cart: Cart Total greater than $100 → Email only for high-value carts.\n\n\n\nProduct Category Targeting: Product Category contains \"Electronics\" → Target electronics abandonments.\n\n\n\nGeographic Targeting: Country is equal to \"US\" → Target US customers.\n\n\n\nComplex Rule: Cart Total greater than $50 AND Category contains \"Clothing\" AND Items greater than 2 → Target clothing carts over $50 with 2+ items.\n\n\n\n\nTroubleshooting\n\n\n\n\nMake sure Dynamic Conditions is enabled.\n\n\n\nVerify your rules match actual cart/customer data.\n\n\n\nEnsure the email template is active.\n\n\n\n\nDynamic Email Rules in Cart Abandonment Recovery Pro give you complete control over when and to whom your recovery emails are sent. By setting precise conditions, you can build highly targeted campaigns that improve conversions, reduce wasted emails, and deliver a better customer experience.\n\n\n\nFrequently Asked Questions\";s:3:\"url\";s:47:\"https://cartflows.com/docs/dynamic-email-rules/\";s:4:\"slug\";s:19:\"dynamic-email-rules\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-09-30T20:45:20+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:38;O:8:\"stdClass\":8:{s:2:\"id\";i:64922;s:5:\"title\";s:57:\"Exclude Products from Coupon in Cart Abandonment Recovery\";s:7:\"content\";s:1912:\"The Exclude Products from Coupon feature in Cart Abandonment Recovery Pro allows you to define specific products for which recovery coupons should not be generated or applied in follow-up emails. This ensures better control over discounts and helps avoid unnecessary coupon distribution when restricted products are in the cart.\n\n\n\nWhat is “Exclude Products from Coupon”?\n\n\n\nThis feature lets you select products (or variations) that should be excluded from receiving recovery coupons. When those products are in the cart, the system can skip sending coupon-based recovery emails to prevent confusion or misuse.\n\n\n\nHow It Works\n\n\n\nCart Abandonment Recovery Pro integrates with WooCommerce’s native exclude_product_ids option for coupons. When excluded product IDs are present in the cart, the plugin ensures that:\n\n\n\n\nRecovery coupons generated for the template won’t apply to those products.\n\n\n\nThe follow-up email itself can be skipped to avoid sending a coupon that won’t work.\n\n\n\n\nWhy is it Useful?\n\n\n\n\nPrevents misuse: Protects items that are price-restricted or not meant for discounts.\n\n\n\nCleaner experience: Avoids sending unusable coupons that might frustrate customers.\n\n\n\nCompliance and margin control: Ensures sensitive SKUs maintain profitability.\n\n\n\n\nHow to Set It Up (Step-by-Step)\n\n\n\n1: Navigate to Follow-up Emails in Cart Abandonment Recovery.\n\n\n\n\n\n\n\n2: Add or edit a template.\n\n\n\n\n\n\n\n3: Enable Create Coupon Code and configure the coupon settings.\n\n\n\n\n\n\n\n4: In the Exclude Products field, search and select the products/variations to exclude.\n\n\n\n\n\n\n\n5: Save and activate the template.\n\n\n\nHow Does It Work in Practice?\n\n\n\n\nSelected product IDs are stored with the template.\n\n\n\nThese IDs are added to the coupon’s exclude_product_ids setting.\n\n\n\nIf the cart contains any excluded product, the system can skip sending the coupon email for that template.\n\n\n\n\nFrequently Asked Questions\";s:3:\"url\";s:56:\"https://cartflows.com/docs/exclude-products-from-coupon/\";s:4:\"slug\";s:28:\"exclude-products-from-coupon\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-10-06T19:23:21+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:39;O:8:\"stdClass\":8:{s:2:\"id\";i:63895;s:5:\"title\";s:34:\"How to Install Modern Cart Starter\";s:7:\"content\";s:1053:\"We’re glad you’ve chosen Modern Cart Starter for your website! This documentation will walk you through the steps to install the Modern Cart Starter plugin on your WordPress site.\n\n\n\nIf you’re looking to install Modern Cart for WooCommerce, please see our dedicated documentation.\n\n\n\nHow to install Modern Cart Starter\n\n\n\nTo install the Modern Cart Starter plugin on your WordPress site, follow the steps below.\n\n\n\nStep 1: Log in to your WordPress website\n\n\n\nWhen you log in, you will be in your Dashboard.\n\n\n\nStep 2: In the Plugins menu, click on Add New Plugin\n\n\n\nFrom your WordPress dashboard, go to Plugins &gt; Add New Plugin to open the plugin installation screen.\n\n\n\n\n\n\n\nStep 3: Search for Modern Cart Starter\n\n\n\nIn the search bar, search for Modern Cart Starter.\n\n\n\n\n\n\n\nStep 4: Click Install Now\n\n\n\nIn the Modern Cart Starter card, click Install Now.\n\n\n\n\n\n\n\nStep 5: Click Activate\n\n\n\nOnce the installation has finished, click Activate.\n\n\n\n\n\n\n\nCongratulations! You’ve successfully installed the Modern Cart Starter plugin on your website.\";s:3:\"url\";s:58:\"https://cartflows.com/docs/installing-modern-cart-starter/\";s:4:\"slug\";s:30:\"installing-modern-cart-starter\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-09-23T18:45:52+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:40;O:8:\"stdClass\":8:{s:2:\"id\";i:63377;s:5:\"title\";s:56:\"How to Install Cart Abandonment Recovery for WooCommerce\";s:7:\"content\";s:1115:\"Thank you for choosing Cart Abandonment Recovery for WooCommerce ! This documentation will walk you through the steps to install the plugin on your WordPress site so you can start recovering lost sales right away.\n\n\n\nHow to install Cart Abandonment Recovery for WooCommerce&nbsp;\n\n\n\nTo install the Cart Abandonment Recovery for WooCommerce&nbsp; plugin on your WordPress site, follow the steps below.\n\n\n\nStep 1: Log in to your WordPress website\n\n\n\nWhen you log in, you will be in your Dashboard.\n\n\n\nStep 2: In the Plugins menu, click on Add New Plugin\n\n\n\nFrom your WordPress dashboard, go to Plugins > Add New Plugin to open the plugin installation screen.\n\n\n\n\n\n\n\nStep 3: Search for Cart Abandonment Recovery for WooCommerce \n\n\n\nIn the search bar, search for Cart Abandonment Recovery.\n\n\n\n\n\n\n\nStep 4: Click Install Now\n\n\n\nIn the Cart Abandonment Recovery for WooCommerce  card, click Install Now.\n\n\n\n\n\n\n\nStep 5: Click Activate\n\n\n\nOnce the installation has finished, click Activate.\n\n\n\n\n\n\n\nCongratulations! You’ve successfully installed the Cart Abandonment Recovery for WooCommerce&nbsp; plugin on your website.\";s:3:\"url\";s:61:\"https://cartflows.com/docs/install-cart-abandonment-recovery/\";s:4:\"slug\";s:33:\"install-cart-abandonment-recovery\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-10-01T18:44:37+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:41;O:8:\"stdClass\":8:{s:2:\"id\";i:63305;s:5:\"title\";s:76:\"Roll Back to a Previous Version of Cart Abandonment Recovery for WooCommerce\";s:7:\"content\";s:1498:\"If you encounter an issue after updating the Cart Abandonment Recovery for WooCommerce plugin, you may want to roll back to an earlier version. This can be done in two ways, either by using a plugin like WP Rollback plugin or by manually downloading a previous version from the WordPress plugin repository.\n\n\n\nMethod 1: Roll Back Using the WP Rollback Plugin\n\n\n\n1. Install and activate the WP Rollback plugin on your site.\n\n\n\n\n\n\n\n2. Go to Plugins &gt; Installed Plugins in your WordPress dashboard.\n\n\n\n3. Locate Cart Abandonment Recovery for WooCommerce in the list, and click the Rollback link.\n\n\n\n\n\n\n\n4. Choose the version you’d like to roll back to, click the Rollback button, and follow the prompts to complete the process.\n\n\n\n\n\n\n\nThe plugin will automatically switch to the version you selected.\n\n\n\nMethod 2: Roll Back Manually\n\n\n\n1. Go to the Cart Abandonment Recovery for WooCommerceplugin page in the WordPress repository.\n\n\n\n2. Scroll down to the Advanced View section.\n\n\n\n\n\n\n\n3. Locate the Previous Versions dropdown, select the version you’d like to install, and download the ZIP file.\n\n\n\n\n\n\n\n4. In your WordPress dashboard, go to Plugins &gt; Installed Plugins and deactivate the current version of Cart Abandonment Recovery for WooCommerce.\n\n\n\n5. Click Delete to remove it from your site.\n\n\n\n6. Next, go to Plugins &gt; Add New &gt; Upload Plugin, choose the ZIP file you downloaded, and install it.\n\n\n\n7. Activate the plugin.\n\n\n\nYour site will now be running the selected version.\";s:3:\"url\";s:70:\"https://cartflows.com/docs/rollback-cart-abandonment-recovery-version/\";s:4:\"slug\";s:42:\"rollback-cart-abandonment-recovery-version\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-08-21T22:01:50+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:42;O:8:\"stdClass\":8:{s:2:\"id\";i:63047;s:5:\"title\";s:18:\"Popup Cart Feature\";s:7:\"content\";s:1994:\"The Popup Cart feature in Modern Cart for WooCommerce provides an interactive, user-friendly way for customers to view and manage their cart without leaving the current page. This helps create a seamless shopping experience and reduces cart abandonment.\n\n\n\nWhen enabled, the Popup Cart appears as a centered modal window whenever a product is added or the floating cart icon is clicked. It shows cart items, supports coupon codes, and can optionally display product recommendations, all without page reloads.\n\n\n\nNote\nThis feature is available only in the Modern Cart Pro version.\n\n\n\n\nWhy Use Popup Cart?\n\n\n\nThis feature enhances the shopping process by making it quicker and more engaging. Here’s why it’s beneficial:\n\n\n\n\nImproved User Interaction: Provides instant feedback when items are added, encouraging customers to keep shopping.\n\n\n\nSeamless Design Integration: Customize the popup cart’s look to match your store’s branding for a consistent experience.\n\n\n\nBoosted Conversions: Eliminates page reloads, helping keep the buying process smooth and reducing cart abandonment.\n\n\n\n\nHow to Enable the Popup Cart?\n\n\n\nStep 1:&nbsp;Navigate to the Modern Cart Settings, then click on the&nbsp;General&nbsp;Tab.\n\n\n\n\n\n\n\nStep 2: Inside the General Tab, you will find the Cart Type setting.\n\n\n\n\n\n\n\nStep 3: Select Popup from the available options of the Cart Type setting.\n\n\n\n\n\n\n\nAfter selecting and saving Popup as your Cart Type, your cart will appear like this on the frontend.\n\n\n\n\n\n\n\nHow to customize the Popup width and animation speed?\n\n\n\nStep 1: From the Modern Cart settings page, click on the Styling tab.\n\n\n\n\n\n\n\nStep 2: Scroll below to find the style settings related to the Popup Cart Type.\n\n\n\n\n\n\n\n\nPopup Width (Desktop): Adjust the width of the popup cart window when viewed on desktop or larger screens.\n\n\n\nPopup Width (Mobile): Adjust the width of the popup cart window when viewed on mobile or smaller screens.\n\n\n\nAnimation Speed: Control how quickly the popup opens and closes.\";s:3:\"url\";s:46:\"https://cartflows.com/docs/popup-cart-feature/\";s:4:\"slug\";s:18:\"popup-cart-feature\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-10-21T20:36:53+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:43;O:8:\"stdClass\":8:{s:2:\"id\";i:63040;s:5:\"title\";s:22:\"Cart Opening Direction\";s:7:\"content\";s:1298:\"The Cart Opening Direction feature in Modern Cart for WooCommerce lets you control from which side of the screen the slide-out cart appears when opened. This gives you flexibility to match your site’s design and improve user experience.\n\n\n\nYou can choose to open the cart from the left or right side of the screen, making it intuitive for your audience based on reading direction or site layout.\n\n\n\nNote\nThis feature is available only in the Modern Cart Pro version.\n\n\n\n\nWhy Use Cart Opening Direction?\n\n\n\nSetting the correct opening direction helps ensure your cart feels natural and unobtrusive. Here’s why this feature is useful:\n\n\n\n\nUser Experience: Align the cart behavior with your visitors’ reading flow, right side for LTR languages and left side for RTL languages.\n\n\n\nDesign Flexibility: Prevent overlaps with other elements like sticky menus or sidebars.\n\n\n\nAccessibility: Enhance usability for multilingual or RTL-based sites.\n\n\n\n\nHow to Set the Cart Opening Direction?\n\n\n\nStep 1:&nbsp;Navigate to the Modern Cart Settings, then click on the General Tab.\n\n\n\n\n\n\n\nStep 2: Inside the General Tab, you will find the Cart Opening Direction setting.\n\n\n\n\n\n\n\nOnce saved, the cart will always slide in from your chosen side whenever a user clicks the floating cart icon.\n\n\n\nSee it in action\";s:3:\"url\";s:50:\"https://cartflows.com/docs/cart-opening-direction/\";s:4:\"slug\";s:22:\"cart-opening-direction\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-10-21T20:36:27+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:44;O:8:\"stdClass\":8:{s:2:\"id\";i:63033;s:5:\"title\";s:21:\"Floating Icon Styling\";s:7:\"content\";s:2058:\"The Floating Icon Styling feature in Modern Cart for WooCommerce lets you fully customize the cart icon that appears across your site. This floating icon gives shoppers instant access to their cart from any page, making checkout faster and helping reduce cart abandonment.\n\n\n\nYou can easily adjust its colors, size, shape, and more to match your store’s branding and create a seamless shopping experience.\n\n\n\nNote\nThis feature is available only in the Modern Cart Pro version.\n\n\n\n\nWhy Use Floating Icon Styling?\n\n\n\nA well-designed floating icon can make your site more intuitive and improve cart visibility. Here’s why you’d want to use this feature:\n\n\n\n\nConsistent Branding: Match the cart icon with your site’s color scheme and visual identity.\n\n\n\nImproved UX: Make the icon stand out or blend in, depending on your design goals.\n\n\n\nBetter Engagement: Give users easy access to their cart, increasing the likelihood of completed purchases.\n\n\n\n\nHow to Customize the Floating Icon?\n\n\n\nStep 1: Navigate to the Modern Cart Settings and select Floating Cart Icon tab\n\n\n\n\n\n\n\nStep 2: Start customizing the setting to match your store\'s branding.\n\n\n\n\n\n\n\nLive Preview: Instantly displays a preview of how your floating cart button will look.\n\n\n\n\n\n\n\nCustomization options for Floating Icon\n\n\n\n\nIcon Color: Choose the color of the cart icon. For example, you can match it to your brand’s color for a consistent look.\n\n\n\nIcon Background Color: Set the background color behind the cart icon to match your style or branding.\n\n\n\nCount Text Color: Select the color for the number displayed in the cart’s count badge.\n\n\n\nCount Background Color: Choose the background color for the cart count badge.\n\n\n\nIcon Width: Adjusts the overall size of the cart icon, including both its width and height.\n\n\n\nBorder Radius: Adjusts how rounded the button’s corners are. Lower values make the button look more square, while higher values give it a more rounded shape.\n\n\n\n\nOnce configured, the floating icon will automatically reflect your design changes across your store.\";s:3:\"url\";s:49:\"https://cartflows.com/docs/floating-icon-styling/\";s:4:\"slug\";s:21:\"floating-icon-styling\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-10-21T20:36:02+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:45;O:8:\"stdClass\":8:{s:2:\"id\";i:62924;s:5:\"title\";s:43:\"Open the Cart Using a Custom Button or Link\";s:7:\"content\";s:1029:\"The Use Custom Trigger feature in Modern Cart lets you open the cart tray using your own button or link, giving you full control over how users interact with the cart.\n\n\n\nThis option is available under the Floating Cart Icon settings and is available only in the Modern Cart Pro version.\n\n\n\nBy using a custom trigger, you can enhance the cart experience by assigning any clickable element, such as a button, icon, or link, with a class or ID that triggers the cart tray.\n\n\n\nHow to Use the Custom Trigger Feature\n\n\n\n\nGo to WooCommerce &gt; Modern Cart &gt; Floating Cart Icon.\n\n\n\nScroll to the Use Custom Trigger setting.\n\n\n\nIn the input field, enter the element selector(s) that will trigger the cart. You can use #id, .class, or multiple selectors separated by commas.\n\n\n\n\nFor example, if you use a custom header created with Ultimate Addons for Elementor Lite, and you’ve added a Cart Widget with a class like .my-custom-cart, you can enter that selector into the field to make it act as the cart trigger.\n\n\n\nSee It in Action\";s:3:\"url\";s:47:\"https://cartflows.com/docs/custom-cart-trigger/\";s:4:\"slug\";s:19:\"custom-cart-trigger\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-09-23T15:52:06+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:46;O:8:\"stdClass\":8:{s:2:\"id\";i:62744;s:5:\"title\";s:53:\"How to Set Custom Product Recommendations in the Cart\";s:7:\"content\";s:975:\"The Custom option under the Increase AOV with Product Recommendations setting in Modern Cart allows you to manually choose which products appear as recommendations in the cart tray.\n\n\n\nWhen you select Custom, a Custom Recommendations section becomes active. If you select any other mode, this section remains visible but is grayed out.\n\n\n\nNote\n1. If Custom is selected but no products are added to the Search products field, random products will be displayed in the product recommendation area.2. This feature is available only in the Modern Cart Pro version.\n\n\n\n\nHow to Add Custom Recommendations\n\n\n\n\nGo to WooCommerce &gt; Modern Cart &gt; Products.\n\n\n\nUnder Increase AOV with Product Recommendations, select Custom from the dropdown.\n\n\n\nIn the Custom Recommendations section, use the Search products field to find products by typing their title.\n\n\n\nSelect the desired product from the search results. You can repeat this step to add multiple products.\n\n\n\n\nSee It in Action\";s:3:\"url\";s:58:\"https://cartflows.com/docs/custom-product-recommendations/\";s:4:\"slug\";s:30:\"custom-product-recommendations\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-10-21T20:35:22+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:47;O:8:\"stdClass\":8:{s:2:\"id\";i:62701;s:5:\"title\";s:60:\"How to Display Variation Swatches on Non‑WooCommerce Pages\";s:7:\"content\";s:1802:\"By default, the Variation Swatches plugin displays swatches only on the standard WooCommerce Shop, Archive, and Single Product pages. If you add products to a regular WordPress Page (landing page, promo page, content page, etc.), the variation options may not load as swatches.\n\n\n\nThis documentation shows you how to enable swatches on those other pages using a simple PHP filter.\n\n\n\nBefore You Begin\n\n\n\nMake sure:\n\n\n\n\nVariation Swatches is installed and active.\n\n\n\nYour variable products use global attributes with swatch settings configured in WooCommerce &gt; Products &gt; Attributes.\n\n\n\n\nStep 1: Insert Products on the Page\n\n\n\nAdd products to your WordPress Page using WooCommerce product shortcodes. These methods output standard WooCommerce markup that works best with Variation Swatches.\n\n\n\nExamples:\n\n\n\n&#91;products]\n&#91;products ids=\"123,456,789\" columns=\"3\"]\n\n\n\nNote: Using third‑party catalog or grid modules may not trigger swatches because they often bypass WooCommerce templates. If swatches do not appear, switch to WooCommerce shortcodes/blocks and retest.\n\n\n\nStep 2: Enable Swatches on WordPress Pages (PHP Filter)\n\n\n\nAdd this snippet in your child theme functions.php file or via a third-party plugin like Code Snippets. This tells Variation Swatches to load on WordPress Pages.\n\n\n\nadd_filter( \'cfvsw_requires_shop_settings\', function( $status ){\n			if( is_page() ) {\n				return true;\n			}\n			return $status;\n		});\nis_page can be replaced by the desired condition.\n\n\n\nFor step-by-step guidance, see our doc: How &amp; Where to Add Custom JS, CSS &amp; PHP Code.\n\n\n\nStep 3: Clear Cache &amp; Test\n\n\n\n\nSave/activate the PHP snippet.\n\n\n\nClear any caching (plugin, server, CDN).\n\n\n\nView your custom page in a private browser window.\n\n\n\nCheck that variable products now show swatches.\";s:3:\"url\";s:71:\"https://cartflows.com/docs/variation-swatches-on-non-woocommerce-pages/\";s:4:\"slug\";s:43:\"variation-swatches-on-non-woocommerce-pages\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-07-23T19:47:37+05:30\";s:8:\"category\";a:1:{i:0;s:18:\"variation-swatches\";}}i:48;O:8:\"stdClass\":8:{s:2:\"id\";i:62604;s:5:\"title\";s:45:\"Use a Custom Image for the Floating Cart Icon\";s:7:\"content\";s:1859:\"Modern Cart allows you to upload and use a custom image as the floating cart icon, giving you more flexibility in branding your store’s appearance.\n\n\n\nNote\nThis feature is available only in the Modern Cart Pro version.\n\n\n\n\nYou can find this setting under the Floating Cart Icon tab.\n\n\n\n\n\n\n\nSupported file types include .png, .jpg, and .svg.\n\n\n\nThe recommended image size is 36 × 36 pixels to ensure a clear and consistent display.\n\n\n\nSee It in Action\n\n\n\n\n\n\n\nUsing SVG Files\n\n\n\nIf you upload an SVG file, please note that WordPress does not allow SVG uploads by default. This is a WordPress restriction, not a limitation from Modern Cart.\n\n\n\nYou can enable SVG uploads by:\n\n\n\nInstalling a Plugin\n\n\n\nUse a plugin like Safe SVG to allow uploading SVG files safely.\n\n\n\nAdding a Code Snippet\n\n\n\nYou can also enable SVG upload manually with this custom PHP code:\n\n\n\n/**\n * Allow SVG uploads for administrators with basic sanitization.\n */\n\n// Allow SVG uploads for administrators only\nadd_filter(\'upload_mimes\', function($mimes) {\n    if (current_user_can(\'administrator\')) {\n        $mimes&#91;\'svg\'] = \'image/svg+xml\';\n    }\n    return $mimes;\n});\n\n// Basic sanitization: remove &lt;script&gt; tags from uploaded SVGs\nadd_filter(\'wp_handle_upload_prefilter\', function($file) {\n    if ($file&#91;\'type\'] === \'image/svg+xml\') {\n        $svg = file_get_contents($file&#91;\'tmp_name\']);\n\n        // Remove &lt;script&gt; tags\n        $svg = preg_replace(\'/&lt;script.*?&lt;\\/script&gt;/is\', \'\', $svg);\n\n        // Optionally, remove on* event attributes (like onclick, onload)\n        $svg = preg_replace(\'/on\\w+=\"&#91;^\"]*\"/i\', \'\', $svg);\n\n        file_put_contents($file&#91;\'tmp_name\'], $svg);\n    }\n    return $file;\n});\n\n\n\nIf you’re not sure how to add code to your WordPress site, refer to this doc: How and Where to Add the Custom JS, CSS &amp; PHP Codes?\";s:3:\"url\";s:58:\"https://cartflows.com/docs/custom-image-for-floating-cart/\";s:4:\"slug\";s:30:\"custom-image-for-floating-cart\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-10-21T20:34:40+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:49;O:8:\"stdClass\":8:{s:2:\"id\";i:62565;s:5:\"title\";s:52:\"Control Product Recommendation Source for Empty Cart\";s:7:\"content\";s:1612:\"Modern Cart allows you to show product recommendations when the cart is empty. This can help engage users and guide them toward relevant products, even before anything is added to the cart.\n\n\n\nNote\nThis feature is available only in the Modern Cart Pro version.\n\n\n\n\nThe setting is available under the Products tab of the Modern Cart settings.\n\n\n\n\n\n\n\nProduct Recommendation Source for Empty Cart\n\n\n\nThis option lets you choose where the recommended products are pulled from when the cart is empty. You can choose from:\n\n\n\nDisable\n\n\n\nNo recommendations will appear in the cart when it’s empty.\n\n\n\n\n\n\n\nFrom Upsell Products\n\n\n\nDisplays products you’ve assigned as Upsell products for other products in your store.\n\n\n\nTo learn how to configure up-sell products in WooCommerce, see this doc: How to Configure Upsell and Cross-Sell Products in WooCommerce\n\n\n\nFrom Featured Products\n\n\n\nDisplays WooCommerce products that are marked as Featured.\n\n\n\nTo mark a product as featured:\n\n\n\n\nGo to Products &gt; All Products in your WordPress dashboard.\n\n\n\nClick the star icon next to the product title. When active, the star will appear solid.\n\n\n\n\n\n\n\n\nAlternatively, you can also mark a product as featured using Quick Edit or from the Catalog Visibility settings on the “Edit Product” page.\n\n\n\nFrom Cross-Sell Products\n\n\n\nDisplays products you’ve assigned as Cross-Sell products, typically shown on the Cart page or cart tray.\n\n\n\nTo learn how to configure cross-sell products in WooCommerce, see this doc: How to Configure Upsell and Cross-Sell Products in WooCommerce\n\n\n\nHow the cart looks with a recommended product:\";s:3:\"url\";s:65:\"https://cartflows.com/docs/product-recommendation-for-empty-cart/\";s:4:\"slug\";s:37:\"product-recommendation-for-empty-cart\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-10-21T20:33:48+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:50;O:8:\"stdClass\":8:{s:2:\"id\";i:62560;s:5:\"title\";s:64:\"How to Configure Upsells and Cross-Sells Products in WooCommerce\";s:7:\"content\";s:1048:\"WooCommerce allows you to manually assign related products for upselling and cross-selling. These settings help guide customers toward relevant products, which can improve conversions and increase order value.\n\n\n\nOnce configured, Modern Cart can use these product associations to display recommendations in the cart tray.\n\n\n\nSet Up Upsells and Cross-Sells in WooCommerce\n\n\n\n\nGo to Products &gt; All Products and click Edit on the product you want to configure.\n\n\n\nScroll down to the Product data section.\n\n\n\nClick the Linked Products tab.\n\n\n\nUnder Upsells, search and select the products you want to recommend as upsell options.These products are usually higher-end alternatives to the current item.\n\n\n\nUnder Cross-sells, search and select the products you want to show on the Cart page or inside the cart tray.These are typically complementary products.\n\n\n\nClick Update to save your changes.\n\n\n\n\n\n\n\n\nOnce set, these products will be used in Modern Cart wherever upsell or cross-sells options are selected as the source for product recommendations.\";s:3:\"url\";s:60:\"https://cartflows.com/docs/upsell-cross-sell-in-woocommerce/\";s:4:\"slug\";s:32:\"upsell-cross-sell-in-woocommerce\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-07-22T19:01:02+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:51;O:8:\"stdClass\":8:{s:2:\"id\";i:62503;s:5:\"title\";s:49:\"Control When the Cart Opens After Adding Products\";s:7:\"content\";s:1159:\"Modern Cart gives you control over when the cart tray opens after a product is added to the cart. This lets you tailor the cart behavior to match your store’s checkout flow, whether you want to encourage quick purchases or reduce distractions.\n\n\n\nThis feature is located under the General settings tab and is available only in the Modern Cart Pro version.\n\n\n\nCart Auto-Open Behavior\n\n\n\nUse this setting to control how the cart tray responds when a product is added to the cart. The default behavior is For every item added.\n\n\n\n\nFor every item addedThe cart tray slides in every time a product is added. This keeps users aware of what’s in their cart and encourages checkout.\n\n\n\nFor the first time addedThe cart tray slides in only when the first product is added to the cart. For any additional products added afterward, the cart tray will not open automatically. This provides a more subtle experience for repeat additions.\n\n\n\nDon’t open automaticallyThe cart tray will never slide in automatically when a product is added. This is useful if you want users to stay focused on browsing.\n\n\n\n\nWatch the video below to see how this setting works in action:\";s:3:\"url\";s:51:\"https://cartflows.com/docs/cart-auto-open-behavior/\";s:4:\"slug\";s:23:\"cart-auto-open-behavior\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-09-23T15:52:00+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:52;O:8:\"stdClass\":8:{s:2:\"id\";i:62415;s:5:\"title\";s:52:\"Refresh the Checkout Page After CartFlows AJAX Calls\";s:7:\"content\";s:1769:\"In some cases, especially when working with dynamic products like subscriptions, the checkout page may not refresh automatically when switching between products or options. This can lead to a mismatch in available payment methods or shipping options.\n\n\n\nTo resolve this, CartFlows provides a filter that forces the checkout to refresh and trigger the necessary AJAX calls, ensuring the correct data is always loaded on the checkout page.\n\n\n\nThis is especially useful when:\n\n\n\n\nSwitching between subscription and non-subscription products\n\n\n\nDynamically changing product options that affect checkout behavior\n\n\n\nEnsuring updated shipping/payment methods based on the product or variation\n\n\n\n\nHow to Enable Checkout Refresh After AJAX Calls\n\n\n\nStep 1: Add the Filter to Your Site\n\n\n\nTo make the checkout page refresh automatically, add the following code to your site’s functions.php file or use a code snippet plugin:\n\n\n\nadd_filter( \'cartflows_checkout_trigger_update_order_review\', \'__return_true\' );\n\n\n\n\nNeed help adding custom code? Here’s how to safely add code snippets to your site.\n\n\n\nStep 2: Save and Test\n\n\n\nAfter adding the filter, visit your checkout page and test switching between different product types or options. The page will now refresh the order review section as expected, showing the correct payment methods and other dynamically updated options.\n\n\n\nWhen to Use This Filter\n\n\n\nThis filter is particularly helpful if you:\n\n\n\n\nUse WooCommerce Subscriptions along with other types of products with CartFlows funnel checkout\n\n\n\nOffer products with conditional logic affecting checkout (e.g., special payment gateways for specific items)\n\n\n\nNeed to ensure the checkout page always reflects the latest data without requiring manual updates/refreshes.\";s:3:\"url\";s:80:\"https://cartflows.com/docs/refresh-the-checkout-page-after-cartflows-ajax-calls/\";s:4:\"slug\";s:52:\"refresh-the-checkout-page-after-cartflows-ajax-calls\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-07-07T21:12:32+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"code-snippets\";}}i:53;O:8:\"stdClass\":8:{s:2:\"id\";i:62353;s:5:\"title\";s:65:\"How to Show Dropdown Instead of Swatches for Specific Attributes?\";s:7:\"content\";s:1104:\"By default, the Variation Swatches plugin replaces WooCommerce’s dropdowns with more visually appealing swatches. However, if you’d like to display specific attributes as dropdowns while using swatches for others, this can be easily done, no custom code required.\n\n\n\nDisable Swatches for a Specific Attribute\n\n\n\nThis method allows you to manage swatches and dropdowns right from the WordPress dashboard.\n\n\n\nStep 1: Go to Attributes\n\n\n\nNavigate to Products &gt; Attributes in your WordPress dashboard.\n\n\n\nStep 2: Edit the Attribute\n\n\n\nFind the attribute you want to display as a dropdown and click Edit.\n\n\n\n\n\n\n\nStep 3: Change Type to Select\n\n\n\nIn the Type dropdown, choose Select and update the attribute.\n\n\n\n\n\n\n\nStep 4: Update Global Settings\n\n\n\nGo to WooCommerce &gt; Variation Swatches &gt; Settings. Under General settings, ensure that the Auto Convert Dropdowns to Label option is disabled.\n\n\n\n\n\n\n\nThis setting ensures attributes set as Select remain dropdowns on product pages.\n\n\n\nWith this method, you can mix and match dropdowns and swatches on the same product for a flexible user experience.\";s:3:\"url\";s:92:\"https://cartflows.com/docs/how-to-show-dropdown-instead-of-swatches-for-specific-attributes/\";s:4:\"slug\";s:64:\"how-to-show-dropdown-instead-of-swatches-for-specific-attributes\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-07-03T21:41:25+05:30\";s:8:\"category\";a:1:{i:0;s:18:\"variation-swatches\";}}i:54;O:8:\"stdClass\":8:{s:2:\"id\";i:60546;s:5:\"title\";s:52:\"Starting out with Variation Swatches for Woocommerce\";s:7:\"content\";s:3775:\"Let\'s start by understanding how to set this plugin up with step by step process.\n\n\n\nStep 1: Setting up attributes of the products\n\n\n\nIn order to use this plugin to create different variants, you will need to set up the different attributes that you need as a differentiator between the variants. For example, color, sizes and labels. Follow the steps below to set up the product attributes:\n\n\n\n\nFirst, navigate to the WordPress dashboard\n\n\n\nClick on Products and select attributes\n\n\n\n\n\n\n\n\n\nTo add an attribute, first give it a name (i.e colors)\n\n\n\nEnter the slug of the attribute (i.e colors)\n\n\n\n\n\n\n\n\n\nSelect the type of the attribute. As of now there are three different types that are available inside the plugin and they are color, label and image.\n\n\n\n\n\n\n\n\n\nSelect the shape of the attributes. There are 4 different types of shapes are available such as default, square, rounded corner and circle.\n\n\n\n\n\n\n\n\nBy default the swatches will be designed as you customize them from the settings page as shown in the image below. You can change the shape of the swatches to rounded corner, square and round as per the requirement.\n\n\n\n\n\n\n\nBy default the size of the swatches will be selected as 24px. You can change the size by clicking on the box and entering the value of the pixels as per your requirement.\n\n\n\n\n\n\n\nFinally, click on the Add Attribute button to add the changes to the site.\n\n\n\nStep 2: Configuring the terms of the Attributes\n\n\n\nOnce the attributes are added, you will need to configure the terms for each of the attributes. You will need to click on the configure terms button next to each attribute.\n\n\n\n\n\n\n\nIn this example, we are going to configure the color options for a particular attribute. There are 4 options that you can select from. These options are the name of the color, slug of the color, a short description of the color and a color selector to select the color. Once you have selected the options as per your requirements, click on Add New button at the bottom to add it to the list.\n\n\n\n\n\n\n\nYou can add as many attributes as you need based on the requirement. Once you have added the terms, the final screen would like the below image.\n\n\n\n\n\n\n\nStep 3: Setting up product variations\n\n\n\nNow that the product attributes are set, you will need to select the product variations in order to display the variation swatches on the front-end of your website.\n\n\n\n\nTo select the product variations, please navigate to the Products and click on All Products.\n\n\n\nClick on Edit next to the product on which you would like to set up the variations\n\n\n\n\n\n\n\n\n\nUnder product data, select the product type as the Variable Product\n\n\n\n\n\n\n\n\n\nClick on the Attribute tab and select the attributes that you would like to be included in the front-end and click on the Add button to get them added to the list\n\n\n\n\n\n\n\n\n\nOnce the attribute is added click on the Select All button to add all the variants to the product.\n\n\n\nEnsure that the Used For Variation button is checked\n\n\n\nClick on the Save Attribute button to save the changes\n\n\n\n\n\n\n\n\n\nOnce the attributes are saved, you will need to set the variation in the product. To do that, please navigate to the Variation Tab.\n\n\n\nClick on the Go button to create the variations\n\n\n\nThis will add the variation to the product based on the attributes that you have selected earlier\n\n\n\n\n\n\n\n\n\nYou can also set a custom image and price for this variant by opening the drop-down menu\n\n\n\nSelect the variation by clicking on the drop-down menu\n\n\n\nAdd a custom price for this variant by entering the amount in the Regular Price field\n\n\n\nAdd an image by clicking on the image button\n\n\n\nRepeat the same process to another variants\n\n\n\n\n\n\n\n\nOnce you are done editing the field, click on Save Changes button at the bottom and update the product.\";s:3:\"url\";s:80:\"https://cartflows.com/docs/starting-out-with-variation-swatches-for-woocommerce/\";s:4:\"slug\";s:52:\"starting-out-with-variation-swatches-for-woocommerce\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-19T22:36:00+05:30\";s:8:\"category\";a:1:{i:0;s:18:\"variation-swatches\";}}i:55;O:8:\"stdClass\":8:{s:2:\"id\";i:60557;s:5:\"title\";s:14:\"Basic Settings\";s:7:\"content\";s:6150:\"Once the plugin is installed you will need to manually set it up in order to get the customized and desired results on your WooCommerce products. To access the settings, you will need to navigate to the WordPress dashboard and click on plugins&gt;installed plugin. Scroll down to the plugin and click on settings to access the settings page.\n\n\n\n\n\n\n\nGeneral Settings:\n\n\n\nUnder general settings, you will find three options which are mentioned below:\n\n\n\n\nEnable for product page: This will enable the features of the plugin in the single product page where the plugin will show the variants available for a particular product\n\n\n\nEnable for Shop Page: This will enable the users to select the different variants of the products directly from the shop/archive pages\n\n\n\nAuto convert the drop downs to labels: Enabling this feature will automatically convert the drop-downs to labels\n\n\n\n\n\n\n\n\nGlobal Styling:\n\n\n\nUnder the global styling options, you will be able to customize the swatches as per your requirements and style segments. Following are the options available:\n\n\n\nSwatch Styling\n\n\n\nSwatch minimum width:\n\n\n\nBy default the minimum width of the swatches are set to 24px. You can change this by clicking on the arrows or by manually typing the number of pixels inside the box.\n\n\n\n\n\n\n\nSwatch minimum height\n\n\n\nBy default the minimum width of the swatches are set to 24px. You can change this by clicking on the arrows or by manually typing the number of pixels inside the box.\n\n\n\n\n\n\n\nSwatch border radius\n\n\n\nThe border radius is by default selected as 3px. You can change this by clicking on the arrows or by manually typing the number of pixels inside the box.\n\n\n\n\n\n\n\nYou can customize the swatches as per your requirements by changing the default value to any value. Please note that the global setting will only be applied to the product if the product attribute settings is set to default. Changing the height, width and the border radius to the same value will change the shape of the swatches as circles.\n\n\n\n\n\n\n\n Font size\n\n\n\nThe font size of the swatch is by default selected as 12px. You can change this by clicking on the arrows or by manually typing the number of pixels inside the box.\n\n\n\n\n\n\n\nPlease note that you can change the font only for the label attribute. This does not work for the color or the size attributes.\n\n\n\nBorder color\n\n\n\nYou can use the color selector to chose the border color of the swatch as per your requirement.\n\n\n\n\n\n\n\nDisabled attribute effect\n\n\n\nThis option will help blur the disabled attributes so that the users can not select the same attribute. There are three major options that you can choose from which are blur, blur with cross and hide it completely from the front end of the website.\n\n\n\n\n\n\n\nTooltip Styling\n\n\n\nTooltip is the option that helps pop up the name of the label, color or the size attribute when the user hovers the mouse cursor over them. There are the following options that you can choose from to customize how Tooltips appear on your website. You can simply choose to turn this option on or off by using the toggle button.\n\n\n\n\n\n\n\nFront End view of the Tooltip\n\n\n\n\n\n\n\nTooltip background color\n\n\n\nThis option will help you customize the background color of the tooltips. In this example, we have set the background color as red.\n\n\n\n\n\n\n\nTooltip font color\n\n\n\nThis option will help you customize the font color of the tooltips. In this example, we have set the background color as white. You can change this by clicking on the “Select Color” option.\n\n\n\n\n\n\n\nTooltip font size\n\n\n\nThis option will let you change the font size of the tooltip. By default this is set to 12px. You can change it by entering the custom value in the box or using the up and down arrow adjacent to it.\n\n\n\n\n\n\n\n Image preview on tooltip\n\n\n\nImage preview will be shown in tooltip if this option is enabled, This setting works only for image type swatches\n\n\n\n\n\n\n\nLabel Styling\n\n\n\nLabel position\n\n\n\nThis option will help you in positioning the label on the product page. Currently there are three settings available to this function. They are None, Inline and stacked.\n\n\n\n\n\n\n\nInline: Inline settings will position the labels in the same line as mentioned in the image below:\n\n\n\n\n\n\n\nStacked: this option will stack the label below the tag as mentioned in the image below\n\n\n\n\n\n\n\nLabel font size\n\n\n\nThis option enables the users to change the font size of the labels\n\n\n\n\n\n\n\nWidgets Styling\n\n\n\n Filters\n\n\n\nEnabling this option will add the swatches to the filter option of the woocommerce that means the users can use the filter option to choose from different swatches on the product archive page.\n\n\n\n\n\n\n\nShop Page Styling\n\n\n\nTo design and style the swatches on the shop page of your website, we have incorporated a few cool styling options.\n\n\n\nSwatch Alignment\n\n\n\nThis option enables you to change the alignment of the swatches on the shop page. Currently, there are three different styles available as left, right and central.\n\n\n\n\n\n\n\nThis is how it looks on the front-end with a right alignment of the swatches\n\n\n\n\n\n\n\n Swatch Position\n\n\n\nThis option enables you to change the position of the swatches on the shop page. Currently there are 4 different positions that you can place the swatches on the shop page and they are After Price, Before Price, After Title and Before Title.\n\n\n\n\n\n\n\nHere is an example of how this looks on the front-end of the website when you place the swatches before price\n\n\n\n\n\n\n\nShow Swatches Label\n\n\n\nTurning this toggle button on will display the labels for the swatches on the shop page. As you can see in the image below that the color and label are visible stacked to the swatches.\n\n\n\n\n\n\n\n Attributes limit\n\n\n\nYou can limit the number of attributes that would be displayed on the shop page using this option. You can either leave it blank or enter 0 in the box to load all the attributes. You can choose any number of attributes that you would like to display on the shop page.\n\n\n\n\n\n\n\nFron-end view\n\n\n\n\n\n\n\nOverride global settings\n\n\n\nThis option overrides any global setting inside the plugin and allows you to set customized width, height, border radius and font size inside the shop page.\";s:3:\"url\";s:42:\"https://cartflows.com/docs/basic-settings/\";s:4:\"slug\";s:14:\"basic-settings\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-19T22:32:59+05:30\";s:8:\"category\";a:1:{i:0;s:18:\"variation-swatches\";}}i:56;O:8:\"stdClass\":8:{s:2:\"id\";i:60549;s:5:\"title\";s:49:\"How to Install Variation Swatches for WooCommerce\";s:7:\"content\";s:1075:\"The Variation Swatches for WooCommerce plugin enhances your product pages by displaying product variations using color, image, or label swatches instead of dropdowns.\n\n\n\nThis documentation shows you how to install and activate the plugin on your WordPress website.\n\n\n\nHow to install Variation Swatches for WooCommerce\n\n\n\nTo install this plugin on your WordPress site, follow the steps below.\n\n\n\nStep 1: Log in to your WordPress website\n\n\n\nWhen you log in, you will be in your Dashboard.\n\n\n\nStep 2: In the Plugins menu, click on Add New Plugin\n\n\n\nFrom your WordPress dashboard, go to Plugins &gt; Add New Plugin to open the plugin installation screen.\n\n\n\n\n\n\n\nStep 3: Search for Variation Swatches\n\n\n\nIn the search bar, search for Variation Swatches.\n\n\n\n\n\n\n\nStep 4: Click Install Now\n\n\n\nIn the Variation Swatches for WooCommerce card, click Install Now.\n\n\n\n\n\n\n\nStep 5: Click Activate\n\n\n\nOnce the installation has finished, click Activate.\n\n\n\n\n\n\n\nThe plugin is now active on your website and you can start using swatches in your WooCommerce products and CartFlows product steps.\";s:3:\"url\";s:61:\"https://cartflows.com/docs/how-to-install-variation-swatches/\";s:4:\"slug\";s:33:\"how-to-install-variation-swatches\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-09-11T11:22:24+05:30\";s:8:\"category\";a:1:{i:0;s:18:\"variation-swatches\";}}i:57;O:8:\"stdClass\":8:{s:2:\"id\";i:59947;s:5:\"title\";s:89:\"Why is Step Editing Disabled When I Try to Edit the CartFlows Checkout or Thank You Page?\";s:7:\"content\";s:1020:\"If you\'re trying to edit the CartFlows Checkout or Thank You step and see the message:\n\n\n\n\nAs the Instant Checkout is enabled in the flow settings, to customize the checkout step, use the Design tab under Step Settings.\n\n\n\n\nIt means the CartFlows Instant Checkout feature is enabled for that funnel. When Instant Checkout is enabled, page builder editing is disabled for that step. However, you can still make design-related changes using the Design tab in the Step Settings.\n\n\n\nHow to Enable Page Builder Editing:\n\n\n\nIf you\'d like to edit the step using your page builder (e.g., Elementor, Gutenberg, etc.), follow these steps to disable Instant Checkout:\n\n\n\n1) Go to your CartFlows Funnel.\n\n\n\n\n\n\n\n2) Click on the gear icon &#x2699;&#xfe0f; on the top right to open the Funnel Settings.\n\n\n\n\n\n\n\n3) In the Settings, locate the Instant Checkout toggle and disable it.\n\n\n\n\n\n\n\n4) Click Save Settings.\n\n\n\n5) Refresh the funnel page.\n\n\n\nNow, you should be able to edit the Checkout (or Thank You) step using your page builder.\";s:3:\"url\";s:116:\"https://cartflows.com/docs/why-is-step-editing-disabled-when-i-try-to-edit-the-cartflows-checkout-or-thank-you-page/\";s:4:\"slug\";s:88:\"why-is-step-editing-disabled-when-i-try-to-edit-the-cartflows-checkout-or-thank-you-page\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-05T21:30:05+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:58;O:8:\"stdClass\":8:{s:2:\"id\";i:59085;s:5:\"title\";s:44:\"Instant Layout for Upsell and Downsell Steps\";s:7:\"content\";s:1434:\"We’ve expanded our Instant Layout support to include Upsell and Downsell steps in your funnel—making it easier than ever to build high-converting funnels without relying on page builders.\n\n\n\nInstant Layout is a clean, fast-loading, conversion-focused layout built right into CartFlows. It\'s ideal for digital products like music, software, and eBooks, and offers a distraction-free experience with an intuitive interface.\n\n\n\nHow to Enable Instant Layout for Upsell/Downsell Steps\n\n\n\nThere’s no additional setup needed!\n\n\n\nIf you already have Instant Layout enabled in your funnel settings:\n\n\n\n\nThe layout will now automatically apply to your Upsell and Downsell steps.\n\n\n\nThere\'s no need to recreate or manually modify those steps.\n\n\n\n\nIf you haven’t enabled Instant Layout yet:\n\n\n\n\nGo to your Funnel &gt; Click the Settings (&#x2699;&#xfe0f;) icon in the top-right.\n\n\n\nEnable the Instant Layout toggle.\n\n\n\n\n\n\n\n\nCustomizing Upsell &amp; Downsell Steps Using Instant Layout\n\n\n\nOnce enabled, you can customize the appearance of your Upsell and Downsell steps directly in CartFlows:\n\n\n\n\nNavigate to the Funnel step list.\n\n\n\nClick Settings on your Upsell or Downsell step.\n\n\n\nA new Design tab will appear.\n\n\n\nUse the Design options to change:\n\nButton labels and styling\n\n\n\nTypography\n\n\n\nColors\n\n\n\nLayout-specific options\n\n\n\n\n\n\n\n\n\n\nThis makes customization easy without needing to open a page builder.\n\n\n\nFrequently Asked Questions\";s:3:\"url\";s:66:\"https://cartflows.com/docs/instant-layout-for-upsell-and-downsell/\";s:4:\"slug\";s:38:\"instant-layout-for-upsell-and-downsell\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-04-28T23:02:21+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:59;O:8:\"stdClass\":8:{s:2:\"id\";i:58449;s:5:\"title\";s:41:\"How Product Recommendations Feature Works\";s:7:\"content\";s:1364:\"The Product Recommendations feature in Modern Cart helps you boost sales by showing related products in the cart tray. This encourages customers to add more items before checkout and can increase the average order value (AOV).\n\n\n\nNote\n1. The Product Recommendations feature is available only in Modern Cart Pro.2. This feature only works with Simple Products.\n\n\n\n\n\n\n\n\nModes\n\n\n\nThis option includes four available modes:\n\n\n\n\nDisable – Turns off the product recommendation feature.\n\n\n\nCustom – Lets you manually select specific products to display as recommendations. Refer to this doc to know more about this feature.\n\n\n\nFrom Upsells – Displays upsells products configured in WooCommerce for the item added to the cart.\n\n\n\nFrom Cross-Sells – Displays cross-sells products configured in WooCommerce for the item added to the cart.\n\n\n\n\nTo learn how to configure upsell products in WooCommerce, see this doc: How to Configure Upsell and Cross-Sell Products in WooCommerce.\n\n\n\nFrontend view\n\n\n\n\n\n\n\nRecommendation List Style\n\n\n\nAfter selecting the product recommendation source, you can also choose how the recommended products are displayed in the cart tray.\n\n\n\nThe Recommendation List Style option offers two layouts:\n\n\n\n\nStyle 1 – A compact layout suitable for simpler carts.\n\n\n\nStyle 2 – A more detailed layout with enhanced styling.\n\n\n\n\nSee it in action\";s:3:\"url\";s:51:\"https://cartflows.com/docs/product-recommendations/\";s:4:\"slug\";s:23:\"product-recommendations\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-10-21T20:33:21+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:60;O:8:\"stdClass\":8:{s:2:\"id\";i:58130;s:5:\"title\";s:41:\"Customize General Settings in Modern Cart\";s:7:\"content\";s:3135:\"Modern Cart for WooCommerce allows you to control the core display and cart behavior through its General panel. These options help you define how the cart appears on your store and which features you want to enable or disable.\n\n\n\nThis documentation explains how to access and configure the General settings.\n\n\n\nAccess General Settings\n\n\n\nFrom your WordPress dashboard, go to WooCommerce &gt; Modern Cart, then click on the General tab from the left side of the settings window.\n\n\n\nHere, you’ll find the following options:\n\n\n\n1. Enable Modern Cart\n\n\n\nChoose where to show the floating cart icon. You can select to show it on the entire site, only on WooCommerce pages, or disable it completely.\n\n\n\n2. Cart Type (Pro)\n\n\n\nChoose between Slideout and Popup.\n\n\n\nSlideout Cart\n\n\n\n\n\n\n\nPopup Cart\n\n\n\n\n\n\n\nRefer to this doc to learn more about Popup Cart feature.\n\n\n\n3. Cart Style\n\n\n\nChoose a cart style from six available designs (Style 1 to Style 6) to best match your store layout.Frontend view\n\n\n\n\n\n\n\n4. Cart Opening Direction (Pro)\n\n\n\nChoose the open direction of the cart tray when Slideout cart type is chosen. Refer to this doc to learn more about how this feature works.\n\n\n\n5. Cart Header Style (Pro)\n\n\n\nPick a cart header design from two available styles (Style 1 and Style 2) that best suits your store\'s look and feel.Frontend view\n\n\n\n\n\n\n\n6. Order Summary Style (Pro)\n\n\n\nChoose how the order summary appears inside the cart tray. Select from two available styles (Style 1 and Style 2) that fit your store’s layout and shopping experience.Frontend view\n\n\n\n\n\n\n\n7. Cart Auto-Open Behavior (Pro)\n\n\n\nAutomatically open the cart after a product is added to help users review their items easily, great for faster checkouts! Refer to this doc to learn more about this feature.\n\n\n\n8. Display Coupon Field\n\n\n\nChoose how you want the coupon field to appear in the cart tray:\n\n\n\n\nDisabled – Hides the coupon field.\n\n\n\nMinimize – Shows the field collapsed by default.\n\n\n\nExpand – Shows the field in full view.\n\n\n\n\nFrontend view\n\n\n\n\n\n\n\n9. Show Product Image in Mobile View (Pro)\n\n\n\nUse this option to show product images in the cart on mobile devices. Disable it to hide images and keep the cart more compact for better performance on smaller screens.\n\n\n\n10. Enable Free Shipping Bar\n\n\n\nToggle this option to display a progress bar showing how close the cart is to qualifying for free shipping. If you haven’t set up Free Shipping in WooCommerce yet, refer to this doc for setup steps.Frontend view\n\n\n\n\n\n\n\n11. Show Shipping (Pro)\n\n\n\nEnable this to display the shipping cost in the cart tray.Frontend view\n\n\n\n\n\n\n\n12. Show Subtotal (Pro)\n\n\n\nEnable this to display a subtotal line in the cart tray.Frontend view\n\n\n\n\n\n\n\n13. Show Total (Pro)\n\n\n\nEnable this to display the total amount in the cart tray.Frontend view\n\n\n\n\n\n\n\n14. Show Discount (Pro)\n\n\n\nEnable this to display the discount in the cart tray, after the coupon is entered.Frontend view\n\n\n\n\n\n\n\n15. Show Tax (Pro)\n\n\n\nEnable this to display the tax in the cart tray, if any.Frontend view\n\n\n\n\n\n\n\nNote\nAll changes are saved automatically, there is no save button in the settings panel.\";s:3:\"url\";s:56:\"https://cartflows.com/docs/modern-cart-general-settings/\";s:4:\"slug\";s:28:\"modern-cart-general-settings\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-10-21T20:28:39+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:61;O:8:\"stdClass\":8:{s:2:\"id\";i:58113;s:5:\"title\";s:42:\"How to Enable Free Shipping in WooCommerce\";s:7:\"content\";s:595:\"Modern Cart for WooCommerce includes a Free Shipping Progress Bar that shows customers how much more they need to spend to qualify for free shipping. To make this feature work, you need to enable Free Shipping in your WooCommerce settings.\n\n\n\nFree Shipping is a core WooCommerce feature. For a complete explanation and setup steps, refer to the official WooCommerce documentation here: https://woocommerce.com/document/free-shipping/\n\n\n\nIf you prefer a visual walkthrough, you can also watch the video below that shows how to enable free shipping in WooCommerce.\n\n\n\n\nhttps://youtu.be/7s-SHvVR2Os\";s:3:\"url\";s:63:\"https://cartflows.com/docs/enable-free-shipping-in-woocommerce/\";s:4:\"slug\";s:35:\"enable-free-shipping-in-woocommerce\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-08-05T20:12:03+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:62;O:8:\"stdClass\":8:{s:2:\"id\";i:58109;s:5:\"title\";s:41:\"Customize Cart Tray Labels in Modern Cart\";s:7:\"content\";s:1710:\"Modern Cart for WooCommerce allows you to customize the text labels displayed in the cart tray. This helps you personalize the cart language to match your store’s tone and improve your customer’s shopping experience.\n\n\n\nYou can modify titles, placeholders, and button labels directly from the settings — no coding required.\n\n\n\nCustomize Cart Tray Labels\n\n\n\nFrom your WordPress dashboard, go to WooCommerce &gt; Modern Cart, then click on the Text Settings tab from the left side of the settings window.\n\n\n\nHere, you’ll find options to change the following labels:\n\n\n\n\nMain Heading – Sets the main heading for the cart. This is the most important title and helps customers understand what this section is about.\n\n\n\nProduct Recommendation Title (Pro)  – Defines the heading for the recommendation slider to grab customer attention.\n\n\n\nEmpty Cart Recommendation Title – Set a clear and engaging title for your empty cart recommendation area. This appears above the product recommendation when the cart is empty.\n\n\n\nCoupon Field Title – Sets a title above the coupon field so customers know its purpose.\n\n\n\nCoupon Field Placeholder – Defines the placeholder text inside the coupon input field (e.g., \"Enter your coupon code\").\n\n\n\nCheckout Button Text – Customizes the checkout button label to match your store’s style and guide customers clearly.\n\n\n\nFree Shipping Bar Text – Adjusts the text in the free shipping progress bar. Use {amount} to dynamically display the remaining amount required to qualify for free shipping.\n\n\n\nDiscount Label – Defines the label used to display the sale price.\n\n\n\n\n\n\n\n\nNote\nAll changes are saved automatically, there\'s no save button in the settings panel.\";s:3:\"url\";s:56:\"https://cartflows.com/docs/customize-modern-cart-labels/\";s:4:\"slug\";s:28:\"customize-modern-cart-labels\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-10-21T20:32:54+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:63;O:8:\"stdClass\":8:{s:2:\"id\";i:58103;s:5:\"title\";s:42:\"Customize Cart Tray Styling in Modern Cart\";s:7:\"content\";s:2758:\"Modern Cart for WooCommerce allows you to adjust the visual appearance of the cart tray so it fits your store\'s branding and design. From colors and fonts to animation speed and layout width, the plugin provides flexible styling controls to help you customize the look and feel of the sliding cart.\n\n\n\nThis documentation explains how to access the styling settings and configure the available options.\n\n\n\nFrom your WordPress dashboard, go to WooCommerce &gt; Modern Cart, then click on the Styling tab from the left side of the settings window.\n\n\n\n\n\n\n\nCustomize Cart Tray Styling\n\n\n\nColor\n\n\n\n\nPrimary Color – Sets the main color for key cart elements, allowing you to align it with your store’s branding.\n\n\n\nButton Text Color – Adjusts the text color for buttons inside the cart.\n\n\n\nHeading Color – Controls the color of headings within the cart, helping differentiate key sections.\n\n\n\nBackground Color – Sets the overall background color of the cart tray to blend with your store’s design.\n\n\n\nBody Color – Defines the color of general text in the cart, including product names, prices, and details.\n\n\n\nHeader Font Color – Sets the color of the cart header text to match your brand style.\n\n\n\nHeader Background Color – Sets the background color of the cart header section for a cohesive look.\n\n\n\nQuantity Font Color – Sets the text color used in the quantity badge displayed next to each product.\n\n\n\nQuantity Background Color – Sets the background color of the quantity badge inside the cart tray.\n\n\n\n\nFloating Cart Icon\n\n\n\nRefer to this documentation to know more about this setting.\n\n\n\nWidth\n\n\n\n\nSlide Out Width (Desktop) – Determines how wide the cart tray appears on desktop devices, measured in pixels.\n\n\n\nSlide Out Width (Mobile) – Defines the cart tray width on mobile devices, measured in percentage.Animation Speed – Controls how fast the cart tray opens and closes, allowing for a smoother or snappier effect.\n\n\n\n\nMiscellaneous\n\n\n\n\nProduct Image Size – Defines the display size of product images inside the cart tray.\n\n\n\nCart Item Padding – Controls the spacing around each product entry in the cart tray (in pixels).\n\n\n\nAnimation Speed – Controls how fast the cart tray opens and closes, allowing for a smoother or snappier effect.\n\n\n\n\nAstra Global Color Palette Integration\n\n\n\nIf you’re using our Astra theme, Modern Cart will automatically detect Astra Global Color Palette (GCP). You’ll then have the option to link your cart tray colors with Astra’s palette, helping maintain consistent branding across your store.\n\n\n\n\n\n\n\nTo learn more about Astra’s Global Color Palette settings, refer to this documentation.\n\n\n\nNote\nAll changes are saved automatically, there’s no save button in the settings panel.\";s:3:\"url\";s:57:\"https://cartflows.com/docs/customize-modern-cart-styling/\";s:4:\"slug\";s:29:\"customize-modern-cart-styling\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-10-21T20:30:09+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:64;O:8:\"stdClass\":8:{s:2:\"id\";i:58096;s:5:\"title\";s:43:\"Customize Cart Icon Settings in Modern Cart\";s:7:\"content\";s:1463:\"The Floating Cart Icon settings in Modern Cart let you control how the cart button looks and behaves on your store. You can manage its visibility, placement, style, and even trigger it with a custom element.\n\n\n\nAccess Floating Cart Icon Settings\n\n\n\nTo access these settings, go to WooCommerce &gt; Modern Cart &gt; Floating Cart Icon.\n\n\n\n\n\n\n\n1. Display Floating Cart Button (Pro)\n\n\n\nUse this option to show or hide the floating cart button. This does not affect any custom triggers you may set.\n\n\n\n2. Floating Cart Button Position\n\n\n\nSelect where you want to display the floating cart button on your website.\n\n\n\n\n\n\n\n3. Hide Cart Button When Empty (Pro)\n\n\n\nEnable this option to hide the floating cart button when the cart is empty. Once a product is added, the button will reappear.\n\n\n\n\n\n\n\n4. Select Floating Cart Button Icon (Pro)\n\n\n\nChoose from predefined icons or upload a custom icon that matches your brand. Supported formats include .png, .jpg, and .svg. The recommended size is 36 × 36 px.\n\n\n\n\n\n\n\nIf you’d like to upload and use your own custom icon, see this doc for detailed steps: Use a Custom Image for the Floating Cart Icon\n\n\n\n5. Use Custom Trigger (Pro)\n\n\n\nEnter an element selector (#id or .class) to use as a custom trigger for opening the cart tray. You can also add multiple selectors separated by commas.\n\n\n\nTo learn more, see this doc: Open the Cart Using a Custom Button or Link\n\n\n\nNote\nAll changes in the settings are saved automatically.\";s:3:\"url\";s:54:\"https://cartflows.com/docs/customize-modern-cart-icon/\";s:4:\"slug\";s:26:\"customize-modern-cart-icon\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-10-21T20:29:25+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:65;O:8:\"stdClass\":8:{s:2:\"id\";i:58086;s:5:\"title\";s:55:\"How to Activate Modern Cart for WooCommerce License Key\";s:7:\"content\";s:1116:\"To start using Modern Cart for WooCommerce and receive automatic updates, you need to activate your license. This documentation will guide you through the process.\n\n\n\nBefore You Start\n\n\n\nBefore activating your license, make sure:\n\n\n\n\nThe Modern Cart plugin is installed and activated on your website.If you haven’t installed it yet, follow this document: How to Install Modern Cart for WooCommerce\n\n\n\nYou have access to your account to retrieve the license key.\n\n\n\n\nHow to Activate Your Modern Cart for WooCommerce License\n\n\n\nStep 1: Get Your License Key\n\n\n\n\nLog in to Membership Area.\n\n\n\nClick on API Keys from the sidebar.\n\n\n\nCopy your License Key.\n\n\n\n\n\n\n\n\nStep 2: Activate Your License in WordPress\n\n\n\n\nLog in to your WordPress dashboard.\n\n\n\nGo to WooCommerce &gt; Modern Cart.\n\n\n\nClick on the My Account tab.\n\n\n\nPaste your License Key into the provided field.\n\n\n\nClick the Activate License button.\n\n\n\n\n\n\n\n\nTroubleshooting License Activation Issues\n\n\n\nIf you’re facing problems while activating your license, refer to this document for detailed troubleshooting steps: Troubleshooting License Activation Issues\";s:3:\"url\";s:56:\"https://cartflows.com/docs/activate-modern-cart-license/\";s:4:\"slug\";s:28:\"activate-modern-cart-license\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-10-16T21:51:09+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:66;O:8:\"stdClass\":8:{s:2:\"id\";i:58078;s:5:\"title\";s:42:\"How to Install Modern Cart for WooCommerce\";s:7:\"content\";s:1474:\"This documentation explains how to install the Modern Cart for WooCommerce plugin on your website. You can install the plugin by downloading it from your account and uploading it to your WordPress site.\n\n\n\nNote\nTo use Modern Cart for WooCommerce, the Modern Cart Starter plugin must also be installed and activated. Refer to this doc to learn how to install Modern Cart Starter.\n\n\n\n\nSteps to Install Modern Cart for WooCommerce\n\n\n\nStep 1: Go to Your Account and Click on Your Products\n\n\n\nIn your account page, go to Your Products to view all your purchased products.\n\n\n\n\n\n\n\nStep 2: Download Modern Cart for WooCommerce\n\n\n\nClick Download to start the .zip file download.\n\n\n\n\n\n\n\nStep 3: Log in to Your WordPress Website\n\n\n\nWhen you log in, you will be in your Dashboard.\n\n\n\nStep 4: In the Plugins Menu, Click on Add New Plugin\n\n\n\nGo to Plugins &gt; Add New Plugin from the WordPress menu.\n\n\n\n\n\n\n\nStep 5: Click Upload Plugin at the Top of the Screen\n\n\n\nThe screen will expand with the option to upload a plugin.\n\n\n\n\n\n\n\nStep 6: Upload the Plugin and Click Install Now\n\n\n\nClick Choose File, select the downloaded .zip file, and then click Install Now to begin the installation.\n\n\n\n\n\n\n\nStep 7: Click Activate Plugin\n\n\n\nOnce the plugin is installed, click Activate Plugin to complete the installation.\n\n\n\n\n\n\n\nWhat’s Next?\n\n\n\nMake sure to activate your license key to start using the plugin and receive plugin updates. Click here to learn how to activate your Modern Cart license.\";s:3:\"url\";s:50:\"https://cartflows.com/docs/installing-modern-cart/\";s:4:\"slug\";s:22:\"installing-modern-cart\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-01-22T14:08:16+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:67;O:8:\"stdClass\":8:{s:2:\"id\";i:56555;s:5:\"title\";s:34:\"How to Claim Access to OttoKit Pro\";s:7:\"content\";s:486:\"If you purchase CartFlows Pro, you will receive OttoKit Pro as a bonus product. This documentation explains how you can claim access based on your purchase.\n\n\n\nClaiming Your OttoKit Pro Access\n\n\n\nTo claim your OttoKit Pro subscription:\n\n\n\n\nLog in to your CartFlows account.\n\n\n\nGo to the Your Products section from the sidebar.\n\n\n\nClick on the Redeem Now button.\n\n\n\nAfter a few minutes, you will receive an email from OttoKit with your account details.\n\n\n\n\n\n\n\n\nFrequently Asked Questions\";s:3:\"url\";s:62:\"https://cartflows.com/docs/how-to-claim-access-to-ottokit-pro/\";s:4:\"slug\";s:34:\"how-to-claim-access-to-ottokit-pro\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-04-08T15:18:19+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"account-store\";}}i:68;O:8:\"stdClass\":8:{s:2:\"id\";i:55419;s:5:\"title\";s:47:\"How to Rollback to a Previous CartFlows Version\";s:7:\"content\";s:1437:\"In this documentation, we\'ll explain how to use the new Rollback Feature in CartFlows. This feature allows you to revert to a previous version of the CartFlows plugin in case you encounter any issues after an update.\n\n\n\nHow to Use the Rollback Feature\n\n\n\nTo use the Rollback feature in CartFlows, follow the steps below.\n\n\n\n1. Navigate to the CartFlows SettingsGo to CartFlows > Settings.\n\n\n\n2. Locate the Version Control SectionIn the Settings window, find the Version Control section on the sidebar. This section allows you to revert to a previous version of the CartFlows plugin.\n\n\n\n\n\n\n\n3. Select the Version to RollbackIn the Version Control section, you will see a dropdown menu listing the previous versions of CartFlows. Select the version you want to revert to.\n\n\n\n\n\n\n\n4. Click RollbackAfter selecting the desired version, click the Rollback button. The plugin will automatically revert to the selected version.\n\n\n\n\n\n\n\n5. Confirm and Return to Plugins PageOnce the rollback process is complete, you will see a confirmation message. Your CartFlows plugin is now reverted to the selected version. Click the Go to Plugins page link to return to the Plugins page.\n\n\n\n\n\n\n\nNote\nBackup Your Site: Before performing a rollback, it is recommended to take a full backup of your website to avoid any data loss.Compatibility: Ensure that the version you are rolling back to is compatible with your current WordPress and WooCommerce versions.\";s:3:\"url\";s:66:\"https://cartflows.com/docs/rollback-to-previous-cartflows-version/\";s:4:\"slug\";s:38:\"rollback-to-previous-cartflows-version\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-04T18:42:09+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:69;O:8:\"stdClass\":8:{s:2:\"id\";i:55392;s:5:\"title\";s:24:\"How to Install CartFlows\";s:7:\"content\";s:1205:\"Thank you for choosing CartFlows for your website! In this documentation, we’ll explain how to install the CartFlows plugin on your WordPress website. If you are looking for instructions on how to install the CartFlows Pro plugin, we have a separate document.\n\n\n\nHow to install CartFlows\n\n\n\nTo install the free CartFlows plugin on your WordPress site, follow the steps below.\n\n\n\nStep 1: Log in to your WordPress website\n\n\n\nWhen you log in, you will be in your Dashboard.\n\n\n\nStep 2: In the Plugins menu, click on Add New Plugin\n\n\n\nFrom your WordPress dashboard, go to Plugins &gt; Add New Plugin to open the plugin installation screen.\n\n\n\n\n\n\n\nStep 3: Search for CartFlows\n\n\n\nIn the search bar, search for CartFlows.\n\n\n\n\n\n\n\nStep 4: Click Install Now\n\n\n\nIn the WooCommerce Checkout &amp; Funnel Builder by CartFlows card, click Install Now.\n\n\n\n\n\n\n\nStep 5: Click Activate\n\n\n\nOnce the installation has finished, click Activate.\n\n\n\n\n\n\n\nCongratulations! You’ve successfully installed the CartFlows plugin on your website. You can now go and configure the plugin.\n\n\n\nHow do I use CartFlows?\n\n\n\nWant to start using CartFlows immediately? Check out the overall CartFlows guide to get the most out of the plugin!\";s:3:\"url\";s:57:\"https://cartflows.com/docs/how-to-install-cartflows-free/\";s:4:\"slug\";s:29:\"how-to-install-cartflows-free\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-12-25T17:10:06+05:30\";s:8:\"category\";a:1:{i:0;s:20:\"installation-updates\";}}i:70;O:8:\"stdClass\":8:{s:2:\"id\";i:54534;s:5:\"title\";s:51:\"How to Enable Snapchat Pixel Tracking in CartFlows?\";s:7:\"content\";s:1390:\"CartFlows v2.1.0 now includes native integration for Snapchat Pixel, enabling you to track user actions and optimize your Snapchat ad campaigns effortlessly. This article provides a step-by-step guide to setting up and using Snapchat Pixel in CartFlows\n\n\n\nLet\'s get started.\n\n\n\nPre-requisites –\n\n\n\nThere are few Pre-requisites like –\n\n\n\n\nYou need to create a Snapchat ADs account.. Haven\'t Setup yet? – follow the steps here\n\n\n\nNext, you need to get the Snapchat ID, follow the steps here.\n\n\n\nCopy the Snapchat ID, you will need to paste it in the CartFlows Settings\n\n\n\n\nSteps to Add Snapchat Pixel ID in the CartFlows Settings –\n\n\n\nStep 1: From your WordPress dashboard, go to CartFlows &gt; Settings &gt; Integrations\n\n\n\n\n\n\n\n\n\n\n\nStep 2: Scroll down to the Snapchat Pixel Settings and enable the option – Enable for CartFlows pages.\n\n\n\n\n\n\n\n\n\n\n\nStep 3: Now, you will see a field to insert the Snapchat pixel ID. You can paste your Snapchat ID there.\n\n\n\n\n\n\n\nAfter adding the pixel ID you can enable the option to add the Snapchat Tracking code to enable the Snapchat Tracking Code on the whole website.\n\n\n\nStep 4: Next, you can enable the Events which CartFlows provides, they are –\n\n\n\n\nBegin Checkout\n\n\n\nAdd To Cart\n\n\n\nAdd Payment Info\n\n\n\nPurchase\n\n\n\nSubscribe\n\n\n\nOptin Lead\n\n\n\n\n\n\n\n\nStep 5: Just Save the Changes and you have successfully added Snapchat Pixel for the CartFlows.\";s:3:\"url\";s:50:\"https://cartflows.com/docs/snapchat-pixel-support/\";s:4:\"slug\";s:22:\"snapchat-pixel-support\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-04-29T18:37:10+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:71;O:8:\"stdClass\":8:{s:2:\"id\";i:54523;s:5:\"title\";s:51:\"How to Enable Pinterest Pixel Tracking in CartFlows\";s:7:\"content\";s:1236:\"CartFlows lets you connect your funnels with Pinterest Pixel to measure conversions and optimize your Pinterest ad campaigns. By adding your Pinterest Tag ID, you can track key actions like checkout, purchase, and opt-in directly within your funnel steps.\n\n\n\nThis documentation explains how to set up and enable Pinterest Pixel tracking in CartFlows.\n\n\n\nPrerequisites\n\n\n\nBefore you begin, make sure you have:\n\n\n\n\nA Pinterest Business account. Learn how to create one here.\n\n\n\nYour Pinterest Tag ID. Find your Tag ID here.\n\n\n\n\nHow to Enable Pinterest Pixel Tracking\n\n\n\n1. Go to CartFlows > Settings > Integrations tab on the sidebar.\n\n\n\n\n\n\n\n2. Add your Pinterest Tag ID into the field provided.\n\n\n\n\n\n\n\n3. (Optional) Enable the toggle to add Pinterest tracking code across your entire website.\n\n\n\n\n\n\n\n4. Enable the Consent Notice option.\n\n\n\n\n\n\n\nThis displays a short notice on the frontend for users, as required by Pinterest before events can be tracked.\n\n\n\n\n\n\n\n5. Choose the events you want to track. CartFlows supports the following:\n\n\n\n\nBegin Checkout\n\n\n\nAdd to Cart\n\n\n\nAdd Payment Info\n\n\n\nPurchase\n\n\n\nSignup\n\n\n\nOpt-in Lead\n\n\n\n\n\n\n\n\nOnce you’ve saved your settings, Pinterest Pixel tracking will be active for your CartFlows funnels.\";s:3:\"url\";s:51:\"https://cartflows.com/docs/pinterest-pixel-support/\";s:4:\"slug\";s:23:\"pinterest-pixel-support\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-27T16:46:54+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:72;O:8:\"stdClass\":8:{s:2:\"id\";i:54093;s:5:\"title\";s:48:\"How to Enable TikTok Pixel Tracking in CartFlows\";s:7:\"content\";s:1436:\"CartFlows supports TikTok Pixel tracking to help you measure conversions and optimize your ad campaigns. This feature allows you to track important user actions such as checkout, purchases, and opt-ins directly within your CartFlows funnel steps.\n\n\n\nBy adding your TikTok Pixel ID, you can connect your website activity with your TikTok Ads Manager and gain better insights into performance.\n\n\n\nPrerequisites\n\n\n\nBefore enabling TikTok Pixel tracking in CartFlows, make sure you have:\n\n\n\n\nA TikTok Ads Manager Account. Create one here.\n\n\n\nA TikTok Pixel ID.\n\n\n\n\nHow to Enable TikTok Pixel Tracking\n\n\n\n1. Go to CartFlows &gt; Settings &gt; Integrations.\n\n\n\n2. Scroll down to the TikTok Pixel tab and enable the toggle to activate TikTok tracking on CartFlows pages.\n\n\n\n\n\n\n\n3. Enter your TikTok Pixel ID in the field.\n\n\n\n\n\n\n\n4. (Optional) Enable the toggle to add TikTok tracking code across your entire website.\n\n\n\n\n\n\n\n5. Choose the events you want to track. CartFlows supports the following:\n\n\n\n\nBegin Checkout\n\n\n\nAdd To Cart\n\n\n\nView Content\n\n\n\nAdd Payment Info\n\n\n\nPurchase\n\n\n\nOptin Lead\n\n\n\n\n\n\n\n\nAfter saving your settings, TikTok Pixel tracking will automatically start working across your CartFlows funnels.\n\n\n\nHow to Verify TikTok Pixel Tracking\n\n\n\nYou can confirm your TikTok Pixel setup using the TikTok Pixel Helper Chrome extension. This extension will show whether the pixel is firing correctly on your checkout and funnel pages.\";s:3:\"url\";s:48:\"https://cartflows.com/docs/tiktok-pixel-support/\";s:4:\"slug\";s:20:\"tiktok-pixel-support\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-26T20:12:10+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:73;O:8:\"stdClass\":8:{s:2:\"id\";i:54196;s:5:\"title\";s:36:\"CartFlows Bricks Builder Integration\";s:7:\"content\";s:3316:\"CartFlows 2.1.0 introduces full integration with Bricks Builder. This integration allows you to design and customize every step of your sales funnels—including Opt-in, Checkout, Thank You, Upsell, and Downsell—directly within Bricks Builder.\n\n\n\nKey Features of Bricks Builder Integration\n\n\n\n\nEnhanced Design Flexibility: Customize funnel layouts directly without the need for additional tools.\n\n\n\nDynamic Content Tags: Display relevant product information throughout your funnels using dynamic tags.\n\n\n\nPre-Configured Options: Utilize ready-made design options for upsell and downsell steps to streamline the setup process.\n\n\n\n\nThese features enable you to create high-converting, branded sales funnels in WordPress with ease.\n\n\n\nHow to Enable Bricks Builder for CartFlows\n\n\n\nTo start using Bricks Builder with CartFlows, follow these steps to enable it as your default editor:\n\n\n\n\nAccess CartFlows Settings: From your WordPress dashboard, navigate to CartFlows &gt; Settings.\n\n\n\nEnable Bricks Builder:\n\nIn the General tab, locate the Builder Settings section.\n\n\n\nSelect Bricks Builder as your default page builder for CartFlows.\n\n\n\n\n\nSave Changes: Click Save to apply your settings.\n\n\n\n\n\n\n\n\nAfter these steps, Bricks Builder will be available as the primary editor for designing CartFlows steps. You can now customize each step of your funnel using Bricks Builder’s robust tools.\n\n\n\nCartFlows Widgets for Bricks Builder\n\n\n\nWith Bricks Builder enabled, you have access to dedicated CartFlows widgets to customize each part of your funnel:\n\n\n\n\nOpt-in Step: Design a customized opt-in page for lead collection by adding dynamic fields and engaging elements.\n\n\n\nCheckout Step: Create a branded checkout experience by incorporating custom elements and interactive features.\n\n\n\nThank You Step: Personalize your Thank You page with tailored messages, suggested next steps, or additional product recommendations.\n\n\n\nUpsell and Downsell Steps: Use dedicated widgets to build upsell and downsell pages. Customize accept/reject buttons and display relevant product information to create a seamless user experience.\n\n\n\n\n\n\n\n\nDynamic Content Tags\n\n\n\nThe integration introduces dynamic content tags, letting you insert personalized data within each funnel step. Examples include:\n\n\n\n\nProduct Information:\n\nProduct Title: Displays the name of the product.\n\n\n\nProduct Description: Provides detailed product information.\n\n\n\nProduct Price: Shows the current product pricing.\n\n\n\nProduct Quantity: Indicates the number of products, which is useful for bundles.\n\n\n\nProduct Variation: Displays options such as size or color.\n\n\n\n\n\nNext-Step Button: Guides users to the subsequent step in the funnel with a clear call-to-action.\n\n\n\nAccept/Reject Buttons: Particularly useful in upsell and downsell scenarios, these buttons allow users to quickly respond to offers.\n\n\n\n\n\n\n\n\nUsing these dynamic tags, you can tailor the checkout experience to each user, enhancing both functionality and personalization.\n\n\n\nFixed Layout Options for Upsell and Downsell Steps\n\n\n\nCartFlows offers pre-configured layouts for upsell and downsell pages within Bricks Builder. These fixed layouts are designed for quick setup and consistency, ensuring your additional offers are presented in an optimized and cohesive manner.\n\n\n\n\n\n\n\nFrequently Asked Questions\";s:3:\"url\";s:65:\"https://cartflows.com/docs/cartlflows-bricks-builder-integration/\";s:4:\"slug\";s:37:\"cartlflows-bricks-builder-integration\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-05T20:38:11+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:74;O:8:\"stdClass\":8:{s:2:\"id\";i:54198;s:5:\"title\";s:32:\"OttoKit Integration in CartFlows\";s:7:\"content\";s:2186:\"CartFlows now offers a seamless OttoKit integration, allowing WooCommerce store owners to automate tasks and enhance customer engagement. With this integration, you can set up workflows to track specific actions like opt-ins, upsell responses, or downsell interactions, all directly from your CartFlows dashboard. This helps with targeted marketing, CRM updates, and triggering emails based on user activity without the need to switch between different tools.\n\n\n\nWhat is OttoKit?\n\n\n\nOttoKit is an automation platform that connects multiple apps and simplifies workflows by triggering actions based on specific events.\n\n\n\nVisit OttoKit website\n\n\n\nHow to Use OttoKit Integration\n\n\n\nStep 1: Access Automation Menu\n\n\n\nIn your CartFlows Settings, locate the new Automations menu under Integrations and Extensions.\n\n\n\n\n\n\n\nStep 2: Install or Access OttoKit\n\n\n\nIf OttoKit is not yet installed, you can do so from the Automations tab. If it’s already installed, click Create Workflow to start.\n\n\n\n\n\n\n\nStep 3: Configure Workflow for Funnel Steps\n\n\n\nTo create workflows for specific funnel steps like Checkout, Upsell, or Downsell:\n\n\n\n1: Open the funnel editor and select the step you want to automate.\n\n\n\n\n\n\n\n2: Click Automation to open the OttoKit window for that step.\n\n\n\n\n\n\n\nPro Tip: Workflows created here will also appear in your OttoKit account. Any updates will sync automatically between CartFlows and OttoKit.\n\n\n\nExample: Add Users Who Declined an Upsell to Google Sheets\n\n\n\n1: In OttoKit, create a workflow using CartFlows as the app and select Upsell Declined as the trigger event.\n\n\n\n\n\n\n\n2: Connect OttoKit to CartFlows. For guidance, refer to OttoKit WordPress Integration.\n\n\n\n\n\n\n\n3: In the Configure tab, select your funnel and the upsell step.\n\n\n\n\n\n\n\n4: Test the connection by clicking Fetch Data, then click Save.\n\n\n\n\n\n\n\n5: Choose your action app—here, select Google Sheets.\n\n\n\n\n\n\n\n6: Connect Google Sheets, choose the action Add New Row, and select your spreadsheet and worksheet.\n\n\n\n\n\n\n\n\n\n\n\n7: Test the connection using Test Action, then activate the workflow.\n\n\n\n\n\n\n\nNow, each time a user declines the upsell, their information is automatically added to your Google Sheets.\";s:3:\"url\";s:60:\"https://cartflows.com/docs/ottokit-integration-in-cartflows/\";s:4:\"slug\";s:32:\"ottokit-integration-in-cartflows\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-03T18:20:03+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:75;O:8:\"stdClass\":8:{s:2:\"id\";i:54200;s:5:\"title\";s:58:\"CartFlows Instant Layout for Checkout &amp; Thank You Step\";s:7:\"content\";s:945:\"CartFlows offers an Instant layout for Checkout and Thank you steps designed for a quick and seamless purchase experience. This layout features a clean and minimal user interface, optimized for selling items like e-books, music, and other digital goods. It removes unnecessary distractions and skips the need for page builders, offering a fast and simple checkout process.\n\n\n\nThis layout includes a modern, conversion-focused design with essential customization options. It\'s ideal for users who want a straightforward solution that integrates seamlessly with their existing CartFlows funnels or store checkout.\n\n\n\nHow to Setup Instant Layout\n\n\n\nStep 1: Go to the funnel in which you would like to enable the Instant Layout.\n\n\n\n\n\n\n\nStep 2: Click the Funnel Settings button (cog icon) in the top-right corner of the screen.\n\n\n\n\n\n\n\nStep 5: Navigate to the Instant Layout section on the sidebar and enable the toggle to activate the Instant layout.\";s:3:\"url\";s:52:\"https://cartflows.com/docs/cartflows-instant-layout/\";s:4:\"slug\";s:24:\"cartflows-instant-layout\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-04-30T21:33:21+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:76;O:8:\"stdClass\":8:{s:2:\"id\";i:54153;s:5:\"title\";s:77:\"How to Fix Blank Page Issue When Importing CartFlows Templates with Elementor\";s:7:\"content\";s:1172:\"If you are importing CartFlows Elementor templates and encounter a blank page, don’t worry this guide will help you resolve it.\n\n\n\nThis issue happens because CartFlows’ updated Elementor templates are built using Flexbox and Grid Containers, which are not enabled by default in Elementor. These layout features improve responsiveness and flexibility, but if disabled, Elementor cannot render the templates, resulting in a blank page when importing or editing them.\n\n\n\nHow to Fix the Blank Page Issue\n\n\n\nTo resolve the problem, enable the Flexbox and Grid Container features in Elementor:\n\n\n\n\nLog in to your WordPress dashboard.\n\n\n\nGo to Elementor > Settings.\n\n\n\nOpen the Features tab.\n\n\n\nEnable the Container option.\n\n\n\n\n\n\n\n\nAfter enabling this feature, your templates should display correctly.\n\n\n\nFor more details, you can also check Elementor’s article on experimental features: Elementor Experiments\n\n\n\nWhat to Do if the Issue Persists\n\n\n\nIf enabling Container option doesn’t fix the issue:\n\n\n\n\nUpdate Elementor and CartFlows to the latest versions.\n\n\n\nClear your browser cache and refresh the page.\n\n\n\nIf the problem continues, please contact our support team.\";s:3:\"url\";s:104:\"https://cartflows.com/docs/how-to-fix-the-blank-page-issue-when-importing-cartflows-elementor-templates/\";s:4:\"slug\";s:76:\"how-to-fix-the-blank-page-issue-when-importing-cartflows-elementor-templates\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-10-15T21:47:28+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:77;O:8:\"stdClass\":8:{s:2:\"id\";i:54122;s:5:\"title\";s:43:\"How to Enable Google Ads Pixel in CartFlows\";s:7:\"content\";s:1816:\"CartFlows supports Google Ads Pixel tracking to help you measure conversions and optimize your campaigns. This feature enables you to track key user actions such as checkouts, purchases, and opt-ins directly within your CartFlows funnel steps.\n\n\n\nBy adding your Google Ads Conversion ID and Label, you can connect website activity with your Google Ads campaigns, giving you valuable insights to improve performance and maximize results.\n\n\n\nPrerequisites\n\n\n\nBefore setting up Google Ads Pixel tracking in CartFlows, make sure to complete the following steps:\n\n\n\n\nCreate a Google Ads Manager account.Not done yet? You can follow the official steps here.\n\n\n\nGenerate your Google Ads Conversion ID and Conversion Label from your Google Ads account.You will need to paste these into the CartFlows settings panel.\n\n\n\n\nHow to Set Up Google Ads Pixel in CartFlows\n\n\n\nStep 1: Access CartFlows Settings\n\n\n\nFrom your WordPress dashboard, go toCartFlows &gt; Settings &gt; Integrations\n\n\n\n\n\n\n\nStep 2: Enable Google Ads Pixel Tracking\n\n\n\nScroll down to the Google Ads Pixel Settings section and toggle the optionEnable Google Ads pixel Tracking.\n\n\n\n\n\n\n\nStep 3: Add Your Conversion ID &amp; Label\n\n\n\nOnce enabled, fields will appear where you can paste yourGoogle Ads Conversion ID and Google Ads Conversion Label.\n\n\n\n\n\n\n\nStep 4: Enable Event Tracking\n\n\n\nCartFlows provides support for multiple tracking events. You can enable the ones you want to track:\n\n\n\n\nBegin Checkout\n\n\n\nAdd To Cart\n\n\n\nView Content\n\n\n\nAdd Payment Info\n\n\n\nPurchase\n\n\n\nOpt-in Lead\n\n\n\n\nHow to Verify the Tracking Setup\n\n\n\nTo confirm that your pixel is working correctly, use the Google Tag Assistant browser extension. It validates the implementation of your Google Ads conversion tags and tracking codes on any page of your site.\n\n\n\nFrequently Asked Questions\";s:3:\"url\";s:52:\"https://cartflows.com/docs/google-ads-pixel-support/\";s:4:\"slug\";s:24:\"google-ads-pixel-support\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-12T18:08:26+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:78;O:8:\"stdClass\":8:{s:2:\"id\";i:51580;s:5:\"title\";s:29:\"How to import Divi templates?\";s:7:\"content\";s:1788:\"CartFlows offers seamless compatibility with the Divi Builder. While direct importing of Divi templates was discontinued starting from CartFlows version 2.0, you can still use Divi templates by downloading and manually importing them into your funnels.\n\n\n\nThis documentation will walk you through downloading, importing, and using Divi templates within CartFlows.\n\n\n\nStep 1: Download the Divi Templates\n\n\n\nYou can download the available Divi templates as a zip file from the following link: Divi Templates Zip.After downloading, extract the zip file and choose the specific funnel or step JSON file you want to import.\n\n\n\nStep 2: Import the Templates into CartFlows\n\n\n\n2.1 – Set the Page Builder Option\n\n\n\nGo to CartFlows &gt; Settings &gt; General and set the Page Builder option to Other.\n\n\n\n\n\n\n\n2.2 – Access the Funnels Page\n\n\n\nNavigate to CartFlows &gt; Funnels and click the Import button at the top of the screen.\n\n\n\n\n\n\n\n2.3 – Select the Template JSON File\n\n\n\nFrom the extracted zip folder, locate the desired Divi template .json file and select it.\n\n\n\n\n\n\n\n2.4 – Complete the Import\n\n\n\nClick Import to upload and apply the template. Once imported, the funnel will appear in your Funnels list.\n\n\n\n\n\n\n\n2.5 – Edit with Divi\n\n\n\nYou can now begin customizing the imported funnel using the Divi Builder to match your brand and layout preferences.\n\n\n\nFrequently Asked Questions\n\n\n\n1. I’m unable to edit CartFlows pages using Divi. What should I do? Ensure that the CartFlows step type are enabled for editing in the Divi Builder. This allows Divi to properly render and edit CartFlows steps.\n\n\n\n\n\n\n\n2. Where can I find CartFlows page shortcodes? Set the Page Builder option to Other. Then, go to the funnel step’s Settings &gt; Design tab to view the shortcode for that step.\";s:3:\"url\";s:56:\"https://cartflows.com/docs/how-to-import-divi-templates/\";s:4:\"slug\";s:28:\"how-to-import-divi-templates\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-04-28T21:15:42+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:79;O:8:\"stdClass\":8:{s:2:\"id\";i:49008;s:5:\"title\";s:37:\"Overview: Modern Cart for WooCommerce\";s:7:\"content\";s:1964:\"Modern Cart for WooCommerce enhances the default cart experience by introducing a sleek, distraction-free sliding cart interface. It allows customers to view their cart, apply coupons, see progress toward free shipping, and proceed to checkout, all without leaving the current page.\n\n\n\n\nhttps://youtu.be/jAsON8waa8g\n\n\n\n\nThis documentation provides a quick overview of the plugin’s purpose and key features before moving on to setup and customization options.\n\n\n\nGetting Started:\n\n\n\nTo get started with Modern Cart:\n\n\n\n\nInstall and activate the plugin.\n\n\n\nNavigate to WooCommerce &gt; Modern Cart from your WordPress dashboard.\n\n\n\nConfigure the settings based on your store’s needs and preferences.\n\n\n\n\nKey Features:\n\n\n\nBoost conversions and simplify the checkout experience with the below powerful Modern Cart features.\n\n\n\n\nFloating Cart Interface:A modern and customizable floating cart that appears across your site, allowing customers to access their cart anytime without page reloads.\n\n\n\nFree Shipping Progress Bar:Show customers how much more they need to spend to qualify for free shipping, a simple and effective upsell strategy.\n\n\n\nProduct Recommendations:Highlight linked products such as upsells or cross-sells to increase average order value.\n\n\n\nCustomizable Coupon Field:Choose between a minimized or traditional coupon field style, or disable it entirely.\n\n\n\nSubtotal and Total Display:Show cart subtotal and total directly within the cart panel for price clarity.\n\n\n\nText Customization:Modify cart-related labels, titles, placeholders, and button text to match your store’s tone and branding.\n\n\n\nFloating Cart Icon Positioning:Adjust the position of the floating cart icon (bottom right or left), or disable it if not needed.\n\n\n\nStyling Options:Customize the cart’s color scheme, width, and animation speed to better match your store design.\n\n\n\n\nNeed help installing the plugin? Refer to this documentation: How to Install Modern Cart Starter\";s:3:\"url\";s:55:\"https://cartflows.com/docs/modern-cart-for-woocommerce/\";s:4:\"slug\";s:27:\"modern-cart-for-woocommerce\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-09-23T18:44:50+05:30\";s:8:\"category\";a:1:{i:0;s:27:\"modern-cart-for-woocommerce\";}}i:80;O:8:\"stdClass\":8:{s:2:\"id\";i:48509;s:5:\"title\";s:40:\"Reimagined for Better Accuracy and Speed\";s:7:\"content\";s:1487:\"We’ve completely revamped how funnel analytics works in CartFlows to give you faster, more reliable insights, without any manual setup.\n\n\n\nThe new analytics implementation is now built into CartFlows by default and replaces the older tracking method. Designed for accuracy and performance, this updated approach uses a lightweight combination of API-based tracking and JavaScript to ensure your funnel data is processed efficiently across all steps.\n\n\n\nWhat’s New with Flow Analytics?\n\n\n\n\nImproved tracking accuracy: No more reliance on unstable cookie behavior, analytics now work more reliably across funnels.\n\n\n\nOptimized performance: Faster page transitions and better funnel step tracking, even on high-traffic websites.\n\n\n\nEfficient cookie usage: The new system handles cookies in a smarter way to reduce conflicts with caching tools and server settings.\n\n\n\nSimplified setup: No toggles or settings to enable, this feature is already active in your CartFlows installation.\n\n\n\n\nHow It Works\n\n\n\nThe new flow tracking uses two types of cookies to monitor visitor activity:\n\n\n\n\nwcf-visited-flow-&lt;flow_id>\n\n\n\nwcf-step-visited-&lt;flow_id>\n\n\n\n\nThese cookies are lightweight and used only for tracking how users navigate through your funnels.\n\n\n\nFrequently Asked Questions\n\n\n\n\n\n\n\n\n\n\n\n\n\nContact your hosting provider to confirm if a prefix is needed.\n\n\n\nNo action is required on your end, just keep building funnels and enjoy faster, more reliable analytics tracking with CartFlows!\";s:3:\"url\";s:51:\"https://cartflows.com/docs/improved-flow-analytics/\";s:4:\"slug\";s:23:\"improved-flow-analytics\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-01-23T19:00:12+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"flows-analytics\";}}i:81;O:8:\"stdClass\":8:{s:2:\"id\";i:48338;s:5:\"title\";s:72:\"How to Use the &#8220;Order Custom Field&#8221; Rule with Dynamic Offers\";s:7:\"content\";s:2226:\"CartFlows allows you to display specific upsell or downsell offers based on values customers enter in checkout fields. This can be useful when you want to personalize offers depending on customer selections during checkout.\n\n\n\nThe Order Custom Field rule in Dynamic Offers lets you compare values submitted through checkout fields and then show a specific offer based on those values. This works with:\n\n\n\n\nDefault WooCommerce checkout fields\n\n\n\nCustom fields created using the CartFlows Checkout Field Editor\n\n\n\n\nAdditionally, the Checkout Field Editor includes a Show in Email option. Enabling this option ensures that the custom field value is included in the order email notifications.\n\n\n\nBelow is an example workflow showing how to configure a Dynamic Offer using a custom checkout field.\n\n\n\nBefore You Begin\n\n\n\nMake sure you have already created a custom checkout field. If you are unsure how to create one, refer to the documentation on adding custom fields to the CartFlows checkout page.\n\n\n\nConfigure the Order Custom Field Rule\n\n\n\nStep 1: Open the Checkout Field Editor\n\n\n\nNavigate to the Checkout Field Editor and locate the custom field you want to use for your Dynamic Offer condition.\n\n\n\n\n\n\n\nStep 2: Copy the Field ID\n\n\n\nOnce you find the field, open its options and copy the Field ID. This ID will be used when creating the rule.\n\n\n\n\n\n\n\nStep 3: Open the Checkout Step Settings\n\n\n\nGo to your Funnel, open the Checkout step, and navigate to the Dynamic Offers tab.\n\n\n\nEnable Dynamic Offers if it is not already enabled.\n\n\n\n\n\n\n\nStep 4: Add a New Rule\n\n\n\nAdd a new rule and configure it as follows:\n\n\n\n\nSelect Order Custom Field as the rule type\n\n\n\nChoose the appropriate condition (for example, equals or not equals)\n\n\n\nPaste the Field ID you copied earlier\n\n\n\nEnter the expected value that should trigger the offer\n\n\n\n\nMake sure the expected value exactly matches the value defined in the field options when the custom field was created.\n\n\n\n\n\n\n\nStep 5: Save the Settings\n\n\n\nClick Save Settings to apply the rule.\n\n\n\nOnce saved, CartFlows will evaluate the value entered in the checkout field during the order process. If the condition matches, the configured upsell or downsell offer will be displayed accordingly.\";s:3:\"url\";s:63:\"https://cartflows.com/docs/use-custom-fields-in-dynamic-offers/\";s:4:\"slug\";s:35:\"use-custom-fields-in-dynamic-offers\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-04-28T22:43:47+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:82;O:8:\"stdClass\":8:{s:2:\"id\";i:48413;s:5:\"title\";s:47:\"How to Modify Offer Accept/Reject Popup Strings\";s:7:\"content\";s:1463:\"In CartFlows versions 1.11.5 and 1.11.6, we introduced new options that allow you to customize the text strings displayed on the offer accept/reject popup.This feature was added based on user feedback, making it easier for everyone to personalize the offer messaging without needing custom code.\n\n\n\n\n\n\n\nHow to Update Offer Popup Strings\n\n\n\nStep 1: Open Your Funnel\n\n\n\nGo to your CartFlows dashboard and open the funnel you want to modify.\n\n\n\n\n\n\n\nStep 2: Edit the Upsell or Downsell Step\n\n\n\nClick on the Settings icon (cogwheel) next to the upsell or downsell step you want to edit.\n\n\n\n\n\n\n\nStep 3: Access the Settings Panel\n\n\n\nOnce inside the step settings editor, click on the Settings tab.\n\n\n\n\n\n\n\nStep 4: Find the Offer Popup Strings Section\n\n\n\nUnder the settings, scroll down to locate the Offer Popup Strings section.\n\n\n\n\n\n\n\nHere, you will see four fields where you can customize the popup messages:\n\n\n\n\nOffer Processing: Message displayed while the offer is being processed.\n\n\n\nOffer Success: Message shown when the product is successfully added to the order.\n\n\n\nOffer Failure: Message shown if the offer is rejected or an error occurs.\n\n\n\nOffer Success Note: Additional success note displayed after a successful action.\n\n\n\n\nStep 5: Save Your Changes\n\n\n\nAfter updating the text strings, click the Save Settings button to apply the changes.\n\n\n\nBy updating these fields, you can create a more personalized experience for your customers during the offer process.\";s:3:\"url\";s:54:\"https://cartflows.com/docs/modify-offer-popup-strings/\";s:4:\"slug\";s:26:\"modify-offer-popup-strings\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-04T23:10:19+05:30\";s:8:\"category\";a:1:{i:0;s:17:\"one-click-upsells\";}}i:83;O:8:\"stdClass\":8:{s:2:\"id\";i:48349;s:5:\"title\";s:57:\"How to Fix 5XX Error While Importing Flow/Step Templates?\";s:7:\"content\";s:2680:\"If you\'re trying to import a ready-made funnel or step template in CartFlows and encounter a 5XX error (such as 500, 501, 502, or 503), this documentation will help you troubleshoot and resolve the issue.\n\n\n\nA common error message might look like:\n\n\n\nError: Allowed memory size of X bytes exhausted (tried to allocate X bytes)\n\n\n\nWhy This Happens\n\n\n\nThis error typically occurs due to one or more of the following reasons:\n\n\n\n\nPlugin conflicts or PHP errors on your site\n\n\n\nServer limitations or outdated PHP versions\n\n\n\nInsufficient resources configured in your hosting environment\n\n\n\n\nBelow are several points you can follow to fix this issue.\n\n\n\n1. Avoid Plugin Conflicts\n\n\n\nTemporarily deactivate all plugins except CartFlows, CartFlows Pro, and WooCommerce.\n\n\n\nThen try importing the template again.\n\n\n\n\nIf it works: one of the other plugins is likely causing a conflict.\n\n\n\nIf it doesn\'t: move on to the next point.\n\n\n\n\n2. Enable Debug Mode to Check for Errors\n\n\n\nEnable WordPress debugging using the WP Debugging plugin. After activating it, try importing a template again. This will create or update your debug.log file so you can check for specific PHP errors.\n\n\n\nStill not working? Continue below.\n\n\n\n3. Update Your PHP Version\n\n\n\nUsing an outdated PHP version can lead to performance issues and 5XX errors.\n\n\n\nWe recommend using PHP 7.3 or higher.\n\n\n\nTo check your PHP version:\n\n\n\n\nGo to Tools &gt; Site Health in your WordPress admin.\n\n\n\nClick the Info tab > Server.\n\n\n\nLook for PHP version.\n\n\n\n\n\n\n\n\nIf you\'re not using at least PHP 7.3, ask your hosting provider to update it for you.\n\n\n\n4. Increase Hosting Resource Limits\n\n\n\nIf your server’s PHP configuration limits are too low, imports may fail. Updating the following PHP values may help:\n\n\n\nmemory_limit = 512M\nmax_execution_time = 900\nmax_input_time = 900\npost_max_size = 256M\nupload_max_filesize = 720M\n\n\n\nIf you’re unsure how to make these changes, contact your hosting provider.\n\n\n\nHere’s an email you can send to your hosting provider:\n\n\n\nSubject: Help with PHP Configuration for CartFlows Template Import\n\n\n\nHello,\n\nI’m trying to import a CartFlows ready-made funnel or step template and I’m receiving a 5XX error.\n\nCould you please:\n\n1. Enable WordPress debug mode\n2. Check the error logs\n3. Share the log file with me?\n\nAlso, here are the recommended PHP configuration values:\n\n* PHP Version: 7.3 or later\n* memory_limit = 512M\n* max_execution_time = 900\n* max_input_time = 900\n* post_max_size = 256M\n* upload_max_filesize = 720M\n\nI’d appreciate your help. Thanks!\n\n\n\nStill Need Help?\n\n\n\nIf you\'re still experiencing issues, feel free to reach out to our support team. We’re happy to help!\";s:3:\"url\";s:67:\"https://cartflows.com/docs/fix-5xx-error-while-importing-templates/\";s:4:\"slug\";s:39:\"fix-5xx-error-while-importing-templates\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-04-14T21:34:59+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:84;O:8:\"stdClass\":8:{s:2:\"id\";i:48130;s:5:\"title\";s:31:\"How to View the CartFlows logs?\";s:7:\"content\";s:1457:\"Logs are crucial for diagnosing issues, tracking workflows, and identifying warnings or errors in any online software or application. CartFlows provides two types of logs:\n\n\n\nTypes of Logs in CartFlows\n\n\n\n1. Template Import Logs: These logs record the steps performed while importing templates on your website. They are only generated when WP_DEBUG is set to true. To track these logs, you need to enable WP_DEBUG. Refer to this documentation for guidance on enabling it.\n\n\n\n2. CartFlows Logs: These logs store records of activities when visiting funnel steps. They also capture errors related to CartFlows and supported payment gateways for upsells and downsells.\n\n\n\nLogs can be downloaded and shared with support for troubleshooting. Below are the steps to view, download, or delete logs on your website.\n\n\n\nHow to View the Logs\n\n\n\nStep 1: Open CartFlows Pages\n\n\n\nGo to CartFlows > Settings.\n\n\n\n\n\n\n\nStep 2: Click on the Logs Link\n\n\n\nClick on Logs to open the log management interface.\n\n\n\nStep 3: Select the Log File\n\n\n\nFrom the dropdown menu, choose the log file you want to check. Each log is labeled with its generation date. \n\n\n\n\n\n\n\nAdditional Actions\n\n\n\nAt the top of the log view page, you will find options to:\n\n\n\n\nCopy: Copy the log content.\n\n\n\nDownload: Download the log file for sharing or backup.\n\n\n\nDelete: Permanently remove the log file.\n\n\n\n\n\n\n\n\nThese options are useful when troubleshooting or when support requests detailed log information.\";s:3:\"url\";s:47:\"https://cartflows.com/docs/view-cartflows-logs/\";s:4:\"slug\";s:19:\"view-cartflows-logs\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-04-29T22:49:05+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:85;O:8:\"stdClass\":8:{s:2:\"id\";i:46384;s:5:\"title\";s:52:\"How to Show the Order Summary Open on Mobile Devices\";s:7:\"content\";s:707:\"Starting with CartFlows version 1.9.0, the Modern Checkout templates collapse the order summary by default on mobile devices to create a cleaner and more focused layout.\n\n\n\nIf you’d prefer the order summary to appear open by default on mobile (while still allowing users to collapse it), you can use the following PHP filter:\n\n\n\nadd_filter( \'cartflows_show_mobile_order_summary_collapsed\', \'__return_false\' );\n\n\n\nYou can add this code using the Code Snippets plugin (recommended) or by placing it in your child theme’s functions.php file.\n\n\n\n\n&#x1f4a1; Make sure to select PHP as the snippet type if you\'re using the Code Snippets plugin.\n\n\n\n\nFor guidance, check out: How to Add Custom Code to WordPress\";s:3:\"url\";s:80:\"https://cartflows.com/docs/how-to-show-the-order-summary-open-on-mobile-devices/\";s:4:\"slug\";s:52:\"how-to-show-the-order-summary-open-on-mobile-devices\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-04-29T13:46:03+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"code-snippets\";}}i:86;O:8:\"stdClass\":8:{s:2:\"id\";i:46372;s:5:\"title\";s:47:\"How to Enable the Product Tab on Store Checkout\";s:7:\"content\";s:1026:\"With the release of CartFlows version 1.10.0, we introduced the new Store Checkout feature, which replaces the default WooCommerce checkout and follows a standard, streamlined checkout process.\n\n\n\nAs part of this transition, the Product tab was removed from the Store Checkout funnel to maintain simplicity and alignment with typical eCommerce flows. However, if you have a unique use case where you want to want the product tab on Store checkout, you can bring back the Product tab by using the following PHP filter:\n\n\n\nadd_filter( \'cartflows_show_store_checkout_product_tab\', \'__return_true\' );\n\n\n\nYou can add this code using the Code Snippets plugin or by placing it in your child theme’s functions.php file.\n\n\n\nNeed help adding custom code? Here’s how to safely add code snippets to your site.\n\n\n\nNote: The Product Options feature does not behave the same way in the Store Checkout due to the structure of the store checkout. Some features may have limitations or may not be supported when the Product tab is enabled.\";s:3:\"url\";s:61:\"https://cartflows.com/docs/enable-product-tab-store-checkout/\";s:4:\"slug\";s:33:\"enable-product-tab-store-checkout\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-07-07T21:52:17+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"code-snippets\";}}i:87;O:8:\"stdClass\":8:{s:2:\"id\";i:46257;s:5:\"title\";s:44:\"Overview: Variation Swatches for WooCommerce\";s:7:\"content\";s:1427:\"Variation Swatches for WooCommerce replaces the default variation dropdowns with customizable color, image, or label swatches. It enhances the product selection experience on your product and shop pages by making variation choices more intuitive and visually appealing.\n\n\n\nThis documentation provides a quick overview of the plugin’s purpose and key features before moving on to setup and customization options.\n\n\n\nTo get started with Variation Swatches:\n\n\n\n\nInstall and activate the plugin.\n\n\n\nCreate global attributes and terms using Products > Attributes.\n\n\n\nAssign attributes to variable products and configure swatches as needed.\n\n\n\n\nMake product variations easier to browse with the following features:\n\n\n\nKey Features:\n\n\n\n\nSwatch TypesChoose between color, image, or label swatches for variation display.\n\n\n\nSwatch Shapes and SizesCustomize the shape (circle, square, etc.) and size of swatches to match your store design.\n\n\n\nTooltip and Hover EffectsAdd tooltips and optional image previews for swatches.\n\n\n\nShop Page DisplayShow swatches on shop or archive pages in addition to single product pages.\n\n\n\nWidget and Filter SupportEnable swatches in product filter widgets for better navigation.\n\n\n\nCustom Styling OptionsFine-tune font size, border styles, and alignment for swatches and labels.\n\n\n\n\nNeed help installing the plugin? Refer to this documentation: How to Install and Activate the Variation Swatches Plugin\";s:3:\"url\";s:69:\"https://cartflows.com/docs/variation-swatches-for-woocommerce-plugin/\";s:4:\"slug\";s:41:\"variation-swatches-for-woocommerce-plugin\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-19T22:35:34+05:30\";s:8:\"category\";a:1:{i:0;s:18:\"variation-swatches\";}}i:88;O:8:\"stdClass\":8:{s:2:\"id\";i:46122;s:5:\"title\";s:29:\"Offers JS Triggers Shortcodes\";s:7:\"content\";s:3507:\"In the CartFlows and CartFlows Pro, we’ve introduced new JavaScript variables (shortcodes) and triggers that can be used within custom JavaScript. These enhancements make it easier to access order and offer-related data for tracking, analytics, and custom automation requirements.\n\n\n\nThis feature is especially useful if you want to integrate third-party tracking tools, send data to external services, or run custom logic based on user actions within your flows.\n\n\n\nAvailable JavaScript Variables\n\n\n\nBelow is the list of JavaScript variables that can be used on CartFlows pages.\n\n\n\nVariables Available in CartFlows Free\n\n\n\nThe following variables are available in the free version of CartFlows:\n\n\n\n\n{{order_id}}\n\n\n\n{{txn_id}}\n\n\n\n{{order_total}}\n\n\n\n\nThese variables can be used on all CartFlows steps except the Checkout page. This is because order-related values are generated only after the order has been successfully placed.\n\n\n\nVariables Available in CartFlows Pro\n\n\n\nThe following variables are available with CartFlows Pro:\n\n\n\n\n{{offer_product_name}}\n\n\n\n{{offer_product_qty}}\n\n\n\n{{offer_product_price}}\n\n\n\n\nThese variables are specific to offers and are available only on Upsell and Downsell steps, as they relate directly to the accepted or rejected offer.\n\n\n\nPractical Use Case Example\n\n\n\nYou might be wondering how these variables can be used in real-world scenarios.\n\n\n\nFor example, if you want to trigger a custom Facebook Pixel or Google Analytics event on an Upsell or Downsell page and pass values such as the Order ID, Transaction ID, or Product ID, you can directly reference variables like {{order_id}}, {{txn_id}}, or {{product_id}} within your custom JavaScript. These values can then be sent dynamically to your tracking or analytics scripts.\n\n\n\nJS Triggers for Upsell &amp; Downsell Acceptance or Rejection\n\n\n\nAlong with JavaScript variables, CartFlows also provides built-in triggers that automatically run when an Upsell or Downsell offer is accepted or rejected.\n\n\n\nThis allows you to perform actions such as sending offer data to a CRM, triggering custom automation, or firing third-party tracking events based on the customer’s decision.\n\n\n\nThese script options are available only on Upsell and Downsell steps.\n\n\n\nHow to Add Offer Accepted or Rejected Scripts\n\n\n\nFollow the steps below to add custom JavaScript for offer acceptance or rejection:\n\n\n\nStep 1: Navigate to the CartFlows &gt; Funnels menu in your WordPress dashboard.\n\n\n\nStep 2: Click Edit on the funnel where you want to add the custom script.\n\n\n\n\n\n\n\nStep 3: Open the settings for the relevant Upsell or Downsell step.\n\n\n\n\n\n\n\nStep 4: Go to the Custom Script section on the sidebar.\n\n\n\n\n\n\n\nStep 5: Add your custom JavaScript code in the Offer Accepted or Offer Rejected script field, depending on your requirement.\n\n\n\n\n\n\n\nStep 6: Click Save Settings to apply the changes.\n\n\n\nJavaScript Variables Available in Offer Scripts\n\n\n\nWhile adding offer accepted or rejected scripts, you can use the following variables to access offer and order-related data:\n\n\n\n\n{{order_id}}\n\n\n\n{{flow_id}}\n\n\n\n{{step_id}}\n\n\n\n{{product_id}}\n\n\n\n{{variation_id}}\n\n\n\n{{quantity}}\n\n\n\n{{offer_type}}\n\n\n\n\nOnce added, these scripts will run automatically at the appropriate time. The Offer Accepted script will execute when an upsell or downsell is accepted, while the Offer Rejected script will run when the offer is declined.\n\n\n\nThis ensures your custom logic or tracking is executed precisely based on the customer’s action within the funnel.\";s:3:\"url\";s:57:\"https://cartflows.com/docs/offers-js-triggers-shortcodes/\";s:4:\"slug\";s:29:\"offers-js-triggers-shortcodes\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-05T19:00:08+05:30\";s:8:\"category\";a:1:{i:0;s:14:\"developer-docs\";}}i:89;O:8:\"stdClass\":8:{s:2:\"id\";i:46140;s:5:\"title\";s:17:\"User role manager\";s:7:\"content\";s:1224:\"CartFlows now includes a User Role Manager feature that gives you control over who can access and manage different parts of CartFlows on your website. This feature is especially helpful for teams and agencies who want to assign specific roles and responsibilities when working on funnels.\n\n\n\nWith this setting, you can easily define access levels for each user role, whether it’s full control, limited editing, or no access at all.\n\n\n\nHow to Manage User Roles in CartFlows\n\n\n\nStep 1: Navigate to CartFlows Settings\n\n\n\nGo to CartFlows > Settings > User Role Manager tab on the sidebar.\n\n\n\nStep 2: Set Access Level\n\n\n\nChoose from the following access levels for the user roles listed:\n\n\n\n\nNo Access – Restricts the user role from accessing CartFlows entirely.\n\n\n\nLimited Access – Allows access to funnels and steps only (no access to global settings).\n\n\n\nFull Access – Grants complete access including creating, editing, importing, and exporting funnels and steps.\n\n\n\n\nStep 3: Save Changes\n\n\n\nOnce you\'ve configured access levels, click the Save Settings button to apply your settings.\n\n\n\n\n\n\n\nBy default, all existing user roles will have access to CartFlows when this feature is enabled.\n\n\n\nFrequently Asked Questions\";s:3:\"url\";s:45:\"https://cartflows.com/docs/user-role-manager/\";s:4:\"slug\";s:17:\"user-role-manager\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-27T16:30:22+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:90;O:8:\"stdClass\":8:{s:2:\"id\";i:45479;s:5:\"title\";s:29:\"CartFlows Pro WP CLI Commands\";s:7:\"content\";s:684:\"&#x1f6e0; Note: This feature is available with the CartFlows Pro plugin. To use the following WP-CLI commands, ensure both the CartFlows free and Pro plugins are installed and activated on your website.\n\n\n\n\nCartFlows Pro adds support for managing certain actions via WP-CLI — a powerful tool for developers and advanced users who prefer working from the command line.\n\n\n\nActivate License Key via WP-CLI\n\n\n\nTo activate your CartFlows Pro license using WP-CLI, use the following command:\n\n\n\nwp cartflows license activate your-license-key-here\n\n\n\nReplace your-license-key-here with your actual license key.\n\n\n\nWe’ll continue to add support for more WP-CLI commands in future updates.\";s:3:\"url\";s:43:\"https://cartflows.com/docs/wp-cli-commands/\";s:4:\"slug\";s:15:\"wp-cli-commands\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-01-30T15:58:27+05:30\";s:8:\"category\";a:1:{i:0;s:14:\"developer-docs\";}}i:91;O:8:\"stdClass\":8:{s:2:\"id\";i:44704;s:5:\"title\";s:36:\"How to create Google Address API Key\";s:7:\"content\";s:922:\"To enable Google Autocomplete for address fields on your CartFlows Checkout page, follow these steps:\n\n\n\nStep 1: Enable Google Maps Platform\n\n\n\n\nVisit the Google Maps Platform.\n\n\n\nClick the Get Started button at the top-right corner.\n\n\n\n\n\n\n\n\nStep 2: Create or Select a Project\n\n\n\n\nIf this is your first time, you\'ll need to create a new project.\n\n\n\nEnter a name for your project.\n\n\n\nClick Next to continue.\n\n\n\n\nStep 3: Set Up Billing\n\n\n\n\nChoose your country and accept the Terms of Service.\n\n\n\nClick Continue.\n\n\n\n\n\n\n\n\n\nEnter your customer and billing information to activate the account.\n\n\n\n\n\n\n\n\n\n\n\n\nStep 4: Generate Your API Key\n\n\n\n\nGo to APIs &amp; Services > Credentials.\n\n\n\n\n\n\n\n\n\nClick on CREATE CREDENTIALS and select API Key.\n\n\n\n\n\n\n\n\n\nYour new API key will be generated and displayed.\n\n\n\n\n\n\n\n\nYou can now copy this key and paste it into the appropriate field in the CartFlows settings to enable address autocomplete.\";s:3:\"url\";s:57:\"https://cartflows.com/docs/create-google-address-api-key/\";s:4:\"slug\";s:29:\"create-google-address-api-key\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-05-05T19:52:15+05:30\";s:8:\"category\";a:1:{i:0;s:14:\"developer-docs\";}}i:92;O:8:\"stdClass\":8:{s:2:\"id\";i:44695;s:5:\"title\";s:40:\"Enabling the Google Address Autocomplete\";s:7:\"content\";s:1808:\"CartFlows now includes a powerful new feature: Google Address Autocomplete for billing and shipping fields. This enhancement streamlines the checkout experience by allowing users to quickly search and select their address, which then auto-fills the relevant fields.\n\n\n\nThis feature leverages Google’s Places API to provide accurate address suggestions based on user input. It reduces manual typing and improves checkout speed, especially on mobile devices.\n\n\n\nNote: Some address components may be missing in certain suggestions, depending on what data is returned by Google. This is a known limitation of the API. Here is an actual&nbsp;demonstration&nbsp;from Google.\n\n\n\nWhat Is Google Address Autocomplete?\n\n\n\nGoogle Address Autocomplete is a service provided by Google’s Places API. It predicts and suggests address entries as users begin typing, using real-time location data.\n\n\n\nIn CartFlows, we’ve integrated this API to auto-fill billing and shipping fields with just a single selection—making your checkout process faster and more convenient.\n\n\n\nHow to Enable Google Address Autocomplete\n\n\n\nStep 1: Get Your Google API Key\n\n\n\nFirst, set up your Google account and generate an API key. Follow this guide for step-by-step instructions.\n\n\n\nStep 2: Add the API Key to CartFlows\n\n\n\n\nNavigate to CartFlows → Settings → Integrations.\n\n\n\nClick the Google Address Autocomplete tab.\n\n\n\nPaste your API key and save the changes.\n\n\n\n\n\n\n\n\nStep 3: Enable on Specific Checkout Pages\n\n\n\n\nEdit the Checkout step where you want this feature enabled.\n\n\n\nClick the Settings icon (gear icon).\n\n\n\nOpen the Checkout Form tab.\n\n\n\nClick on the Form Settings section and toggle on the Enable Google Address Autocomplete option.\n\n\n\n\n\n\n\n\nOnce enabled, your customers will benefit from a faster, smarter checkout form.\";s:3:\"url\";s:65:\"https://cartflows.com/docs/enabling-google-address-autocompletes/\";s:4:\"slug\";s:37:\"enabling-google-address-autocompletes\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-14T19:56:30+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:93;O:8:\"stdClass\":8:{s:2:\"id\";i:40585;s:5:\"title\";s:45:\"How to Override the WooCommerce Checkout Page\";s:7:\"content\";s:1323:\"The Override Store Checkout feature in CartFlows Pro allows you to replace WooCommerce’s default Checkout page with your CartFlows Store Checkout, without changing the page URL.\n\n\n\nThis is useful if you want the benefits of a CartFlows-optimized Checkout while keeping the familiar WooCommerce checkout URL structure.\n\n\n\nHow It Works\n\n\n\nWhen the Store Checkout is set and the Override option is enabled, CartFlows takes over the default WooCommerce Checkout page.\n\n\n\nThe page’s URL remains the same as WooCommerce’s default checkout page, but its content and functionality come entirely from your CartFlows Store Checkout.\n\n\n\nRequirements\n\n\n\nBefore you can enable the override:\n\n\n\n\nYou must set a Store Checkout in CartFlows (CartFlows &gt; Store Checkout). Refer to this document to know more about Store Checkout.\n\n\n\nThe Override option depends on the Store Checkout setting. If no Store Checkout is set, the Override option will not work.\n\n\n\n\nHow to Enable Override Store Checkout\n\n\n\n\nGo to CartFlows &gt; Settings &gt; General.\n\n\n\nEnable the Override Store Checkout option.\n\n\n\nSave your changes.\n\n\n\n\n\n\n\n\nOnce enabled, customers visiting your WooCommerce Checkout page will see the CartFlows Store Checkout, with the URL unchanged.\n\n\n\nBefore enabling the Override option:\n\n\n\n\n\n\n\nAfter enabling the Override option:\";s:3:\"url\";s:52:\"https://cartflows.com/docs/override-global-checkout/\";s:4:\"slug\";s:24:\"override-global-checkout\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-19T21:23:47+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"global-checkout\";}}i:94;O:8:\"stdClass\":8:{s:2:\"id\";i:40363;s:5:\"title\";s:33:\"Dynamic (Conditional) Order Bumps\";s:7:\"content\";s:2673:\"CartFlows allows you to display Order Bumps dynamically based on specific conditions set on the checkout page. This feature is known as Dynamic (Conditional) Order Bumps.\n\n\n\nWith this functionality, you can control when an order bump should appear by defining rules based on factors such as products in the cart, order value, discounts, and other checkout conditions.\n\n\n\nThis helps you present the most relevant offer to customers and improves the chances of increasing the average order value.\n\n\n\nHow Dynamic Order Bumps Work\n\n\n\nDynamic Order Bumps use a rule-based condition system to determine whether an order bump should be displayed to the customer.\n\n\n\nTo make rule management easier, conditions can be organized into groups.\n\n\n\nA Condition Group contains one or more rules that work together.\n\n\n\n\nConditions inside the same group follow an AND relationship.\n\n\n\nMultiple groups follow an OR relationship.\n\n\n\n\nThis means the order bump will be displayed if any condition group is satisfied.\n\n\n\nYou can create multiple groups and conditions depending on your requirements, allowing you to build advanced targeting scenarios for your offers.\n\n\n\nWhere to Configure Dynamic Order Bumps\n\n\n\nThe condition settings for Dynamic Order Bumps are available within the Order Bump settings on the checkout step.\n\n\n\nInside the Conditions tab, you can add rules and organize them into groups to control when the order bump should be shown.\n\n\n\nHow to Set Up Dynamic Order Bumps\n\n\n\nFollow the steps below to configure conditional order bumps.\n\n\n\nStep 1: Navigate to CartFlows &gt; Funnels.Step 2: Open the funnel where you want to add or modify the order bump.\n\n\n\n\n\n\n\nStep 3: Move to the Order Bump section. If an order bump is not yet created, click Add Order Bump.Step 4: Click Edit Order Bump on the order bump you want to configure.\n\n\n\n\n\n\n\nStep 5: On the Order Bumps section edit the Order Bump by clicking the order bump settings.Step 6: Enable the Conditions option to activate rule-based display.\n\n\n\n\n\n\n\nStep 7: Select the required conditions values to define the first rule.Step 8: Click Add Condition to add more rules within the same condition group.Step 9: Click Add Conditions Group if you want to create another group of rules.\n\n\n\n\n\n\n\nStep 10: Click Save Settings to apply the configuration.\n\n\n\nReordering Condition Groups\n\n\n\nCondition groups can be reordered to control priority.\n\n\n\nYou can simply drag and drop the groups to arrange them according to how you want the conditions to be evaluated.\n\n\n\nIndividual rules cannot be moved directly between groups. If you want to move a rule to another group, you will need to delete it and recreate it within the desired group.\";s:3:\"url\";s:47:\"https://cartflows.com/docs/dynamic-order-bumps/\";s:4:\"slug\";s:19:\"dynamic-order-bumps\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-05T14:22:58+05:30\";s:8:\"category\";a:1:{i:0;s:10:\"order-bump\";}}i:95;O:8:\"stdClass\":8:{s:2:\"id\";i:40154;s:5:\"title\";s:47:\"How to Renew Your Expired CartFlows Pro License\";s:7:\"content\";s:1041:\"If your CartFlows Pro license has expired, you can renew it easily by following the steps below.\n\n\n\nRenewing Your Expired License\n\n\n\nTo renew your CartFlows Pro license:\n\n\n\nStep 1: Log in to your Account\n\n\n\nVisit the CartFlows Store and log in using your credentials.\n\n\n\nStep 2: Go to the Subscriptions  from the sidebar\n\n\n\nClick on the Subscriptions section from the sidebar and click the Resubscribe button.\n\n\n\n\n\n\n\nStep 3: Billing details\n\n\n\nOn the Checkout page, verify your billing information.\n\n\n\n\n\n\n\nStep 4: Your order\n\n\n\nOnce you confirm your billing information is correct, verify the Your order section.\n\n\n\n\n\n\n\nStep 5: Coupon and Payment method\n\n\n\nEnter the coupon code if you have one, then choose your preferred payment method. Make sure to tick the I have read and agree to the website Terms and Conditions checkbox. Finally, click the Place Order button.\n\n\n\n\n\n\n\nCongratulations! You have successfully renewed your CartFlows Pro license. A confirmation email with your order details will be sent to your registered email address.\";s:3:\"url\";s:77:\"https://cartflows.com/docs/steps-to-renew-your-cartflows-pro-expired-license/\";s:4:\"slug\";s:49:\"steps-to-renew-your-cartflows-pro-expired-license\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-08-11T18:59:38+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"account-store\";}}i:96;O:8:\"stdClass\":8:{s:2:\"id\";i:39884;s:5:\"title\";s:38:\"CartFlows Dynamic Offers (Rule Engine)\";s:7:\"content\";s:2895:\"CartFlows includes a powerful feature called Dynamic Offers, also known as the Rule Engine, which allows you to control the redirection to upsell or downsell steps based on specific conditions set on the checkout page.\n\n\n\nUsing this feature, you can define custom rules that determine which upsell or downsell page a customer should see after completing the checkout step.\n\n\n\nHow Dynamic Offers Work\n\n\n\nDynamic Offers allow you to create conditional redirects based on various checkout conditions. These conditions can include details such as products in the cart, order value, customer information, and more.\n\n\n\nTo make rule creation more flexible, Dynamic Offers support grouped conditions.\n\n\n\nA Group is a collection of one or more conditions.\n\n\n\n\nConditions within the same group work using an AND relationship.\n\n\n\nMultiple groups work using an OR relationship.\n\n\n\n\nThis means that if any group of conditions is satisfied, the corresponding redirect rule will be applied.\n\n\n\nThis structure allows you to create advanced scenarios while keeping the rule setup organized and easy to manage.\n\n\n\nHow to Set Up Dynamic Offers\n\n\n\nFollow these steps to configure Dynamic Offers for your checkout step.\n\n\n\nStep 1: Navigate to CartFlows &gt; Funnels.Step 2: Open the funnel where you want to add or modify the conditions.\n\n\n\n\n\n\n\nStep 3: Click the settings icon of the Checkout step.\n\n\n\n\n\n\n\nStep 4: Open the Dynamic Offers section in the checkout settings.Step 5: Enable the Dynamic Offers option.Step 6: Click Add Condition if you want to include additional conditions within the same group.Step 7: Click Add Dynamic Offer to create another group of conditions.Step 8: Click Save Settings to apply the rules.\n\n\n\n\n\n\n\nReordering Dynamic Offer Groups\n\n\n\nYou can reorder condition groups to prioritize which rules should be evaluated first.\n\n\n\nSimply drag and drop the groups to rearrange them according to your requirements.\n\n\n\nNote that individual conditions cannot be moved between groups. If you want a condition in another group, you will need to delete it and recreate it in the desired group.\n\n\n\nDefault Redirection\n\n\n\nIf none of the defined condition groups match the customer\'s checkout scenario, you can configure a default redirection step.\n\n\n\n\n\n\n\nThis ensures that every customer is redirected to a specific upsell or downsell step even when no conditions are met.\n\n\n\nUsing Dynamic Offers with Upsell and Downsell Steps\n\n\n\nOnce a customer is redirected to the appropriate upsell or downsell step using Dynamic Offers, you can still apply conditional redirects on the upsell or downsell steps to further control the flow. This allows you to create more advanced funnel paths depending on the customer’s actions.\n\n\n\nRefer to this documentation for more details about conditional Upsell and Downsell: https://cartflows.com/docs/create-conditional-upsell-downsell/\n\n\n\nFrequently Asked Questions\";s:3:\"url\";s:64:\"https://cartflows.com/docs/cartflows-dynamic-offers-rule-engine/\";s:4:\"slug\";s:36:\"cartflows-dynamic-offers-rule-engine\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-04-29T19:08:01+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:97;O:8:\"stdClass\":8:{s:2:\"id\";i:39790;s:5:\"title\";s:25:\"List of CartFlows Cookies\";s:7:\"content\";s:1294:\"CartFlows uses several cookies to ensure smooth operation of checkout flows, session handling, and analytics. These small files are stored on the user’s local device and are sent with each page request to help maintain consistent user sessions and tracking.\n\n\n\nBelow are the cookies used by CartFlows:\n\n\n\n\ncartflows_session_Set when a user visits a CartFlows page. It creates a unique session ID for each user to enable a seamless checkout experience.\n\n\n\nwcf_active_checkout Determines which checkout page is currently open and stores relevant cart data for that specific checkout.\n\n\n\nwcf-visited-flow- Tracks which CartFlows funnel (flow) the user has interacted with.\n\n\n\nwcf-step-visited- Tracks which step of the funnel the user has visited.\n\n\n\ncartflows-ab-test- \n\n\n\nUsed only when the A/B Split Testing feature is active to track the variant shown to the user.\n\n\n\n\nCustom Cookie Prefix\n\n\n\nIf your server requires cookies to use a specific prefix (e.g., for caching compliance), you can define a custom prefix by adding the following line to your wp-config.php file:\n\n\n\ndefine( \'CARTFLOWS_COOKIE_PREFIX\', \'your_prefix_\' );\n\n\n\nNote: Add this line just above the “That’s all, stop editing! Happy publishing.” line in the wp-config.php file, located in your website’s root directory.\";s:3:\"url\";s:53:\"https://cartflows.com/docs/list-of-cartflows-cookies/\";s:4:\"slug\";s:25:\"list-of-cartflows-cookies\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-09-02T22:04:17+05:30\";s:8:\"category\";a:1:{i:0;s:14:\"developer-docs\";}}i:98;O:8:\"stdClass\":8:{s:2:\"id\";i:39759;s:5:\"title\";s:40:\"Cart Abandonment Cookies/GDPR Compliance\";s:7:\"content\";s:1296:\"We introduced a dedicated Cart Abandonment plugin to help website administrators recover lost sales by sending follow-up emails to users who abandon their carts. This is an optional feature that you can enable or disable as per your store’s requirements.\n\n\n\nData Processing &amp; Consent\n\n\n\nAbandoned cart emails fall under legitimate interest for data processing under GDPR guidelines. This means:\n\n\n\n\nNo special consent is required to send abandoned cart recovery emails.\n\n\n\nYou can use this feature confidently without additional consent checkboxes, though transparency in your privacy policy is recommended.\n\n\n\n\nOptional GDPR Confirmation Setting\n\n\n\nTo give store owners more control, the plugin includes an optional setting:\n\n\n\nYou can enable this feature by following these steps:\n\n\n\n\nNavigate to WooCommerce &gt; Cart Abandonment\n\n\n\nClick on the Settings tab\n\n\n\nGo to the GDPR tab\n\n\n\nToggle the option: Enable GDPR Integration\n\n\n\n\n\n\n\n\nNote\nWhen enabled, a confirmation message will appear below the email field on the checkout page. This informs the user about tracking and gives them the option to opt out by clicking “No thanks.”\n\n\n\n\n\n\n\n\nThis provides a balance between compliance and conversion, allowing you to recover lost sales while respecting your users\' privacy preferences.\";s:3:\"url\";s:52:\"https://cartflows.com/docs/cart-abandonment-cookies/\";s:4:\"slug\";s:24:\"cart-abandonment-cookies\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-02-18T19:47:48+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:99;O:8:\"stdClass\":8:{s:2:\"id\";i:38862;s:5:\"title\";s:80:\"VAT Field of WooCommerce EU/UK VAT Compliance (Premium) Plugin is not Displaying\";s:7:\"content\";s:2543:\"If you\'re using the WooCommerce EU/UK VAT Compliance (Premium) plugin by David Anderson and the VAT field is not appearing on your CartFlows Checkout page, this documentation will help you display it correctly.\n\n\n\nThis plugin adds a VAT number field on the WooCommerce checkout page to support tax compliance for EU and UK customers. However, due to how CartFlows customizes the checkout fields, the VAT field may not display by default.\n\n\n\nEnsure VAT Field is Displayed on WooCommerce Checkout\n\n\n\nBefore checking CartFlows compatibility, make sure the VAT field is visible on the default WooCommerce checkout page. If it\'s not displayed there, it won’t appear on CartFlows either.\n\n\n\nYou can confirm this by temporarily switching to the default WooCommerce checkout page and testing whether the VAT field appears as expected.\n\n\n\nWhy the Field Might Not Show on CartFlows Checkout\n\n\n\nCartFlows customizes the WooCommerce checkout form, including billing and shipping fields, using standard WooCommerce hooks and filters. Because of this, fields added by third-party plugins may not always appear in the intended position.\n\n\n\nFortunately, the WooCommerce EU/UK VAT Compliance (Premium) plugin provides a filter that allows you to change the position of the VAT field.\n\n\n\nAdd the Filter to Display VAT Field on CartFlows Checkout\n\n\n\nAdd the following filter to your child theme’s functions.php file:\n\n\n\nadd_filter( \'wc_eu_vat_number_position\', \'eu_change_vat_number_position\', 10, 1 ); \n\n/**\n* Function to change the position of VAT field only for the CartFlows checkout page.\n* \n* @param $current_page current visited page\n* @return $current_page current page.\n*/\nfunction eu_change_vat_number_position( $position ){\n\n  /* Get global post object */\n	global $post;\n\n	/* Get current post type */\n	$post_type = get_post_type();\n	\n	/* Check the current type of the page */\n	$is_checkout = get_post_meta( $post-&gt;ID, \'wcf-step-type\', true );\n		\n	/* Change position only of the CartFlows checkout page */\n	if( \'cartflows_step\' == $post_type &amp;&amp; \'checkout\' === $is_checkout){\n		$position = \'woocommerce_after_order_notes\';\n	}\n\n  return $position;\n\n}\n\n\n\n\n\n&#x1f4a1; Need help adding custom code? Here’s how to safely add custom snippets to your site.\n\n\n\n\nAfter adding this filter, the VAT field will display on your CartFlows checkout page in the correct position. If you’ve followed the steps and the field still doesn’t appear, double-check your plugin settings and ensure the field is visible on the standard WooCommerce checkout.\";s:3:\"url\";s:65:\"https://cartflows.com/docs/vat-field-of-eu-uk-vat-not-displaying/\";s:4:\"slug\";s:37:\"vat-field-of-eu-uk-vat-not-displaying\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-05-15T18:38:06+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"code-snippets\";}}i:100;O:8:\"stdClass\":8:{s:2:\"id\";i:38729;s:5:\"title\";s:95:\"How to Fix “Cannot Activate API Key. Key Already Activated with the Same Instance ID” Error\";s:7:\"content\";s:2025:\"While activating the CartFlows Pro license, you may encounter the following error message:\n\n\n\nCannot Activate API Key. The API Key has already been activated with the same Unique Instance ID sent with this request.\n\n\n\nThis typically happens when your site setup causes CartFlows to send the same instance ID that was already linked to a previous activation. This documentation explains why this error occurs and how to fix it.\n\n\n\nWhy This Error Occurs\n\n\n\nThere are a few common scenarios that may trigger this issue:\n\n\n\n1. Site Migration or Cloning\n\n\n\nIf the website has been migrated or cloned to a new domain or hosting environment, the old instance ID may still be stored. When you activate the license on the new site, it sends the same instance ID — leading to a conflict.\n\n\n\n2. Plugin Reinstallation Without Deactivation\n\n\n\nIf the CartFlows Pro plugin was deleted or removed without first deactivating the license, then re-uploaded, the license system may still associate the instance ID with the original domain.\n\n\n\n3. Caching Issues\n\n\n\nWhen caching is enabled (including local, server-side, or browser cache), the instance ID may not be correctly stored. This can cause repeated requests to send the same old instance ID, even if the site has changed.\n\n\n\nHow to Fix the Issue\n\n\n\nFollow these steps to clear the old instance ID and reactivate your CartFlows Pro license:\n\n\n\n1. Log in to your account at my.cartflows.com2. Navigate to the API Keys tab3. Locate the entry for the domain you’re working with4. Delete that entry\n\n\n\n\n\n\n\n5. Log in to your WordPress admin6. Clear all site cache, including\n\n\n\n\nLocal cache\n\n\n\nServer-side cache\n\n\n\nBrowser cache\n\n\n\n\n7. Go to the Plugins menu8. Deactivate any cache plugin temporarily9. Deactivate the CartFlows Pro plugin10. Reactivate the CartFlows Pro plugin11. Click the Activate License button12. Enter your license/API key13. Click Activate\n\n\n\nNote: Always clear all cache and temporarily disable any cache plugins before activating the CartFlows Pro license/API key.\";s:3:\"url\";s:73:\"https://cartflows.com/docs/how-to-resolve-same-instance-id-error-message/\";s:4:\"slug\";s:45:\"how-to-resolve-same-instance-id-error-message\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-02-18T15:14:24+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:101;O:8:\"stdClass\":8:{s:2:\"id\";i:38187;s:5:\"title\";s:53:\"How to Delete Plugin Data When Uninstalling CartFlows\";s:7:\"content\";s:1304:\"CartFlows includes an option that allows you to automatically delete its data when uninstalling the plugin. This is useful if you want to fully remove CartFlows and clean up your WordPress database.\n\n\n\nThis documentation explains how to enable that setting and what it does.\n\n\n\nWhat Gets Deleted?\n\n\n\nWhen this option is enabled, uninstalling CartFlows will:\n\n\n\n\nDelete all CartFlows settings and options (including Global Settings)\n\n\n\nWill not delete funnels or steps from the database automatically\n\n\n\n\nIf you want to completely remove everything, including existing funnels and steps, make sure to delete them manually first before uninstalling the plugin.\n\n\n\nWhere to Find This Option\n\n\n\nYou can find this setting by going to CartFlows &gt; Settings &gt; Advanced tab\n\n\n\n\n\n\n\nSteps to Enable the Delete Plugin Data Option\n\n\n\n\nNavigate to CartFlows &gt; Settings &gt; Advanced tab\n\n\n\nClick the toggle to enable Delete plugin data on plugin deletion\n\n\n\nA confirmation alert will appear\n\n\n\nEnter DELETE (in all caps) to confirm\n\n\n\nClick the Save Settings button\n\n\n\n\nOnce this option is enabled, uninstalling the plugin will automatically clean up CartFlows data from the database.\n\n\n\nWatch It in Action\n\n\n\nPrefer a quick demo? Watch the short video below that shows how to enable this option step by step:\";s:3:\"url\";s:72:\"https://cartflows.com/docs/delete-plugin-data-while-uninstalling-plugin/\";s:4:\"slug\";s:44:\"delete-plugin-data-while-uninstalling-plugin\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-20T18:49:09+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:102;O:8:\"stdClass\":8:{s:2:\"id\";i:37722;s:5:\"title\";s:48:\"How to Add Products to the Checkout Page via URL\";s:7:\"content\";s:2084:\"CartFlows Pro includes a feature that allows you to add products directly to the Checkout page using URL parameters. This makes it easy to dynamically pre-fill the cart based on the link a user clicks — great for personalized offers, email campaigns, and landing pages.\n\n\n\nThis documentation explains how the feature works, how to structure your URLs, and how to find the product ID required for this functionality.\n\n\n\nHow the Feature Works\n\n\n\nThis feature is enabled by default in CartFlows Pro — there’s no need to activate it manually. All you need to do is:\n\n\n\n\nUse a product ID in the URL to add that item to the cart on the Checkout page\n\n\n\nOptionally include the quantity for each item\n\n\n\n\nWhen a user opens the Checkout page URL with the appropriate parameter(s), the specified product(s) will automatically appear in the cart.\n\n\n\nURL Parameters Format\n\n\n\nTo add a product to the Checkout page via URL, use the following parameters:\n\n\n\n\n?wcf-add-to-cart=product_id\n\n\n\n&amp;wcf-qty=quantity (optional – defaults to 1 if not specified)\n\n\n\n\nSingle Product Example\n\n\n\nIf you want to add Product ID 3 with a quantity of 4, the URL would look like:\n\n\n\nhttps:&#47;&#47;yourdomain.com/checkout-page/?wcf-add-to-cart=3&amp;wcf-qty=4\n\n\n\nIf you omit the wcf-qty parameter, the default quantity will be 1.\n\n\n\nMultiple Products Example\n\n\n\nTo add multiple products with different quantities, separate each ID and quantity with commas. For example:\n\n\n\nhttps:&#47;&#47;yourdomain.com/checkout-page/?wcf-add-to-cart=3,6&amp;wcf-qty=4,8\n\n\n\nThis will add Product ID 3 with quantity 4 and Product ID 6 with quantity 8.\n\n\n\nImportant Notes\n\n\n\nIf you’ve already selected products in the backend of the Checkout step, and you also pass product IDs via URL — only the products from the URL will be used. The backend-selected products will be ignored.\n\n\n\nHow to Find the Product ID\n\n\n\nTo locate a product’s ID in WooCommerce:\n\n\n\n\nGo to Products > All Products in your WordPress admin\n\n\n\nHover your mouse over the product title\n\n\n\nYou’ll see the product ID appear below the product title\";s:3:\"url\";s:80:\"https://cartflows.com/docs/how-to-add-the-products-on-the-checkout-page-via-url/\";s:4:\"slug\";s:52:\"how-to-add-the-products-on-the-checkout-page-via-url\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-04-15T19:08:27+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:103;O:8:\"stdClass\":8:{s:2:\"id\";i:38212;s:5:\"title\";s:61:\"How to Regenerate the Step&#8217;s Dynamic CSS for Shortcodes\";s:7:\"content\";s:1561:\"CartFlows includes an optimization that improves how dynamic inline CSS is generated for pages using shortcodes. Instead of regenerating CSS every time a page loads, CartFlows now stores it efficiently to improve performance.\n\n\n\nThis documentation explains when and how to manually regenerate the dynamic CSS for Steps using shortcodes.\n\n\n\nWhen to Use This Option\n\n\n\nYou may want to regenerate the CSS when:\n\n\n\n\nDesign changes made to the step are not showing up on the frontend\n\n\n\nYou are using CartFlows shortcodes instead of regular funnel pages\n\n\n\nThe page loads correctly, but styling appears broken or outdated\n\n\n\n\nThis option only affects CSS generated from the Design Settings of a Step and only for pages using shortcodes.\n\n\n\n\n\n\n\nHow It Works\n\n\n\nCartFlows stores dynamic CSS for each Step in the page’s metadata and loads it directly instead of regenerating it on every page load. This improves performance across your site.\n\n\n\nWhen a design change is made to a Step, the CSS is deleted and automatically regenerated on the next page load.\n\n\n\nHowever, if you’re using shortcodes and styling doesn’t update as expected, you may need to trigger CSS regeneration manually.\n\n\n\nHow to Regenerate the CSS\n\n\n\nStep 1: Go to CartFlows &gt; Settings &gt; Advanced tab\n\n\n\nStep 2: Click the Regenerate Now button\n\n\n\n\n\n\n\nThis will clear the stored CSS and regenerate it the next time the page is visited.\n\n\n\nNeed Help?\n\n\n\nIf the styling still doesn’t reflect properly after regenerating the CSS, feel free to contact our support team. We’re happy to help.\";s:3:\"url\";s:75:\"https://cartflows.com/docs/regenerate-the-steps-dynamic-css-for-shortcodes/\";s:4:\"slug\";s:47:\"regenerate-the-steps-dynamic-css-for-shortcodes\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-18T17:54:16+05:30\";s:8:\"category\";a:1:{i:0;s:14:\"developer-docs\";}}i:104;O:8:\"stdClass\":8:{s:2:\"id\";i:37699;s:5:\"title\";s:45:\"How to Set Default Product in Product Options\";s:7:\"content\";s:1701:\"CartFlows lets you offer multiple product options on the checkout page. With this feature, you can also control which product appears selected by default.\n\n\n\nThis documentation explains two ways to set a default product in the product options:\n\n\n\n\nFrom the checkout page settings in the backend\n\n\n\nUsing a URL parameter\n\n\n\n\nMethod 1: Set Default Product from Checkout Page Settings\n\n\n\nUse this method if you want to choose a default product when multiple products are added to the Checkout Step.\n\n\n\n1. Go to CartFlows &gt; Funnels.\n\n\n\n2. Open the Funnel where you\'d like to apply the setting.\n\n\n\n\n\n\n\n3. Click the Settings icon (cog icon) of the Checkout step.\n\n\n\n\n\n\n\n4. Go to the Products Options section under the Products tab.\n\n\n\n\n\n\n\n5. Enable the Product Options and choose “Let user select multiple products from all options” under the Enable Conditions\n\n\n\n\n\n\n\n6. Use the toggle or radio buttons next to each product to choose which one should be selected by default.\n\n\n\n\n\n\n\nClick Save Settings, and view the checkout page to see the default product selected.\n\n\n\nMethod 2: Set Default Product Using URL Parameter\n\n\n\nUse this method if you want to control the default selection dynamically through a link, for example, from a landing page or a custom button.To set a default product, add the wcf-default parameter to your checkout page URL.\n\n\n\nFormat:\n\n\n\nyourdomain.com/checkout-page/?wcf-default=1\n\n\n\nHere, the 1 refers to the position of the product (in order) as listed in your product options. You can link this URL to buttons or anchor tags to direct users to a specific product preselected at checkout. Refer to this doc for further details about this method.\n\n\n\nFrequently Asked Question\";s:3:\"url\";s:66:\"https://cartflows.com/docs/set-default-product-in-product-options/\";s:4:\"slug\";s:38:\"set-default-product-in-product-options\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-20T12:17:53+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:105;O:8:\"stdClass\":8:{s:2:\"id\";i:37707;s:5:\"title\";s:41:\"How to Start a Funnel from a Product Page\";s:7:\"content\";s:2025:\"CartFlows allows you to start a funnel directly from a WooCommerce product page. This feature lets users be redirected to a CartFlows funnel immediately after adding a product to their cart.\n\n\n\nHow Does It Work?\n\n\n\nWhen this feature is enabled:\n\n\n\n\nUsers clicking Add to Cart on a product page are redirected to the first step of a selected CartFlows funnel.\n\n\n\nYou can choose a specific funnel for each product in the WooCommerce product settings.\n\n\n\nThis method works well for custom pricing, booking, and appointment-based products.\n\n\n\n\nImportant: We recommend not using a Landing Page as the first step to ensure users go directly to checkout.\n\n\n\nWhen to Use This Feature?\n\n\n\nThis feature is useful when:\n\n\n\n\nYou want to send users directly to checkout after adding a product to the cart.\n\n\n\nYou’re selling booking or appointment-based products where users need to select details before checkout.\n\n\n\nYou want to customize the checkout experience for specific products without requiring users to visit the default WooCommerce cart page.\n\n\n\n\nHow to Enable This Feature\n\n\n\n1. Create a Funnel\n\n\n\nEnsure you have a CartFlows funnel with the Checkout step as the first step.\n\n\n\n2. Edit the WooCommerce Product\n\n\n\n\nGo to Products and select the product you want to connect to a funnel.\n\n\n\nOpen the CartFlows tab in the product settings.\n\n\n\n\n\n\n\n\n3. Link the Product to a Funnel\n\n\n\n\nSearch for the funnel you want to connect.\n\n\n\nOptionally, customize the Add to Cart button text for this product.\n\n\n\n\n\n\n\n\n4. Save Changes\n\n\n\nClick Update to apply the changes.\n\n\n\n\n\n\n\nImportant Notes\n\n\n\n\nDo not assign a product in the backend of the Checkout step when using this feature.\n\n\n\nFor booking and appointment product types, ensure users provide the necessary details on the product page before checkout.\n\n\n\nThe Start a Funnel from Product Page feature is designed to work only with default WooCommerce product pages. It doesn’t function the same way with custom-designed sales pages created outside of WooCommerce’s product system.\";s:3:\"url\";s:65:\"https://cartflows.com/docs/how-to-start-a-flow-from-product-page/\";s:4:\"slug\";s:37:\"how-to-start-a-flow-from-product-page\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-05-30T15:46:05+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"getting-started\";}}i:106;O:8:\"stdClass\":8:{s:2:\"id\";i:37450;s:5:\"title\";s:36:\"How to Apply the Coupon from the URL\";s:7:\"content\";s:1368:\"CartFlows Pro supports applying WooCommerce coupons directly from the checkout page URL. This feature allows you to share the separate coupons for each checkout page for different users or products.\n\n\n\nIt is enabled by default and does not require any additional configuration.\n\n\n\nCreate a WooCommerce Coupon\n\n\n\nTo use this feature, start by creating a coupon in WooCommerce:\n\n\n\n\nGo to Marketing &gt; Coupons.\n\n\n\nClick Add Coupon and configure your discount settings.\n\n\n\nSave the coupon.\n\n\n\n\n\n\n\n\nIf needed, refer to WooCommerce\'s coupon documentation for detailed instructions.\n\n\n\nAdd the Coupon to a Checkout Page URL\n\n\n\nOnce the coupon is created, append the coupon code to the URL of your Checkout page.\n\n\n\nFormat:\n\n\n\nyourdomain.com/checkout-page/?coupon=COUPONCODE\n\n\n\nWhen someone visits this link, the coupon will automatically apply at checkout.\n\n\n\n\n\n\n\nCombine with Other Parameters\n\n\n\nYou can also combine the coupon with other supported URL parameters such as product and quantity.\n\n\n\nExample:\n\n\n\nyourdomain.com/checkout-page/?product=252&amp;quantity=1&amp;coupon=DISCOUNT10\n\n\n\nThis will:\n\n\n\n\nAdd the product with ID 252\n\n\n\nSet the quantity to 1\n\n\n\nApply the DISCOUNT10 coupon\n\n\n\n\nHow to Find a Product ID\n\n\n\n\nGo to Products &gt; All Products in your WordPress dashboard.\n\n\n\nHover over the product title. You’ll see the Product ID displayed below the title.\";s:3:\"url\";s:64:\"https://cartflows.com/docs/how-to-apply-the-coupon-from-the-url/\";s:4:\"slug\";s:36:\"how-to-apply-the-coupon-from-the-url\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-05-09T15:18:54+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:107;O:8:\"stdClass\":8:{s:2:\"id\";i:37378;s:5:\"title\";s:39:\"Complete List of WordPress Locale Codes\";s:7:\"content\";s:2341:\"Hint – You can CTRL / CMD + F to find your language\n\n\n\nLanguage NameLanguage CodeWordPress Locale CodeAfrikaansafafAkanakakAlbaniansqsqAmharicamamArabicararArmenianhyhyAromanianruprup_MKAssameseasasAzerbaijaniazazAzerbaijani (Turkey)az-traz_TRBashkirbabaBasqueeueuBelarusianbelbelBengalibnbn_BDBosnianbsbs_BABulgarianbgbg_BGBurmesemyamy_MMCatalancacaCatalan (Balear)balbalChinese (China)zh-cnzh_CNChinese (Hong Kong)zh-hkzh_HKChinese (Taiwan)zh-twzh_TWCorsicancocoCroatianhrhrCzechcscs_CZDanishdada_DKDhivehidvdvDutchnlnl_NLDutch (Belgium)nl-benl_BEEnglishenen_USEnglish (Australia)en-auen_AUEnglish (Canada)en-caen_CAEnglish (UK)en-gben_GBEsperantoeoeoEstonianetetFaroesefofoFinnishfifiFrench (Belgium)fr-befr_BEFrench (France)frfr_FRFrisianfyfyFulahfucfucGalicianglgl_ESGeorgiankaka_GEGermandede_DEGerman (Switzerland)de-chde_CHGreekelelGuaranígngnGujaratigugu_INHawaiianhawhaw_USHazaragihazhazHebrewhehe_ILHindihihi_INHungarianhuhu_HUIcelandicisis_ISIdoidoidoIndonesianidid_IDIrishgagaItalianitit_ITJapanesejajaJavanesejvjv_IDKannadaknknKazakhkkkkKhmerkmkmKinyarwandakinkinKirghizkyky_KYKoreankoko_KRKurdish (Sorani)ckbckbLaololoLatvianlvlvLimburgishliliLingalalinlinLithuanianltlt_LTLuxembourgishlblb_LUMacedonianmkmk_MKMalagasymgmg_MGMalaymsms_MYMalayalammlml_INMarathimrmrMingrelianxmfxmfMongolianmnmnMontenegrinmeme_MENepalinene_NPNorwegian (Bokmål)nbnb_NONorwegian (Nynorsk)nnnn_NOOriyaoryoryOsseticososPashtopspsPersianfafa_IRPersian (Afghanistan)fa-affa_AFPolishplpl_PLPortuguese (Brazil)pt-brpt_BRPortuguese (Portugal)ptpt_PTPunjabipapa_INRohingyarhgrhgRomanianroro_RORussianruru_RURussian (Ukraine)ru-uaru_UARusynruerueSakhasahsahSanskritsa-insa_INSardiniansrdsrdScottish GaelicgdgdSerbiansrsr_RSSindhisdsd_PKSinhalasisi_LKSlovaksksk_SKSlovenianslsl_SISomalisoso_SOSouth AzerbaijaniazbazbSpanish (Argentina)es-ares_ARSpanish (Chile)es-cles_CLSpanish (Colombia)es-coes_COSpanish (Mexico)es-mxes_MXSpanish (Peru)es-pees_PESpanish (Puerto Rico)es-pres_PRSpanish (Spain)eses_ESSpanish (Venezuela)es-vees_VESundanesesusu_IDSwahiliswswSwedishsvsv_SESwiss GermangswgswTagalogtltlTajiktgtgTamazight (Central Atlas)tzmtzmTamiltata_INTamil (Sri Lanka)ta-lkta_LKTatartttt_RUTeluguteteThaiththTibetanboboTigrinyatirtirTurkishtrtr_TRTurkmentuktukUighurugug_CNUkrainianukukUrduururUzbekuzuz_UZVietnameseviviWalloonwawaWelshcycyYorubayoryor\";s:3:\"url\";s:67:\"https://cartflows.com/docs/complete-list-of-wordpress-locale-codes/\";s:4:\"slug\";s:39:\"complete-list-of-wordpress-locale-codes\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2024-11-15T21:04:56+05:30\";s:8:\"category\";a:1:{i:0;s:14:\"developer-docs\";}}i:108;O:8:\"stdClass\":8:{s:2:\"id\";i:33306;s:5:\"title\";s:42:\"How to Translate CartFlows Using GlotPress\";s:7:\"content\";s:4228:\"CartFlows is translation-ready and includes .po and .mo files, which can be translated using tools like Poedit or GlotPress. We recommend GlotPress, the official WordPress translation platform.\n\n\n\nGlotPress is a web-based tool where anyone can contribute, suggest improvements, or help validate translations, making the process faster and more accurate.\n\n\n\nThis documentation will guide you through the steps to translate CartFlows into your language using GlotPress.\n\n\n\nGetting Started with Translations\n\n\n\nStep 1: Visit the GlotPress Project\n\n\n\nGlotPress for CartFlows Free is hosted on the WordPress repository here: https://translate.wordpress.org/projects/wp-plugins/cartflows/\n\n\n\nGlotPress for CartFlows Pro is available on our internal portal here: https://translate.cartflows.com/\n\n\n\nStep 2: Log in or Register a New Account\n\n\n\nYou’ll need to log in to your account to contribute translations. If you don’t have one, you can create it for free.\n\n\n\nStep 3: Select Your Language\n\n\n\nFrom the list of available languages, choose the one you want to contribute to.\n\n\n\n\n\n\n\nOn the language page, you will see the current state of the translation and a list of other contributors who have already translated part of the project.\n\n\n\nStep 4: Open the Translation Project\n\n\n\nAfter selecting your language, click on it to open the translation project. Here, you’ll see different sets of strings available for translation. Choose Stable (latest release) to work on the latest version of CartFlows.\n\n\n\n\n\n\n\nStep 5: Understand the Translation Interface\n\n\n\nOnce you’ve opened the translation set (e.g., Stable (latest release)), you’ll see a list of strings and a set of filters at the top of the page. These help you navigate and manage the translation status.\n\n\n\nHere’s what each filter means:\n\n\n\n\nAll – Shows all strings in the project.\n\n\n\nTranslated – Strings that have been translated and approved.\n\n\n\nUntranslated – Strings that haven’t been translated yet.\n\n\n\nWaiting – Translations submitted by contributors, awaiting approval.\n\n\n\nChanges requested – Translations that require edits based on reviewer feedback.\n\n\n\nFuzzy – Translations that may be inaccurate or partially matching and need review.\n\n\n\nWarnings – Strings with formatting issues or errors such as placeholders not matching.\n\n\n\n\n\n\n\n\nStep 6: Click on Any String and Translate It\n\n\n\n\n\n\n\nOnce you submit translations, they will be reviewed and approved by validators. After approval, they’ll be automatically included in future updates via the WordPress dashboard (for projects hosted on WordPress.org).\n\n\n\nWould You Like to Become a Translation Validator of CartFlows Pro?\n\n\n\nIf you’re interested in becoming a validator, please get in touch with us with the following details:\n\n\n\n\nYour WordPress.org username\n\n\n\nYour username on our CartFlows GlotPress Portal\n\n\n\nThe locale you would like to become a validator for\n\n\n\nDetails of your previous translations (if any)\n\n\n\n\nAfter your request is submitted, our team can grant you translation validator access.\n\n\n\nAs a validator, you\'ll be able to review and approve submitted translations, ensuring they are included in future plugin updates for all users.\n\n\n\nNeed to Add Translation in Your Project Immediately?\n\n\n\nExport Translation Files\n\n\n\nIf you want to implement a translation immediately on your site, you can export the current translation files in .po and .mo formats from GlotPress.\n\n\n\n\nGo to the language translation set.\n\n\n\nUse the Export option to download the .po and .mo files.\n\n\n\n\n\n\n\n\nUpload Translation Files to Your Website\n\n\n\nOnce downloaded, upload the files to the following location on your server via FTP or SFTP: /wp-content/languages/plugins/\n\n\n\n\n\n\n\nUsing the correct file naming convention is important so WordPress can detect the files properly. The filename must start with the text domain, followed by the locale code.\n\n\n\nExamples of file names for CartFlows:\n\n\n\n\nFor Indonesian: cartflows-id_ID.po and cartflows-id_ID.mo\n\n\n\nFor French: cartflows-fr_FR.po and cartflows-fr_FR.mo\n\n\n\n\nImportant: Always upload translation files to the /wp-content/languages/plugins/ directory. Avoid placing them inside the plugin folder, as they may be lost during plugin updates.\";s:3:\"url\";s:91:\"https://cartflows.com/docs/how-to-translate-cartflows-in-your-own-language-using-glotpress/\";s:4:\"slug\";s:63:\"how-to-translate-cartflows-in-your-own-language-using-glotpress\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-07-18T23:55:09+05:30\";s:8:\"category\";a:1:{i:0;s:19:\"translate-cartflows\";}}i:109;O:8:\"stdClass\":8:{s:2:\"id\";i:34934;s:5:\"title\";s:45:\"How to Move a Step from One Funnel to Another\";s:7:\"content\";s:1294:\"CartFlows includes an Import/Export feature to move complete funnels between websites. However, if you only need to move a single step from one funnel to another, you can do that manually using your page builder’s export and import tools.\n\n\n\n1. Export the Step Design\n\n\n\n\nGo to CartFlows &gt; Funnels and open the funnel that contains the step you want to move.\n\n\n\nOpen the step in your page builder and use its built-in export option to save the design:\n\nElementor: Refer to this guide on how to save a page as a template.\n\n\n\nBeaver Builder: Refer to this guide on saving templates.\n\n\n\nBricks Builder: Refer to this guide on saving templates.\n\n\n\n\n\n\n2. Create a Blank Step in the Target Funnel\n\n\n\n\nGo to the destination funnel where you want to move the step.\n\n\n\nAdd a new blank step of the same type (Landing, Checkout, Upsell, Downsell, or Thank You).\n\nFor example, to move a Landing page step, create a new Landing page step in the new funnel.\n\n\n\n\n\n\n\n\n\n\n3. Import the Step Design\n\n\n\n\nOpen the new blank step in the same page builder you used earlier.\n\n\n\nUse the import or template loading option to apply the previously exported design.\n\n\n\n\nIf you need help importing templates using your page builder, refer to this article: How to Import and Export CartFlows Pages with Your Page Builder\";s:3:\"url\";s:44:\"https://cartflows.com/docs/how-to-move-step/\";s:4:\"slug\";s:16:\"how-to-move-step\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-05T13:07:23+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"flow-step-clone\";}}i:110;O:8:\"stdClass\":8:{s:2:\"id\";i:37319;s:5:\"title\";s:73:\"How to Fix Request Timeout Errors When Importing Funnel or Step Templates\";s:7:\"content\";s:2852:\"If you\'re seeing a Request Timeout error while importing ready-made funnel or step templates in CartFlows, it usually means your website is having trouble connecting to our templates server.\n\n\n\nThis documentation explains what causes the issue and how to fix it.\n\n\n\nWhat Causes This Error?\n\n\n\nWhen you import a template in CartFlows, a request is made from your website to our templates server at: https://templates.cartflows.com/\n\n\n\nWordPress uses a core function called wp_remote_get() (through cURL) to handle this request.\n\n\n\nIf your server or host blocks this outgoing connection — usually due to firewalls, security rules, or server misconfiguration — the request will time out and the template will not be imported.\n\n\n\nWhere You\'ll See the Error\n\n\n\n\nThe “Import Template” button may appear stuck on “Importing Template”\n\n\n\nA timeout message may appear directly in the popup\n\n\n\n\n\n\n\n\n\nYou may also see a cURL error in the browser console or in plugin like Query Monitor\n\n\n\n\nHow to Fix It\n\n\n\nFollow these steps to troubleshoot and resolve the timeout issue:\n\n\n\n1. Check Security Plugins or Firewall\n\n\n\n\nTemporarily disable any firewall or security-related plugins on your site\n\n\n\nMake sure they are not blocking outgoing API requests\n\n\n\n\n2. Contact Your Hosting Provider\n\n\n\nAsk your hosting provider to check for:\n\n\n\n\nAny firewall rules (e.g. mod_security) that block outgoing cURL requests\n\n\n\nWhether outgoing requests to https://templates.cartflows.com/ are blocked\n\n\n\n\nIf needed, ask them to whitelist that domain to allow template imports.\n\n\n\n3. Check Server Requirements\n\n\n\nMake sure your server:\n\n\n\n\nIs running a recent version of PHP\n\n\n\nHas the cURL library installed and up to date\n\n\n\nHas sufficient memory (increase your PHP memory limit if needed)\n\n\n\nHas an adequate cURL timeout limit\n\n\n\n\nYou may also want to ask your host to check:\n\n\n\n\nIf wp-cron is disabled\n\n\n\nIf loopback requests are blocked or restricted\n\n\n\n\n4. Use the Query Monitor Plugin\n\n\n\nInstall Query Monitor and view the HTTP API Calls under the admin page where the error occurs. It can help you identify blocked or failed requests.\n\n\n\n5. Special Note for Managed WordPress Hosting\n\n\n\nIf you\'re using managed hosting, providers may apply strict limits on:\n\n\n\n\nExecution time\n\n\n\nMemory usage\n\n\n\nHTTP API requests\n\n\n\n\nAsk your host whether WordPress REST API requests or cURL operations are restricted — and request an exemption for our templates domain.\n\n\n\n6. Still Not Working?\n\n\n\nIf the above steps don’t resolve the issue, contact your hosting provider and ask them to confirm that your server can communicate with: https://templates.cartflows.com/ via cURL without limitations.If needed, you can also contact our support team and provide your website’s IP address. We\'ll check if it has been mistakenly blocked on our server — although this is rare.\";s:3:\"url\";s:89:\"https://cartflows.com/docs/request-timeout-error-while-importing-the-flow-step-templates/\";s:4:\"slug\";s:61:\"request-timeout-error-while-importing-the-flow-step-templates\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-04-17T21:43:43+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:111;O:8:\"stdClass\":8:{s:2:\"id\";i:37316;s:5:\"title\";s:55:\"How to Pre-Fill the Checkout Fields via URL Parameters?\";s:7:\"content\";s:2136:\"CartFlows now includes a feature to pre-fill checkout fields by passing customer information through URL parameters. After many requests, we have integrated this functionality directly into CartFlows to help you streamline the checkout experience and boost conversions.\n\n\n\nHow It Works\n\n\n\nThis feature is enabled by default in CartFlows. To use it, simply send the customer data as URL parameters to your CartFlows Checkout page. The fields will automatically be populated with the provided values when the page loads.\n\n\n\n\nImportant: This feature only works on the CartFlows Checkout page and will not function on any other page.\n\n\n\n\nHow to Use URL Parameters for Pre-Filling\n\n\n\nYou can use any contact form or external source that can redirect or link to your checkout page with URL parameters appended.\n\n\n\nFor example, if you want to pre-fill the customer\'s first name and email address, your checkout page URL should look like this:\n\n\n\nhttps://yourdomain.com/checkout-page/?billing_first_name=John&amp;billing_email=admin@admindomain.com\n\n\n\n\nSupported Field Names\n\n\n\nBelow is the list of billing and shipping field names you can use in the URL parameters to pre-fill the checkout fields.\n\n\n\n\n\n\n\nList of Billing Fields\n\n\n\n\nbilling_email\n\n\n\nbilling_first_name\n\n\n\nbilling_last_name\n\n\n\nbilling_phone\n\n\n\nbilling_address_1\n\n\n\nbilling_address_2\n\n\n\nbilling_city\n\n\n\nbilling_postcode\n\n\n\nbilling_country\n\n\n\nbilling_state\n\n\n\nbilling_company\n\n\n\n\n\n\nList of Shipping Fields\n\n\n\n\nshipping_email\n\n\n\nshipping_first_name\n\n\n\nshipping_last_name\n\n\n\nshipping_phone\n\n\n\nshipping_address_1\n\n\n\nshipping_address_2\n\n\n\nshipping_city\n\n\n\nshipping_postcode\n\n\n\nshipping_country\n\n\n\nshipping_state\n\n\n\nShipping_company\n\n\n\n\n\n\n\n\nDisabling the Pre-Fill Feature\n\n\n\nIf you prefer to disable this feature, you can do so by adding the following code snippet to your child theme’s functions.php file. This will disable the pre-fill functionality on all CartFlows Checkout pages:\n\n\n\nadd_filter( \'cartflows_auto_prefill_checkout_fields\', \'__return_false\' );\n\n\n\nTo use the above code, please refer to this documentation on how to safely add custom PHP code to your WordPress site.\";s:3:\"url\";s:82:\"https://cartflows.com/docs/how-to-pre-fill-the-checkout-fields-via-url-parameters/\";s:4:\"slug\";s:54:\"how-to-pre-fill-the-checkout-fields-via-url-parameters\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-05-27T19:22:44+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:112;O:8:\"stdClass\":8:{s:2:\"id\";i:34944;s:5:\"title\";s:29:\"CartFlows Block Editor Blocks\";s:7:\"content\";s:3725:\"CartFlows now includes native WordPress blocks, making it easier to build and customize your funnel steps using the Block Editor.\n\n\n\nThese blocks are designed to streamline the funnel-building process and are categorized into blocks available in both the Free and Pro versions.\n\n\n\nAvailable Blocks\n\n\n\nYou’ll find dedicated blocks for each CartFlows funnel step:\n\n\n\n\nNext Step Button / Link Block\n\n\n\nOpt-in Form Block\n\n\n\nCheckout Form Block\n\n\n\nUpsell &amp; Downsell Offer Blocks (includes variations and Accept/Reject options)\n\n\n\nOrder Review Block (for Thank You page)\n\n\n\n\nNote: Each block only appears within its relevant funnel step in the editor. For example, the Next Step Button block will only show when editing a Landing Page.\n\n\n\nStep-Wise Breakdown of Blocks &amp; Settings\n\n\n\n1. Landing Page – Next Step Button Block\n\n\n\nThis block allows you to guide users to the next funnel step.\n\n\n\n\n\n\n\n\nGeneral Tab: Adjust alignment, add icons, and customize text.\n\n\n\nStyle Tab: Modify block and text colors, padding, margins, and icon styles.\n\n\n\nContent Tab: Customize font size, typography, and content styling.\n\n\n\nAdvanced Tab: Add custom links or apply custom CSS for further control.\n\n\n\n\n2. Opt-in Page – Opt-in Form Block\n\n\n\nUse this block to collect lead information.\n\n\n\n\n\n\n\n\nGeneral Tab: Control the primary color and global typography.\n\n\n\nInput Field Tab: Style input fields including color, alignment, and typography.\n\n\n\nSubmit Button Tab: Customize the appearance of the submit button.\n\n\n\nAdditional Tab: Add custom CSS to personalize the design.\n\n\n\n\n3. Checkout Page – Checkout Form Block\n\n\n\nDesigned to handle everything from product details to payments.\n\n\n\n\n\n\n\n\nLayout Tab: Choose between One-Column, Two-Column, or Two-Step layouts.\n\n\n\nGlobal Tab: Set global colors and typography for the entire form.\n\n\n\nHeading Tab: Style headings within the checkout form.\n\n\n\nInput Fields Tab: Adjust the look and feel of form fields.\n\n\n\nButton Tab: Design checkout and continue buttons.\n\n\n\nPayment Section Tab: Control the design of the payment methods section.\n\n\n\nSuccess/Error Messages Tab: Style messages that appear after submission.\n\n\n\nProduct Options Tab: Customize how product variations are displayed.\n\n\n\nOrder Bump Tab: Style and manage the Order Bump layout.\n\n\n\nAdditional Tab: Add custom CSS for advanced tweaks.\n\n\n\n\n4 &amp; 5. Upsell &amp; Downsell Pages – Offer Blocks\n\n\n\nThese pages support product variations and feature dynamic Offer Blocks for streamlined offer handling.\n\n\n\n\n\n\n\nAvailable blocks for the Upsell &amp; Downsell Pages :\n\n\n\n\nOffer Accept/Reject Button\n\n\n\nOffer Accept/Reject Link\n\n\n\nOffer Product Title\n\n\n\nOffer Product Price\n\n\n\nOffer Product Description\n\n\n\nProduct Variations\n\n\n\nQuantity Selector\n\n\n\n\nAll content is dynamically rendered based on the offered product.\n\n\n\n6. Thank You Page – Order Review Block\n\n\n\nThis block is used to display post-purchase information and order details.\n\n\n\n\n\n\n\n\nGeneral Tab: Show or hide order review sections.\n\n\n\nSpacing Tab: Adjust spacing between headings and sections.\n\n\n\nHeading Tab: Style the heading text and typography.\n\n\n\nSection Tab: Customize the text, colors, and fonts for each section.\n\n\n\nOrder Review Tab: Manage order item styling.\n\n\n\nDownloads Tab: Display and style downloadable product info (if available).\n\n\n\nOrder Details Tab: Customize text and design for order metadata.\n\n\n\nCustomer Details Tab: Style billing and shipping details.\n\n\n\nAdditional Tab: Add custom CSS as needed.\n\n\n\n\nThese Gutenberg blocks give you full control over the design of each step, without needing shortcodes. However, if you are using another page builder, you can continue using it with guidance from our dedicated documentation on shortcode placement.\";s:3:\"url\";s:54:\"https://cartflows.com/docs/cartflows-gutenberg-blocks/\";s:4:\"slug\";s:26:\"cartflows-gutenberg-blocks\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-20T23:44:07+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:113;O:8:\"stdClass\":8:{s:2:\"id\";i:33520;s:5:\"title\";s:56:\"How to Update Your Payment Method on the CartFlows Store\";s:7:\"content\";s:515:\"In this documentation, we’ll walk you through updating your payment method on the CartFlows store in a few simple steps.\n\n\n\nSteps to update your payment method:\n\n\n\nStep 1: Log in to your Account\n\n\n\nVisit the CartFlows Store and log in using your credentials.\n\n\n\nStep 2: Add a Payment Method\n\n\n\nClick on the Subscriptions section from the sidebar and click the Add payment button.\n\n\n\n\n\n\n\nStep 3: Enter your payment details\n\n\n\nFill in your updated payment details and click on the Add payment method button to save.\";s:3:\"url\";s:54:\"https://cartflows.com/docs/update-your-payment-method/\";s:4:\"slug\";s:26:\"update-your-payment-method\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-03-13T23:43:40+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"account-store\";}}i:114;O:8:\"stdClass\":8:{s:2:\"id\";i:34943;s:5:\"title\";s:45:\"How to Renew your CartFlows Pro License Early\";s:7:\"content\";s:737:\"If you want to renew your CartFlows Pro license before the renewal date or before it expires, you can do so by following the steps below.\n\n\n\nRenewing Your License Early\n\n\n\nTo renew your CartFlows Pro license early:\n\n\n\n\nLog in to your CartFlows account.\n\n\n\nGo to the Subscriptions from the sidebar.\n\n\n\nClick the Renew now button.\n\n\n\nComplete the payment process, and your license will be renewed.\n\n\n\n\n\n\n\n\nWhat Happens After an Early Renewal?\n\n\n\nWhen you renew early, your next payment date will be extended by one full billing period.\n\n\n\nFor example, if your license renews annually on May 15, 2020, and your next payment is scheduled for May 15, 2021, renewing early on November 1, 2020, will move your next payment date to May 15, 2022.\";s:3:\"url\";s:66:\"https://cartflows.com/docs/renew-your-cartflows-pro-license-early/\";s:4:\"slug\";s:38:\"renew-your-cartflows-pro-license-early\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-02-25T16:12:58+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"account-store\";}}i:115;O:8:\"stdClass\":8:{s:2:\"id\";i:34941;s:5:\"title\";s:32:\"CartFlows Beaver Builder Modules\";s:7:\"content\";s:4592:\"CartFlows provides dedicated Beaver Builder modules that allow you to design and customize funnel pages more easily within the Beaver Builder editor. These modules offer enhanced styling options and greater flexibility compared to using shortcodes alone.\n\n\n\nThe modules are included in CartFlows and CartFlows Pro, and they correspond to the different funnel steps available in CartFlows.\n\n\n\nEach module is available only on its relevant funnel step, making it easier to design the page without manually inserting shortcodes.\n\n\n\nAvailable CartFlows Beaver Builder Modules\n\n\n\nCartFlows provides modules for the key funnel elements, including:\n\n\n\n\nNext Step Button / Link\n\n\n\nOpt-in Form\n\n\n\nCheckout Form\n\n\n\nUpsell and Downsell Offer Elements\n\n\n\nOrder Review (Thank You Page)\n\n\n\n\nWhen editing a step with Beaver Builder, the modules related to that specific step will appear in the Beaver Builder module list.\n\n\n\n\n\n\n\nModules by Funnel Step\n\n\n\nBelow is an overview of the modules available for each funnel step and the options you can configure.\n\n\n\nLanding Step – Next Step Button Module\n\n\n\nThe Landing step includes the Next Step Button module, which allows users to proceed to the next step in the funnel.\n\n\n\n\n\n\n\nWithin this module, you can configure:\n\n\n\nGeneral Tab\n\n\n\n\nChange the button text\n\n\n\nAdd or modify icons\n\n\n\nAdjust button link behavior\n\n\n\n\n\n\n\n\nStyle Tab\n\n\n\n\nControl the visual styling of the button content\n\n\n\nCustomize button appearance\n\n\n\nAdjust colors, spacing, and layout\n\n\n\n\n\n\n\n\nTypography Tab\n\n\n\n\nModify font family\n\n\n\nAdjust font size\n\n\n\nCustomize other typography settings\n\n\n\n\n\n\n\n\nAdvanced Tab\n\n\n\n\nConfigure spacing, margins, and layout options for the module section\n\n\n\n\n\n\n\n\nOpt-in Step – Opt-in Form Module\n\n\n\nThe Opt-in step includes the Opt-in Form module, which allows you to capture user information.\n\n\n\nWithin this module, you can configure:\n\n\n\nStyle Tab\n\n\n\n\nCustomize form text styling\n\n\n\nAdjust field text appearance\n\n\n\nModify button styling\n\n\n\n\n\n\n\n\nAdvanced Tab\n\n\n\n\nControl section spacing and layout options for the module\n\n\n\n\n\n\n\n\nCheckout Step – Checkout Form Module\n\n\n\nThe Checkout step includes the Checkout Form module, which displays the complete checkout form on the page.\n\n\n\nWithin this module, you can configure:\n\n\n\nGeneral Tab\n\n\n\n\nConfigure billing and shipping field display\n\n\n\nEnable or manage Order Bump and Pre-Checkout Offers\n\n\n\nManage product display options\n\n\n\nSelect the checkout layout\n\n\n\n\n\n\n\n\nStyle Tab\n\n\n\n\nCustomize headings\n\n\n\nAdjust input field styling\n\n\n\nStyle buttons\n\n\n\nModify payment section appearance\n\n\n\nConfigure validation error message styling\n\n\n\n\n\n\n\n\n\n\n\n\nAdvanced Tab\n\n\n\n\nControl margins, padding, and layout for the module container\n\n\n\n\n\n\n\n\nUpsell and Downsell Steps – Offer Modules\n\n\n\nThe Upsell and Downsell steps support several modules used to display and manage offer elements. These modules also support product variations.\n\n\n\n\n\n\n\nAvailable modules include:\n\n\n\n\nOffer Yes / No Button – Displays buttons for accepting or rejecting the offer\n\n\n\nOffer Yes / No Link – Displays links for accepting or rejecting the offer\n\n\n\nOffer Product Title – Dynamically displays the offer product title\n\n\n\nOffer Product Price – Dynamically displays the product price\n\n\n\nOffer Product Description – Displays the product description\n\n\n\nOffer Product Variations – Displays product variation options when available\n\n\n\nOffer Product Quantity Field – Allows customers to select the quantity of the offered product\n\n\n\n\nEach module includes styling controls within the Style tab to customize its appearance.\n\n\n\nThank You Step – Order Review Module\n\n\n\nThe Thank You step includes the Order Details Form module, which displays the order details after the purchase is completed.\n\n\n\n\n\n\n\nWithin this module, you can configure:\n\n\n\nGeneral Tab\n\n\n\n\nModify the heading displayed on the Thank You page\n\n\n\nEnable or disable specific order review sections\n\n\n\n\n\n\n\n\nStyle Tab\n\n\n\n\nCustomize the appearance of the order review form\n\n\n\nAdjust colors, layout, and styling options\n\n\n\n\n\n\n\n\nAdvanced Tab\n\n\n\n\nControl spacing and layout for the module section\n\n\n\n\n\n\n\n\nAdditional Notes\n\n\n\nThese Beaver Builder modules provide a more flexible way to design CartFlows funnel pages without manually inserting shortcodes.\n\n\n\nHowever, if you prefer to build your pages using shortcodes, you can still do so by adding the appropriate CartFlows shortcodes to your page layouts. Refer to the following documentation to learn where each shortcode should be placed for different funnel steps: https://cartflows.com/docs/placing-shortcode-in-the-right-places/\";s:3:\"url\";s:63:\"https://cartflows.com/docs/beaver-builder-modules-of-cartflows/\";s:4:\"slug\";s:35:\"beaver-builder-modules-of-cartflows\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-03-14T01:54:04+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:116;O:8:\"stdClass\":8:{s:2:\"id\";i:33291;s:5:\"title\";s:69:\"How to Setup Square Gateway for the Cartflows Upsell &#038; Downsell?\";s:7:\"content\";s:1733:\"Starting with CartFlows Pro version 1.5.10, we’ve added custom support for the much-requested Square Payment Gateway. You can now use Square to offer both upsell and downsell offers in your CartFlows funnels.\n\n\n\nFollow the steps below to configure Square Gateway with your CartFlows setup.\n\n\n\nPrerequisites\n\n\n\nBefore you begin, please make sure you have the following ready:\n\n\n\n\nA registered Square Payment Gateway account. If you don’t have one, you can create it here.\n\n\n\nAfter logging in, navigate to My Applications to retrieve your Application ID, and go to the Account section to get your Access Token.\n\n\n\nDownload and install the Square Payment Gateway plugin for WooCommerce. If you need help installing plugins, refer to this guide.\n\n\n\nYour website must have SSL enabled, and all URLs should be forced to use HTTPS.\n\n\n\n\nSteps to Enable Square Gateway\n\n\n\nStep 1: Enable Square in WooCommerce\n\n\n\n\nFrom your WordPress dashboard, go to: WooCommerce → Settings → Payments tab\n\n\n\nLocate Square – Credit Card and toggle it to Enable.\n\n\n\nClick Save Changes at the bottom of the page.\n\n\n\n\n\n\n\n\nStep 2: Configure Square Settings\n\n\n\nAfter enabling, a Square tab will appear under the Payments section. Click on it to begin configuration.\n\n\n\n\n\n\n\nStep 3: Add Credentials\n\n\n\n\nIf you’re testing, enable the Sandbox mode checkbox.\n\n\n\nEnter the corresponding Application ID and Access Token (for either Sandbox or Live, depending on your setup).\n\n\n\n\n\n\n\n\nOnce configured, your CartFlows upsell and downsell offers will be ready to accept payments via Square, giving your customers a secure and seamless checkout experience.\n\n\n\nFor more details about Square’s WooCommerce settings, you can refer to this WooCommerce documentation.\";s:3:\"url\";s:62:\"https://cartflows.com/docs/setup-square-gateway-for-cartflows/\";s:4:\"slug\";s:34:\"setup-square-gateway-for-cartflows\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-05-28T17:54:21+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:117;O:8:\"stdClass\":8:{s:2:\"id\";i:34936;s:5:\"title\";s:27:\"CartFlows Elementor Widgets\";s:7:\"content\";s:3332:\"CartFlows provides Elementor widgets that give you greater flexibility and control when designing your CartFlows pages. These widgets allow you to customize shortcode and build your funnel steps visually using Elementor, making the design process easier and more intuitive.\n\n\n\nThese widgets are developed by the CartFlows team and not by Elementor, and are divided into two groups, Free and Pro, to enhance your design experience.\n\n\n\nYou’ll find Elementor widgets for all CartFlows shortcodes in both Free and Pro versions:\n\n\n\n\nNext Step Button/Link Widget\n\n\n\nOptin Form Widget\n\n\n\nCheckout Form Widget\n\n\n\nUpsell &amp; Downsell Widgets (Product variations, Offer Accept/Reject buttons/links)\n\n\n\nOrder Review Widget (for Thank You page)\n\n\n\n\n\n\n\n\nEach widget only appears on its respective page type when editing in Elementor — for example, the Next Step Button widget appears on the Landing Page, while the Checkout Form widget appears on the Checkout Page.\n\n\n\nPage-Wise Widget Details\n\n\n\nLanding Page – Next Step Widget\n\n\n\nThis page includes one widget: Next Step Button/Link.\n\n\n\n\n\n\n\nContent Tab: Customize the button text and icon.\n\n\n\n\n\n\n\nStyle Tab: Includes General and Content sections for full design control of the button/link.\n\n\n\n\n\n\n\nAdvanced Tab: Modify the styling of the section that contains the widget.\n\n\n\nOptin Page – Optin Form Widget\n\n\n\nThis page includes the Optin Form Widget. Ensure your product is Simple, Virtual, and Downloadable to use this form.\n\n\n\n\n\n\n\nStyle Tab: Customize form fields, and button appearance.\n\n\n\n\n\n\n\nAdvanced Tab: Control the styling of the section where the form is placed.\n\n\n\nCheckout Page – Checkout Form Widget\n\n\n\nThe Checkout Form Widget allows customization for billing, shipping, and order elements.\n\n\n\n\n\n\n\nContent Tab: Manage Checkout Layout and Product Options settings\n\n\n\n\n\n\n\nStyle Tab: Adjust the layout and design for checkout form components.\n\n\n\n\n\n\n\nAdvanced Tab: Fine-tune section-level styling and spacing.\n\n\n\nUpsell &amp; Downsell Pages – Offer Widgets\n\n\n\nThese pages support variation products and include widgets to dynamically display offer details.\n\n\n\n\n\n\n\nAvailable widgets:\n\n\n\n\nOffer Accept/Reject Buttons\n\n\n\nOffer Accept/Reject Links\n\n\n\nOffer Product Title\n\n\n\nOffer Product Price\n\n\n\nOffer Product Description\n\n\n\nOffer Product Variations\n\n\n\nOffer Product Quantity Field\n\n\n\nStyle Tab: Customize the appearance of each widget.\n\n\n\nAdvanced Tab: Adjust section-level styling for the displayed content.\n\n\n\n\nThank You Page – Order Review Widget\n\n\n\nThis widget allows you to design the order review section and control the visibility of elements displayed on the Thank You page.\n\n\n\nContent Tab: Control the actual content of the order review form, such as layout, text, and what elements are shown or hidden.\n\n\n\n\n\n\n\nStyle Tab: Modify the overall look and feel of the order review form.\n\n\n\n\n\n\n\nAdvanced Tab: Adjust layout and design of the containing section.\n\n\n\nWhy Use CartFlows Elementor Widgets\n\n\n\nThese widgets provide a streamlined way to design CartFlows pages without manually inserting shortcodes. They make it easier to control styling directly in Elementor, ensuring your funnel pages look professional and consistent.\n\n\n\nIf you prefer to use shortcodes instead of Elementor, refer to our shortcode documentation to see where each shortcode should be added.\";s:3:\"url\";s:58:\"https://cartflows.com/docs/elementor-widgets-of-cartflows/\";s:4:\"slug\";s:30:\"elementor-widgets-of-cartflows\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-12-24T21:55:32+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:118;O:8:\"stdClass\":8:{s:2:\"id\";i:34940;s:5:\"title\";s:43:\"How to Refresh / Flush WordPress Permalinks\";s:7:\"content\";s:724:\"In some cases, especially when a plugin creates a new Custom Post Type (CPT) or custom URL structure, WordPress permalinks may need to be refreshed. This ensures that your pages and steps load correctly and avoid 404 or layout-related errors.\n\n\n\nThis documentation explains how to manually flush or refresh WordPress permalinks.\n\n\n\nRefresh / Flush Permalinks in WordPress\n\n\n\nFollow the steps below to refresh your site\'s permalinks:\n\n\n\n\nIn your WordPress admin area, go to Settings &gt; Permalinks.\n\n\n\nWithout changing any settings, click the Save Changes button.\n\n\n\n\n\n\n\n\nThis action will flush the rewrite rules and refresh your permalinks automatically.\n\n\n\nThat’s it — your permalinks have been successfully refreshed.\";s:3:\"url\";s:56:\"https://cartflows.com/docs/refresh-wordpress-permalinks/\";s:4:\"slug\";s:28:\"refresh-wordpress-permalinks\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-04-11T14:25:37+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:119;O:8:\"stdClass\":8:{s:2:\"id\";i:34938;s:5:\"title\";s:66:\"How to Replace First Product on the Checkout Page with Order Bump?\";s:7:\"content\";s:1435:\"CartFlows allows you to replace the first product in the cart with the Order Bump product when a user accepts the offer on the Checkout page. This can help you create more dynamic offers that adapt based on customer behavior.\n\n\n\nWhen enabled, selecting the order bump will automatically swap out the first product listed on the checkout page with the bump product. If the order bump is later deselected, the original product is restored.\n\n\n\nThis is particularly useful in scenarios where you offer multiple pricing tiers or upgrade paths and want to streamline the buyer\'s journey by replacing the lower-tier product with the upgraded version instantly.\n\n\n\nHow to Enable the “Replace First Product” Option\n\n\n\nStep 1: Open Your Funnel\n\n\n\nNavigate to CartFlows → Funnels, then click on the name of the funnel where you want to enable this option.\n\n\n\n\n\n\n\nStep 2: Access the Checkout Step\n\n\n\nClick on the Settings icon (cog) next to the Checkout step.\n\n\n\n\n\n\n\nStep 3: Configure Order Bump Settings\n\n\n\nGo to the Order Bump section and click Edit Order Bump.\n\n\n\n\n\n\n\nStep 4: Enable Replace First Product\n\n\n\nIn the Order Bumps settings, enable the Replace First Product option.\n\n\n\n\n\n\n\nStep 5: Save Changes\n\n\n\nClick Save Settings to apply the new configuration.\n\n\n\nOnce enabled, CartFlows will replace the first product on the checkout page with the bump product when selected, and restore it when deselected.\n\n\n\nFrequently Asked Questions\";s:3:\"url\";s:79:\"https://cartflows.com/docs/replace-first-product-with-order-bump-checkout-page/\";s:4:\"slug\";s:51:\"replace-first-product-with-order-bump-checkout-page\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-19T21:19:12+05:30\";s:8:\"category\";a:1:{i:0;s:10:\"order-bump\";}}i:120;O:8:\"stdClass\":8:{s:2:\"id\";i:34937;s:5:\"title\";s:64:\"How to Replace the Main Checkout Order with the Upsell/Downsell?\";s:7:\"content\";s:1996:\"With CartFlows Pro version 1.6.0, we’re excited to introduce the Replace Main Order feature, designed to help you offer upgrade options directly from your Upsell or Downsell pages by replacing the original purchase made on the checkout page.\n\n\n\nWhat does this feature do?\n\n\n\nThis feature allows you to offer an upgraded plan or product on your Upsell/Downsell pages and replace the main product purchased during checkout. For example, if a customer buys an Annual Plan at checkout, you can offer them a Lifetime Plan as an upsell and replace the original order with this upgraded plan seamlessly.\n\n\n\nHow does it work?\n\n\n\nLet’s say you have two products:\n\n\n\n\nProduct A: Annual Plan (sold on the checkout page)\n\n\n\nProduct B: Lifetime Plan (offered as an upsell or downsell)\n\n\n\n\nIf you want to replace Product A with Product B after checkout, simply select Product B on your Upsell/Downsell page and enable the Cancel Main Order option.\n\n\n\nWhen enabled, CartFlows will:\n\n\n\n\nCharge the price difference between the upsell/downsell product and the original checkout product\n\n\n\nCancel the original order\n\n\n\nReplace it with the upgraded product from the Upsell/Downsell page\n\n\n\n\nImportant Requirements\n\n\n\nTo use this feature successfully, please note the following:\n\n\n\n\nThe Create a new child order option must be enabled in CartFlows > Settings > Order tab\n\n\n\nThe upsell/downsell product price must be greater than the main checkout product price\n\n\n\nWhen using multiple upsells, the main order will be replaced only by the first upsell/downsell offer that meets the criteria\n\n\n\n\nHow to enable the Replace Main Order feature\n\n\n\nFollow these simple steps:\n\n\n\n1: Go to CartFlows > Settings and click Order tab on the sidebar then enable Create a new child order\n\n\n\n\n\n\n\n2: Open the backend settings of the Upsell/Downsell page where you want to enable the replacement\n\n\n\n3: Select the product you want to offer as the upgrade\n\n\n\n4: Enable the Replace Main Order option\n\n\n\n\n\n\n\nFrequently Asked Questions\";s:3:\"url\";s:76:\"https://cartflows.com/docs/replace-main-checkout-order-with-upsell-downsell/\";s:4:\"slug\";s:48:\"replace-main-checkout-order-with-upsell-downsell\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-06T12:38:25+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:121;O:8:\"stdClass\":8:{s:2:\"id\";i:33192;s:5:\"title\";s:41:\"How to Use A/B Split Testing in CartFlows\";s:7:\"content\";s:2669:\"Split testing (A/B testing) in CartFlows allows you to test different versions of a funnel step to determine which version performs better. You can create variations of a step and distribute traffic between them to measure conversions and optimize your funnel performance.\n\n\n\nThis documentation explains how to create and manage a split test for a funnel step in CartFlows.\n\n\n\nStep 1: Open the Funnel\n\n\n\n\nLog in to your WordPress dashboard.\n\n\n\nNavigate to CartFlows &gt; Funnels.\n\n\n\nLocate the funnel where you want to run the split test.\n\n\n\nClick on the funnel to open its steps.\n\n\n\n\n\n\n\n\nYou will now see the Funnel Steps screen where all steps of the funnel are listed.\n\n\n\nStep 2: Create a Variation of the Step\n\n\n\nTo run a split test, you first need a second variation of the step.\n\n\n\n\nLocate the step you want to test (for example, a Checkout step).\n\n\n\nClick the three dot icon next to the step nad select A/B Test\n\n\n\n\nCartFlows will create a duplicate version of that step, which will act as the variation for testing.\n\n\n\nYou can edit the cloned step and modify elements such as:\n\n\n\n\nPage design\n\n\n\nCopy or messaging\n\n\n\nLayout\n\n\n\nProduct details\n\n\n\nOffers or order bumps\n\n\n\n\n\n\n\n\nThis allows you to test different versions of the same step.\n\n\n\nStep 3: Configure Traffic Distribution\n\n\n\nInside the split test settings popup, you can control how traffic is distributed between the variations.\n\n\n\n\nClick Split Test Settings (cog icon) and a popup window will open.\n\n\n\nUse the sliders to adjust the traffic percentage for each variation.\n\n\n\nFor example:\n\nStep A – 50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\n\n\n\nStep B – 50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\n\n\n\n\n\n\nYou can adjust the percentages depending on how you want to distribute visitors between the variations.\n\n\n\n\n\n\n\nAfter configuring the traffic distribution click Save Settings.\n\n\n\nStep 4: Start Split Testing\n\n\n\nOnce you have multiple versions of the step:\n\n\n\n\nIn the Funnel Steps section, locate the step that now has multiple variations.\n\n\n\nClick Start Split Test.\n\n\n\n\n\n\n\n\nCartFlows will activate the split test and begin sending traffic to the different step variations according to the distribution you configured.\n\n\n\nMonitoring Split Test Results\n\n\n\nOnce the split test is running, CartFlows will track performance metrics for each variation, including:\n\n\n\n\nViews\n\n\n\nConversions\n\n\n\nRevenue (when applicable)\n\n\n\n\n\n\n\n\nYou can monitor these metrics directly in the Funnel Steps area to determine which variation performs better.\n\n\n\nEnding a Split Test\n\n\n\nAfter collecting enough data:\n\n\n\n\nReview the performance of each variation.\n\n\n\nSelect the version that performs best.\n\n\n\nDeclare the winner&nbsp; to End the split test and keep the winning variation active in your funnel.\";s:3:\"url\";s:51:\"https://cartflows.com/docs/cartflows-split-testing/\";s:4:\"slug\";s:23:\"cartflows-split-testing\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-06T12:11:00+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:122;O:8:\"stdClass\":8:{s:2:\"id\";i:34935;s:5:\"title\";s:56:\"How Does CartFlows Work with and without Store Checkout?\";s:7:\"content\";s:1830:\"CartFlows provides two ways to handle the checkout process, with or without Store Checkout. This documentation explains how each method works and which one is best suited for your store.\n\n\n\nHow CartFlows Works without Store Checkout\n\n\n\nBy default, CartFlows funnels work independently. You can send users directly to a Landing Page or Checkout Page via ads, social media, or your website’s navigation.\n\n\n\nDefault Funnel Process:\n\n\n\nLanding Page > Checkout Page > Upsell Page (Pro) > Downsell Page (Pro) > Thank You Page\n\n\n\nYou can use this method to:\n\n\n\n\nPromote individual products via ads and social media.\n\n\n\nLink users directly to a custom Landing Page or Checkout Page.\n\n\n\nAdd custom navigation to direct users to specific funnels.\n\n\n\n\n\n\n\n\nHow CartFlows Works with Store Checkout\n\n\n\nWith Store Checkout, CartFlows replaces WooCommerce’s default Checkout page. This allows you to:\n\n\n\n\nSend all WooCommerce purchases through a CartFlows Checkout Page.\n\n\n\nSupport multiple products without creating a separate funnel for each one.\n\n\n\nOffer upsells and downsells for store-wide products, increasing average order value.\n\n\n\nUse a custom checkout experience across your entire store.\n\n\n\n\nStore Checkout Process:\n\n\n\nShop Page > Cart Page (optional) > CartFlows Checkout Page > Thank You Page\n\n\n\nThis method is best if you:\n\n\n\n\nHave a large number of products and want to use a single, optimized checkout page.\n\n\n\nWant to redirect users from any page (product pages, social media, or ads) to a custom CartFlows checkout.\n\n\n\n\n\n\n\n\nWhich One Should You Use?\n\n\n\n\nUse Store Checkout if you sell multiple products and want a single, optimized checkout.\n\n\n\nUse funnels without Store Checkout if you need a custom sales journey for individual products.\n\n\n\n\nFor more details on setting up Store Checkout, see: Store Checkout Documentation\";s:3:\"url\";s:79:\"https://cartflows.com/docs/how-cartflows-work-with-and-without-global-checkout/\";s:4:\"slug\";s:51:\"how-cartflows-work-with-and-without-global-checkout\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-01-30T15:31:42+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"getting-started\";}}i:123;O:8:\"stdClass\":8:{s:2:\"id\";i:33122;s:5:\"title\";s:66:\"How to Enable the CartFlows Step Post Types for the Page Builders?\";s:7:\"content\";s:1263:\"CartFlows steps like Landing, Checkout, Upsell, and Thank You are built using a custom post type called cartflows_step. To visually edit these steps using a page builder, that builder must support custom post types.\n\n\n\nMost page builders automatically detect and support custom post types, including cartflows_step. However, in certain cases, you may need to manually enable it from your page builder’s settings panel.\n\n\n\nBelow is an example using the DIVI builder.The process is similar in other popular page builders like Elementor, Beaver Builder, and Brizy — typically found in their post type or integration settings.\n\n\n\nHow to Enable CartFlows Steps in DIVI?\n\n\n\nIf you\'re using the DIVI Builder, follow these steps to enable editing for CartFlows steps:\n\n\n\nUsing the DIVI Builder Plugin:\n\n\n\n\nNavigate to the DIVI menu in your WordPress dashboard.\n\n\n\nClick on Plugin Options.\n\n\n\nGo to the Post Type Integration tab.\n\n\n\nEnable the checkbox for Steps.\n\n\n\n\n\n\n\n\nUsing the DIVI Theme:\n\n\n\n\nNavigate to the DIVI menu in your WordPress dashboard.\n\n\n\nClick on Theme Options.\n\n\n\nGo to the Builder tab.\n\n\n\nEnable the checkbox for Steps.\n\n\n\n\n\n\n\n\nOnce enabled, you’ll be able to launch the DIVI builder when editing any CartFlows step.\n\n\n\nFrequently Asked Questions\";s:3:\"url\";s:78:\"https://cartflows.com/docs/enable-cartflows-step-post-types-for-page-builders/\";s:4:\"slug\";s:50:\"enable-cartflows-step-post-types-for-page-builders\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-08-02T18:31:09+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:124;O:8:\"stdClass\":8:{s:2:\"id\";i:33099;s:5:\"title\";s:84:\"How to Display the &#8220;Account Creation Fields&#8221; on CartFlows Checkout Page?\";s:7:\"content\";s:1588:\"Allowing users to create an account directly on the checkout page is a great way to streamline the purchase process and improve the overall shopping experience. With this setup, users don’t have to register separately, they can create their account while completing their purchase.\n\n\n\nHow does it work?\n\n\n\nWooCommerce provides built-in options to collect account creation details such as username and password directly on the checkout page. These fields are displayed based on your configuration in the WooCommerce > Settings > Accounts &amp; Privacy section.\n\n\n\nSteps to enable account creation fields\n\n\n\nTo show the account fields on the CartFlows checkout page, follow these steps:\n\n\n\n\nNavigate to WooCommerce > Settings > Accounts &amp; Privacy\n\n\n\nUnder the Account creation section, enable:\n\nAllow customers to create an account during checkout\n\n\n\n(Optional) Enable additional options such as allowing account creation from the “My Account” page or automatically generating usernames/passwords\n\n\n\n\n\nSave changes\n\n\n\n\nOnce enabled, WooCommerce will display the account creation fields on the checkout page when a non-logged-in user attempts to place an order.\n\n\n\nSince CartFlows uses the native WooCommerce checkout functionality, the account creation fields will appear on your CartFlows checkout page as well, no additional setup is required.\n\n\n\nHelpful Resources\n\n\n\n\nFor a detailed explanation of each option, check out WooCommerce’s official documentation\n\n\n\nPrefer a visual walkthrough? Watch this step-by-step video guide.\n\n\n\n\n\nhttps://www.youtube.com/watch?v=AGZSeX5I-wo\";s:3:\"url\";s:74:\"https://cartflows.com/docs/display-account-creation-fields-with-cartflows/\";s:4:\"slug\";s:46:\"display-account-creation-fields-with-cartflows\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-01T22:21:35+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:125;O:8:\"stdClass\":8:{s:2:\"id\";i:32997;s:5:\"title\";s:56:\"How to Change the &#8220;Choose A variation&#8221; text?\";s:7:\"content\";s:1290:\"When using the Product Options feature in CartFlows, customers may see a “Choose a variation” link (if there is a variable product) that opens a variation selection popup. This label can be customized to better match your store’s language, branding, or product tone.\n\n\n\nCartFlows does not provide a setting in the dashboard to change this text, but it can be easily modified using a filter we provided.\n\n\n\nStep 1: Choose How to Add Custom Code\n\n\n\nYou can use either of the following methods to add the filter:\n\n\n\n\nUse a child theme and place the code in the functions.php file.\n\n\n\nUse a code snippet plugin like Code Snippets for safer and easier management.\n\n\n\n\nStep 2: Add the Filter Code\n\n\n\nCopy and paste the following snippet into your chosen method:\n\n\n\nadd_filter( \'cartflows_variation_popup_toggle_text\', \'change_variation_toggle_text\', 10, 1 );/** * Change Choose a variation text. * * @return text. */function change_variation_toggle_text( $text ) {	return \"Add your choice of text here\";}\n\n\n\nStep 3: Save Changes and Test\n\n\n\nAfter saving the changes, visit your checkout page where the Product Options popup appears and confirm that the new text displays as expected.\n\n\n\nNote: For detailed guidance on adding custom code to your site, please refer to our documentation here.\";s:3:\"url\";s:49:\"https://cartflows.com/docs/change-variation-text/\";s:4:\"slug\";s:21:\"change-variation-text\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-11T22:14:55+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"code-snippets\";}}i:126;O:8:\"stdClass\":8:{s:2:\"id\";i:32995;s:5:\"title\";s:56:\"How to Allow Cache Plugins to Cache the CartFlows Pages?\";s:7:\"content\";s:1776:\"By default, CartFlows prevents its pages from being cached by common caching plugins. This is done to avoid potential conflicts and ensure that funnel steps work correctly out of the box.\n\n\n\nHowever, if you understand the implications and want to allow caching on CartFlows pages for performance reasons, this documentation explains how to do it.\n\n\n\nWhy CartFlows Pages Are Not Cached\n\n\n\nCartFlows includes special constants in its code that instruct caching plugins to skip its pages:\n\n\n\n\nDONOTCACHEPAGE\n\n\n\nDONOTCACHEOBJECT\n\n\n\nDONOTCACHEDB\n\n\n\n\nMany popular caching plugins look for these constants, and when detected, they automatically exclude the page from being cached.\n\n\n\nHow to Allow Caching for CartFlows Pages\n\n\n\nYou can disable this restriction by using a filter provided by CartFlows. This filter allows you to override the default behavior and selectively allow caching for specific step pages.\n\n\n\nAdd This Filter to Your Child Theme\n\n\n\nTo allow caching, add the following code to your child theme’s functions.php file:\n\n\n\nadd_filter( \'cartflows_do_not_cache_step\', \'cache_CartFlows_pages\' );\n\nfunction cache_CartFlows_pages( $post_id ) {\n \n// If you want to remove more pages from the cache then add those page\'s id in the array.\n\n	if( in_array( $post_id , array( \'add_your_landing_page_ids_comma_separated_id_more_than_one\' ) ) ){\n		return false; // Cache the Pages.\n	}\n\n	return true; // Do Not cache.\n}\n\n\n\nYou can find your step page IDs by going to CartFlows &gt; Funnels, opening the Funnel, then hovering over the Step name to view the ID in the URL.\n\n\n\n\n\n\n\nIn the screenshot above, the Step ID is 68.\n\n\n\nHow to Add Custom Code Safely\n\n\n\nIf you’re not sure how to add code to your functions.php file, follow this guide: How to Add Custom Code to WordPress\";s:3:\"url\";s:72:\"https://cartflows.com/docs/allow-cache-plugins-to-cache-cartflows-pages/\";s:4:\"slug\";s:44:\"allow-cache-plugins-to-cache-cartflows-pages\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-26T20:01:44+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"code-snippets\";}}i:127;O:8:\"stdClass\":8:{s:2:\"id\";i:32963;s:5:\"title\";s:79:\"How to Collect the User&#8217;s Contact Data and Redirect to the Checkout Page?\";s:7:\"content\";s:1750:\"If you\'re looking to collect a user’s basic information before sending them to the checkout page, you can achieve this easily using either the CartFlows Optin step or a custom form on a landing page.\n\n\n\nOption 1: Using the CartFlows Optin Step\n\n\n\nCartFlows provides a built-in Optin step designed for lead generation. When a user submits the Optin form, an order is automatically created in WooCommerce. The user\'s name and email are captured and stored as part of that order.\n\n\n\nIf you’re using a CRM, you can integrate it with WooCommerce. Once integrated, your CRM plugin can sync with WooCommerce and receive the user’s contact details as soon as the order is created.\n\n\n\nFor a complete guide on setting up the Optin step, refer to this documentation.\n\n\n\nOption 2: Using a Custom Form and Redirect\n\n\n\nIf you prefer to use your own form module (e.g., from a page builder like Elementor), you can still capture user information and redirect to the checkout page. Here’s how:\n\n\n\nStep 1: Create a Landing Page\n\n\n\nDesign a landing page with details about your product or offer.\n\n\n\nStep 2: Add a Contact Form\n\n\n\nUse your page builder’s form module (e.g., Elementor Form, WPForms, etc.) to collect basic information like name and email.\n\n\n\nStep 3: Set a Redirect URL\n\n\n\nIn the form settings, configure the redirect action so that once the form is submitted, users are sent directly to your Checkout page URL.\n\n\n\nStep 4: Done!\n\n\n\nWhen users submit the form, their data is captured by the form plugin, and they are redirected to your checkout step to complete the purchase.\n\n\n\nNote: This method does not create a WooCommerce order automatically. If you need the lead data synced to your CRM, make sure your form plugin supports that integration.\";s:3:\"url\";s:84:\"https://cartflows.com/docs/collect-users-contact-data-and-redirect-to-checkout-page/\";s:4:\"slug\";s:56:\"collect-users-contact-data-and-redirect-to-checkout-page\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-30T20:17:13+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:128;O:8:\"stdClass\":8:{s:2:\"id\";i:32955;s:5:\"title\";s:46:\"How to Duplicate a Funnel or Step in CartFlows\";s:7:\"content\";s:1307:\"CartFlows allows you to quickly duplicate funnels or individual steps with just one click. This is useful when you want to reuse existing layouts, settings, or configurations without building everything from scratch.\n\n\n\nThis documentation shows you how to duplicate a funnel or step from the CartFlows dashboard.\n\n\n\nHow to Duplicate a Funnel\n\n\n\nTo duplicate an entire funnel:\n\n\n\n\nGo to CartFlows &gt; Funnels in your WordPress admin.\n\n\n\nHover over the funnel you want to copy.\n\n\n\nClick Duplicate.\n\n\n\n\n\n\n\n\nCartFlows will create a new funnel with the same steps and configurations. You can rename or modify it as needed.\n\n\n\nHow to Duplicate a Step\n\n\n\nTo duplicate a specific step:\n\n\n\n\nGo to CartFlows &gt; Funnels.\n\n\n\nClick on the funnel that contains the step you want to duplicate.\n\n\n\nHover over the step and click Duplicate.\n\n\n\n\n\n\n\n\nThe duplicated step will appear at the bottom of the funnel and will have the word “Clone” added to its title. You can rename it and drag it to a different position within the funnel if needed.\n\n\n\nThings to Keep in Mind\n\n\n\n\nDuplicating a funnel copies all its steps and their settings.\n\n\n\nDuplicating a step copies only that step — not the entire funnel.\n\n\n\nIf you\'re using a page builder (like Elementor or Gutenberg), the design inside the step will also be copied.\";s:3:\"url\";s:56:\"https://cartflows.com/docs/clone-flow-step-in-cartflows/\";s:4:\"slug\";s:28:\"clone-flow-step-in-cartflows\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-20T18:37:42+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"flow-step-clone\";}}i:129;O:8:\"stdClass\":8:{s:2:\"id\";i:32938;s:5:\"title\";s:57:\"How to Enable/Add Coupons on the CartFlows Checkout page?\";s:7:\"content\";s:2469:\"CartFlows makes it easy to allow your customers to apply discount coupons directly at checkout. You can control the visibility of the coupon field, and even customize the field and button text to better match your brand.\n\n\n\nStep 1: Enable Coupons in WooCommerce\n\n\n\nBefore displaying coupons on your CartFlows checkout page, make sure coupons are enabled in WooCommerce:\n\n\n\n\nNavigate to WooCommerce &gt; Settings &gt; General.\n\n\n\nCheck the option “Enable the use of coupon codes”.\n\n\n\nCreate and configure your coupons under WooCommerce &gt; Marketing &gt; Coupons.\n\n\n\n\nIf you\'re new to WooCommerce coupons, you can refer to this official WooCommerce guide for detailed steps.\n\n\n\nOnce your coupons are set up, the coupon field will automatically appear on your CartFlows checkout pages.\n\n\n\nStep 2: Show or Hide the Coupon Field on a Specific Checkout Page\n\n\n\nYou can choose to enable or disable the coupon field for each individual checkout page.\n\n\n\nHere\'s how:\n\n\n\n1: Go to CartFlows > Funnels. If you\'re using the Store Checkout, open the Store Checkout tab instead.\n\n\n\n\n\n\n\n2: Click on the Settings (cog icon) for the Checkout step.\n\n\n\n\n\n\n\n3: Navigate to the Checkout Form tab. Toggle the Enable Coupon Field option as needed.\n\n\n\n\n\n\n\nStep 3: Customize Coupon Field and Button Text (Optional)\n\n\n\nNeed to change the default placeholder or button label? CartFlows provides a developer-friendly filter to help you personalize the coupon field text.\n\n\n\nAdd the following code to your child theme’s functions.php file:\n\n\n\n/** * Change the CartFlows Coupon Field text and Button text. * * @param array $coupon_field array of field strings/texts. * @return array */add_filter( \'cartflows_coupon_field_options\', \'change_cartFlows_coupon_field_strings\', 10, 1 );function change_cartFlows_coupon_field_strings( $coupon_field ){	$coupon_field = array(		\'field_text\'  =&gt; __( \'Coupon Code\', \'cartflows\' ), // Coupon input field text/placeholder.		\'button_text\' =&gt; __( \'Apply\', \'cartflows\' ), // Apply coupon button text.		\'class\'       =&gt; \'\', // Coupon input field class.	);	return $coupon_field; // Returning the modified data with new strings.}\n\n\n\n\n&#x1f4a1; Need help adding custom code to your site? Here’s a guide to walk you through the process safely.\n\n\n\n\nWith these settings in place, you’ll have full control over how coupons appear and function on your CartFlows checkout pages, improving the customer experience and supporting your promotional campaigns.\";s:3:\"url\";s:60:\"https://cartflows.com/docs/enable-coupons-on-cartflows-page/\";s:4:\"slug\";s:32:\"enable-coupons-on-cartflows-page\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-05T19:10:05+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:130;O:8:\"stdClass\":8:{s:2:\"id\";i:32945;s:5:\"title\";s:64:\"Why is the Upsell/Downsell not Working or it is Getting Skipped?\";s:7:\"content\";s:2356:\"Sometimes, you may notice that even after configuring your Upsell / Downsell offers correctly, customers are redirected straight to the Thank You page without seeing those offers. Let’s look into the common reasons for this and how you can resolve them.\n\n\n\nCases Where Upsell / Downsell Pages Get Skipped\n\n\n\nCase 1: Cart Total is Zero\n\n\n\nIf you’re selling a free product (cart total is zero), WooCommerce will not display payment gateway options at Checkout. Since there’s no gateway selected, the Upsell / Downsell page cannot process an additional charge, and the customer will be redirected directly to the Thank You page.\n\n\n\nCase 2: Unsupported Payment Gateway\n\n\n\nCartFlows currently supports specific payment gateways with Upsell/Downsell. If you use a payment gateway that is not supported, the Upsell / Downsell page will be skipped. You can review the list of supported gateways in our documentation.\n\n\n\nCase 3: Upsell / Downsell Placed Before Checkout\n\n\n\nIf you add Upsell / Downsell pages directly after an Optin step (before the Checkout), they will be skipped. This is because the Optin step only handles free products, and no payment gateway is available at that stage.\n\n\n\nCase 4: Checkout Modified by Other Plugins\n\n\n\nSome third-party plugins may alter the Checkout or thank you process. If such a plugin interferes, the Upsell / Downsell steps may be bypassed. Disabling conflicting plugins and testing your flow can help identify the cause.\n\n\n\nCase 5: Misconfigured Dynamic Offers on Checkout Step\n\n\n\nIf you’ve set up dynamic offers directly on the Checkout step, but the configuration is incorrect, it may cause the Upsell / Downsell sequence to be skipped. Double-check your dynamic offer rules and ensure they are set up properly to trigger Upsell after the main Checkout purchase.\n\n\n\nSolution\n\n\n\nTo ensure Upsell / Downsell offers are displayed:\n\n\n\n\nPlace Upsell / Downsell steps after the Checkout page in your funnel.\n\n\n\nMake sure the cart value is at least $1 so that payment gateway options appear at Checkout.\n\n\n\nUse one of the supported payment gateways for processing Upsell/Downsell.\n\n\n\nVerify that any dynamic offers are configured correctly to trigger after Checkout.\n\n\n\n\nWith this setup, your customers will complete checkout using a supported gateway, and then they’ll see the Upsell / Downsell offers as intended.\";s:3:\"url\";s:65:\"https://cartflows.com/docs/resolve-upsell-downsell-skipped-issue/\";s:4:\"slug\";s:37:\"resolve-upsell-downsell-skipped-issue\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-09-25T22:28:24+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:131;O:8:\"stdClass\":8:{s:2:\"id\";i:32911;s:5:\"title\";s:107:\"How to Show or Hide Shipping Fields and the Ship to Different Address Option on the CartFlows Checkout Page\";s:7:\"content\";s:1349:\"When selling physical products, you’ll often need to collect the customer’s shipping details and sometimes apply shipping charges based on location. CartFlows allows you to manage when the shipping fields and the Ship to a Different Address option appear on your Checkout pages.\n\n\n\nStep 1: Set Up Shipping in WooCommerce\n\n\n\nShipping fields are controlled by WooCommerce. To display them on the Checkout page, you’ll first need to set up shipping zones and rates:\n\n\n\n\nGo to WooCommerce &gt; Settings &gt; Shipping.\n\n\n\nCreate Shipping Zones based on the regions where you ship.\n\n\n\nAdd the appropriate Shipping Methods and rates.\n\n\n\n\nIf shipping zones and methods are not set up, the shipping fields will not appear on your Checkout page.\n\n\n\nFor a detailed guide, refer to WooCommerce’s Shipping Documentation.\n\n\n\nStep 2: Enable or Disable Shipping Fields in CartFlows\n\n\n\nOnce your shipping setup is ready, you may want to enable or hide the shipping fields on specific CartFlows Checkout pages. Here’s how:\n\n\n\n1: Go to CartFlows &gt; Funnels &gt; Your Funnel.\n\n\n\n\n\n\n\n2: Open the Checkout step and click Settings.\n\n\n\n\n\n\n\n3: Navigate to the Checkout Form > Form Settings tab.\n\n\n\n4: Toggle Enable Ship to Different Address on or off, depending on your preference.\n\n\n\n\n\n\n\n5: Click Save Settings to update your page.\n\n\n\nFrequently Asked Questions\";s:3:\"url\";s:63:\"https://cartflows.com/docs/ship-to-different-address-cartflows/\";s:4:\"slug\";s:35:\"ship-to-different-address-cartflows\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-05T20:33:50+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:132;O:8:\"stdClass\":8:{s:2:\"id\";i:32885;s:5:\"title\";s:66:\"How to Fix &#8220;Page Not Found&#8221; on Checkout During Payment\";s:7:\"content\";s:1063:\"If you see a “Page Not Found” message when a customer is redirected to the payment gateway from the CartFlows Checkout page, it’s likely caused by a missing default WooCommerce page setting.\n\n\n\nThis documentation explains the cause and how to resolve it.\n\n\n\nWhy This Happens\n\n\n\nSome payment gateways use the default WooCommerce Checkout page to process payments. During checkout, when the customer is redirected to the payment gateway’s form, WooCommerce uses the order-pay endpoint on its default checkout page.\n\n\n\nIf the WooCommerce Checkout page is not created or not assigned correctly under WooCommerce settings, this will result in a “Page Not Found” error.\n\n\n\nHow to Fix the Error\n\n\n\nTo resolve the issue:\n\n\n\n\nGo to WooCommerce &gt; Settings &gt; Advanced.\n\n\n\nUnder the Page setup section, find the Checkout page dropdown.\n\n\n\nSelect a valid page from the dropdown. This should be a standard page created by WooCommerce.\n\n\n\n\nClick Save changes.\n\n\n\n\n\n\n\nIf the Checkout page is missing, follow this WooCommerce guide to recreate the default pages.\";s:3:\"url\";s:68:\"https://cartflows.com/docs/resolve-page-not-found-message-cartflows/\";s:4:\"slug\";s:40:\"resolve-page-not-found-message-cartflows\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-05-14T22:56:29+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:133;O:8:\"stdClass\":8:{s:2:\"id\";i:32887;s:5:\"title\";s:49:\"How to Turn Off the Auto-fill of Checkout Fields?\";s:7:\"content\";s:1322:\"By default, CartFlows helps improve the checkout experience by automatically filling in previously entered billing or shipping information. This feature is designed to make it faster and easier for returning users to complete their purchase.\n\n\n\nCartFlows stores this data locally in the user’s browser—nothing is saved on the server or shared with others. This means the information will only auto-fill for the same user using the same browser and device.\n\n\n\nWhile this improves convenience, there may be scenarios where you prefer to disable this auto-fill behavior—especially on shared devices or for privacy-focused setups.\n\n\n\nHow to Disable Auto-Fill Using a Filter\n\n\n\nTo turn off the auto-fill feature, you can use the following filter in your child theme’s functions.php file:\n\n\n\n/** * Filter to enable/disable the auto-fill of checkout fields  * * @param  string $allow having yes/no * @return string $allow yes or no */add_filter( \'cartflows_allow_persistence\', \'do_not_store_persistance_data\', 10, 1 );function do_not_store_persistance_data( $allow ){	$allow = \'no\';	return $allow;}\n\n\n\n\n&#x1f4a1; Need help adding custom code? Here’s how to safely add code snippets to your site.\n\n\n\n\nOnce this filter is in place, CartFlows will no longer pre-fill any checkout field data from a user\'s previous session.\";s:3:\"url\";s:62:\"https://cartflows.com/docs/turn-off-auto-fill-checkout-fields/\";s:4:\"slug\";s:34:\"turn-off-auto-fill-checkout-fields\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-07-07T17:45:56+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"code-snippets\";}}i:134;O:8:\"stdClass\":8:{s:2:\"id\";i:32873;s:5:\"title\";s:89:\"How to Enable the Theme&#8217;s Scripts &#038; Styles without Changing the Page Template?\";s:7:\"content\";s:1619:\"By default, CartFlows intentionally does not load your theme’s header, footer, or styling on funnel pages. This ensures maximum flexibility and avoids design conflicts—especially helpful when creating focused, distraction-free checkout experiences.\n\n\n\nWhy the Header &amp; Footer Are Hidden\n\n\n\nTo maintain full design control and prevent potential layout issues, CartFlows uses its own template for funnel pages. If you\'d prefer to show your theme’s header and footer, the recommended approach is to set the page template to Default in the page editor. Here’s how to do that.\n\n\n\nHowever, in some cases, you may notice that the header and footer appear without styling—especially when not using a Default template. If you’d like to load your theme’s CSS and JavaScript files without changing the page template, you can use the following filters.\n\n\n\nHow to Load Theme Scripts &amp; Styles with a Filter\n\n\n\nAdd the following code snippet to your child theme’s functions.php file:\n\n\n\n/** * Filter to load theme\'s styles &amp; scripts.  * * @param  bool $remove_styles true/false * @return bool $remove_styles true/false */add_filter( \'cartflows_remove_theme_styles\', \'wcf_load_theme_files\', 10, 1 );add_filter( \'cartflows_remove_theme_scripts\', \'wcf_load_theme_files\', 10, 1 );function wcf_load_theme_files( $remove_styles ){		$remove_styles = false;	return $remove_styles;}\n\n\n\n\n&#x1f4a1; Need help adding custom code? Follow this guide to safely insert custom code into WordPress.\n\n\n\n\nOnce added, your theme’s styles and scripts will load on CartFlows pages—even if you\'re not using a Default template.\";s:3:\"url\";s:67:\"https://cartflows.com/docs/enable-themes-style-for-existing-layout/\";s:4:\"slug\";s:39:\"enable-themes-style-for-existing-layout\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-04T17:49:22+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"code-snippets\";}}i:135;O:8:\"stdClass\":8:{s:2:\"id\";i:32870;s:5:\"title\";s:69:\"How to Turn Off the Auto-fill of Address Fields on Entering Zip-Code?\";s:7:\"content\";s:1372:\"CartFlows includes a convenient feature that automatically fills in the Country, State, and City fields on your checkout page based on the zip code entered by the customer. This functionality is powered by the Zippopotam API, which looks up location details for recognized zip codes and auto-fills the corresponding fields to streamline the checkout process.\n\n\n\nHowever, in some scenarios, you may want to disable this behavior, for example, when using custom fields or serving regions where this data is unreliable.\n\n\n\nDisable Auto-Fill Using a Filter\n\n\n\nTo turn off this auto-fill functionality, you can use the following WordPress filter:\n\n\n\n/** * Filter to enable/disable the address auto-fill using the zip code.  * * @param  string $allow having yes/no * @return string $allow yes or no */add_filter( \'cartflows_autocomplete_zip_data\', \'wa_disable_autocomplete_zipcode\', 10, 1 );function wa_disable_autocomplete_zipcode( $allow ) {    $allow = \'no\';    return $allow;}\n\n\n\nHow to Add This Code\n\n\n\nTo apply this filter, add the snippet to your child theme’s functions.php file or use Code Snippets plugin. If you\'re unsure how to safely add custom code to your site, we recommend reviewing this guide on adding custom code.\n\n\n\nOnce added, CartFlows will no longer auto-fill the address fields when a zip code is entered, allowing full manual input from the customer.\";s:3:\"url\";s:61:\"https://cartflows.com/docs/turn-off-auto-fill-address-fields/\";s:4:\"slug\";s:33:\"turn-off-auto-fill-address-fields\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-12T22:24:27+05:30\";s:8:\"category\";a:1:{i:0;s:13:\"code-snippets\";}}i:136;O:8:\"stdClass\":8:{s:2:\"id\";i:32891;s:5:\"title\";s:51:\"How to Fix Recovery Emails Going to the Spam Folder\";s:7:\"content\";s:2441:\"If your recovery emails from the Cart Abandonment Recovery for WooCommerce plugin are landing in the Spam folder, it\'s important to understand that the plugin does not send emails directly.\n\n\n\nThe emails are delivered through your website host or an SMTP plugin if one is set up. That means the issue is related to how emails are sent from your site, not how Cart Abandonment is configured.\n\n\n\nWhy Recovery Emails Go to Spam\n\n\n\nEmail providers automatically filter emails that look suspicious, poorly configured, or lack important authentication. Here are common reasons why recovery emails may be flagged as spam:\n\n\n\n1. Missing SPF, DKIM, or DMARC Records\n\n\n\nThese DNS records help verify that your site is authorized to send email from your domain. Without them, email services may not trust the message and send it to spam.\n\n\n\n2. Using a Free Email Address\n\n\n\nSending emails from an address like yourstore@gmail.com or yourname@yahoo.com lowers deliverability. Always use an email based on your own domain (e.g., support@yourdomain.com).\n\n\n\n3. Spam-Triggering Words in Subject or Content\n\n\n\nWords like “Buy now,” “Click here,” or “Limited offer” - especially in all caps - can increase the chances of emails being flagged. Keep your messaging clean, helpful, and aligned with your brand voice.\n\n\n\n4. Poor Sender Reputation\n\n\n\nIf your domain has a history of bounced or reported emails, email services may treat all future messages from it as suspicious. This includes sending emails too frequently or to invalid addresses.\n\n\n\n5. Lack of User Consent\n\n\n\nSending emails to users who didn’t explicitly opt-in can lead to spam complaints, which damages your sender reputation. Always get clear consent and provide a way to unsubscribe.\n\n\n\n6. Low-Quality Content or Layout\n\n\n\nEmails that are just one big image, have broken links, or include poor formatting can be flagged by spam filters. Use a mix of clean text and minimal design.\n\n\n\nWhat You Can Do to Fix It\n\n\n\n\nUse an SMTP plugin like SureMail to improve email delivery.\n\n\n\nSet up and verify your domain’s SPF, DKIM, and DMARC records. Your hosting provider can help with this.\n\n\n\nAlways use a domain-based sender email address.\n\n\n\nAvoid using aggressive marketing language in subject lines and content.\n\n\n\nTest your emails using a service like mail-tester.com to identify problems.\n\n\n\nContact your hosting provider for help reviewing your server’s email configuration.\";s:3:\"url\";s:61:\"https://cartflows.com/docs/resolve-recovery-email-spam-issue/\";s:4:\"slug\";s:33:\"resolve-recovery-email-spam-issue\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-08-21T21:52:44+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:137;O:8:\"stdClass\":8:{s:2:\"id\";i:32811;s:5:\"title\";s:59:\"How to Use WooCommerce Subscription Products with CartFlows\";s:7:\"content\";s:2099:\"Subscription products allow you to sell access to a product or service on a recurring basis whether daily, monthly, or yearly. With CartFlows, you can easily include subscription products in your funnels, but the first step is to create them using WooCommerce.\n\n\n\nWhat Are Subscription Products?\n\n\n\nSubscription products are items that customers purchase with a recurring payment schedule. Instead of a one-time payment, they are billed automatically at the chosen interval (for example, every month or year) to continue receiving the product or service.\n\n\n\nStep 1: Install WooCommerce Subscriptions\n\n\n\nTo create subscription products, you’ll need the official WooCommerce Subscriptions plugin. You can download it directly from WooCommerce and follow their step-by-step guide here: WooCommerce Subscriptions Documentation.\n\n\n\nStep 2: Create a Subscription Product\n\n\n\nOnce the plugin is installed, you can create a new subscription product in WooCommerce. During setup, define the product name, pricing, billing interval (daily, monthly, yearly, etc.), and other relevant options.\n\n\n\nStep 3: Assign Subscription Products in CartFlows\n\n\n\nAfter creating your subscription product, you can assign it to CartFlows checkout or offer pages.\n\n\n\n1: Navigate to CartFlows &gt; Funnels &gt; Your Funnel.\n\n\n\n\n\n\n\n2: Open the Checkout, Upsell, or Downsell step where you want to assign the subscription product.\n\n\n\n\n\n\n\n3: Go to the Product tab and search for your subscription product and Add it\n\n\n\n\n\n\n\n4: If you’re using multiple simple or variable subscription products, enable Product Options.\n\n\n\n5: For variable subscription products, enable the Variation Option to display choices on the checkout page.\n\n\n\n\n\n\n\nNote: On Upsell and Downsell pages, use shortcodes to display product variations. Refer to the dedicated shortcodes documentation for details.\n\n\n\n6: Click Save Settings to apply changes.\n\n\n\nYou’ve successfully created and assigned subscription products in CartFlows. Now you can sell subscriptions directly through your funnels, giving your customers a seamless recurring payment experience.\";s:3:\"url\";s:68:\"https://cartflows.com/docs/use-subscription-product-cartflows-pages/\";s:4:\"slug\";s:40:\"use-subscription-product-cartflows-pages\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-06T11:39:21+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:138;O:8:\"stdClass\":8:{s:2:\"id\";i:32836;s:5:\"title\";s:65:\"How to Resolve the “CartFlows Pro: Download not found.” Error\";s:7:\"content\";s:1746:\"If you see the error message “CartFlows Pro: Download not found.” while updating the plugin, follow the steps below to resolve the issue.\n\n\n\nWhy Does This Error Occur?\n\n\n\nThis error happens because of cache-related issues. When updating the CartFlows Pro plugin, your website may still be using an outdated instance ID stored in the cache instead of the latest one. As a result, WordPress cannot retrieve the correct update package, leading to the Download not found error.\n\n\n\nFixing the Error\n\n\n\nTo update CartFlows Pro successfully, follow these steps:\n\n\n\nStep 1: Clear all cache\n\n\n\n\nClear your browser cache.\n\n\n\nClear your website’s cache and server-side cache.\n\n\n\n\nStep 2: Deactivate caching plugins\n\n\n\nTemporarily disable caching plugins (e.g., WP Rocket, SG Optimizer).\n\n\n\nStep 3: Deactivate the CartFlows Pro license\n\n\n\nGo to CartFlows settings and deactivate your license.\n\n\n\n\n\n\n\nStep 4: Deactivate the CartFlows Pro plugin\n\n\n\nNavigate to Plugins and deactivate CartFlows Pro.\n\n\n\n\n\n\n\nStep 5: Reactivate the CartFlows Pro plugin\n\n\n\nActivate the plugin again from the Plugins page.\n\n\n\n\n\n\n\nStep 6: Re-activate your license\n\n\n\nClick on the Activate License button to reactivate your license.\n\n\n\n\n\n\n\nStep 7: Check for updates manually\n\n\n\nGo to Dashboard &gt; Updates to check available update manually.\n\n\n\n\n\n\n\nStep 8: Update the CartFlows Pro plugin\n\n\n\nTry updating the plugin again and it should now work without errors.\n\n\n\nStep 9: Re-enable caching plugins\n\n\n\nReactivate any caching plugins you previously disabled.\n\n\n\nNote\nSome caching plugins (such as WP Rocket or SG Optimizer) cache your database, which can interfere with plugin updates.Always clear cache and disable caching plugins before updating CartFlows Pro to avoid issues.\";s:3:\"url\";s:68:\"https://cartflows.com/docs/resolve-download-not-found-error-message/\";s:4:\"slug\";s:40:\"resolve-download-not-found-error-message\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-06T12:52:36+05:30\";s:8:\"category\";a:1:{i:0;s:20:\"installation-updates\";}}i:139;O:8:\"stdClass\":8:{s:2:\"id\";i:32820;s:5:\"title\";s:56:\"How to Import Ready-Made Templates for Funnels and Steps\";s:7:\"content\";s:2174:\"CartFlows provides a library of professionally designed templates for full funnels and individual steps. You can use these templates to quickly set up your funnels using the page builder of your choice.\n\n\n\nCurrently, CartFlows offers ready-made templates for the following page builders:\n\n\n\n\nElementor\n\n\n\nDivi (requires manual import – see this doc)\n\n\n\nBeaver Builder\n\n\n\nBlock Editor (Gutenberg)\n\n\n\n\nBefore You Begin\n\n\n\nMake sure to select your preferred page builder in CartFlows &gt; Settings, under the Page Builder option. This ensures that only compatible templates will appear when importing.\n\n\n\nHow to Import a Ready-Made Funnel Template\n\n\n\n\nGo to CartFlows &gt; Funnels.\n\n\n\nClick the Create New Funnel button.\n\n\n\nA template library will open. Browse through the available templates based on your selected page builder.\n\n\n\nClick the View All Steps button on the template you want to use.\n\n\n\nClick the Import Funnel button to begin importing the funnel.\n\n\n\n\n\n\n\n\nThe full funnel will be imported, including steps like Landing, Checkout, Thank You, and more all pre-designed and ready for customization.\n\n\n\nHow to Import a Ready-Made Step Template\n\n\n\n\nOpen the funnel where you want to add a new step.\n\n\n\nClick Add New Step.\n\n\n\nThe step template library will open, showing designs for different step types: Landing, Checkout, Upsell, Downsell, Thank You, and Opt-in.\n\n\n\nUse the filter to select the type of step you want to import.\n\n\n\nHover over the template you want and click Import.\n\n\n\n\n\n\n\n\nThis action will add the selected step design directly into your funnel.\n\n\n\nTroubleshooting Template Import Errors\n\n\n\nIf you encounter an error while importing, here are the most common causes:\n\n\n\n\nFailed to import the templateReload the page and try again. This often resolves temporary connectivity or cache-related issues.\n\n\n\nInternal Server Error (500) Check the debug.log file in your /wp-content/ directory for details.\n\n\n\nUnder maintenanceThis may happen if the CartFlows template server is under maintenance or if an API call was blocked. Check your browser’s console for more information.\n\n\n\n\nIf the issue continues, try reloading the page or contact our support.\";s:3:\"url\";s:70:\"https://cartflows.com/docs/import-cartflows-templates-for-flows-steps/\";s:4:\"slug\";s:42:\"import-cartflows-templates-for-flows-steps\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-04T18:58:36+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:140;O:8:\"stdClass\":8:{s:2:\"id\";i:32841;s:5:\"title\";s:45:\"Supported Multi-Currency Plugin for CartFlows\";s:7:\"content\";s:1364:\"CartFlows supports the official WooCommerce Multi-Currency plugin. This documentation explains how to use it with CartFlows and what to expect when placing the currency switcher on CartFlows pages.\n\n\n\nDownload and Set Up the Plugin\n\n\n\nYou can download the WooCommerce Multi-Currency plugin from its page on the official WooCommerce marketplace: https://woocommerce.com/products/multi-currency/\n\n\n\nTo configure the plugin, follow the setup guide provided by its developer: WooCommerce Multi-Currency Setup Guide\n\n\n\nDisplay the Currency Switcher on CartFlows Pages\n\n\n\nThe plugin includes shortcodes that allow you to display a currency switcher anywhere on your site. You can place this shortcode on the Landing or Checkout page used in your CartFlows Funnel.\n\n\n\nNote: The multi-currency shortcode cannot be embedded inside the CartFlows shortcode. Both are separate and need to be placed independently.\n\n\n\nUsing the Switcher in the Header, Footer, or Widgets\n\n\n\nCartFlows does not load your theme’s header, footer, or widget areas by default. So if you add the currency switcher in those locations, it may not appear on CartFlows pages.\n\n\n\nTo display the switcher in these areas:\n\n\n\n\nEdit the page used in your CartFlows step.\n\n\n\nChange the page template to Default.\n\n\n\n\nFor more details, refer to this doc: How to Use Your Theme’s Header &amp; Footer in a Step\";s:3:\"url\";s:68:\"https://cartflows.com/docs/use-multi-currency-plugin-with-cartflows/\";s:4:\"slug\";s:40:\"use-multi-currency-plugin-with-cartflows\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-05-20T18:30:34+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:141;O:8:\"stdClass\":8:{s:2:\"id\";i:32847;s:5:\"title\";s:92:\"How to Fix &#8220;The Following Required Query String Data is Missing: Instance&#8221; Error\";s:7:\"content\";s:1626:\"If you see the error message “The Following Required Query String Data is Missing: Instance” while activating your CartFlows Pro license, it usually means the plugin is unable to generate or retrieve a required instance ID.\n\n\n\nThis documentation explains what causes this error and how to resolve it.\n\n\n\nWhen This Error Occurs\n\n\n\nThis message typically appears in the license activation popup on the Plugins page when one of the following conditions exists:\n\n\n\n1. The Site Was Cloned or Migrated\n\n\n\nIf your website was cloned or migrated to another domain or host, the instance ID tied to your original site may no longer be valid. The plugin may not be able to generate a new instance correctly during license activation.\n\n\n\n2. Caching Is Preventing the Instance from Being Stored\n\n\n\nSometimes caching (local, plugin-based, or server-level) prevents the instance ID from being stored in the database. When the API call is made to validate the license, it fails because the required instance value is missing.\n\n\n\nHow to Fix the Issue\n\n\n\nFollow these steps to resolve the error and activate your CartFlows Pro license:\n\n\n\n\nClear all cache on your site - including your browser, local, and server-side cache.\n\n\n\nTemporarily deactivate any cache plugin you have installed.\n\n\n\nDeactivate the CartFlows Pro plugin.\n\n\n\nReactivate the CartFlows Pro plugin.\n\n\n\nClick the Activate License button.\n\n\n\nEnter your license key or API key.\n\n\n\nClick Activate.\n\n\n\n\nNote: Always make sure to clear all cache and disable any cache plugins before activating your CartFlows Pro license to avoid conflicts with the license instance generation.\";s:3:\"url\";s:93:\"https://cartflows.com/docs/resolve-required-query-string-data-missing-instance-error-message/\";s:4:\"slug\";s:65:\"resolve-required-query-string-data-missing-instance-error-message\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-05-14T23:12:31+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:142;O:8:\"stdClass\":8:{s:2:\"id\";i:32791;s:5:\"title\";s:61:\"What to Do if the Order Status is Stuck at MainOrderAccepted?\";s:7:\"content\";s:2449:\"If some of your orders remain stuck at the \"MainOrderAccepted\" status, this documentation will help you understand why it happens and how to resolve it.\n\n\n\n\n\n\n\nWhy Orders Get the \"Main Order Accepted\" Status\n\n\n\nThis status occurs when the Order Settings in CartFlows are set to Add to main order. This option merges all accepted upsell/downsell offers into the main order. The MainOrderAccepted status is assigned by CartFlows after a purchase is made on the checkout page. This temporary status exists because CartFlows may display additional upsell or downsell offers after checkout.\n\n\n\n\nIf the customer completes the funnel (including upsells/downsells), the order will move forward normally.\n\n\n\nIf the customer abandons the process by closing the upsell/downsell page or browser window, the order may remain in MainOrderAccepted.\n\n\n\n\nTo handle this, CartFlows uses a scheduled task (WP-Cron) to automatically update the order status after 30 minutes.\n\n\n\nWhy the Status Might Be Stuck\n\n\n\nIf the WP-Cron job does not run as expected, orders may stay in the MainOrderAccepted status. This usually happens due to:\n\n\n\n\nPlugin Conflicts – Another plugin may be interfering with the WP-Cron execution.\n\n\n\nDisabled Cron Service – Some hosting providers disable the cron service by default.\n\n\n\n\nHow to Troubleshoot\n\n\n\nStep 1: Verify the WP-Cron\n\n\n\n\nInstall and activate the WP Crontrol plugin.\n\n\n\nSearch for the cron event named cartflows_schedule_normalize_order_status.\n\n\n\nCheck the Next Run Time to confirm whether it’s scheduled correctly.\n\n\n\n\nStep 2: Test for Plugin Conflicts\n\n\n\n\nTemporarily deactivate all plugins except WooCommerce, CartFlows, and your page builder.\n\n\n\nPlace a test order and close the browser as soon as the upsell/downsell page loads.\n\n\n\nRe-check the cron event in WP Crontrol and wait 30 minutes.\n\n\n\nIf the order status updates correctly, another plugin is conflicting. Reactivate plugins one by one to find the culprit.\n\n\n\n\nStep 3: Check Hosting Cron Settings\n\n\n\nIf the cron job is missing or not running:\n\n\n\n\nContact your hosting provider and ask them to enable the server cron service.\n\n\n\nOnce enabled, CartFlows’ scheduled tasks will run automatically and update order statuses.\n\n\n\n\nImportant Note\n\n\n\nIn many cases, hosting providers include cron services but keep them disabled by default. A quick request to enable it will resolve the issue and ensure orders move out of the MainOrderAccepted status as expected.\";s:3:\"url\";s:60:\"https://cartflows.com/docs/order-stuck-at-mainorderaccepted/\";s:4:\"slug\";s:32:\"order-stuck-at-mainorderaccepted\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-09-18T16:50:14+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:143;O:8:\"stdClass\":8:{s:2:\"id\";i:32739;s:5:\"title\";s:50:\"How and Where to Add Custom JS, CSS, and PHP Codes\";s:7:\"content\";s:1408:\"You may sometimes need to add custom JavaScript, CSS, or PHP code to your site for custom functionality or styling. Below are the methods to safely do this.\n\n\n\nUse a Plugin (Recommended for Most Users)\n\n\n\nFor simplicity and safety, you can use a plugin that allows adding custom code without touching theme files. This works for JavaScript, CSS, and PHP.\n\n\n\nWe recommend:\n\n\n\n\nCode Snippets&nbsp;\n\n\n\nWPCode\n\n\n\nWoody code snippets\n\n\n\n\nThese plugins let you manage your code snippets in a user-friendly way, and they remain active even after theme updates.\n\n\n\nAdd Custom JavaScript\n\n\n\nCartFlows Funnels Only\n\n\n\nGo to Funnel Setting > General section. The script will only apply to the specific funnel.\n\n\n\n\n\n\n\nAdd Custom CSS\n\n\n\nCustom CSS can be added to two places, either add it to a specific funnel or to the Customizer.\n\n\n\nAdding custom CSS to a specific funnel can be done similar like adding JavaScript to a funnel. Go to Funnel Settings > General section. The CSS will be applied only to the specific funnel.\n\n\n\n\n\n\n\nAdding custom CSS to the Customizer can be done by going to to Appearance > Customize > Additional CSS.\n\n\n\n\n\n\n\nAdd Custom PHP\n\n\n\nUsing a Child Theme\n\n\n\nAdd your PHP code inside the functions.php file of your child theme.\n\n\n\n\n\n\n\nUsing a child theme ensures your custom code won’t be lost when updating the theme. If you’re not familiar with what a child theme is, refer to this article.\";s:3:\"url\";s:44:\"https://cartflows.com/docs/add-custom-codes/\";s:4:\"slug\";s:16:\"add-custom-codes\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-05T13:30:39+05:30\";s:8:\"category\";a:1:{i:0;s:14:\"developer-docs\";}}i:144;O:8:\"stdClass\":8:{s:2:\"id\";i:32710;s:5:\"title\";s:58:\"Introducing the “Separate Orders” Feature in CartFlows\";s:7:\"content\";s:2230:\"CartFlows has a powerful new option called Separate Orders, available in CartFlows Pro. This feature gives you the ability to create individual orders for Upsell and Downsell purchases instead of combining them into a single WooCommerce order.\n\n\n\nThis can help streamline order management, improve refund handling, and ensure proper email notifications are sent for each order stage.\n\n\n\nOrder Setting\n\n\n\nThe Create a new child order option allows separate orders to be generated for each accepted offer.\n\n\n\nYou’ll find this setting under CartFlows &gt; Settings &gt; Order\n\n\n\nHere, you\'ll see two available options:\n\n\n\n\nCreate a new child orderThis creates individual orders for each Upsell or Downsell product. The original checkout order becomes the parent order, and each subsequent accepted offer is logged as a separate WooCommerce order.\n\n\n\nAdd to the main orderThis is the default behavior, where all accepted Upsell and Downsell products are merged into the original checkout order.\n\n\n\n\n\n\n\n\nWhere the Orders Appear\n\n\n\nEach new child order will be visible in WooCommerce &gt; Orders, making it easy to track, manage, and take action on each order individually.\n\n\n\n\n\n\n\nCartFlows Parent Order\n\n\n\n\n\n\n\nCartFlows Upsell / Downsell Order\n\n\n\nWhy Use Separate Orders?\n\n\n\nEnabling this feature can help in several key areas:\n\n\n\n\nSimplified refundsProcess returns for Upsell or Downsell products without affecting the main order.\n\n\n\nEmail notificationsWooCommerce will automatically send order-related emails for each child order, ensuring timely communication with your customers.\n\n\n\nImproved access for digital productsIf you\'re selling courses or memberships as upsells, customers will gain access immediately upon purchase since each product has its own completed order.\n\n\n\nBetter status trackingSolves the issue where incomplete funnel exits (e.g., closing the browser during an Upsell) previously left the order in an intermediate MainOrderAccepted status.\n\n\n\n\nThis feature provides greater flexibility for store owners who want more granular control over how upsell and downsell purchases are handled in WooCommerce. You can now decide whether to keep everything in a single order or split them based on your business needs.\";s:3:\"url\";s:63:\"https://cartflows.com/docs/introducing-separate-orders-feature/\";s:4:\"slug\";s:35:\"introducing-separate-orders-feature\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-05T15:29:35+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:145;O:8:\"stdClass\":8:{s:2:\"id\";i:32737;s:5:\"title\";s:75:\"How to Resolve Large Stripe Payment Icons and Uneditable Credit Card Fields\";s:7:\"content\";s:3201:\"If you\'re seeing oversized Stripe payment icons or the credit card fields are unresponsive on the checkout page, this guide will walk you through resolving the issue.This behavior is usually related to caching problems, where Stripe\'s AJAX call fails to fetch required styling and form fields. Let’s break down the common causes and how to fix them.\n\n\n\nWhat Causes This Issue?\n\n\n\nStripe uses dynamic JavaScript to load its CSS and payment fields. If this AJAX call is cached or blocked, it can result in:\n\n\n\n\nCard icons appearing unusually large\n\n\n\nCard input fields not responding or editable\n\n\n\n\nIn most cases, the browser’s developer console will show a 403 error response from Stripe, which prevents the card fields and styles from loading correctly.\n\n\n\nHow to Identify the 403 Error\n\n\n\nFollow these steps to check for the error:\n\n\n\n\nOpen the affected checkout page.\n\n\n\nRight-click on the page and select Inspect.\n\n\n\nGo to the Console tab.\n\n\n\nLook for any error messages, especially ones related to Stripe or 403 errors.\n\n\n\n\nPossible Reasons and Solutions\n\n\n\n1. Page Caching (Local or Server-Side)\n\n\n\nDynamic requests like Stripe’s payment fields should not be cached. Make sure your CartFlows checkout page is excluded from:\n\n\n\n\nPage caching\n\n\n\nServer-level caching (e.g., Varnish, NGINX, or hosting-level rules)\n\n\n\nCDN-level caching (e.g., Cloudflare)\n\n\n\n\nTip: Most cache plugins allow you to exclude specific pages. Ensure both CartFlows’ Checkout and Thank You pages are excluded.\n\n\n\n2. Firewall or Security Plugins\n\n\n\nSecurity/firewall plugins (like Wordfence or Sucuri) may block Stripe’s requests if flagged as suspicious. Whitelist the checkout page and allowlist Stripe\'s script URLs if necessary.\n\n\n\n3. Hosting Restrictions\n\n\n\nSome hosting setups only allow payment requests on the default WooCommerce checkout page. Since CartFlows uses a custom page, your host may require manual exclusion rules for it. Contact your hosting provider to:\n\n\n\n\nExclude the CartFlows Checkout page from security rules\n\n\n\nAllow dynamic AJAX calls on custom URLs\n\n\n\n\n4. Plugin or Theme Conflicts\n\n\n\nIf the above steps don’t solve the issue, perform a conflict test:\n\n\n\n\nDisable all other plugins except WooCommerce, CartFlows, and Stripe\n\n\n\nSwitch to a default theme (like Storefront)\n\n\n\nRe-test the checkout page\n\n\n\nGradually re-enable plugins to identify the conflict\n\n\n\n\nTo find out the conflict you can also follow these troubleshooting steps.\n\n\n\nWhat Is a 403 Error?\n\n\n\nA 403 Forbidden error means the server understands your request but is refusing to authorize it. In the case of Stripe, this often means the server or a plugin is blocking access to essential resources due to caching or security rules.\n\n\n\nStill Seeing the Issue?\n\n\n\nIf the issue persists:\n\n\n\n\nOpen the checkout page in a new tab\n\n\n\nInspect the console again for updated error messages\n\n\n\nNote the filename or script generating the error\n\n\n\nReach out to the plugin author or submit a ticket through the CartFlows support portal\n\n\n\n\nNote\nPayment gateway scripts rely on real-time data and should never be cached. Ensuring dynamic checkout pages are excluded from all caching mechanisms is crucial for proper functionality.\";s:3:\"url\";s:74:\"https://cartflows.com/docs/resolve-stripe-icons-issue-fields-not-editable/\";s:4:\"slug\";s:46:\"resolve-stripe-icons-issue-fields-not-editable\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-15T13:14:01+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:146;O:8:\"stdClass\":8:{s:2:\"id\";i:32731;s:5:\"title\";s:65:\"How to Resolve “No product is selected&#8230;” error message?\";s:7:\"content\";s:697:\"In this article, you will get to know how to resolve the error message that you are currently facing on your checkout page -\n\n\n\nThe meaning of this error message is, there is no product selected in the backend settings of the CartFlows Checkout page and the same checkout page is opened directly via URL / Link / Permalink.\n\n\n\n\n\n\n\n\n\n\n\nNow, if you open the checkout page with this setting then you will see the “No product is selected. Please select products from the checkout meta settings to continue” error message on the checkout page.\n\n\n\n\n\n\n\nTo solve this error message you need to make sure the funnel is in the Test Mode or select the product in the backend setting of the Checkout Page.\";s:3:\"url\";s:69:\"https://cartflows.com/docs/resolve-no-product-selected-error-message/\";s:4:\"slug\";s:41:\"resolve-no-product-selected-error-message\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-20T19:14:32+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:147;O:8:\"stdClass\":8:{s:2:\"id\";i:32735;s:5:\"title\";s:88:\"How to Add Custom Payment Gateway Support for One-Click Upsell and Downsell in CartFlows\";s:7:\"content\";s:2265:\"You can integrate your own payment gateway with CartFlows to support one-click Upsell and Downsell functionality. This requires a few steps to register your gateway and handle the payment process through code.\n\n\n\nFollow the steps below to add custom support:\n\n\n\nStep 1: Register Your Payment Gateway\n\n\n\nYou’ll need to define a custom class and file name, then register them with CartFlows.\n\n\n\nTo do this, either:\n\n\n\nOption A: Manually add them inside the CartFlows Pro plugin\n\n\n\n\nGo to the cartflows-pro/classes/class-cartflows-pro-gateways.php file\n\n\n\nFind the get_supported_gateways function\n\n\n\nAdd your class and file to the returned array\n\n\n\n\nOption B: Use the available filter (recommended if adding support via a plugin or theme):\n\n\n\nadd_filter( \'cartflows_offer_supported_payment_gateways\', \'your_function_name\' );\n\n/**\n * Add new payment gateway in Supported Gateways.\n *\n * @param array $supported_gateways Supported Gateways by CartFlows.\n * @return array.\n */\nfunction your_function_name( $supported_gateways ){\n	\n	$supported_gateways&#91;\'payment_gateway_slug\'] = array(\n		\'file\'  =&gt; \'yourfilename.php\', // Your Custom code\'s file name\n		\'class\' =&gt; \'YourClassName\',   // Class name used in the Custom Code\'s file.\n                \'path\'  =&gt; \'FullDirectoryPathofTheFile\', // Full directory path of the custom code\'s file.\n	);\n\n	return $supported_gateways; // Adding the payment gateway name.\n}\n\n\n\n\nNote: Use the path only if your file is located outside the CartFlows Pro plugin directory.\n\n\n\nStep 2: Write the Payment Processing Function\n\n\n\nInside your custom file, create a function named process_offer_payment. CartFlows will call this automatically when processing the Upsell or Downsell.\n\n\n\nThis is where your payment logic goes. It should handle charging the customer after the main checkout is completed and the offer is accepted.\n\n\n\nStep 3: Place the Custom File in the Correct Directory\n\n\n\nIf you’re not using a custom path, place your file in:\n\n\n\ncartflows-pro/modules/gateways/\n\n\n\nYou can refer to existing gateway files in that directory to understand how to structure your implementation.\n\n\n\nNote: We also offer a sample plugin you can use as a reference when building your own custom gateway integration. Download Sample Plugin\";s:3:\"url\";s:69:\"https://cartflows.com/docs/add-custom-support-of-any-payment-gateway/\";s:4:\"slug\";s:41:\"add-custom-support-of-any-payment-gateway\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-07-08T16:53:15+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:148;O:8:\"stdClass\":8:{s:2:\"id\";i:32700;s:5:\"title\";s:87:\"How to Resolve &#8220;Order Does not Exist Error&#8221; on Upsell &#038; Downsell Page?\";s:7:\"content\";s:1490:\"If you see the error message “Order does not exist” on your upsell or downsell pages, this documentation will help you understand why it occurs and how to fix it.\n\n\n\n\n\n\n\nWhy This Error Appears\n\n\n\nThis message is specific to upsell and downsell pages in CartFlows. It usually means the checkout process was not completed before trying to access the upsell or downsell page. In other words, the system could not find a valid order to attach the upsell/downsell offer to.\n\n\n\nCommon Scenarios That Trigger the Error\n\n\n\nCase 1: Accessing Upsell/Downsell Pages Directly\n\n\n\nIf you open the upsell or downsell page directly by its URL (without first completing the checkout) and then click Accept Offer, the error will be displayed.\n\n\n\n\nNote: This happens only when you are logged in.\n\n\n\n\nCase 2: Placing Upsell/Downsell Before Checkout\n\n\n\nIf an upsell or downsell step is placed before the checkout page in the funnel, the system has no main order to connect the offer with. As a result, attempting to accept the offer will show the error message.\n\n\n\n\nTip: Upsell and downsell pages should always be placed after the checkout step.\n\n\n\n\nHow to Fix\n\n\n\n\nEnsure upsell and downsell steps are positioned after the checkout page in your CartFlows funnel.\n\n\n\nDo not test upsell/downsell steps by directly opening their URL; instead, go through the full checkout process first.\n\n\n\n\nBy following these practices, the error will no longer appear, and your upsell/downsell offers will function correctly.\";s:3:\"url\";s:62:\"https://cartflows.com/docs/resolve-order-does-not-exist-error/\";s:4:\"slug\";s:34:\"resolve-order-does-not-exist-error\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-09-18T17:39:10+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:149;O:8:\"stdClass\":8:{s:2:\"id\";i:32688;s:5:\"title\";s:30:\"Abandoned Orders Not Capturing\";s:7:\"content\";s:1746:\"If your Cart Abandonment Recovery for WooCommerce plugin is not capturing abandoned orders, this documentation will guide you through the possible causes and solutions.\n\n\n\nWhy Abandoned Orders Might Not Be Captured\n\n\n\nThe most common reason for abandoned orders not being recorded is a disabled WP-Cron on your WordPress site.\n\n\n\nWhat Is WP-Cron?\n\n\n\nWP-Cron is WordPress’s built-in system for scheduling time-based tasks, such as publishing scheduled posts or running automated plugin functions. It acts as a task scheduler that allows WordPress to perform actions at specific intervals.\n\n\n\nFor more information, refer to this detailed article on WP-Cron.\n\n\n\nWhy WP-Cron Is Important for the Plugin\n\n\n\nThe Cart Abandonment Recovery for WooCommerce plugin relies on WP-Cron to detect and mark abandoned carts.\n\n\n\nIt uses a scheduled cron job named cartflows_ca_update_order_status_action that runs every 15 minutes to check for incomplete orders and mark them as abandoned when appropriate.\n\n\n\nIf WP-Cron is disabled, this job will not run, and abandoned orders will not be captured.\n\n\n\nHow to Enable WP-Cron\n\n\n\nTo re-enable WP-Cron, locate the wp-config.php file in your website’s root directory and add the following line right after the define(\'DB_COLLATE\', \'\'); line:\n\n\n\ndefine(\'DISABLE_WP_CRON\', false);\n\n\n\nThis ensures that WP-Cron is active and can execute the necessary tasks for Cart Abandonment Recovery.\n\n\n\nAdding an External Cron Job Using cPanel\n\n\n\nIf you prefer to use an external cron job instead of WordPress’s built-in scheduler, you can set it up through cPanel. Below are a few helpful resources that explain how to do this:\n\n\n\n\nSet Up Cron Jobs in cPanel (GreenGeeks)\n\n\n\nVideo: How to Set Up Cron Jobs in cPanel (YouTube)\";s:3:\"url\";s:58:\"https://cartflows.com/docs/abandoned-orders-not-capturing/\";s:4:\"slug\";s:30:\"abandoned-orders-not-capturing\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-03-25T22:06:46+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:150;O:8:\"stdClass\":8:{s:2:\"id\";i:32683;s:5:\"title\";s:32:\"Cart Recovery Emails Not Sending\";s:7:\"content\";s:1945:\"If your Cart Abandonment Recovery for WooCommerce plugin is not sending recovery (follow-up) emails, this documentation will help you understand the possible causes and guide you through the recommended solutions.\n\n\n\nOverview\n\n\n\nRecovery emails are automated messages sent to customers who abandon their carts before completing a purchase. These emails are triggered based on the schedule you set in the plugin’s settings and are key to recovering potential lost sales.\n\n\n\nIf recovery emails are not being sent, it’s usually related to how your website is configured to deliver outgoing emails.\n\n\n\nWhy SMTP Is Important for Recovery Emails\n\n\n\nBy default, WordPress uses your hosting server’s email function (PHP mail) to send emails. However, this method is often unreliable and can lead to messages being blocked, delayed, or marked as spam.\n\n\n\nTo ensure reliable email delivery, we recommend using an SMTP plugin such as SureMail. SMTP (Simple Mail Transfer Protocol) routes your website’s outgoing messages through a proper email server, improving deliverability and ensuring that recovery emails reach your customers’ inboxes.\n\n\n\nFor setup details, refer to the SureMail Knowledge Base.\n\n\n\nHow to Verify Recovery Email Delivery\n\n\n\nOnce you’ve installed and configured SureMail or another SMTP plugin, you can confirm that recovery emails are working properly by following these steps:\n\n\n\n1: Send a Test EmailGo to your recovery email template settings in the plugin and use the Send Test Email option to send a sample message to your inbox.\n\n\n\n\n\n\n\n2: Check Spam and Promotions FolderIf the test email does not appear in your inbox, check your spam or promotions folders. If it lands there or doesn’t arrive at all, follow the steps in Fix Recovery Emails Going to Spam for troubleshooting.\n\n\n\nIf the test email is delivered successfully, your SMTP setup is functioning correctly and recovery emails should now send as expected.\";s:3:\"url\";s:55:\"https://cartflows.com/docs/recovery-emails-not-sending/\";s:4:\"slug\";s:27:\"recovery-emails-not-sending\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-10-16T20:42:20+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:151;O:8:\"stdClass\":8:{s:2:\"id\";i:32662;s:5:\"title\";s:46:\"How to Use the Permalink Settings in CartFlows\";s:7:\"content\";s:1953:\"CartFlows includes its own permalink settings that let you change the slugs used in funnel and step URLs. This is different from the default WordPress permalink settings.\n\n\n\nThis documentation explains the difference between the two and how to change the CartFlows slug structure.\n\n\n\nWordPress vs CartFlows Permalink Settings\n\n\n\n\nThe WordPress Permalink Settings are located under Settings &gt; Permalinks. These apply to the entire website, including CartFlows pages.\n\n\n\nThe CartFlows Permalink Settings are located under CartFlows &gt; Settings &gt; Permalink &nbsp;and control only the slugs used for CartFlows funnel and step URLs.\n\n\n\n\nIf your WordPress permalink structure is set to anything other than Post name, you may see URLs like:\n\n\n\nyourdomain.com/cartflows_step/checkout-page/\n\n\n\nChange the Permalink Slugs for CartFlows\n\n\n\nTo change the default slugs used in funnel and step URLs:\n\n\n\n\nGo to CartFlows &gt; Settings in your WordPress dashboard.\n\n\n\nClick on the Permalink tab.\n\n\n\nChoose one of the available options:\n\nDefault Permalinks – Resets to cartflows_funnel and cartflows_step\n\n\n\nFunnel and Step Slug – Lets you rename both funnel and step slugs at once\n\n\n\nFunnel Slug – Lets you rename only the funnel slug\n\n\n\nStep Slug – Lets you rename only the step slug\n\n\n\n\n\nEnter your preferred slug values.\n\n\n\nClick Save Changes.\n\n\n\n\n\n\n\n\nThis will update the structure of your CartFlows URLs across the site.\n\n\n\nHow to Remove cartflows_step from the URL\n\n\n\nTo remove cartflows_step from the URL of your funnel steps:\n\n\n\n\nSet your WordPress permalink structure to Post name under Settings &gt; Permalinks.\n\n\n\nIn CartFlows &gt; Settings &gt; Permalink, choose the Default Permalinks option.\n\n\n\nUnder Post Type Permalink Base, set the step base to cartflows_step and the funnel base to cartflows_base.\n\n\n\nClick Save Changes.\n\n\n\n\n\n\n\n\nFor help configuring your WordPress permalink settings, refer to this doc: Recommended Permalink Settings\";s:3:\"url\";s:56:\"https://cartflows.com/docs/cartflows-permalink-settings/\";s:4:\"slug\";s:28:\"cartflows-permalink-settings\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-04-28T22:51:54+05:30\";s:8:\"category\";a:1:{i:0;s:18:\"permalink-settings\";}}i:152;O:8:\"stdClass\":8:{s:2:\"id\";i:32570;s:5:\"title\";s:48:\"How to Use the Refund Offer Feature in CartFlows\";s:7:\"content\";s:1694:\"Refund Offer is a feature in CartFlows Pro that allows you to process refunds for offer products, specifically those purchased through Upsell and Downsell steps in your funnel.\n\n\n\nIt simplifies post-purchase management by enabling store admins to refund offer products directly from the order details screen in WooCommerce.\n\n\n\nSupported Payment Gateways\n\n\n\nThe Refund Offer feature works only with supported online payment gateways. These include:\n\n\n\n\nPayPal\n\n\n\nStripe\n\n\n\nAuthorize.net\n\n\n\n\nIt does not support offline gateways such as:\n\n\n\n\nCash on Delivery\n\n\n\nBACS\n\n\n\nCheque\n\n\n\n\nHow to Use the Refund Offer Feature\n\n\n\nStep 1: Open the Order\n\n\n\nGo to WooCommerce &gt; Orders, and click on the order where the offer product was purchased.\n\n\n\nStep 2: Locate the Offer Refund Section\n\n\n\nIf the order includes products from Upsell or Downsell steps, a CartFlows Offer Refund section will appear in the order details.\n\n\n\n\n\n\n\nStep 3: Initiate the Refund\n\n\n\nNext to each eligible product, you’ll see a Refund button. Click the button for the product you wish to refund.\n\n\n\nStep 4: Provide a Refund Reason\n\n\n\nA popup will appear asking you to enter a reason for the refund. Fill in the reason and confirm.\n\n\n\n\n\n\n\nStep 5: Refund is Processed\n\n\n\nThe refund will be processed using the same payment gateway used during the original transaction. Upon successful completion:\n\n\n\n\nA confirmation popup is shown\n\n\n\n\n\n\n\n\n\nA note is added to the Order Notes section\n\n\n\n\n\nThe refunded status is reflected on the same page after it reloads\n\n\n\n\n\n\n\n\nBy using this feature, you can ensure smoother refund processing for Upsell/Downsell offers, improving customer satisfaction and reducing manual steps for your team.\";s:3:\"url\";s:48:\"https://cartflows.com/docs/refund-offer-feature/\";s:4:\"slug\";s:20:\"refund-offer-feature\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-08-02T18:41:22+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:153;O:8:\"stdClass\":8:{s:2:\"id\";i:32572;s:5:\"title\";s:56:\"How to Fix the &#8220;Checkout ID Not Found&#8221; Error\";s:7:\"content\";s:1722:\"If you’re seeing the \"Checkout ID Not Found\" message on your Checkout page, it usually means the CartFlows step is not correctly linked to the page where the shortcode is placed.\n\n\n\n\n\n\n\nThis documentation explains when this error occurs and how to resolve it.\n\n\n\nWhen This Happens\n\n\n\nThis error can happen in the following situations:\n\n\n\nCase 1: Editing the Checkout Page in a Page Builder\n\n\n\nYou may see the error while editing your Checkout page inside a page builder. In editor mode, some WooCommerce functions may not be available, which prevents CartFlows from detecting the proper Checkout step.\n\n\n\nSolution:\n\n\n\n\nExit the page builder and return to the WordPress dashboard.\n\n\n\nEdit the checkout step in CartFlows > Funnels, select your funnel, and open the Checkout step.\n\n\n\nMake sure at least one product is selected, or set the funnel to Test Mode if you’re just designing the layout.\n\n\n\nUpdate the page, then visit the checkout page from the frontend.\n\n\n\n\nNote: To see the checkout fields on the page, there must be at least one product assigned to the step or the funnel must be in Test Mode.\n\n\n\nRefer to this guide for help: How to Use Test Mode\n\n\n\nCase 2: Shortcode Placed on the Wrong Page\n\n\n\nThis error can also occur if the [cartflows_checkout] shortcode is placed on a regular WordPress page that isn’t connected to a CartFlows Checkout step.\n\n\n\nSolution:\n\n\n\nOnly place the [cartflows_checkout] shortcode on a page that is assigned as a Checkout step within a CartFlows funnel.\n\n\n\nNote: The [cartflows_checkout] shortcode does not work on upsell, downsell, opt-in, or thank you pages. It is intended for Checkout steps only. For more details, refer to this doc: Placing Shortcodes in the Right Places\";s:3:\"url\";s:63:\"https://cartflows.com/docs/resolve-checkout-id-not-found-error/\";s:4:\"slug\";s:35:\"resolve-checkout-id-not-found-error\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-05-20T18:51:43+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:154;O:8:\"stdClass\":8:{s:2:\"id\";i:32551;s:5:\"title\";s:65:\"How to Set Quantity and Discount for Product on the Checkout Page\";s:7:\"content\";s:2558:\"CartFlows allows you to predefine product quantities and apply discounts directly on the Checkout page, giving you greater control over pricing and enabling powerful bulk-purchase offers without additional configuration.\n\n\n\nWith this feature, you can configure the quantity and discount for each product added to the Checkout step, ensuring a consistent and optimized purchasing experience for your customers.\n\n\n\nHow Product Quantity and Discounts Work\n\n\n\nWhen configuring products in the Funnel Checkout step settings, you’ll see two key options:\n\n\n\n\nProduct Quantity – Lets you set a predefined quantity for the selected product.\n\n\n\nDiscount Type – Allows you to apply a discount to that product based on the quantity you’ve defined.\n\n\n\n\nThis setup is especially useful for bulk pricing strategies. For example, if you’re selling a product and want to offer a discount only when customers purchase two units, you can set the quantity to 2 and apply a discount specifically for that purchase.\n\n\n\nHow to Configure Quantity and Discount on the Checkout Page\n\n\n\n\nGo to CartFlows → Funnels and open your desired funnel.\n\n\n\nClick Settings on the Checkout step.\n\n\n\nOpen the Products tab.\n\n\n\nExpand a product by clicking the downward arrow next to it.\n\n\n\nSet the Product Quantity and choose the appropriate Discount Type.\n\n\n\n\n\n\n\n\nOnce saved, the predefined quantity will automatically appear on the Checkout page.\n\n\n\nCustomer Experience on Checkout\n\n\n\n\nThe quantity you set in the backend will be prefilled on the Checkout page.\n\n\n\nIf the customer increases the quantity, it will increment based on the predefined quantity you’ve configured.\n\n\n\nDiscounts configured here apply directly on the Checkout page.\n\n\n\n\nIf a product already has a discount set from WooCommerce, the CartFlows discount will be applied on top of the amount received from WooCommerce.\n\n\n\nAvailable Discount Types\n\n\n\nThe Discount Type dropdown includes the following options:\n\n\n\n\nOriginal – No discount is applied.\n\n\n\nDiscount Percentage – Applies a percentage-based discount to the product.\n\n\n\nDiscount Price – Applies a fixed discount amount to the product price.\n\n\n\n\nCommon Use Cases\n\n\n\n\nOffer bulk purchase discounts such as Buy 2 and get 20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} off.\n\n\n\nApply CartFlows discounts on top of WooCommerce sale prices.\n\n\n\nCombine Checkout page discounts with coupons applied via Checkout settings or the coupon field.\n\n\n\n\nThis flexible setup helps you create targeted pricing strategies directly within your Checkout flow, improving conversions while keeping the setup simple.\";s:3:\"url\";s:61:\"https://cartflows.com/docs/set-product-quantity-and-discount/\";s:4:\"slug\";s:33:\"set-product-quantity-and-discount\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-04-30T20:08:24+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:155;O:8:\"stdClass\":8:{s:2:\"id\";i:32601;s:5:\"title\";s:43:\"How to Style the Highlight Product Section?\";s:7:\"content\";s:2033:\"CartFlows allows you to highlight a product on the checkout page to make it more noticeable to customers. This feature helps draw attention to specific products by displaying custom highlight text and styling.\n\n\n\nYou can customize the text, border color, text color, and background color of the highlighted product section to match your checkout design.\n\n\n\nHow to Access the Highlight Product Styling Options\n\n\n\nStep 1: Open Funnels\n\n\n\nFrom the WordPress dashboard, navigate to CartFlows &gt; Funnels and edit a funnel.\n\n\n\n\n\n\n\nStep 2: Open the Checkout Step\n\n\n\nSelect the required funnel and locate the Checkout step.\n\n\n\nClick the Settings (Cog icon) on the checkout step to open its settings.\n\n\n\n\n\n\n\nStep 3: Add Products to Checkout\n\n\n\nGo to the Products tab and add the product you want to display to the checkout page.\n\n\n\n\n\n\n\nOnce products are added, go to the Product Options section and enable the Enable Product Options toggle.\n\n\n\n\n\n\n\nStep 4: Enable Highlight for a Product\n\n\n\nUnder the Selected Products section, click the Settings (Cog icon) for the product you want to highlight.\n\n\n\nEnable the Highlight option and enter the highlight text according to your requirements.\n\n\n\n\n\n\n\nStep 5: Customize the Highlight Styling\n\n\n\nTo further customize the highlight section, open the Design tab in the checkout step settings.\n\n\n\nIn the Design tab, you can modify the styling of the highlighted product, including:\n\n\n\n\nHighlight text color\n\n\n\nHighlight background color\n\n\n\nHighlight border color\n\n\n\n\n\n\n\n\nThese options allow you to adjust the appearance of the highlighted product so it stands out on the checkout page.\n\n\n\nIf you are using CartFlows native Gutenberg, Elementor, or Beaver Builder checkout forms, the Product Options styling will be available while editing the checkout form inside the respective page builder. This allows you to customize the product option styling directly within the page builder interface.\n\n\n\nStep 6: Save the Changes\n\n\n\nAfter making the required changes, click Save Settings to apply the settings.\";s:3:\"url\";s:70:\"https://cartflows.com/docs/how-to-style-the-highlight-product-section/\";s:4:\"slug\";s:42:\"how-to-style-the-highlight-product-section\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-02T20:59:25+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:156;O:8:\"stdClass\":8:{s:2:\"id\";i:32553;s:5:\"title\";s:66:\"How to &#8220;Highlight Product&#8221; in CartFlows Checkout Page?\";s:7:\"content\";s:2694:\"Highlight Product lets you draw attention to a specific product variation on the CartFlows checkout page by applying a visually appealing layout. This feature displays a selected product prominently based on the settings you choose in the checkout step’s product options.\n\n\n\nThis documentation will guide you through using the Highlight Product feature and customizing it for your checkout page.\n\n\n\nWhat is Highlight Product?\n\n\n\nThe Highlight Product feature allows you to emphasize a chosen product variation on the checkout page. This helps draw customer attention to specific products or variations you want to promote.\n\n\n\n\n\n\n\nNote: This feature works only on the CartFlows checkout page when the Product Option toggle is enabled from the Product Options tab.\n\n\n\n\n\n\n\nAccessing Product Options\n\n\n\n1: Navigate to Checkout Settings &gt; Products to view all products added to the checkout.\n\n\n\n\n\n\n\n2: Click the small settings icon next to a product to access its product-specific options.\n\n\n\n\n\n\n\n3: Here, you will find the Highlight Product option.\n\n\n\nAvailable Product Option Settings\n\n\n\n\nSelected Products: Displays all products selected for the checkout.\n\n\n\nShortcodes: Use these shortcodes in the product subtext for dynamic content:\n\n{{product_name}} – Displays the product name.\n\n\n\n{{quantity}} – Shows the selected quantity.\n\n\n\n{{discount_value}} – Displays the discount amount.\n\n\n\n{{discount_percent}} – Shows the discount percentage.\n\n\n\n\n\nProduct Option Conditions: Set rules for displaying the highlighted product and variations.\n\n\n\n\n\n\n\n\nLayout Options\n\n\n\nIn the checkout step settings, go to Design &gt; Product Options to customize the layout:\n\n\n\n\nSection Title: Change the title of the product options section.\n\n\n\nSection Position: Place the section before checkout, after customer details, or before order review.\n\n\n\nSkin: Choose between Classic and Cards layout styles.\n\n\n\nShow Product Images: Toggle product image display on or off.\n\n\n\n\n\n\n\n\nNote\nThe Design tab is only visible when your page builder is set to Other in CartFlows settings. If you\'re using Elementor, Beaver Builder, Bricks Builder, or the Block Editor, these page builders have native CartFlows modules where product options design can be managed directly within the module settings.\n\n\n\n\nDesign Options\n\n\n\nUse the design settings to customize colors and styling of the Highlight Product section, including text and background colors.\n\n\n\n\n\n\n\nNote\nThe Highlight Product feature does not work on the CartFlows Store Checkout page. This is because the Store Checkout replaces the default WooCommerce checkout, and product variations are already selected and added to the cart from the single product page.\";s:3:\"url\";s:72:\"https://cartflows.com/docs/highlight-product-in-cartflows-checkout-page/\";s:4:\"slug\";s:44:\"highlight-product-in-cartflows-checkout-page\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-03T17:06:31+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:157;O:8:\"stdClass\":8:{s:2:\"id\";i:31375;s:5:\"title\";s:51:\"How to Create a Marketing Sales Funnel in CartFlows\";s:7:\"content\";s:5662:\"This documentation explains how to create a marketing sales funnel using WordPress, WooCommerce, and CartFlows. The process includes installing the required tools, creating a funnel, configuring the Checkout page, and testing the funnel before going live.\n\n\n\n1. Get a Domain Name and Hosting\n\n\n\nefore creating your website, you need a domain name and hosting.\n\n\n\nA domain name is your website address, and hosting is the service that stores your website files and makes them accessible on the internet.\n\n\n\nOnce you have purchased both, you can proceed with installing WordPress.\n\n\n\nIf you want to speed up the process of creating your website, you can also use ZipWP. It can generate a complete WordPress website with pages, design, and content that you can customize and use for your funnel.\n\n\n\n2. Install and Set Up WordPress\n\n\n\nMost hosting providers offer a one click WordPress installation.\n\n\n\nAfter installing WordPress, ensure that your site is configured properly.\n\n\n\nNavigate to: Settings &gt; Permalinks then select Post name, then click Save Changes.\n\n\n\nThis structure creates clean and readable URLs for your website.\n\n\n\n3. Install the Required Theme and Plugins\n\n\n\nInstall a WordPress Theme\n\n\n\nNavigate to: Appearance &gt; Themes &gt; Add Theme\n\n\n\nInstall and activate the Astra theme. Astra is a lightweight and flexible theme that works well with CartFlows.\n\n\n\nAstra theme: https://wordpress.org/themes/astra/\n\n\n\n\n\n\n\nInstall WooCommerce\n\n\n\nWooCommerce is required to create and sell products in your funnel.\n\n\n\nNavigate to: Plugins &gt; Add Plugin\n\n\n\nSearch for WooCommerce, then install and activate it.\n\n\n\nRefer to this documentation to know more details about WooCommerce and how to install it: https://cartflows.com/docs/how-to-install-woocommerce/\n\n\n\nInstall a Page Builder\n\n\n\nCartFlows works with multiple page builders. You can install any builder you prefer. The most popular page builders are:\n\n\n\n\nElementor\n\n\n\nBlock Editor (Gutenberg)\n\n\n\nBeaver Builder\n\n\n\n\nNavigate to: Plugins &gt; Add Plugin\n\n\n\nSearch for your preferred page builder, then install and activate it. The Block Editor is the default WordPress page editor, so you do not need to install it.\n\n\n\nInstall CartFlows\n\n\n\nNext, install the CartFlows plugin.\n\n\n\nNavigate to: Plugins &gt; Add Plugin\n\n\n\nSearch for CartFlows, then install and activate it.\n\n\n\nThe free version allows you to build funnels and customize WooCommerce checkout pages. The Pro version adds advanced features such as:\n\n\n\n\nOrder Bumps\n\n\n\nOne Click Upsells and Downsells\n\n\n\nCheckout field customization\n\n\n\n\nFor a complete walkthrough on installing the plugin, refer to this documentation: https://cartflows.com/docs/how-to-install-cartflows-free/\n\n\n\nAfter activation, configure the page builder integration.\n\n\n\nNavigate to: CartFlows &gt; Settings &gt; General\n\n\n\nSelect the page builder you installed earlier.\n\n\n\n\n\n\n\n4. Create a New Funnel\n\n\n\nNavigate to: CartFlows &gt; Funnels &gt; Create New Funnel\n\n\n\n\n\n\n\nYou can either import a ready made funnel template or start from scratch. Refer to this documentation for more details about creating funnel: https://cartflows.com/docs/how-to-create-your-first-cartflows-funnel/\n\n\n\n5. Configure the Checkout Step\n\n\n\nSelect the Checkout step in your funnel and click Edit.\n\n\n\nFrom this screen, you can:\n\n\n\n\nAssign a product to the Checkout step\n\n\n\nCustomize the page layout using your page builder\n\n\n\nAdjust checkout settings\n\n\n\n\nFor a detailed explanation of assigning products and configuring the Checkout step, see this documentation: https://cartflows.com/docs/how-to-add-assign-products-to-a-checkout-step-in-cartflows/\n\n\n\n6. Add Upsell or Downsell Offers\n\n\n\nYou can increase the average order value by adding upsell or downsell offers.\n\n\n\nTo add a new step click Add New Step inside your funnel. Select either Upsell or Downsell then choose a template.\n\n\n\n\n\n\n\nFor a complete walkthrough on creating these offers, refer to: https://cartflows.com/docs/create-oneclick-upsell-downsell-offers/\n\n\n\n7. Set the Landing Page as Your Homepage\n\n\n\nIf your funnel landing page will be the main entry point for visitors, you can set it as the homepage.\n\n\n\nNavigate to: Settings &gt; Reading. Select A static page, then choose your funnel landing page.\n\n\n\n\n\n\n\nThis ensures visitors land directly on your funnel.\n\n\n\n8. Test Your Funnel\n\n\n\nBefore launching your funnel, it is important to test the entire process.\n\n\n\nNavigate to: CartFlows &gt; Funnels. Edit your funnel and enable Sandbox Mode from the Funnel Settings panel.\n\n\n\n\n\n\n\nSandbox Mode allows you to simulate purchases and confirm that:\n\n\n\n\nCheckout works correctly\n\n\n\nUpsells and downsells function as expected\n\n\n\nPayments are processed properly\n\n\n\n\nIf you are using Stripe as the payment gateway and sandbox (test) mode is enabled, you can use the test card numbers: 4242 4242 4242 4242 &nbsp;on the Checkout page. Refer to this Stripe documentation to know more about the test number: https://docs.stripe.com/testing\n\n\n\nOnce everything works as expected, you can disable the Sandbox Mode and start accepting real orders.\n\n\n\nLearn More in the Video Below\n\n\n\nIf you prefer a visual walkthrough, watch the video below to see how to create a marketing sales funnel using CartFlows.\n\n\n\n\nhttps://www.youtube.com/watch?v=cagYPks1LLk\n\n\n\n\nDid You Know?\n\n\n\nCartFlows can also be used to create funnels that are not related to eCommerce. For example, you can build a simple lead generation funnel using just two steps:\n\n\n\n\nA landing page with a lead generation form\n\n\n\nA Thank You page\n\n\n\n\nThis approach is commonly used to collect leads, offer free resources, or allow visitors to sign up for newsletters and other offers.\";s:3:\"url\";s:66:\"https://cartflows.com/docs/how-to-create-a-marketing-sales-funnel/\";s:4:\"slug\";s:38:\"how-to-create-a-marketing-sales-funnel\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-05T21:09:17+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:158;O:8:\"stdClass\":8:{s:2:\"id\";i:31241;s:5:\"title\";s:66:\"How to Activate the CartFlows Pro License on a WordPress Multisite\";s:7:\"content\";s:1020:\"If you are using CartFlows Pro on a WordPress Multisite, you can network activate both the CartFlows Free and CartFlows Pro plugins. However, the license activation must be done from each child site. This documentation will walk you through the process.\n\n\n\nInstalling CartFlows on a Multisite Network\n\n\n\nStep 1: Network Activate CartFlows Free &amp; Pro\n\n\n\n\nLog in to your Network Admin Dashboard.\n\n\n\nGo to Plugins > Add New.\n\n\n\nInstall both CartFlows Free and CartFlows Pro plugins.\n\n\n\nClick Network Activate to activate them across all child sites.\n\n\n\n\n\n\n\n\nStep 2: Activate the License on Each Child Site\n\n\n\nOnce CartFlows Pro is network activated, the license must be activated individually on each child site. Follow the steps in this document: How to Activate Your CartFlows Pro License\n\n\n\nImportant Notes\n\n\n\n\nBoth CartFlows Free and Pro can be network-activated, but the Pro license must be activated per child site.\n\n\n\nLicense activation is required for CartFlows Pro to function on any child site in the network.\";s:3:\"url\";s:78:\"https://cartflows.com/docs/how-to-activate-cartflows-pro-license-on-multisite/\";s:4:\"slug\";s:50:\"how-to-activate-cartflows-pro-license-on-multisite\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-03-17T14:24:29+05:30\";s:8:\"category\";a:1:{i:0;s:20:\"installation-updates\";}}i:159;O:8:\"stdClass\":8:{s:2:\"id\";i:31435;s:5:\"title\";s:44:\"How to Enable Paypal Reference Transactions?\";s:7:\"content\";s:1196:\"Before, when using One-Click Upsell for WooCommerce with CartFlows, it is required that you enable PayPal reference transactions for it to work. But now, you can already offer WooCommerce One-Click Upsells even without enabling it. Learn more about this here.\n\n\n\nAlthough enabling PayPal reference transactions is not required, but if you are offering Upsell / Downsell from CartFlows here are the steps on how you can get this enabled for one-click Upsell -\n\n\n\nSteps to Enable PayPal Reference Transactions\n\n\n\nStep 1: Log into PayPal\n\n\n\nEnsure you are using a Business Account and log in to your PayPal account.\n\n\n\nStep 2: Access PayPal Support\n\n\n\nGo to PayPal Contact.\n\n\n\nStep 3: Call Support\n\n\n\nScroll down to the button and select the option to Call the support.\n\n\n\n\n\n\n\nStep 4: Follow Dialing Instructions\n\n\n\nYou will be redirected to a page with instructions for calling PayPal.\n\n\n\n\n\n\n\nStep 5: Request Reference Transactions\n\n\n\nChoose Technical Support and request to enable PayPal Reference Transactions for your account.\n\n\n\nStep 6: Enable in CartFlows\n\n\n\nAfter PayPal confirms the activation, go to your CartFlows settings and enable reference transactions if needed for specific features.\";s:3:\"url\";s:71:\"https://cartflows.com/docs/how-to-enable-paypal-reference-transactions/\";s:4:\"slug\";s:43:\"how-to-enable-paypal-reference-transactions\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-20T19:42:57+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:160;O:8:\"stdClass\":8:{s:2:\"id\";i:32517;s:5:\"title\";s:26:\"Upsell Downsell Shortcodes\";s:7:\"content\";s:2975:\"Upsell and Downsell shortcodes give you more flexibility and control over how product details are displayed on your offer pages, especially when working with Variable Products.\n\n\n\nUsing these shortcodes, you can customize your upsell and downsell pages by displaying product information, adjusting layouts, and creating more engaging offers that match your design and marketing needs.\n\n\n\nNote\nShortcodes for Upsell and Downsell are available only when the Page Builder setting is set to Other.\n\n\n\n\nWhat Can You Display Using These Shortcodes?\n\n\n\nYou can now add and display the following product details dynamically on your Upsell and Downsell pages:\n\n\n\n\nProduct Variation\n\n\n\nProduct Quantity\n\n\n\nProduct Title\n\n\n\nProduct Description (Long)\n\n\n\nProduct Short Description\n\n\n\nProduct Price\n\n\n\nProduct Image\n\n\n\n\nThese shortcodes ensure your customers know exactly what they’re buying and help boost conversions by presenting clear product information.\n\n\n\nNote\nThese shortcodes only work on Upsell and Downsell pages within CartFlows. Using them on other pages (e.g., regular WordPress or WooCommerce pages) can result in errors or unexpected content display.\n\n\n\n\nWhere to Find the Shortcodes\n\n\n\nYou can find these shortcodes by navigating to:\n\n\n\nUpsell / Downsell Settings → Shortcodes section\n\n\n\n\n\n\n\nAvailable Shortcodes and Usage\n\n\n\nAccept Offer Link\n\n\n\nUse this link to allow users to accept the offer. When clicked, the funnel moves to the next step with the offer accepted.\n\n\n\n\nUsage: Add this link to a button, &lt;a&gt; tag, or image.\n\n\n\nRecommended Element: Button or anchor.\n\n\n\n\nDecline Offer Link\n\n\n\nA link to decline the offer and continue to the next step in the funnel without accepting it.\n\n\n\n\nUsage: Add to a button, &lt;a&gt; tag, or image.\n\n\n\nRecommended Element: Button or anchor.\n\n\n\n\nProduct Variation\n\n\n\n[cartflows_offer_product_variation]Displays variation options (dropdown style) for variable products.\n\n\n\n\nUse on: Shortcode widget or text editor.\n\n\n\n\nProduct Quantity\n\n\n\n[cartflows_offer_product_quantity]Allows customers to select product quantity.\n\n\n\n\nUse on: Shortcode widget or text editor.\n\n\n\n\nProduct Title\n\n\n\n[cartflows_offer_product_title]Shows the product title.\n\n\n\n\nUse on: Heading, shortcode widget, or text editor.\n\n\n\n\nProduct Description\n\n\n\n[cartflows_offer_product_desc]Displays the full (long) description of the selected product.\n\n\n\n\nUse on: Shortcode widget or text editor.\n\n\n\n\nProduct Short Description\n\n\n\n[cartflows_offer_product_short_desc]Displays the excerpt or short description of the selected product.\n\n\n\n\nUse on: Shortcode widget or text editor.\n\n\n\n\nProduct Price\n\n\n\n[cartflows_offer_product_price]Shows the product price. If a discount is applied, the discounted price is shown.\n\n\n\n\nUse on: Shortcode widget, text editor, or heading.\n\n\n\n\nProduct Image\n\n\n\n[cartflows_offer_product_image]Displays product images. For variable products, the image updates based on selected variation.\n\n\n\n\nUse on: Shortcode widget or text editor.\";s:3:\"url\";s:66:\"https://cartflows.com/docs/introducing-upsell-downsell-shortcodes/\";s:4:\"slug\";s:38:\"introducing-upsell-downsell-shortcodes\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-20T19:30:07+05:30\";s:8:\"category\";a:1:{i:0;s:14:\"developer-docs\";}}i:161;O:8:\"stdClass\":8:{s:2:\"id\";i:32458;s:5:\"title\";s:102:\"How to Fix the &#8220;We can&#8217;t seem to find an order for you.&#8221; Error on the Thank You Page\";s:7:\"content\";s:1025:\"If you see the message “We can’t seem to find an order for you” on the Thank You page, it usually means the page is being accessed without a valid order or session.\n\n\n\nThis documentation explains why this happens and how to avoid it.\n\n\n\nWhen This Happens\n\n\n\nThis error appears if the Thank You page is visited directly without completing a purchase, while the funnel is live. CartFlows requires an order ID or session ID to display order details on the Thank You page. Without that data, the page cannot load the order and shows the error message.\n\n\n\n\n\n\n\nHow to View the Thank You Page Without an Order\n\n\n\nIf you’re only checking the design of the Thank You page and not placing an actual order, you can use Test Mode.\n\n\n\nSolution:\n\n\n\n\nGo to CartFlows &gt; Funnels.\n\n\n\nOpen your Funnel and enable Test Mode.\n\n\n\nWhile logged in, open the Thank You page directly to preview the layout.\n\n\n\n\nFor help, see this guide: How to Use Test Mode in CartFlows\n\n\n\nNote: Be sure to turn off Test Mode before making the funnel live.\";s:3:\"url\";s:81:\"https://cartflows.com/docs/solve-order-not-found-error-message-on-thank-you-page/\";s:4:\"slug\";s:53:\"solve-order-not-found-error-message-on-thank-you-page\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-03-19T13:25:12+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:162;O:8:\"stdClass\":8:{s:2:\"id\";i:32453;s:5:\"title\";s:47:\"How to Fix Endless Loading on the Checkout Page\";s:7:\"content\";s:1063:\"If your CartFlows Checkout page is stuck loading and the form never appears, it’s usually caused by caching.\n\n\n\nWhat Causes the Issue\n\n\n\nThis issue commonly happens when:\n\n\n\n\nThe Checkout page is cached by a plugin or server\n\n\n\nA 403 error occurs due to security rules or restrictions\n\n\n\n\nCaching can prevent dynamic parts of the Checkout page from working properly, which leads to endless loading or missing content.\n\n\n\nHow to Fix It\n\n\n\n\nClear all cache, including browser cache, plugin cache, and any server-side caching set by your host.\n\n\n\nTemporarily disable any caching plugin you’re using and test the Checkout page again.\n\n\n\nIf the issue persists, contact your hosting provider and ask them to clear any remaining cache at the server level.\n\n\n\n\nIf you’re seeing a 403 error, share the exact error message with your hosting provider. They may need to whitelist certain requests or adjust security settings to allow the checkout page to work correctly.\n\n\n\nFor help excluding CartFlows pages from being cached, refer to this doc: How to Disable Caching\";s:3:\"url\";s:64:\"https://cartflows.com/docs/solve-loading-issue-on-checkout-page/\";s:4:\"slug\";s:36:\"solve-loading-issue-on-checkout-page\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-05-27T19:27:02+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:163;O:8:\"stdClass\":8:{s:2:\"id\";i:32348;s:5:\"title\";s:76:\"How to Setup Authorize.net Gateway for the Cartflows Upsell &#038; Downsell?\";s:7:\"content\";s:1675:\"CartFlows support for Authorize.Net Credit Card payments specifically for Upsell and Downsell offers. Follow the steps below to set up Authorize.Net in your CartFlows funnels.\n\n\n\nPre-Requisites\n\n\n\nBefore setting up Authorize.Net, make sure you have the following:\n\n\n\n\nAuthorize.Net Account – Create an account if you don’t have one. During setup, obtain your Transaction Key, which will be needed in the WooCommerce settings.\n\n\n\nWooCommerce Authorize.Net Gateway Plugin – Install and activate the official plugin available on the WooCommerce store or the Authorize.Net website.\n\n\n\n\nSteps to Set Up Authorize.Net in WooCommerce\n\n\n\nStep 1: Enable Authorize.Net Payment Gateway\n\n\n\n\nFrom your WordPress Dashboard, navigate to WooCommerce → Settings → Payments Tab.\n\n\n\nEnable the Authorize.Net Credit Card option.\n\n\n\n\n\n\n\n\nStep 2: Enter Transaction Key\n\n\n\n\nPaste the Transaction Key obtained from your Authorize.Net account into the designated field.\n\n\n\nClick Save to store your settings.\n\n\n\n\nStep 3: Configure Important Fields\n\n\n\n\nTransaction Type: Set to Charge.\n\n\n\nTokenization: Enable this option so that credit card fields appear on Checkout, Upsell, and Downsell pages.\n\n\n\nDebug Mode: Set to Save to Log to capture any error logs.\n\n\n\n\n\n\n\n\nStep 4: Verify Setup\n\n\n\n\nVisit your Checkout page. You should see the credit card fields provided by Authorize.Net available for payment.\n\n\n\n\n\n\n\n\nNote\nEnsure your website has a valid SSL certificate and all URLs are using HTTPS. Without HTTPS, the payment fields will not work and may display errors.\n\n\n\n\nFollowing these steps will enable secure Authorize.Net credit card payments for all CartFlows Upsell and Downsell offers.\";s:3:\"url\";s:69:\"https://cartflows.com/docs/setup-authorize-net-gateway-for-cartflows/\";s:4:\"slug\";s:41:\"setup-authorize-net-gateway-for-cartflows\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-01-05T22:12:40+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:164;O:8:\"stdClass\":8:{s:2:\"id\";i:32341;s:5:\"title\";s:60:\"How to Enable Enfold Avia Layout Builder in CartFlows Steps?\";s:7:\"content\";s:2141:\"By default, the Enfold theme’s Avia Layout Builder is not available on CartFlows steps. However, with a simple code addition, you can enable support and start designing your CartFlows pages using the Avia Builder.\n\n\n\nMethod 1: Add Code to Your Child Theme\n\n\n\nFollow these steps to enable the builder by adding custom code to your child theme:\n\n\n\nStep 1: Copy the Code Below\n\n\n\n// Do not include this if already open!/* * How to add the custome code. * * Please follow below instructions:* 1. Copy the below code.* 2. Open your child theme\'s functions.php file.* 3. Paste the copied code at the very bottom of it &amp; save the file OR upload it on your server/hosting.*//** * Function to allow Enfold theme to edit the CartFlows pages using it\'s page builder. *  * @param array $supported_post_types 	Array of supported post type by the theme. *  * @return array $supported_post_types 	Modified array of supported post type by the theme. */function avf_add_cartflows_post_type_in_theme( array $supported_post_types ) {	$supported_post_types[] = \'cartflows_step\';	return $supported_post_types;}add_filter( \'avf_alb_supported_post_types\', \'avf_add_cartflows_post_type_in_theme\', 10, 1 );add_filter( \'avf_metabox_layout_post_types\', \'avf_add_cartflows_post_type_in_theme\', 10, 1 );\n\n\n\nStep 2: Paste Into Your Child Theme\n\n\n\n\nGo to Appearance > Theme File Editor\n\n\n\nOpen your child theme’s functions.php file\n\n\n\nScroll to the bottom and paste the copied code\n\n\n\nSave the changes\n\n\n\n\nMethod 2: Use the Code Snippets Plugin\n\n\n\nIf you prefer not to modify theme files directly, you can use the Code Snippets plugin:\n\n\n\n\nInstall and activate the Code Snippets plugin (free from WordPress.org).\n\n\n\nCreate a new snippet and paste the same code shown above.\n\n\n\nSet the snippet to run on both front-end and back-end.\n\n\n\nSave and activate the snippet.\n\n\n\n\nHere is a video tutorial on how to add custom functions to your website.\n\n\n\n\nhttps://www.youtube.com/watch?v=c56d84Eek5M\n\n\n\n\nAfter applying either method, the Avia Layout Builder will be available for all CartFlows steps, allowing you to design your funnel pages with Enfold’s native builder.\";s:3:\"url\";s:47:\"https://cartflows.com/docs/enfold-avia-builder/\";s:4:\"slug\";s:19:\"enfold-avia-builder\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-25T23:20:21+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:165;O:8:\"stdClass\":8:{s:2:\"id\";i:32313;s:5:\"title\";s:39:\"Personalization Shortcodes in CartFlows\";s:7:\"content\";s:3049:\"Personalization shortcodes in CartFlows let you display dynamic customer and order information on your funnel steps. This helps you show relevant messages to users based on the data available during the checkout process.\n\n\n\nYou can add these shortcodes inside text elements, headings, or HTML blocks using your preferred page builder.\n\n\n\nWhy Use Personalization Shortcodes\n\n\n\nPersonalized content helps customers feel acknowledged and confident during checkout. Instead of showing a generic message, you can display information such as the customer email or name to make the message more relevant.\n\n\n\nExample: Thank you john@example.com for your order.\n\n\n\nTypes of Personalization Shortcodes\n\n\n\nCartFlows provides two types of personalization shortcodes.\n\n\n\n\nDisplay values submitted on the checkout page\n\n\n\nDisplay values passed through the URL\n\n\n\n\nDisplay Checkout Field Values\n\n\n\nUse this shortcode to show values entered by the customer on the CartFlows Checkout page, such as first name, last name, or email address.\n\n\n\nShortcode Format\n\n\n\n&#91;cartflows_order_fields field=\"first_name\" default=\"Dear\"]\n\n\n\nParameters\n\n\n\nfield: The checkout field value you want to display\n\n\n\ndefault: Text shown when the field value is not available\n\n\n\nExamples\n\n\n\nDisplay the customer first name\n\n\n\n&#91;cartflows_order_fields field=\"first_name\" default=\"My Name\"]\n\n\n\nDisplay the customer last name\n\n\n\n&#91;cartflows_order_fields field=\"last_name\" default=\"My Surname\"]\n\n\n\nYou can use the same shortcode structure to display any checkout field value.\n\n\n\nDisplay URL Parameter Values\n\n\n\nUse this shortcode to display values passed through URL parameters. This is useful when sending users to a CartFlows step from another page while passing data dynamically.\n\n\n\nShortcode Format\n\n\n\n&#91;cartflows_url_fields field=\"first_name\" default=\"Dear\"]\n\n\n\nParameters\n\n\n\nfield: The URL parameter you want to display\n\n\n\ndefault: Text shown when the parameter does not exist\n\n\n\nExamples\n\n\n\nDisplay first name from the URL\n\n\n\n&#91;cartflows_url_fields field=\"first_name\" default=\"My Name\"]\n\n\n\nDisplay last name from the URL\n\n\n\n&#91;cartflows_url_fields field=\"last_name\" default=\"My Surname\"]\n\n\n\nYou can use this shortcode for any value passed in the URL.\n\n\n\nNote\nWooCommerce checkout fields usually include prefixes such as billing or shipping. When using personalization shortcodes in CartFlows, make sure to remove these prefixes.\n\n\n\n\nFor example\n\n\n\nUse first_name instead of billing_first_name\n\n\n\nUse last_name instead of shipping_last_name\n\n\n\nWhere You Can Use These Shortcodes\n\n\n\nYou can add personalization shortcodes on the following CartFlows steps.\n\n\n\n\nCheckout step\n\n\n\nUpsell step\n\n\n\nDownsell step\n\n\n\nThank You step\n\n\n\n\nThese shortcodes work inside your page builder content elements and display values only when the related data is available.\n\n\n\nSummary\n\n\n\nPersonalization shortcodes allow you to show checkout data and URL values dynamically on your CartFlows steps. This helps you create clearer, more relevant messages and improves the overall user experience.\";s:3:\"url\";s:64:\"https://cartflows.com/docs/personalization-shortcodes-cartflows/\";s:4:\"slug\";s:36:\"personalization-shortcodes-cartflows\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-01-14T15:09:02+05:30\";s:8:\"category\";a:1:{i:0;s:14:\"developer-docs\";}}i:166;O:8:\"stdClass\":8:{s:2:\"id\";i:32316;s:5:\"title\";s:52:\"How to Enable Google Analytics Tracking in CartFlows\";s:7:\"content\";s:1945:\"CartFlows includes built-in support for Google Analytics. You can track funnel performance using predefined events that help you monitor user behavior across the Checkout page, Opt-in page, and more.\n\n\n\nThis documentation shows how to enable Google Analytics tracking in CartFlows and where to enter your measurement ID.\n\n\n\nBefore You Begin\n\n\n\nMake sure you have:\n\n\n\n\nA Google Analytics account (Universal or GA4)\n\n\n\nYour Tracking ID (for Universal Analytics) or Measurement ID (for GA4)\n\n\n\n\nIf you haven’t set it up yet, refer to these official guides:\n\n\n\n\nHow to set up the Analytics Google tag (Legacy)\n\n\n\nHow to set up Google Analytics 4 (GA4)\n\n\n\n\nEnable Google Analytics in CartFlows\n\n\n\n1. From your WordPress dashboard, go to CartFlows &gt; Settings &gt; Integrations.2. Click the Google Analytics Pixel tab.3. Enable the toggle for Enable for CartFlows Pages.\n\n\n\n\n\n\n\n4. Enter your Tracking ID (Universal) or Measurement ID (GA4) in the Enter Google Analytics ID field.\n\n\n\n\n\n\n\n5. To track CartFlows events across the entire website, enable the second toggle: Enable for the whole site.\n\n\n\n\n\n\n\nOnce set up, CartFlows will start sending tracking events to Google Analytics.\n\n\n\nEvents Tracked by CartFlows\n\n\n\nThe following are the available events:\n\n\n\n\nBegin Checkout\n\n\n\nAdd to Cart\n\n\n\nAdd Payment Info\n\n\n\nPurchase\n\n\n\nOpt-in Lead\n\n\n\n\nIs CartFlows Compatible with GA4?\n\n\n\nYes. CartFlows is fully compatible with Google Analytics 4 (GA4).\n\n\n\nTo get your GA4 Measurement ID:\n\n\n\n\nGo to the Admin Panel in your GA4 property.\n\n\n\nPick the Analytic Account.\n\n\n\nSelect your Property.\n\n\n\nYou will see your Measurement ID, which begins with G-.\n\n\n\n\n\n\n\n\nEnter this ID in the Enter Google Analytics ID field in CartFlows settings.\n\n\n\nTroubleshooting\n\n\n\nIf tracking is not working, check that your Measurement ID is correct and that the toggle is enabled.\n\n\n\nRefer to this article for more help: How to Troubleshoot Google Analytics Tracking in CartFlows\";s:3:\"url\";s:70:\"https://cartflows.com/docs/enable-google-analytics-tracking-cartflows/\";s:4:\"slug\";s:42:\"enable-google-analytics-tracking-cartflows\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-20T00:39:53+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"flows-analytics\";}}i:167;O:8:\"stdClass\":8:{s:2:\"id\";i:32315;s:5:\"title\";s:58:\"How to Troubleshoot Google Analytics Tracking in CartFlows\";s:7:\"content\";s:1091:\"If your Google Analytics tracking is not working in CartFlows, the most common reason is that your Tracking ID or Measurement ID is missing or incorrect.\n\n\n\nThis documentation shows how to check your settings and ensure tracking is enabled.\n\n\n\nStep 1: Check if Tracking Is Enabled\n\n\n\n\nGo to CartFlows &gt; Settings &gt; Integrations.\n\n\n\nClick the Google Analytics Pixel tab.\n\n\n\nMake sure the toggle for Enable for CartFlows Pages is turned on.\n\n\n\n\n\n\n\n\nStep 2: Confirm the Analytics ID\n\n\n\n\nIn the same tab, check the Enter Google Analytics ID field.\n\n\n\nMake sure the ID is entered correctly:\n\nUniversal Analytics IDs start with UA-\n\n\n\nGA4 Measurement IDs start with G-\n\n\n\n\n\n\nIf this field is blank or incorrect, tracking will not work.\n\n\n\n\n\n\n\nStep 3: Test Tracking on the Frontend\n\n\n\n\nUsing the Chrome browser, open your site in Incognito mode.\n\n\n\nUse the Tag Assistant browser extension to confirm that tracking events are firing on CartFlows pages.\n\n\n\n\nNote\nMake sure your CartFlows funnel is set to live, or you’re logged in with Test Mode enabled if you’re checking a non-live funnel.\";s:3:\"url\";s:76:\"https://cartflows.com/docs/troubleshooting-google-analytics-tracking-issues/\";s:4:\"slug\";s:48:\"troubleshooting-google-analytics-tracking-issues\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-18T17:45:13+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"flows-analytics\";}}i:168;O:8:\"stdClass\":8:{s:2:\"id\";i:32274;s:5:\"title\";s:87:\"How to Resolve the &#8220;Please select a Simple, Virtual and Free product&#8221; Error\";s:7:\"content\";s:977:\"Do you notice an Error Message - Please select a Simple, Virtual and Free product.\n\n\n\n\n\n\n\nSolution: \n\n\n\nFollowing are the steps using which you can select the free Simple and Virtual product on the optin page of the CartFlows.\n\n\n\nStep 1: Go to CartFlows > Funnels and edit the funnel.\n\n\n\n\n\n\n\nStep 2: Click the Settings icon (cog icon) on the Checkout step.\n\n\n\n\n\n\n\nStep 3: Navigate to the Products Tab and Search and select your free simple or virtual product from the optin page.\n\n\n\n\n\n\n\nIn a nutshell, to resolve this issue, you will need to select Simple and Virtual Product.\n\n\n\nThe Optin Step type only allows selling the above-mentioned type of products. This Step Type provides only three fields such as First Name, Last Name, Email ID.\n\n\n\nSo the user cannot make a payment in this scenario, this is the reason you need to set the zero price value Simple / Virtual product.\n\n\n\nIf you need to add more custom fields in the Optin Type you will need the CartFlows Pro version.\";s:3:\"url\";s:68:\"https://cartflows.com/docs/select-a-simple-virtual-and-free-product/\";s:4:\"slug\";s:40:\"select-a-simple-virtual-and-free-product\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-19T21:47:58+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:169;O:8:\"stdClass\":8:{s:2:\"id\";i:32272;s:5:\"title\";s:52:\"How to Pass Variables as Query Parameters to the URL\";s:7:\"content\";s:1239:\"CartFlows allows you to pass field values from the Opt-in step to the next page using URL query parameters.\n\n\n\nThis feature is helpful when you want to:\n\n\n\n\nPersonalize the content on the next step\n\n\n\nUse custom code to display dynamic messages\n\n\n\nSend user data to an external service (like a CRM)\n\n\n\n\nHow to Enable the Feature\n\n\n\n\nGo to CartFlows &gt; Funnels and open your funnel.\n\n\n\nClick the gear icon on the Opt-in step to access its settings.\n\n\n\nGo to the Settings tab &gt; Optin Settings.\n\n\n\nEnable the toggle labeled Pass Fields as URL Parameters.\n\n\n\n\nOnce enabled, you’ll see first_name added by default. This means the value entered in the First Name field will be passed to the next step via the URL.\n\n\n\n\n\n\n\nHow to Add More Fields\n\n\n\nYou can pass multiple fields by entering their names in a comma-separated format, such as:\n\n\n\nfirst_name, last_name, email\n\n\n\nThis also works for custom fields created using the CartFlows Custom Field Editor (Pro feature).\n\n\n\nNote: The opt-in page field name starts with the “billing_” prefix, such as billing_first_name or billing_last_name. When adding field names to the setting, make sure to exclude the “billing_” part. For example, use first_name instead of billing_first_name.\";s:3:\"url\";s:68:\"https://cartflows.com/docs/pass-variable-as-query-parameters-to-url/\";s:4:\"slug\";s:40:\"pass-variable-as-query-parameters-to-url\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-20T00:43:51+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:170;O:8:\"stdClass\":8:{s:2:\"id\";i:32256;s:5:\"title\";s:35:\"Introducing CartFlows Optin Feature\";s:7:\"content\";s:1646:\"Creating lead generation forms can sometimes be challenging, unexpected errors, too many fields, or difficulty connecting with tools like Mailchimp. To solve this, CartFlows now includes an Optin Step, making it easy to create streamlined, high-converting opt-in funnels.\n\n\n\nWhat Is the CartFlows Optin Step?\n\n\n\nThe Optin Step is a dedicated step type in CartFlows, designed specifically for lead generation funnels. It allows you to collect user information and connect seamlessly with your email marketing tools.\n\n\n\nHow to Import and Set Up the Optin Step\n\n\n\nStep 1: Import the Optin Step\n\n\n\nNavigate to your WordPress Dashboard > CartFlows > Edit your flow and add a new step.From the available step templates, choose either:\n\n\n\n\nReady Templates that include the Optin step\n\n\n\nOr select Create Your Own > Optin Woo\n\n\n\n\nStep 2: Edit the Optin Step\n\n\n\nOpen the step settings to begin configuring your form and product.\n\n\n\nStep 3: Assign a Free Virtual Product\n\n\n\nSelect a product that is:\n\n\n\n\nSimple\n\n\n\nVirtual / Downloadable\n\n\n\nPriced at 0\n\n\n\n\nThis ensures users can complete the step without making a payment.\n\n\n\nStep 4: Form Submission and Lead Capture\n\n\n\nOnce the user fills out the form, their details will be captured and passed to your configured email marketing tool through WooCommerce (e.g., Mailchimp, ConvertKit, etc.).\n\n\n\nNote: Adding custom form fields is available in the CartFlows Pro version.\n\n\n\n\n\n\n\nWhen Should You Use the Optin Step?\n\n\n\nThe Optin Step is perfect for creating lead generation funnels. It’s commonly used to offer free digital products (e.g., ebooks, PDFs, downloads) in exchange for user contact information.\";s:3:\"url\";s:63:\"https://cartflows.com/docs/introducing-cartflows-optin-feature/\";s:4:\"slug\";s:35:\"introducing-cartflows-optin-feature\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-25T23:17:03+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:171;O:8:\"stdClass\":8:{s:2:\"id\";i:32233;s:5:\"title\";s:60:\"How to Create Conditional Upsell &amp; Downsell in CartFlows\";s:7:\"content\";s:2518:\"What is Conditional Redirect?\n\n\n\nConditional Redirect allows you to control where a customer is redirected after interacting with an Upsell or Downsell offer.\n\n\n\nUsing this setting, you can send users to a specific next step in the funnel depending on whether they accept (Yes) or decline (No) the offer.\n\n\n\nFor example:\n\n\n\n\nIf the user accepts the Upsell → Redirect them to another Upsell, Downsell, or Thank You page.\n\n\n\nIf the user declines the Upsell → Redirect them directly to a Downsell or the Thank You page.\n\n\n\n\n\n\n\n\nThis helps create smarter funnels where the next step depends on the user’s decision.\n\n\n\nHow Conditional Upsell &amp; Downsell Helps\n\n\n\nUpsells and Downsells are an essential part of any sales funnel because they help increase the average order value.\n\n\n\nBy using Conditional Redirect, you can create more strategic funnels where customers are shown the most relevant next offer instead of following a fixed path.\n\n\n\nThis makes the funnel more dynamic and improves conversion opportunities.\n\n\n\nHow to Set Up Conditional Redirect in CartFlows Pro\n\n\n\nStep 1: Add Upsell and Downsell Steps\n\n\n\nFrom the WordPress dashboard, navigate to CartFlows > Funnels and edit the funnel in which an Upsell / Downsell has been created or will be created.\n\n\n\n\n\n\n\nStep 2: Open the Offer Step Settings\n\n\n\nLocate the Upsell or Downsell step in the funnel and open click the Settings (cog icon).\n\n\n\n\n\n\n\nStep 3: Access the Conditional Redirect Option\n\n\n\nInside the step settings Settings Tab > Conditional Redirect\n\n\n\n\n\n\n\nThis option allows you to define where users will be redirected based on their choice.\n\n\n\nStep 4: Configure Redirect Paths\n\n\n\nSet the destination for both options:\n\n\n\n\nYes (Accept Offer) → Select the step where the user should be redirected after accepting the offer.\n\n\n\nNo (Decline Offer) → Select the step where the user should be redirected after rejecting the offer.\n\n\n\n\nYou can redirect users to another Upsell, Downsell, or Thank You step depending on your funnel strategy.\n\n\n\n\n\n\n\nStep 5: Save the Settings\n\n\n\nAfter configuring the redirect paths, save the settings.\n\n\n\nYour funnel will now redirect users to different steps depending on whether they accept or decline the offer.\n\n\n\nNote\nIf you do not see any options in the Conditional Redirect dropdown, it means there are no available offer steps after the current step in the funnel.\n\n\n\nTo resolve this, add the required Upsell or Downsell steps after the current offer step, and they will become available in the dropdown.\";s:3:\"url\";s:62:\"https://cartflows.com/docs/create-conditional-upsell-downsell/\";s:4:\"slug\";s:34:\"create-conditional-upsell-downsell\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-20T20:16:50+05:30\";s:8:\"category\";a:1:{i:0;s:17:\"one-click-upsells\";}}i:172;O:8:\"stdClass\":8:{s:2:\"id\";i:32213;s:5:\"title\";s:41:\"How to Enable Collapsible Checkout Fields\";s:7:\"content\";s:957:\"CartFlows Pro allows you to make specific Checkout fields collapsible. This helps create a cleaner layout by letting customers expand only the sections they need to interact with.\n\n\n\nNote: You must enable the Custom Field Editor to access this feature.\n\n\n\nWhere to Find the Setting\n\n\n\n\nGo to CartFlows &gt; Funnels and open your funnel.\n\n\n\nOpen setting of the Checkout step.\n\n\n\nGo to the Checkout Form tab.\n\n\n\nGo to the Field Editor section and enable the Enable Custom Field Editor toggle.\n\n\n\n\nHow to Enable Collapsible Fields\n\n\n\n\nLocate the field you want to collapse.\n\n\n\nMake sure the field is not required.\n\n\n\nEnable the Collapsible toggle.\n\n\n\nClick Save/Update.\n\n\n\n\n\n\n\n\nThe selected field will now be hidden under a toggle on the Checkout page.\n\n\n\nMake Coupon and Additional Field Collapsible\n\n\n\n\nEnable the Coupon Field or Additional Field setting first.\n\n\n\nOnce enabled, the Collapsible toggle will appear.\n\n\n\nEnable the toggle and save your changes.\";s:3:\"url\";s:62:\"https://cartflows.com/docs/enable-collapsible-checkout-fields/\";s:4:\"slug\";s:34:\"enable-collapsible-checkout-fields\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-06-02T21:23:20+05:30\";s:8:\"category\";a:1:{i:0;s:21:\"checkout-field-editor\";}}i:173;O:8:\"stdClass\":8:{s:2:\"id\";i:32147;s:5:\"title\";s:58:\"How to Translate CartFlows Using the Loco Translate Plugin\";s:7:\"content\";s:1301:\"You can translate CartFlows using the Loco Translate plugin, which allows you to edit plugin strings directly from your WordPress dashboard.\n\n\n\nFollow the steps below to translate text like button labels, coupon fields, or any other CartFlows string.\n\n\n\nInstall and Access Loco Translate\n\n\n\n\nInstall and activate the Loco Translate plugin from the WordPress repository.\n\n\n\nNavigate to Loco Translate > Plugins.\n\n\n\nSelect CartFlows from the list\n\n\n\n\n\n\n\n\nAdd a New Language\n\n\n\n1. If the language you want to translate into is not listed, click the New Language button.2. Select the language you want to use.\n\n\n\n\n\n\n\n3. Choose Custom location under the file location options.4. Click Start Translating.\n\n\n\n\n\n\n\nYou may choose a different location if needed, depending on your site setup.\n\n\n\nTranslate CartFlows Strings\n\n\n\n\nUse the search bar to find the text you want to translate (for example, “Coupon”).\n\n\n\nSelect the string, then add your translation in the bottom translation field.\n\n\n\nClick Save.\n\n\n\n\n\n\n\n\nPreview Translations on Frontend\n\n\n\nOnce saved, your translated strings will appear on the frontend according to your site’s language.\n\n\n\nNote: Make sure your WordPress site language matches the language you added in Loco Translate. You can set this from Settings > General > Site Language.\";s:3:\"url\";s:68:\"https://cartflows.com/docs/translate-cartflows-using-loco-translate/\";s:4:\"slug\";s:40:\"translate-cartflows-using-loco-translate\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-07-07T23:59:49+05:30\";s:8:\"category\";a:1:{i:0;s:19:\"translate-cartflows\";}}i:174;O:8:\"stdClass\":8:{s:2:\"id\";i:32131;s:5:\"title\";s:52:\"How to Enable Fusion Page Builder on CartFlows Steps\";s:7:\"content\";s:470:\"If you’re using Fusion Page Builder, you can enable it to work with CartFlows steps by updating the Fusion Builder settings.\n\n\n\nEnable Fusion Builder for CartFlows Steps\n\n\n\n\nGo to Settings > Fusion in your WordPress dashboard.\n\n\n\nUnder the Post Types section, tick the Steps checkbox.\n\n\n\nClick Save Changes.\n\n\n\n\n\n\n\n\nOnce enabled, the Edit with Fusion Builder button will appear when editing a CartFlows step. You can now design your step using the Fusion Page Builder.\";s:3:\"url\";s:54:\"https://cartflows.com/docs/enable-fusion-page-builder/\";s:4:\"slug\";s:26:\"enable-fusion-page-builder\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-13T22:46:52+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:175;O:8:\"stdClass\":8:{s:2:\"id\";i:32088;s:5:\"title\";s:38:\"Setup Pre-Checkout Upsell in CartFlows\";s:7:\"content\";s:1425:\"The Pre-Checkout Upsell feature allows you to display an offer directly on the Checkout page when a customer clicks the Place Order or Proceed to Checkout button.\n\n\n\nThis helps you present an additional product before the order is placed, without interrupting the checkout flow. Since the offer is shown before payment processing, it works seamlessly with almost all WooCommerce payment gateways available on your checkout page.\n\n\n\nHow to Enable Pre-Checkout Upsell\n\n\n\nStep 1: Open the Checkout Step Settings\n\n\n\n\nGo to WordPress Dashboard &gt; CartFlows &gt; Funnels.\n\n\n\nOpen your funnel and click Settings on the Checkout step.\n\n\n\nNavigate to the Checkout Offer tab.\n\n\n\n\n\n\n\n\nStep 2: Enable Checkout Offer\n\n\n\n\nToggle the Enable Checkout Offer option.\n\n\n\nSelect the product you want to offer from the Select Product dropdown.\n\n\n\n\n\n\n\n\nYou can further customize the offer behavior using the additional settings available in the Checkout Offer section.\n\n\n\n\n\n\n\nHow It Works on the Frontend\n\n\n\nAfter enabling the Pre-Checkout Upsell:\n\n\n\n\nVisit the Checkout page on the frontend.\n\n\n\nFill in the required checkout details.\n\n\n\nClick Proceed to Checkout or Place Order.\n\n\n\n\nAt this point, a popup offer will be displayed, allowing the customer to accept or decline the additional product before completing the order.\n\n\n\n\n\n\n\nNote\nThe Pre-Checkout Upsell works with almost all WooCommerce payment gateways.\n\n\n\n\nFrequently Asked Questions\";s:3:\"url\";s:53:\"https://cartflows.com/docs/setup-pre-checkout-upsell/\";s:4:\"slug\";s:25:\"setup-pre-checkout-upsell\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-12T18:54:56+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:176;O:8:\"stdClass\":8:{s:2:\"id\";i:32083;s:5:\"title\";s:57:\"How to Troubleshoot a Conflict with the Plugin and Theme?\";s:7:\"content\";s:1725:\"If you\'re experiencing issues such as:\n\n\n\n\nCSS not applying properly\n\n\n\nCheckout page continuously loading\n\n\n\nCart not displaying or updating correctly\n\n\n\nLayout issues (e.g., cart items misaligned or stacked)\n\n\n\nUnexpected product replacements in the cart\n\n\n\n\nThese are often caused by conflicts with your theme or other installed plugins.\n\n\n\nBefore reaching out to support, here are some quick and effective steps you can take to identify and resolve the issue:\n\n\n\nStep 1: Switch to a Default Theme\n\n\n\nTemporarily switch your website theme to a default WordPress theme like Twenty Twenty-One or Twenty Twenty-Three. Check if the issue still occurs. If the problem disappears, your theme may be conflicting with CartFlows or WooCommerce.\n\n\n\nStep 2: Deactivate Other Plugins\n\n\n\nDeactivate all plugins except CartFlows and WooCommerce.Then, test the functionality again. If the issue is resolved, re-enable your plugins one by one to identify the conflicting plugin.\n\n\n\nNote: This is a standard debugging approach followed by most WordPress support teams and helps identify over 90{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} of issues. We recommend taking a full backup of your site before proceeding.\n\n\n\nStep 3: Review Custom Code\n\n\n\nIf you’ve added custom code to your theme or through third-party plugins, consider temporarily disabling it to rule out conflicts.\n\n\n\nWatch: Troubleshooting in Action\n\n\n\nHere’s a quick video walkthrough to guide you through this process:\n\n\n\n\nhttps://www.youtube.com/watch?v=yWEnKnzwc0U\n\n\n\n\nIf the issue persists after trying the above steps, feel free to reach out to our Technical Support team. If possible, please share a staging site or grant temporary access to your live site so we can help debug the issue more effectively.\";s:3:\"url\";s:49:\"https://cartflows.com/docs/troubleshooting-steps/\";s:4:\"slug\";s:21:\"troubleshooting-steps\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-25T23:18:45+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:177;O:8:\"stdClass\":8:{s:2:\"id\";i:31733;s:5:\"title\";s:41:\"How PayPal and Stripe Work with CartFlows\";s:7:\"content\";s:3460:\"This documentation explains how PayPal and Stripe work with CartFlows when processing payments through WooCommerce.\n\n\n\nCartFlows integrates with WooCommerce payment gateways. Once a payment gateway is enabled in WooCommerce, it can be used on CartFlows Checkout pages.\n\n\n\nThe following gateways are commonly used with CartFlows:\n\n\n\n\nPayPal Standard\n\n\n\nPayPal Express Checkout (PayPal Checkout)\n\n\n\nStripe\n\n\n\n\nPayPal Standard\n\n\n\nNote\nPayPal Standard is no longer suggested by PayPal. WooCommerce strongly encourages switching to the PayPal Payments extension instead. Support for PayPal Standard is very limited, and it is hidden for new installations since WooCommerce 5.5.0.\n\n\n\n\nTo accept payments using PayPal Standard, make sure the following settings are configured in WooCommerce.\n\n\n\n\nEnable PayPal Standard.\n\n\n\nEnable Sandbox Mode if you want to test payments. Disable it when accepting live payments.\n\n\n\nEnable Logging to record potential errors.\n\n\n\nEnable IPN Email Notifications.\n\n\n\nIf IPN email notifications are enabled, add the PayPal Identity Token.\n\n\n\nSet Payment Action to Capture.\n\n\n\nEnter the required API credentials.\n\n\n\nAdd Sandbox API credentials when testing payments.\n\n\n\nAdd Live API credentials when accepting real payments.\n\n\n\n\nFor more details, refer to the WooCommerce documentation: https://docs.woocommerce.com/document/paypal-standard/\n\n\n\nPayPal Express Checkout\n\n\n\nNote\nPayPal Express Checkout (PayPal Checkout) is no longer suggested by PayPal. It is no longer available for download via the WooCommerce Marketplace and support ended on 1 March, 2022. WooCommerce encourages upgrading to the PayPal Payments extension instead.\n\n\n\n\nTo use PayPal Express Checkout with CartFlows, configure the following settings.\n\n\n\n\nEnable PayPal Checkout.\n\n\n\nSet the Environment to Live or Sandbox.\n\n\n\nEnter the corresponding API credentials for the selected environment.\n\n\n\nEnable Debug Log in the Advanced Settings.\n\n\n\nEnable Reference Transactions in CartFlows.\n\n\n\n\nTo enable Reference Transactions in CartFlows, navigate to: CartFlows &gt; Settings\n\n\n\nThen enable Reference Transactions.\n\n\n\nReference Transactions are required to enable true one click upsells with PayPal.\n\n\n\nFor more information about PayPal Express Checkout, refer to: https://docs.woocommerce.com/document/paypal-express-checkout/\n\n\n\nStripe\n\n\n\nTo accept payments using Stripe, configure the following settings.\n\n\n\n\nEnable Stripe.\n\n\n\nEnable Test Mode when testing payments.\n\n\n\nAdd the Test Publishable Key and Test Secret Key.\n\n\n\nAdd the Live Publishable Key and Live Secret Key.\n\n\n\n\nFor more information about Stripe configuration, refer to: https://docs.woocommerce.com/document/stripe/\n\n\n\nFrequently Asked Questions\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHow can I enable Reference Transactions in PayPal?\n\n\n\nTo request Reference Transactions for your PayPal account:\n\n\n\n\nLog in to your PayPal account.\n\n\n\nGo to the Email Contact Form.\n\n\n\nChoose My Account as the topic.\n\n\n\nChoose Changing or Updating Account Information as the sub topic.\n\n\n\nSend a request asking PayPal to enable Reference Transactions.\n\n\n\n\nExample message:\n\n\n\nHello Team,I would like to enable Reference Transactions on my PayPal account.My PayPal email address is: your@email.com.I need this feature to support post purchase upsells or one click upsells via WooCommerce.Kind regardsYour Name\n\n\n\nAfter submitting the request, wait for PayPal to confirm the activation. The approval process may vary depending on the country.\";s:3:\"url\";s:67:\"https://cartflows.com/docs/working-of-paypal-stripe-with-cartflows/\";s:4:\"slug\";s:39:\"working-of-paypal-stripe-with-cartflows\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-03-13T18:07:28+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:178;O:8:\"stdClass\":8:{s:2:\"id\";i:31729;s:5:\"title\";s:58:\"How to Translate CartFlows Using the TranslatePress Plugin\";s:7:\"content\";s:1032:\"CartFlows can be translated using the TranslatePress plugin, allowing you to localize your funnel steps and content directly from the frontend.\n\n\n\nFollow the steps below to translate your CartFlows funnel pages.\n\n\n\nConfigure TranslatePress Settings\n\n\n\n\nFrom your WordPress dashboard, go to Settings &gt; TranslatePress.\n\n\n\nUnder the General tab, find the All Languages section.\n\n\n\nAdd the language(s) you want to translate your website into.\n\n\n\n\n\n\n\n\nOnce added, the new language will appear in your site’s language switcher.\n\n\n\nTranslate CartFlows Funnel Steps\n\n\n\n1. Open the CartFlows step or page you want to translate.2. From the top admin bar, click the Translate Page button.\n\n\n\n\n\n\n\n3. Click the text you want to translate and click on it.\n\n\n\n\n\n\n\n4. Enter your translated text in the field that appears.5. Click the Save translation button to apply your translation.\n\n\n\n\n\n\n\nRepeat this for each string you want to translate on the page.\n\n\n\nWatch a Video Tutorial\n\n\n\nOr refer to the following video to see how you can do this:\";s:3:\"url\";s:67:\"https://cartflows.com/docs/translate-cartflows-with-translatepress/\";s:4:\"slug\";s:39:\"translate-cartflows-with-translatepress\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-07-08T00:00:40+05:30\";s:8:\"category\";a:1:{i:0;s:19:\"translate-cartflows\";}}i:179;O:8:\"stdClass\":8:{s:2:\"id\";i:31682;s:5:\"title\";s:56:\"Shortcode Reference for Email Fields in Cart Abandonment\";s:7:\"content\";s:1762:\"You can personalize your abandoned cart recovery emails using the shortcodes listed below. These shortcodes allow you to dynamically insert customer details, cart contents, and other relevant information into your emails.\n\n\n\nAvailable Shortcodes\n\n\n\nNo First Name Shortcode  Description 1Admin Firstname{{admin.firstname}}It displays the name of the shop owner or an administrator.2Admin Company{{admin.company}}It displays the name of the shop or company.3Abandoned Product Details Table{{cart.product.table}}It displays the details of products that were abandoned with Product name, Product image, Quantity, Price and Line subtotal in table format.4Abandoned Product Names{{cart.product.names}}It displays only product names that were abandoned. 5Cart Checkout URL{{cart.checkout_url}}It is the URL that redirects to the checkout page.6Coupon Code{{cart.coupon_code}}It is the coupon code that can be used on the checkout page for the discount.7Customer First Name{{customer.firstname}}It displays the First name of the Customer.8Customer Last Name{{customer.lastname}}It displays the Last name of the Customer.9Customer Full Name{{customer.fullname}}It displays the Full name of the Customer.10Cart Abandonment Date{{cart.abandoned_date}}It displays the date on which the cart is abandoned.11Site URL{{site.url}}It displays the Main Site URL of the shop or company.12Unsubscribe Link{{cart.unsubscribe}}It allows customers to unsubscribe from the email of cart abanded. If a customer unsubscribes from this link then they will not receive future emails for an abandoned cart.\n\n\n\nThese shortcodes can be used in the email templates within the Cart Abandonment Recovery for WooCommerce plugin to create personalized and relevant email content for your customers.\";s:3:\"url\";s:64:\"https://cartflows.com/docs/shortcode-reference-for-email-fields/\";s:4:\"slug\";s:36:\"shortcode-reference-for-email-fields\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-08-21T21:46:18+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:180;O:8:\"stdClass\":8:{s:2:\"id\";i:31688;s:5:\"title\";s:34:\"Filters to Customize Product Table\";s:7:\"content\";s:1476:\"Cart Abandonment Recovery for WooCommerce allows customization of the email template styles using WordPress filters. This is especially helpful if you want to match the design of your product table and images to your brand.\n\n\n\nModify Product Table &amp; Image Styles\n\n\n\nYou can use the following filter to adjust the styles applied to the product table and product image inside the recovery emails:\n\n\n\n/* * The woo_ca_email_template_table_style filter allows you to change the default styles of  * Product table &amp; product image provided by Cart Abandonment Recovery for WooCommerce plugin. * */add_filter( \'woo_ca_email_template_table_style\', \'wcar_product_table_styles\', 10 ); function wcar_product_table_styles( $style ){    $style[\'product_image\'][\'style\'] = \'height: 42px; width: 42px;\';        $style[\'table\'][\'style\'] = \'color: #636363; border: 1px solid #e5e5e5; width:250px;\';        $style[\'table\'][\'attribute\'] = \'align=\"center\" \';        return $style;}\n\n\n\nInclude Cart Total with Tax and Shipping\n\n\n\nIf you\'d like the product table in the recovery email to also display the cart total including tax and shipping, you can use the filter below:\n\n\n\n// Show product table with cart total including tax and shipping costadd_filter( \'woo_ca_recovery_enable_cart_total\', \'__return_true\' );\n\n\n\nNote: These filters should be added to your child theme’s functions.php file. If you’re not sure how to add custom code, please refer to this guide on adding custom code.\";s:3:\"url\";s:62:\"https://cartflows.com/docs/filters-to-customize-product-table/\";s:4:\"slug\";s:34:\"filters-to-customize-product-table\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-08-21T21:47:58+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:181;O:8:\"stdClass\":8:{s:2:\"id\";i:31676;s:5:\"title\";s:67:\"How to Enable Webhooks in Cart Abandonment Recovery for WooCommerce\";s:7:\"content\";s:2480:\"The Cart Abandonment Recovery plugin for WooCommerce includes webhook support to help automate actions like sending coupon codes or follow-up notifications when a customer abandons the checkout process.\n\n\n\nThis allows seamless integration with automation tools like Zapier, so you can customize what happens after an abandonment event, for example, automatically emailing a unique coupon code.\n\n\n\nWhere to Find the Webhook Setting\n\n\n\nTo enable Webhooks, follow these steps:\n\n\n\n\nGo to your WordPress dashboard.\n\n\n\nNavigate to WooCommerce > Cart Abandonment.\n\n\n\nClick on the Settings tab.\n\n\n\nLocate the Webhook section and enable the Webhook Toggle.\n\n\n\n\n\n\n\n\nOnce enabled, you’ll be able to paste a webhook URL from your preferred automation platform.\n\n\n\nHow Webhooks Work\n\n\n\nA webhook acts like a listener. When a shopper abandons the checkout, the plugin triggers the webhook to perform an action — such as:\n\n\n\n\nSending an email with a coupon code.\n\n\n\nNotifying your CRM or marketing tool.\n\n\n\nLogging the event in an external system.\n\n\n\n\nYou can create and manage this logic using services like Zapier.\n\n\n\nHow to Set Up a Webhook with Zapier\n\n\n\nHere’s how to configure a webhook using Zapier:\n\n\n\nStep 1: Create a Zap\n\n\n\n\nLog in to Zapier and click My Zaps.\n\n\n\nClick Create Zap.\n\n\n\n\n\n\n\n\nStep 2: Add a Webhook Trigger\n\n\n\n\nFor the trigger app, search and select Webhooks by Zapier.\n\n\n\nChoose the Catch Raw Hook trigger and click Continue.\n\n\n\n\n\n\n\n\nStep 3: Copy the Webhook URL\n\n\n\n\nZapier will generate a webhook URL. Copy it.\n\n\n\n\n\n\n\n\nStep 4: Paste the Webhook URL in Plugin Settings\n\n\n\n\nGo back to WooCommerce &gt; Cart Abandonment &gt; Settings &gt; Webhook.\n\n\n\nPaste the Zapier webhook URL.\n\n\n\n\n\n\n\n\nStep 5: Trigger a Sample\n\n\n\n\nIn the Cart Abandonment plugin, use the Trigger Sample option.\n\n\n\n\n\n\n\n\n\nYou can review the webhook data as shown below –\n\n\n\n\n\n\n\n\nStep 6: Set the Action\n\n\n\n\nAdd an Action Step in your Zap (e.g., Send Email etc.).\n\n\n\n\n\n\n\n\n\nCustomize the action according to your workflow.\n\n\n\n\nSending Coupons via Webhook\n\n\n\nIf you’ve enabled the Auto-Generate Coupon Code feature in the plugin:\n\n\n\n\nAbandoned users will receive a personalized email with a discount.\n\n\n\nYou can choose between a fixed or percentage discount and set an expiry timer for the coupon.\n\n\n\n\nNeed More Customization?\n\n\n\nYou can create multiple Zaps with different triggers and actions depending on your needs — whether it\'s CRM integration, SMS alerts, or adding users to a mailing list.\";s:3:\"url\";s:69:\"https://cartflows.com/docs/enable-webhooks-cart-abandonment-recovery/\";s:4:\"slug\";s:41:\"enable-webhooks-cart-abandonment-recovery\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-08-21T20:50:54+05:30\";s:8:\"category\";a:1:{i:0;s:16:\"cart-abandonment\";}}i:182;O:8:\"stdClass\":8:{s:2:\"id\";i:31534;s:5:\"title\";s:39:\"Facebook Pixel Integration in CartFlows\";s:7:\"content\";s:1364:\"CartFlows supports native integration with Facebook Pixel, allowing you to track user behavior and conversions directly within your CartFlows funnels.\n\n\n\nIf you already use the PixelYourSite plugin, CartFlows automatically integrates with these plugins, no additional setup needed.\n\n\n\nHowever, if you’re not using either plugin, CartFlows provides a built-in Facebook Pixel integration that makes connecting your pixel simple.\n\n\n\nHow to Enable Facebook Pixel Integration\n\n\n\n1. Go to CartFlows &gt; Settings &gt; Integrations2. Locate the Facebook Pixel section3. Enable the toggle to activate Facebook Pixel integration\n\n\n\n\n\n\n\n4. Enter your Facebook Pixel ID in the field provided and choose which events you’d like to track5. Click Save Changes to apply your settings\n\n\n\n\n\n\n\nOnce configured, Facebook Pixel will start tracking key user interactions within your CartFlows funnels.\n\n\n\nUsing Third-Party Plugins\n\n\n\nIf you prefer using a dedicated plugin, CartFlows seamlessly integrates with the PixelYourSite plugin.\n\n\n\nYou can continue using your existing setup, CartFlows automatically detects and works with this plugin.\n\n\n\nHow to Test or Verify the Working of Facebook Pixel Support\n\n\n\nFor testing the working of Facebook Pixel on your Checkout Page with Google Chrome browser, you will need to have the following Google browser extension: Meta Pixel Helper\";s:3:\"url\";s:54:\"https://cartflows.com/docs/facebook-pixel-integration/\";s:4:\"slug\";s:26:\"facebook-pixel-integration\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-14T19:45:21+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:183;O:8:\"stdClass\":8:{s:2:\"id\";i:31238;s:5:\"title\";s:46:\"How to Display a Terms and Conditions Checkbox\";s:7:\"content\";s:676:\"If you want customers to agree to your Terms &amp; Conditions before completing their order, you can enable a checkbox on the Checkout page.\n\n\n\nCartFlows uses WooCommerce for the Checkout page, so this feature is handled through WooCommerce settings.\n\n\n\nAdd a Terms &amp; Conditions Checkbox\n\n\n\n1. Create a new page and add your Terms &amp; Conditions content to it.2. Go to WooCommerce > Settings > Advanced.3. Under the Page setup section, look for the Terms and conditions dropdown.4. Select the page you created.\n\n\n\n\n\n\n\n5. Save the changes.\n\n\n\nWooCommerce will now automatically add a checkbox to your Checkout page with a link to the selected Terms &amp; Conditions page.\";s:3:\"url\";s:70:\"https://cartflows.com/docs/how-to-a-display-terms-conditions-checkbox/\";s:4:\"slug\";s:42:\"how-to-a-display-terms-conditions-checkbox\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-03T14:40:46+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:184;O:8:\"stdClass\":8:{s:2:\"id\";i:31178;s:5:\"title\";s:44:\"How To Enable ActiveCampaign With CartFlows?\";s:7:\"content\";s:568:\"Using CartFlows with WooCommerce enables you to integrate your marketing automation tools. If you\'re using ActiveCampaign, depending on which plan you purchase, you\'ll be able to integrate WooCommerce with it.\n\n\n\nIf your ActiveCampaign Plan is either Plus, Professional, or Enterprise, integration with WooCommerce is supported.\n\n\n\nHere is the link on how to setup WooCommerce Integration with ActiveCampaign.\n\n\n\nIf your ActiveCampaign Plan is not supported, you might want to try the following alternative marketing automation tools.\n\n\n\nZapier for WooCommerceWPFusion\";s:3:\"url\";s:71:\"https://cartflows.com/docs/how-to-enable-activecampaign-with-cartflows/\";s:4:\"slug\";s:43:\"how-to-enable-activecampaign-with-cartflows\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2024-11-12T15:17:37+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:185;O:8:\"stdClass\":8:{s:2:\"id\";i:31086;s:5:\"title\";s:33:\"How To Add Order Bump To A Funnel\";s:7:\"content\";s:2409:\"An Order Bump allows you to offer an additional product directly on the checkout page. This is a simple yet powerful way to increase your average order value. Customers can add the extra product with a single click while completing their purchase.\n\n\n\nHow to Add an Order Bump\n\n\n\nStep 1: Edit Your Funnel\n\n\n\nFrom your WordPress dashboard, navigate to CartFlows &gt; Funnels and edit the Funnel where you want to add the Order Bump.\n\n\n\n\n\n\n\nStep 2: Open the Checkout Step\n\n\n\nLocate your Checkout step and click on the Settings icon (cog icon).\n\n\n\n\n\n\n\nStep 3: Add an Order Bump\n\n\n\nGo to the Order Bump section on the sidebar.\n\n\n\nType the name of your Order Bump and click Add.\n\n\n\n\n\n\n\nOnce added, click on the Settings icon (cog icon) of the newly created Order Bump to configure it.\n\n\n\nOrder Bump Settings Overview\n\n\n\nThe Order Bump settings are divided into four tabs:\n\n\n\n\nProduct\n\n\n\nContent\n\n\n\nStyles\n\n\n\nConditions\n\n\n\n\nBelow is a detailed explanation of each section.\n\n\n\n1. Product Tab\n\n\n\nHere, you can select the product you want to offer as an Order Bump.\n\n\n\nProduct – Type the name of the product you want to add and select it from the search results.\n\n\n\n\n\n\n\n2. Content Tab\n\n\n\nThis section allows you to control the text and basic display options of the Order Bump.\n\n\n\n\nCheckbox Label – Customize the checkbox text customers click to add the offer.\n\n\n\nHighlight Text – Add a compelling headline to grab attention.\n\n\n\nDescription – Provide additional details about the product.\n\n\n\nEnable Image Options – Enable or disable the product image display.\n\n\n\n\n\n\n\n\n3. Styles Tab\n\n\n\nCustomize the appearance of your Order Bump to match your brand.\n\n\n\nLayout\n\n\n\n\nOrder Bump Skin – Choose the design style for the Order Bump.\n\n\n\nWidth – Adjust the width of the Order Bump section.\n\n\n\nPosition – Control where the Order Bump appears on the checkout page.\n\n\n\n\nColors\n\n\n\n\nAdjust available color settings to match your design preferences.\n\n\n\n\nBorders\n\n\n\n\nCustomize border styles and appearance.\n\n\n\n\nShadows\n\n\n\n\nAdd or modify shadow effects for better visual emphasis.\n\n\n\n\n\n\n\n\n4. Conditions Tab\n\n\n\n\nEnable Conditional Order Bump – Display the Order Bump only when specific conditions are met.\n\n\n\n\n\n\n\n\nOnce configured, don\'t forget to enable the Order Bump and save the settings to apply the changes. Your Order Bump will now appear on the checkout page, helping you increase conversions and overall revenue.\";s:3:\"url\";s:78:\"https://cartflows.com/docs/how-to-add-order-bumps-to-woocommerce-sales-funnel/\";s:4:\"slug\";s:50:\"how-to-add-order-bumps-to-woocommerce-sales-funnel\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-08T17:40:00+05:30\";s:8:\"category\";a:1:{i:0;s:10:\"order-bump\";}}i:186;O:8:\"stdClass\":8:{s:2:\"id\";i:31077;s:5:\"title\";s:41:\"How to Import and Export Funnels and Step\";s:7:\"content\";s:1576:\"CartFlows lets you export and import your funnels, making it easy to reuse them across different websites. You can also export and import the design templates for individual funnel steps using your preferred page builder.\n\n\n\nExport a Funnel\n\n\n\n\nGo to CartFlows &gt; Funnels.\n\n\n\nTick the checkbox next to the funnel title then click the Export button that is visible after you tick the checkbox or click the three dots of the funnel and click the Export button.\n\n\n\n\n\n\n\n\nFunnel can also be exported from inside the funnel.\n\n\n\nGo to the funnel you would like to export and click the Export button at the top.\n\n\n\n\n\n\n\nThis will download a .json file to your local computer.\n\n\n\nNote: If you’re exporting from a local site, import may not work on a live website. Funnel exports are supported only between live sites.\n\n\n\nImport a Funnel\n\n\n\n1. Click the Import button at the top of the Funnels page.\n\n\n\n\n\n\n\n2. Upload the .json file that contains your exported funnel.\n\n\n\n3. Click Import Funnel button.\n\n\n\n\n\n\n\nOnce complete the imported funnel will show up in your Funnels list.\n\n\n\nImport or Export Step\n\n\n\nIf you want to move the design of an individual funnel step, you can do so using your page builder’s template import or export options.\n\n\n\n\nGo to the funnel step you want to modify.\n\n\n\nClick Edit Funnel to open the page in your page builder\n\n\n\nUse the builder’s import/export tool to upload or download the template.\n\n\n\n\nEach page builder handles templates differently. Use the following guides to learn more:\n\n\n\n\nElementor&nbsp;\n\n\n\nBeaver Builder\n\n\n\nBricks Builder\n\n\n\nDivi\";s:3:\"url\";s:70:\"https://cartflows.com/docs/import-export-flows-page-builder-templates/\";s:4:\"slug\";s:42:\"import-export-flows-page-builder-templates\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-26T22:38:12+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:187;O:8:\"stdClass\":8:{s:2:\"id\";i:31205;s:5:\"title\";s:30:\"How Coupons Work in CartFlows?\";s:7:\"content\";s:3705:\"Coupons are a powerful way to offer discounts to your customers and encourage more purchases. When a coupon code is applied on the checkout page—either manually by the customer or automatically—the discount amount (fixed or percentage) is deducted from the order subtotal.\n\n\n\nUsing coupons strategically can help boost conversions, increase average order value, and drive more sales through your checkout flow.\n\n\n\nEnable Coupon Usage in WooCommerce\n\n\n\n1: Before creating coupons, make sure coupon functionality is enabled in WooCommerce.\n\n\n\n2: From your WordPress dashboard, navigate to WooCommerce &gt; Settings.\n\n\n\n\n\n\n\n3: Under the General tab, locate the General options section.\n\n\n\n4: Check the Enable the use of coupon codes option.\n\n\n\n\n\n\n\n5: Save your changes.\n\n\n\nCreating Coupons\n\n\n\nYou can create and manage coupons directly from WooCommerce.\n\n\n\n1: Go to WooCommerce &gt; Coupons.\n\n\n\n2: Click Add Coupon.\n\n\n\n\n\n\n\n3: Enter a coupon code manually or use the Generate coupon code button.\n\n\n\n4: (Optional) Add a description to help you identify the purpose of the coupon later.\n\n\n\n\n\n\n\nOnce created, configure the coupon settings from the Coupon Data panel.\n\n\n\nCoupon Data Settings\n\n\n\nGeneral\n\n\n\n\nDiscount type – Choose between percentage discount, fixed cart discount, or fixed product discount.\n\n\n\nCoupon amount – Specify the discount value or percentage.\n\n\n\nAllow free shipping – Enable this option if the coupon should remove shipping charges.\n\n\n\nCoupon expiry date – Set an expiration date for the coupon.\n\n\n\n\nUsage Restrictions\n\n\n\n\nMinimum spend – Minimum order subtotal required to apply the coupon.\n\n\n\nMaximum spend – Maximum order subtotal allowed to use the coupon.\n\n\n\nIndividual use only – Prevents the coupon from being combined with other coupons.\n\n\n\nExclude sale items – Prevents the coupon from applying to discounted products.\n\n\n\nProducts – Select specific products where the coupon is valid.\n\n\n\nExclude products – Select products where the coupon should not apply.\n\n\n\nProduct categories – Limit the coupon to specific categories.\n\n\n\nExclude categories – Exclude certain categories from using the coupon.\n\n\n\nAllowed emails – Restrict coupon usage to specific email addresses.\n\n\n\n\n\n\n\n\nUsage Limits\n\n\n\n\nUsage limit per coupon – Total number of times the coupon can be used.\n\n\n\nUsage limit per user – Number of times a single customer can use the coupon.\n\n\n\n\n\n\n\n\nAfter completing the setup, click Publish to make the coupon active.\n\n\n\nApplying Coupons on a CartFlows Checkout Page\n\n\n\nCoupons can be applied on a CartFlows checkout page in two ways:\n\n\n\n\nManually by the customer\n\n\n\nAutomatically by pre-applying the coupon\n\n\n\n\nTo edit your checkout step:\n\n\n\n\nGo to CartFlows &gt; Funnels from your WordPress dashboard.\n\n\n\nOpen the desired Funnel.\n\n\n\nClick Settings on the Checkout step.\n\n\n\n\n\n\n\n\nManual Coupon Application\n\n\n\nTo allow customers to enter a coupon code themselves:\n\n\n\n\nOpen the Checkout Settings.\n\n\n\nOpen the Checkout Form > Form Settings.\n\n\n\nToggle the Enable Coupon Field option.\n\n\n\nClick Save Settings.\n\n\n\n\n\n\n\n\nThis displays a coupon input field on the checkout page, allowing customers to apply a coupon manually.\n\n\n\n\n\n\n\nAutomatic Coupon Application\n\n\n\nYou can automatically apply a coupon so customers don’t need to enter a code.\n\n\n\n\n In the checkout settings, open the Products and click on Auto Apply Coupon tab.\n\n\n\nType and choose a coupon from the Auto Apply Coupon dropdown.\n\n\n\nClick Save Settings.\n\n\n\n\n\n\n\n\n(Optional) To prevent customers from applying additional coupons, disable the Coupon Field option in the Checkout Form tab.\n\n\n\nWhen enabled, the discount is applied automatically, and customers cannot add another coupon code.\";s:3:\"url\";s:44:\"https://cartflows.com/docs/how-coupons-work/\";s:4:\"slug\";s:16:\"how-coupons-work\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-14T19:40:11+05:30\";s:8:\"category\";a:1:{i:0;s:8:\"features\";}}i:188;O:8:\"stdClass\":8:{s:2:\"id\";i:31070;s:5:\"title\";s:19:\"Flatsome UX Builder\";s:7:\"content\";s:1249:\"To use the Flatsome UX Builder on CartFlows steps, you\'ll need to add a small piece of code to your child theme’s functions.php file. This will allow the builder to be available when editing CartFlows steps.\n\n\n\nStep 1: Add Code to Your Child Theme’s functions.php\n\n\n\n\nOpen your child theme’s functions.php file.\n\n\n\nAdd the following code:\n\n\n\n\n// Do not include this if already open!\n/**\n * Code goes in theme functions.php\n */\nadd_action( \'init\', function () {\n	if( function_exists( \'add_ux_builder_post_type\' ) ) {\n		add_ux_builder_post_type( \'cartflows_step\' );\n	}\n} );\n\n\n\nThis code will enable the Flatsome UX Builder for CartFlows steps so you can use it for editing your checkout and other funnel pages.\n\n\n\nStep 2: Alternatively, Use the Code Snippets Plugin\n\n\n\nIf you’re not comfortable editing theme files, you can use the free Code Snippets plugin to add this custom function. The plugin allows you to safely add custom PHP code without directly modifying your theme files.\n\n\n\nFor more details on adding custom functions to your website, you can follow this tutorial.\n\n\n\n\nhttps://www.youtube.com/watch?v=c56d84Eek5M\n\n\n\n\nThis will make the Flatsome UX Builder available for editing CartFlows steps, giving you more design flexibility.\";s:3:\"url\";s:47:\"https://cartflows.com/docs/flatsome-ux-builder/\";s:4:\"slug\";s:19:\"flatsome-ux-builder\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-07-02T14:59:29+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:189;O:8:\"stdClass\":8:{s:2:\"id\";i:30659;s:5:\"title\";s:19:\"Funnel in Test Mode\";s:7:\"content\";s:1281:\"CartFlows includes a Test Mode option that allows you to preview your funnel steps—like the Checkout and Thank You pages—without needing to place real orders. This is especially useful when you\'re designing or reviewing the funnel.\n\n\n\nNote: Test Mode does not control sandbox settings for payment gateways. To test payments, you’ll need to enable sandbox/test mode from the payment gateway settings separately.\n\n\n\nHow to Enable or Disable Test Mode\n\n\n\nStep 1: Navigate to CartFlows &gt; Funnels\n\n\n\nFrom your WordPress dashboard, go to CartFlows > Funnels. Select the desired funnel and click Edit.\n\n\n\n\n\n\n\nStep 2: Toggle Test Mode\n\n\n\nAt the top right of the funnel editor, you will find a mode selector. Click on it and choose between Sandbox Mode\n\n\n\n\n\n\n\nWhen Test Mode is active:\n\n\n\n\nYou can preview all funnel steps without assigning real products.\n\n\n\nCartFlows automatically assigns a random WooCommerce product to simulate the checkout process.\n\n\n\nYou can share preview links with your team for collaboration or design review.\n\n\n\nA notification banner will appear at the bottom of the page indicating that Test Mode is active.\n\n\n\n\n\n\n\n\nOnce you\'re done designing or testing, simply disable the toggle and click Update to make the funnel live.\n\n\n\nFrequently Asked Questions\";s:3:\"url\";s:45:\"https://cartflows.com/docs/flow-in-test-mode/\";s:4:\"slug\";s:17:\"flow-in-test-mode\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-04T22:35:48+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"troubleshooting\";}}i:190;O:8:\"stdClass\":8:{s:2:\"id\";i:30612;s:5:\"title\";s:26:\"Creating Variable Products\";s:7:\"content\";s:2049:\"If you sell products that come in different sizes, colors, or styles — like a t-shirt in multiple sizes and colors — you don’t need to create separate products for each variation. Instead, you can use Variable Products in WooCommerce to handle this more efficiently.\n\n\n\nCartFlows fully supports variable products and lets you display product options directly on the checkout page.\n\n\n\nExample Use Case\n\n\n\nLet’s say you sell a panda-themed t-shirt. This shirt is available in three sizes (S, M, L) and four colors. Instead of creating 12 different products, you can create one product with two attributes: Size and Color, and define variations for each combination.\n\n\n\nHow to Set Up Variable Products in CartFlows\n\n\n\nStep 1: Create a Variable Product in WooCommerce\n\n\n\nIn your WordPress dashboard, create a new product or edit an existing one. Set the Product Data to \"Variable Product\", add attributes (like Size or Color), and create your variations.\n\n\n\nIf you\'re new to WooCommerce variations, here\'s a helpful video tutorial that starts directly at the section on setting up variable products.\n\n\n\n\nhttps://youtu.be/CWSb-aWovqE?t=3142\n\n\n\n\nStep 2: Assign the Product to Your Checkout Step\n\n\n\n\nNavigate to CartFlows &gt; Funnels and edit your funnel.\n\n\n\nOpen the Checkout step and go to the Checkout Setting (cog igon).\n\n\n\nGo to the Product Options section on the sidebar.\n\n\n\nEnable the Product Options as well as the Variations.\n\n\n\n\n\n\n\n\nOnce enabled, your product variations will automatically display on the checkout page.\n\n\n\nStep 3: Choose a Layout for Product Options\n\n\n\nCartFlows offers three display layouts for variable product options:\n\n\n\nCard Layout – A modern visual layout using cards for each option.\n\n\n\n\n\n\n\nClassic Layout – A more traditional list-style layout.\n\n\n\n\n\n\n\nCard Inline Layout – Offering a more modern and streamlined look.\n\n\n\n\n\n\n\nNote: If you’re using a page builder (such as Elementor or Gutenberg), you can directly customize the design of the variation selector using CartFlows’ widget or block settings.\";s:3:\"url\";s:54:\"https://cartflows.com/docs/creating-variable-products/\";s:4:\"slug\";s:26:\"creating-variable-products\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-06T13:15:28+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:191;O:8:\"stdClass\":8:{s:2:\"id\";i:30539;s:5:\"title\";s:27:\"CartFlows Funnel Step Types\";s:7:\"content\";s:1584:\"A funnel consists of multiple steps that guide users through the buying journey. CartFlows offers several step types, each serving a specific purpose.\n\n\n\nAvailable Step Types\n\n\n\nLanding Page Step\n\n\n\nThe Landing Page step is used to create lead generation or sales pages. You can have multiple landing pages in a single funnel.\n\n\n\nCheckout Step\n\n\n\nThe Checkout step is where buyers complete their orders. It includes options to:\n\n\n\n\nLink to a product.\n\n\n\nAdd an upsell (Pro feature).\n\n\n\nAdjust checkout fields (Pro feature).\n\n\n\nStyle the Checkout form.\n\n\n\n\nA funnel can have only one Checkout step.\n\n\n\nUpsell Step (Pro Feature)\n\n\n\nThe Upsell step appears after the Checkout step. This is where you can offer an additional product after the initial purchase.\n\n\n\nA funnel can have multiple Upsell steps.\n\n\n\nDownsell Step (Pro Feature)\n\n\n\nThe Downsell step appears after an Upsell step. If a buyer declines the upsell offer, they are directed to the Downsell step, where you can present a lower-cost or alternative offer.\n\n\n\nA funnel can have multiple Downsell steps.\n\n\n\nThank You Step\n\n\n\nThe Thank You step is the final step in a funnel. It is used to:\n\n\n\n\nDisplay order details (if a Checkout step is included).\n\n\n\nProvide next steps or instructions to buyers.\n\n\n\n\nOpt-in Step (Free/Pro)\n\n\n\nThe Opt-in step is used to collect leads and provide free products. It is placed between the Landing Page and the Checkout step.\n\n\n\n\nRequires free Simple Virtual/Downloadable products.\n\n\n\nUsers enter their details to gain access to the product.\n\n\n\nAdditional custom fields require CartFlows Pro.\";s:3:\"url\";s:48:\"https://cartflows.com/docs/cartflows-step-types/\";s:4:\"slug\";s:20:\"cartflows-step-types\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-03-04T16:01:23+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"getting-started\";}}i:192;O:8:\"stdClass\":8:{s:2:\"id\";i:30397;s:5:\"title\";s:35:\"How to Use LearnDash with CartFlows\";s:7:\"content\";s:1957:\"his documentation explains how to use LearnDash with CartFlows to sell online courses through WooCommerce.\n\n\n\nLearnDash is a course builder plugin for WordPress that allows you to create and manage online courses. These courses can be sold using WooCommerce products.\n\n\n\nSince CartFlows works with WooCommerce products, you can use it to create optimized checkout pages and funnels for selling your courses.&nbsp;\n\n\n\nVideo Overview\n\n\n\nThe video below demonstrates how to integrate LearnDash with WooCommerce and use CartFlows to sell your course.\n\n\n\n\nhttps://www.youtube.com/watch?v=thb2tyMFCEA\n\n\n\n\nSelling LearnDash Courses with CartFlows\n\n\n\nOnce LearnDash is integrated with WooCommerce, you can sell your course using CartFlows by following the steps below.\n\n\n\n1. Create a Course Product in WooCommerce\n\n\n\nFirst, create your course in LearnDash.\n\n\n\nNext, create a WooCommerce product that will be used to sell the course.\n\n\n\nNavigate to: Products &gt; Add New\n\n\n\nConfigure the product details such as title, description, and price.\n\n\n\n2. Attach the Course to the Product\n\n\n\nAfter creating the WooCommerce product, attach the LearnDash course to that product.\n\n\n\nThis ensures that when a customer purchases the product, they are automatically enrolled in the corresponding course.\n\n\n\n3. Add the Product to Your Funnel\n\n\n\nOnce the product is configured in WooCommerce, you can add it to your funnel.\n\n\n\nNavigate to: CartFlows &gt; Funnels\n\n\n\nOpen your funnel and edit the step where you want to sell the course, such as the Checkout, Upsell, or Downsell step.\n\n\n\n4. Select the Course Product\n\n\n\nIn the settings of the Checkout, Upsell, or Downsell step, select the WooCommerce product that is linked to your LearnDash course.\n\n\n\n5. Save the Changes\n\n\n\nSave the changes to your funnel step.\n\n\n\nYour LearnDash course can now be sold through CartFlows, allowing you to use features such as optimized checkout pages, order bumps, and upsell or downsell offers.\";s:3:\"url\";s:37:\"https://cartflows.com/docs/learndash/\";s:4:\"slug\";s:9:\"learndash\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-03-13T17:57:10+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:193;O:8:\"stdClass\":8:{s:2:\"id\";i:30371;s:5:\"title\";s:43:\"How to Exclude CartFlows Pages from Caching\";s:7:\"content\";s:1420:\"To ensure CartFlows works correctly, it’s important to exclude specific funnel steps from being cached. Caching may interfere with CartFlows functionality, especially on Checkout, Upsell, Downsell, and Thank You pages.\n\n\n\nHow to Exclude Funnel Steps from Caching\n\n\n\nEach caching plugin offers its own method for excluding URLs. Below are links to official documentation for popular caching plugins:\n\n\n\n\nWP Rocket: Exclude pages from the cache and optimizations\n\n\n\nW3 Total Cache: How to Exclude Specific Pages from W3 Total Cache\n\n\n\nWP Fastest Cache: Exclude Page\n\n\n\nWP-Optimize: How do I enable/use page cache\n\n\n\nSwift Performance: Cache Exceptions\n\n\n\nComet Cache: Exclude the Home Page (and others) from being cached\n\n\n\n\nIf you are using a caching plugin that is not listed here, please refer to its documentation or contact the plugin developer to learn how to exclude specific URLs from caching.\n\n\n\nExcluding Pages in the Breeze Plugin\n\n\n\nIf you’re using the Breeze caching plugin, the video below shows how to exclude CartFlows funnel steps from being cached:\n\n\n\n\nhttps://www.youtube.com/watch?v=v72mdEY-HIQ\n\n\n\n\nServer-Level Caching by Web Hosts\n\n\n\nSome hosting providers apply caching at the server level, which cannot be controlled by plugins. If you’re using a host that applies caching automatically, contact their support team and ask them to exclude your CartFlows funnel steps from server-side caching.\";s:3:\"url\";s:43:\"https://cartflows.com/docs/disable-caching/\";s:4:\"slug\";s:15:\"disable-caching\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-05T12:25:01+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:194;O:8:\"stdClass\":8:{s:2:\"id\";i:30365;s:5:\"title\";s:38:\"How To Connect Stripe Payment Gateway?\";s:7:\"content\";s:1195:\"CartFlows offers built-in compatibility with the official WooCommerce Stripe Payment Gateway plugin, making it easy to accept online payments through Stripe. This integration also supports advanced features like order bumps, upsells, and downsells.\n\n\n\nFollow the steps below to install and configure Stripe on your website:\n\n\n\n&#x25b6;&#xfe0f; Watch: Stripe Integration Overview\n\n\n\nBefore getting started with the setup steps, we recommend watching the video below for a quick overview of the process:\n\n\n\n\nhttps://www.youtube.com/watch?v=5rMDGdkmSGU\n\n\n\n\nStep-by-Step Setup\n\n\n\nStep 1: Install the Stripe Payment Plugin\n\n\n\n\nFrom your WordPress dashboard, go to Plugins > Add New.\n\n\n\nSearch for WooCommerce Stripe Payment Gateway.\n\n\n\nLocate the plugin by WooCommerce, then click Install and Activate.\n\n\n\n\nStep 2: Configure Stripe Settings\n\n\n\n\nGo to WooCommerce > Settings > Payments.\n\n\n\nClick Manage next to Stripe.\n\n\n\nChoose your environment (Live or Test/Sandbox).\n\n\n\nEnter your Stripe API credentials and click Save Changes.\n\n\n\n\n&#x1f4cc; You can download the plugin for free from the WordPress.org repository.\n\n\n\nLooking for more details? Check out the full Stripe setup guide from WooCommerce.\";s:3:\"url\";s:65:\"https://cartflows.com/docs/how-to-connect-stripe-payment-gateway/\";s:4:\"slug\";s:37:\"how-to-connect-stripe-payment-gateway\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-13T22:44:13+05:30\";s:8:\"category\";a:1:{i:0;s:12:\"integrations\";}}i:195;O:8:\"stdClass\":8:{s:2:\"id\";i:30331;s:5:\"title\";s:15:\"GDPR Compliance\";s:7:\"content\";s:1831:\"CartFlows includes features that help store owners collect and manage data in ways that align with GDPR principles. This documentation outlines the three main areas where CartFlows interacts with customer data.\n\n\n\n1. Checkout Forms\n\n\n\nCartFlows uses WooCommerce checkout forms and stores the entered data in the browser’s local storage. This ensures that if a user accidentally refreshes the Checkout page, their input won’t be lost.\n\n\n\nAs far as we understand, this does not violate GDPR compliance. However, if you prefer to disable this feature, refer to this guide: How to Turn Off Auto-Fill on Checkout Fields\n\n\n\n2. Analytics\n\n\n\nCartFlows provides built-in analytics to help you monitor and improve your funnel performance. This feature does not track personal data of website visitors.\n\n\n\nTo power analytics, CartFlows uses a few cookies — none of which collect contact or sensitive information.\n\n\n\nAnalytics Cookies:\n\n\n\n\nwcf-visited-flow- – Tracks which funnel is currently being viewed\n\n\n\nwcf-step-visited- – Tracks the current step being viewed\n\n\n\ncartflows-ab-test- – Set only when A/B split testing is enabled\n\n\n\n\nAdditional Cookies:\n\n\n\n\ncartflows_session_ – Sets a unique session ID per user to support a smoother checkout\n\n\n\nwcf_active_checkout – Tracks which Checkout page is currently active, along with cart data\n\n\n\n\nThese cookies are designed to support funnel functionality and do not contain personal data.\n\n\n\nDisclaimer\n\n\n\nCartFlows is not a legal advisor. For full GDPR compliance, we recommend consulting with your legal counsel regarding how you use these features.\n\n\n\nFor more on WooCommerce and GDPR, refer to: https://woocommerce.com/posts/gdpr-compliance-woocommerce/ \n\n\n\nFor cookie use in our Cart Abandonment plugin, refer to this article: Cart Abandonment Cookies &amp; GDPR Compliance\";s:3:\"url\";s:43:\"https://cartflows.com/docs/gdpr-compliance/\";s:4:\"slug\";s:15:\"gdpr-compliance\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-02T17:45:44+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:196;O:8:\"stdClass\":8:{s:2:\"id\";i:30328;s:5:\"title\";s:36:\"How to Set a Funnel as Your Homepage\";s:7:\"content\";s:458:\"If you’re building a website exclusively for a funnel, you may want to set the landing page step of your CartFlows funnel as the homepage.\n\n\n\nHere’s how to do it:\n\n\n\n\nGo to Settings > Reading in your WordPress dashboard.\n\n\n\nUnder Your homepage displays, select A static page.\n\n\n\nFrom the Homepage dropdown, choose your CartFlows landing page step.\n\n\n\nClick Save Changes.\n\n\n\n\n\n\n\n\nYou’ll now see the selected landing page as the homepage of your website.\";s:3:\"url\";s:48:\"https://cartflows.com/docs/set-flow-as-homepage/\";s:4:\"slug\";s:20:\"set-flow-as-homepage\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-02T17:53:13+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:197;O:8:\"stdClass\":8:{s:2:\"id\";i:30183;s:5:\"title\";s:32:\"How To Add An Affiliate Program?\";s:7:\"content\";s:684:\"If you\'re planning to launch an affiliate program for your store or funnel, you\'re in luck, any affiliate plugin that integrates with WooCommerce will also work seamlessly with CartFlows.\n\n\n\nWe recommend using AffiliateWP for a robust and feature-rich setup. You can explore their offering at affiliatewp.com.\n\n\n\nLooking for a free solution? You can consider the Affiliates Manager plugin available on the WordPress repository: wordpress.org/plugins/affiliates-manager\n\n\n\nOnce installed and configured, these plugins will track referrals, manage commissions, and help you grow your sales through affiliate marketing, all while working smoothly alongside your CartFlows-powered funnel.\";s:3:\"url\";s:59:\"https://cartflows.com/docs/how-to-add-an-affiliate-program/\";s:4:\"slug\";s:31:\"how-to-add-an-affiliate-program\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-06-20T23:44:13+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:198;O:8:\"stdClass\":8:{s:2:\"id\";i:30165;s:5:\"title\";s:20:\"Using Pricing Tables\";s:7:\"content\";s:1611:\"CartFlows works seamlessly with any pricing table you wish to use, making it easy to direct customers to different funnels based on their selected pricing option.\n\n\n\nBy linking each pricing table option to its own unique funnel, you can customize the entire purchase journey, from checkout to upsells and thank you pages, based on the pricing plan selected.\n\n\n\nHow to Set Up Funnels for Pricing Tables\n\n\n\nStep 1: Create a Pricing Page\n\n\n\nStart by creating a standard WordPress page where you will add your pricing table. You can use any page builder to design this.\n\n\n\n\n\n\n\nStep 2: Build the First Funnel\n\n\n\nCreate a new funnel in CartFlows for your first pricing option. Set the first step as the Checkout page and add any additional steps you’d like, such as Order Bumps, Upsells, Downsells, and the Thank You page.\n\n\n\nStep 3: Assign the Product\n\n\n\nIn the checkout step, assign the product that corresponds to this specific pricing plan.\n\n\n\nStep 4: Clone the Funnel\n\n\n\nUse the Duplicate feature to duplicate the funnel for each additional pricing option. This saves time and ensures a consistent structure across all plans.\n\n\n\n\n\n\n\nStep 5: Update the Product\n\n\n\nIn each cloned funnel, update the checkout step with the product linked to the respective pricing plan.\n\n\n\nStep 6: Link Buttons to Funnels\n\n\n\nCopy the checkout step URL from each funnel and link it to the corresponding button in your pricing table.\n\n\n\n\n\n\n\nWith this setup, customers clicking on a pricing option will be directed to the tailored checkout experience for that plan, helping you deliver a more personalized and high-converting funnel.\";s:3:\"url\";s:48:\"https://cartflows.com/docs/using-pricing-tables/\";s:4:\"slug\";s:20:\"using-pricing-tables\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-19T22:15:07+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:199;O:8:\"stdClass\":8:{s:2:\"id\";i:30161;s:5:\"title\";s:42:\"How to Hide WooCommerce Pages and Products\";s:7:\"content\";s:887:\"If you want to sell products exclusively through CartFlows funnels, you may not want those products or the default WooCommerce shop page to be publicly visible on your site.\n\n\n\nThis documentation shows you how to hide individual product pages and the WooCommerce shop page.\n\n\n\nHiding Individual Product Pages\n\n\n\nTo hide a specific product page:\n\n\n\n\nEdit the product in your WordPress dashboard.\n\n\n\nUnder the Publish section, click the Edit link next to Catalog visibility.\n\n\n\nSelect Hidden from the available options.\n\n\n\nClick OK, then click Update to save your changes.\n\n\n\n\n\n\n\n\nHiding the WooCommerce Shop Page\n\n\n\nTo remove the default WooCommerce shop page:\n\n\n\n\nGo to WooCommerce > Settings > Products tab.\n\n\n\nIn the Shop page dropdown, click the small X icon to unassign the page and leave the dropdown blank.\n\n\n\n\n\n\n\n\nFor more details, refer to the official WooCommerce documentation.\";s:3:\"url\";s:66:\"https://cartflows.com/docs/how-to-hide-woocommerce-pages-products/\";s:4:\"slug\";s:38:\"how-to-hide-woocommerce-pages-products\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-05-29T20:09:10+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:200;O:8:\"stdClass\":8:{s:2:\"id\";i:30158;s:5:\"title\";s:44:\"Recommended Permalink Settings for CartFlows\";s:7:\"content\";s:503:\"CartFlows works best when WordPress permalinks are set to use a compatible structure.\n\n\n\nFollow the steps below to configure the correct permalink setting.\n\n\n\nSet the Permalink Structure\n\n\n\n\nGo to Settings > Permalinks in your WordPress dashboard.\n\n\n\nUnder Permalink structure, select Post name.\n\n\n\nClick Save Changes.\n\n\n\n\n\n\n\n\nNote: If your permalink settings are not set to Post name, you may see URLs like yourdomain.com/cartflows_step/checkout-page/. Using the recommended structure helps avoid this.\";s:3:\"url\";s:52:\"https://cartflows.com/docs/best-permalinks-settings/\";s:4:\"slug\";s:24:\"best-permalinks-settings\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-05-22T21:31:19+05:30\";s:8:\"category\";a:1:{i:0;s:18:\"permalink-settings\";}}i:201;O:8:\"stdClass\":8:{s:2:\"id\";i:30149;s:5:\"title\";s:54:\"How To Use Your Themes Header &#038; Footer In A Step?\";s:7:\"content\";s:1442:\"By default, CartFlows steps use CartFlows-specific page templates designed to offer more control over the layout. However, if you\'d like to display your theme’s header and footer on a step, you can switch to your theme’s default template.\n\n\n\nThis documentation explains how to use your theme’s header and footer in a CartFlows step.\n\n\n\nAvailable Page Templates in CartFlows\n\n\n\nCartFlows includes two page templates:\n\n\n\n\nCartFlows - Boxed – Displays the page in a boxed layout.\n\n\n\nTemplate for Page Builder – Displays the page in a full-width layout, allowing flexibility when using a page builder.\n\n\n\n\nWhen you create a new step, CartFlows will automatically assign the CartFlows template. You can change it at any time.\n\n\n\nHow to Use Your Theme’s Header and Footer\n\n\n\nTo switch from the CartFlows template to your theme’s template:\n\n\n\n\nEdit the step by clicking the Edit Step button.\n\n\n\nIn the Page Attributes section (on the right sidebar), look for the Template dropdown.\n\n\n\nSelect Default Template (or your theme’s template, if labeled differently).\n\n\n\nClick Update / Save to save your changes.\n\n\n\n\n\n\n\n\nUsing Page Builders\n\n\n\nThe instructions above are based on the Block Editor (Gutenberg).If you\'re using a different page builder (like Elementor, Beaver Builder, etc.), the method to select a page template may vary. Please refer to your page builder’s documentation for the correct steps.\n\n\n\nFrequently Asked Question\";s:3:\"url\";s:74:\"https://cartflows.com/docs/how-to-use-your-themes-header-footer-in-a-step/\";s:4:\"slug\";s:46:\"how-to-use-your-themes-header-footer-in-a-step\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-03-24T20:45:53+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:202;O:8:\"stdClass\":8:{s:2:\"id\";i:30065;s:5:\"title\";s:30:\"Getting Started with CartFlows\";s:7:\"content\";s:272:\"This video offers an introduction to CartFlows and its core features. It\'s a helpful starting point if you\'re new to the plugin or want a quick overview of how it works.\n\n\n\nWatch the video below to learn more about the basics of CartFlows.\n\n\n\n\nhttps://youtu.be/tCm60PWOd0M\";s:3:\"url\";s:53:\"https://cartflows.com/docs/general-settings-overview/\";s:4:\"slug\";s:25:\"general-settings-overview\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-03-24T19:39:17+05:30\";s:8:\"category\";a:1:{i:0;s:15:\"getting-started\";}}i:203;O:8:\"stdClass\":8:{s:2:\"id\";i:29970;s:5:\"title\";s:27:\"How to Install WooCommerce?\";s:7:\"content\";s:553:\"CartFlows requires the WooCommerce plugin to work. If WooCommerce is not installed, CartFlows will prompt you to install it during the setup.\n\n\n\nThe installation process is exactly the same as installing the CartFlows Free plugin. You can refer to this documentation as guidance: How to Install CartFlows Free\n\n\n\nThe only difference is in Step 3, where you’ll need to search for “WooCommerce” instead of “CartFlows” in the search bar.\n\n\n\nFor additional information about WooCommerce, you can refer to this documentation: How to Use WooCommerce\";s:3:\"url\";s:54:\"https://cartflows.com/docs/how-to-install-woocommerce/\";s:4:\"slug\";s:26:\"how-to-install-woocommerce\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-03-14T21:08:50+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:204;O:8:\"stdClass\":8:{s:2:\"id\";i:29967;s:5:\"title\";s:23:\"How to Use WooCommerce?\";s:7:\"content\";s:451:\"CartFlows requires the WooCommerce plugin to work. WooCommerce is one of the most widely used eCommerce platforms, powering millions of websites globally.\n\n\n\nIf you’re new to WooCommerce or want to explore its features further, you can refer to the official documentation here: https://docs.woocommerce.com\n\n\n\nIf you prefer a visual walkthrough, you can also watch the video below that shows how to install and configure WooCommerce on your website.\";s:3:\"url\";s:50:\"https://cartflows.com/docs/how-to-use-woocommerce/\";s:4:\"slug\";s:22:\"how-to-use-woocommerce\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2025-03-19T22:41:46+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:205;O:8:\"stdClass\":8:{s:2:\"id\";i:29922;s:5:\"title\";s:39:\"How to Hide Fields on the Checkout Page\";s:7:\"content\";s:1037:\"CartFlows allows you to customize the checkout form by hiding fields you don’t want to display. You can easily manage this through the Checkout Form settings within the Checkout step.\n\n\n\nThis documentation will show you how to hide unwanted fields from the CartFlows Checkout page.\n\n\n\nSteps to Hide Checkout Fields\n\n\n\nStep 1: Edit Your Funnel\n\n\n\n1. From your WordPress dashboard, go to CartFlows > Funnels.2. Locate and edit the funnel you want to modify.\n\n\n\n\n\n\n\n3. Click on the Checkout Settings (cog icon) to access its settings.\n\n\n\n\n\n\n\nStep 2: Enable the Custom Field Editor\n\n\n\n\nGo to the Checkout Form tab.\n\n\n\nIf the Enable Custom Field Editor option is disabled, switch it on.\n\n\n\n\n\n\n\n\nStep 3: Hide Checkout Fields\n\n\n\n\nOnce the custom field editor is enabled, you’ll see a list of all fields.\n\n\n\nUse the toggle switch next to each field you want to hide.\n\n\n\nAfter making your changes, click the Save Settings button to apply them.\n\n\n\n\n\n\n\n\nYou’ve now successfully hidden the fields you don’t want to show on the checkout page.\";s:3:\"url\";s:55:\"https://cartflows.com/docs/how-to-hide-checkout-fields/\";s:4:\"slug\";s:27:\"how-to-hide-checkout-fields\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-06T14:46:10+05:30\";s:8:\"category\";a:1:{i:0;s:7:\"general\";}}i:206;O:8:\"stdClass\":8:{s:2:\"id\";i:300;s:5:\"title\";s:47:\"Supported Payment Gateway for One Click Upsells\";s:7:\"content\";s:1600:\"CartFlows Pro allows you to offer one‑click upsells and downsells to increase the average order value of your sales funnels. For this functionality to work properly, the payment gateway used during checkout must support the required tokenization or reference transaction features.\n\n\n\nBelow is the list of payment gateways that are officially supported for CartFlows one‑click upsell and downsell offers.\n\n\n\nSupported Payment Gateways\n\n\n\nCartFlows Pro supports one‑click upsells with the following gateways:\n\n\n\n\nAuthorize.net\n\n\n\nBACS (Direct Bank Transfer)\n\n\n\nCash on Delivery (COD)\n\n\n\nMollie – Credit Card and iDEAL\n\n\n\nWooCommerce PayPal Payments\n\n\n\nStripe – Credit Card\n\n\n\nSquare\n\n\n\n\nThese gateways have built‑in compatibility with CartFlows to process additional offers without requiring the customer to re‑enter payment details.\n\n\n\nGateway Compatibility Notice\n\n\n\nOne‑click upsells require dedicated compatibility with each payment gateway. Because of this, support must be built individually for every gateway.\n\n\n\nThe CartFlows team continues to add compatibility for more gateways over time as they become available.\n\n\n\nIf you attempt to use a payment gateway that is not supported, CartFlows will display a notice on the Upsell or Downsell step in the Flow editor.\n\n\n\nThis notice indicates that the currently selected gateway does not support one‑click upsells.\n\n\n\nFrequently Asked Questions\n\n\n\n\n\n\n\n\n\nTo avoid this, you can either use the supported payment gateways or you can add custom support of your payment gateway in the CartFlows with the help of a freelance developer.\";s:3:\"url\";s:45:\"https://cartflows.com/docs/one-click-upsells/\";s:4:\"slug\";s:17:\"one-click-upsells\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-03-12T23:51:40+05:30\";s:8:\"category\";a:1:{i:0;s:17:\"one-click-upsells\";}}i:207;O:8:\"stdClass\":8:{s:2:\"id\";i:295;s:5:\"title\";s:28:\"How To Install CartFlows Pro\";s:7:\"content\";s:1435:\"When you want to install a CartFlows Premium plan (Plus, or Pro), you need to download the plugin, install it, and activate the license key.\n\n\n\nNote: The CartFlows Free plugin is required. If you haven’t installed it yet, see this document.\n\n\n\nInstalling CartFlows Pro\n\n\n\nStep 1: Go to your Account and click on Your Products\n\n\n\nIn your Account page, go to Your Products to view all your products.\n\n\n\n\n\n\n\nStep 2: Download CartFlows Pro\n\n\n\nClick Download to start the .zip download.\n\n\n\n\n\n\n\nStep 3: Login to your WordPress website\n\n\n\nWhen you log in, you will be in your Dashboard.\n\n\n\nStep 4: In the Plugins menu, click Add New Plugin\n\n\n\nNavigate to Plugins &gt; Add New Plugin from your WordPress dashboard.\n\n\n\n\n\n\n\nStep 5: Click Upload Plugin at the top of the screen\n\n\n\nThe screen will expand with the option to upload plugins.\n\n\n\n\n\n\n\nStep 6: Upload the plugin and click Install Now\n\n\n\nIn the Add Plugins screen, you can click on Choose File and upload the .zip file. Click on Install Now to install the plugin; this may take some time.\n\n\n\n\n\n\n\nStep 7: Click Activate Plugin\n\n\n\nAfter installing the plugin, click on Activate Plugin to complete the installation.\n\n\n\n\n\n\n\nCongratulations! You’ve successfully installed the CartFlows Pro plugin on your website.\n\n\n\nWhat’s next?\n\n\n\nMake sure to activate your license to receive plugin updates and access premium features. Click here to learn how to activate your CartFlows Pro license.\";s:3:\"url\";s:52:\"https://cartflows.com/docs/how-to-install-cartflows/\";s:4:\"slug\";s:24:\"how-to-install-cartflows\";s:9:\"parent_id\";N;s:13:\"last_modified\";s:25:\"2026-05-26T12:58:18+05:30\";s:8:\"category\";a:1:{i:0;s:20:\"installation-updates\";}}}}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('503','woocommerce_share_key','lL7tvX0CvugW1TG8CEPhRXgHdY8i89vR','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('514','woocommerce_cod_settings','a:6:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:16:\"Cash on delivery\";s:11:\"description\";s:28:\"Pay with cash upon delivery.\";s:12:\"instructions\";s:28:\"Pay with cash upon delivery.\";s:18:\"enable_for_methods\";a:0:{}s:18:\"enable_for_virtual\";s:3:\"yes\";}','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('532','wc_am_client_cartflows_instance','boCRLeMEAvAJ','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('533','wc_am_client_cartflows_deactivate_checkbox','on','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('534','wc_am_client_cartflows_activated','Activated','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('535','cartflows_database_tables_created','yes','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('536','cartflows-pro-version','2.0.8','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('538','wc_am_client_cartflows_api_key','a:1:{s:7:\"api_key\";s:40:\"5ba77baa935899247822dc4d07f2ca8cbc3f7f03\";}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('539','wc_am_client_cartflows','a:1:{s:30:\"wc_am_client_cartflows_api_key\";s:40:\"5ba77baa935899247822dc4d07f2ca8cbc3f7f03\";}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('541','_cartflows_common','a:0:{}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('571','elementor_unfiltered_files_upload','1','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('582','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\";a:1:{i:0;s:28:\"product-edit-meta-tab-header\";}s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:7:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";a:1:{i:0;s:28:\"product-edit-meta-tab-footer\";}s:9:\"link-text\";s:21:\"Discover more options\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:7:\"iam-url\";s:55:\"admin.php?page=wc-admin&tab=extensions&path=/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:116:\"https://woocommerce.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:67:\"https://woocommerce.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:106:\"https://woocommerce.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:49:\"https://woocommerce.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:116:\"https://woocommerce.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:67:\"https://woocommerce.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:112:\"https://woocommerce.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:63:\"https://woocommerce.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:118:\"https://woocommerce.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:73:\"https://woocommerce.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:113:\"https://woocommerce.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:68:\"https://woocommerce.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:109:\"https://woocommerce.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:52:\"https://woocommerce.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:106:\"https://woocommerce.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:49:\"https://woocommerce.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:108:\"https://woocommerce.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:63:\"https://woocommerce.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:104:\"https://woocommerce.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:45:\"https://woocommerce.com/products/automatewoo/\";}i:12;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";a:1:{i:0;s:24:\"orders-list-empty-header\";}s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:13;a:7:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";a:1:{i:0;s:24:\"orders-list-empty-footer\";}s:9:\"link-text\";s:21:\"Discover more options\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:7:\"iam-url\";s:55:\"admin.php?page=wc-admin&tab=extensions&path=/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\";a:1:{i:0;s:22:\"orders-list-empty-body\";}s:7:\"product\";s:20:\"woocommerce-payments\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/woocommerce-payments.svg\";s:5:\"title\";s:11:\"WooPayments\";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:45:\"https://woocommerce.com/products/woopayments/\";}i:15;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";a:1:{i:0;s:22:\"orders-list-empty-body\";}s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.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:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:16;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";a:1:{i:0;s:22:\"orders-list-empty-body\";}s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.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:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";a:1:{i:0;s:22:\"orders-list-empty-body\";}s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.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:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:18;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";a:1:{i:0;s:22:\"orders-list-empty-body\";}s:4:\"icon\";s:118:\"https://woocommerce.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:99:\"https://woocommerce.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\";a:1:{i:0;s:22:\"orders-list-empty-body\";}s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.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:53:\"https://woocommerce.com/products/google-product-feed/\";}i:20;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";a:1:{i:0;s:26:\"products-list-empty-header\";}s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:21;a:7:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";a:1:{i:0;s:26:\"products-list-empty-footer\";}s:9:\"link-text\";s:21:\"Discover more options\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:7:\"iam-url\";s:55:\"admin.php?page=wc-admin&tab=extensions&path=/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\";a:1:{i:0;s:24:\"products-list-empty-body\";}s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.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:49:\"https://woocommerce.com/products/product-vendors/\";}i:23;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";a:1:{i:0;s:24:\"products-list-empty-body\";}s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.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:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:24;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";a:1:{i:0;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:99:\"https://woocommerce.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:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:25;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";a:1:{i:0;s:24:\"products-list-empty-body\";}s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.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:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:26;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";a:1:{i:0;s:24:\"products-list-empty-body\";}s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.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:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:27;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";a:1:{i:0;s:24:\"products-list-empty-body\";}s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.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:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1781107927;}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('694','woocommerce_task_list_reminder_bar_hidden','yes','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('775','woocommerce_free_shipping_3_settings','a:4:{s:5:\"title\";s:13:\"Free shipping\";s:8:\"requires\";s:0:\"\";s:10:\"min_amount\";s:4:\"0.00\";s:16:\"ignore_discounts\";s:2:\"no\";}','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('829','woocommerce_maybe_regenerate_images_hash','991b1ca641921cf0f5baf7a2fe85861b','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('834','elementor_pro_theme_builder_conditions','a:0:{}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1225','WPLANG','','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1226','new_admin_email','','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1227','cf_analytics_optin','no','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1355','core_last_check_license','a:2:{s:4:\"name\";s:26:\"PixelYourSite Professional\";s:4:\"time\";i:1780592882;}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('8302','wcbv_status_default','a:6:{s:26:\"orderstatus_default_status\";s:13:\"bpos_disabled\";s:15:\"preorder_status\";s:9:\"completed\";s:11:\"enable_wpml\";b:0;s:38:\"orderstatus_default_statusgateway_bacs\";s:13:\"bpos_disabled\";s:40:\"orderstatus_default_statusgateway_cheque\";s:13:\"bpos_disabled\";s:37:\"orderstatus_default_statusgateway_cod\";s:13:\"bpos_disabled\";}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('8561','woocommerce_google_analytics_pro_notice_shown','1','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('8562','woocommerce_google_analytics_settings','a:13:{s:21:\"ga_product_identifier\";s:10:\"product_id\";s:5:\"ga_id\";s:12:\"G-1RBSMM66D1\";s:30:\"ga_support_display_advertising\";s:3:\"yes\";s:23:\"ga_404_tracking_enabled\";s:3:\"yes\";s:32:\"ga_linker_allow_incoming_enabled\";s:2:\"no\";s:29:\"ga_ecommerce_tracking_enabled\";s:3:\"yes\";s:25:\"ga_event_tracking_enabled\";s:3:\"yes\";s:36:\"ga_enhanced_remove_from_cart_enabled\";s:3:\"yes\";s:38:\"ga_enhanced_product_impression_enabled\";s:3:\"yes\";s:33:\"ga_enhanced_product_click_enabled\";s:3:\"yes\";s:39:\"ga_enhanced_product_detail_view_enabled\";s:3:\"yes\";s:36:\"ga_enhanced_checkout_process_enabled\";s:3:\"yes\";s:23:\"ga_linker_cross_domains\";s:0:\"\";}','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('11382','woocommerce_sales_record_date','2024-09-19','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('11383','woocommerce_sales_record_amount','1.0000017861617E+18','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('20017','auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:28:\"asadulislamimran39@gmail.com\";s:7:\"version\";s:3:\"7.0\";s:9:\"timestamp\";i:1779322127;}','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('182884','wc_has_tracked_default_theme','1','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('182885','woocommerce_onboarding_profile','a:1:{s:7:\"skipped\";b:1;}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('183224','woocommerce_tracker_ua','a:50:{i:0;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36\";i:1;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36\";i:2;s:111:\"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Mobile Safari/537.36\";i:3;s:101:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36\";i:4;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";i:5;s:111:\"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Mobile Safari/537.36\";i:6;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36\";i:7;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36\";i:8;s:111:\"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Mobile Safari/537.36\";i:9;s:111:\"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Mobile Safari/537.36\";i:10;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\";i:11;s:111:\"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Mobile Safari/537.36\";i:12;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36\";i:13;s:111:\"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36\";i:14;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36\";i:15;s:111:\"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36\";i:16;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36\";i:17;s:111:\"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Mobile Safari/537.36\";i:18;s:175:\"Mozilla/5.0 (Linux; Android 13; RMX3521 Build/RKQ1.211119.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/137.0.7151.90 Mobile Safari/537.36 wc-android/22.5\";i:19;s:111:\"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Mobile Safari/537.36\";i:20;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36\";i:21;s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36 Edg/138.0.0.0\";i:22;s:101:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36\";i:23;s:101:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36\";i:24;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36\";i:25;s:111:\"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Mobile Safari/537.36\";i:26;s:101:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36\";i:27;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36\";i:28;s:130:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.203\";i:29;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36\";i:30;s:116:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.207 Safari/537.36\";i:31;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36\";i:32;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36\";i:33;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36\";i:34;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36\";i:35;s:157:\"Mozilla/5.0 (Linux; U; Android 14; en-us; SM-A135F Build/JOP24G) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/86.0.4240.198 Mobile Safari/537.36\";i:36;s:101:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36\";i:37;s:111:\"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Mobile Safari/537.36\";i:38;s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 Edg/146.0.0.0\";i:39;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";i:40;s:11:\"curl/8.14.1\";i:41;s:60:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36\";i:42;s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36\";i:43;s:111:\"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Mobile Safari/537.36\";i:44;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36\";i:45;s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0\";i:46;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36\";i:47;s:111:\"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Mobile Safari/537.36\";i:48;s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 Edg/148.0.0.0\";i:49;s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36\";}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('183323','woocommerce_clear_ces_tracks_queue_for_page','','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('183325','woocommerce_ces_shown_for_actions','a:6:{i:0;s:16:\"product_add_view\";i:1;s:14:\"product_update\";i:2;s:18:\"analytics_filtered\";i:3;s:15:\"settings_change\";i:4;s:19:\"product_add_publish\";i:5;s:17:\"shop_order_update\";}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('183326','woocommerce_ces_tracks_queue','a:0:{}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('184627','woocommerce_tracker_last_send','1780362783','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('210557','wcf_setup_skipped','1','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('270945','secret_key','u@>Vwf?&LH;zS+jZL0/5u!+E{bV7/v<${L{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}]q8H=yy(qfxW.)]C,huC@;drjas7>','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('273911','db_upgraded','','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('278994','apikey_validation_db_version','','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('278995','external_updates-orderguard','O:8:\"stdClass\":5:{s:9:\"lastCheck\";i:1750413089;s:14:\"checkedVersion\";s:4:\"1.32\";s:6:\"update\";O:8:\"stdClass\":11:{s:4:\"slug\";s:10:\"orderguard\";s:7:\"version\";s:4:\"1.45\";s:12:\"download_url\";s:61:\"https://download.hoorin.com/v2/order-guard/orderguard1.45.zip\";s:12:\"translations\";a:0:{}s:2:\"id\";i:0;s:8:\"homepage\";N;s:6:\"tested\";N;s:12:\"requires_php\";N;s:14:\"upgrade_notice\";N;s:5:\"icons\";a:0:{}s:8:\"filename\";s:25:\"orderguard/orderguard.php\";}s:11:\"updateClass\";s:50:\"YahnisElsts\\PluginUpdateChecker\\v5p4\\Plugin\\Update\";s:15:\"updateBaseClass\";s:13:\"Plugin\\Update\";}','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('279035','orderguard_validate_phone_number','0','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('279036','display_delivery_details_in_admin','1','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('279037','ovp_validate_order_soft_ban','1','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('279038','ovp_validate_order_hard_ban','1','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('279039','display_simple_delivery_summary_in_admin','1','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('438968','softaculous_pro_license','a:13:{s:7:\"license\";s:30:\"SOFTWP-85134-18803-42057-17157\";s:7:\"expires\";s:8:\"20260128\";s:4:\"type\";s:1:\"1\";s:8:\"type_txt\";s:7:\"Premium\";s:9:\"num_sites\";N;s:4:\"plan\";s:8:\"personal\";s:6:\"active\";i:1;s:10:\"licexpired\";N;s:4:\"thid\";N;s:6:\"status\";i:1;s:9:\"last_edit\";s:10:\"1767451067\";s:10:\"status_txt\";s:33:\"<font color=\"green\">Active</font>\";s:8:\"has_plid\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('506067','woocommerce_flat_rate_4_settings','a:3:{s:5:\"title\";s:8:\"In Dhaka\";s:10:\"tax_status\";s:7:\"taxable\";s:4:\"cost\";s:2:\"60\";}','on');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('516295','_wp_suggested_policy_text_has_changed','changed','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('516359','elementor_controls_usage','a:4:{s:7:\"wp-post\";a:19:{s:5:\"image\";a:2:{s:5:\"count\";i:-105;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:-105;s:22:\"image_custom_dimension\";i:-26;s:10:\"image_size\";i:-1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:9:{s:5:\"width\";i:-74;s:19:\"image_border_border\";i:-9;s:18:\"image_border_width\";i:-11;s:18:\"image_border_color\";i:-15;s:5:\"align\";i:-19;s:22:\"css_filters_css_filter\";i:-6;s:20:\"css_filters_saturate\";i:-9;s:15:\"css_filters_hue\";i:-8;s:19:\"image_border_radius\";i:0;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:-20;s:27:\"motion_fx_mouseTrack_effect\";i:-4;}s:16:\"_section_masking\";a:2:{s:12:\"_mask_switch\";i:-1;s:14:\"_mask_position\";i:1;}s:15:\"_section_border\";a:6:{s:14:\"_border_radius\";i:-3;s:14:\"_border_border\";i:3;s:13:\"_border_width\";i:3;s:13:\"_border_color\";i:3;s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:-20;s:8:\"_padding\";i:-9;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:-93;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:-92;s:11:\"header_size\";i:-67;s:4:\"link\";i:-10;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:12:{s:5:\"align\";i:-102;s:21:\"typography_typography\";i:-99;s:20:\"typography_font_size\";i:-105;s:22:\"typography_font_weight\";i:-125;s:25:\"typography_letter_spacing\";i:-33;s:23:\"text_stroke_text_stroke\";i:25;s:28:\"text_stroke_text_stroke_type\";i:8;s:25:\"typography_text_transform\";i:-45;s:21:\"typography_font_style\";i:-12;s:11:\"title_color\";i:19;s:22:\"typography_line_height\";i:-3;s:22:\"typography_font_family\";i:11;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:-118;s:12:\"_css_classes\";i:3;s:21:\"_element_width_mobile\";i:-7;s:21:\"_element_custom_width\";i:1;s:8:\"_padding\";i:17;}s:19:\"_section_background\";a:6:{s:17:\"_background_color\";i:5;s:28:\"_background_hover_background\";i:15;s:19:\"_background_color_b\";i:15;s:25:\"_background_gradient_type\";i:15;s:26:\"_background_gradient_angle\";i:15;s:22:\"_background_background\";i:13;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:12;s:14:\"_border_radius\";i:13;}s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:22;s:18:\"animation_duration\";i:-3;s:16:\"_animation_delay\";i:-1;}s:16:\"_section_masking\";a:0:{}s:18:\"_section_transform\";a:0:{}s:19:\"_section_responsive\";a:0:{}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:-96;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:3:{s:6:\"editor\";i:-89;s:12:\"text_columns\";i:-4;s:10:\"column_gap\";i:-4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:-96;s:10:\"text_color\";i:-78;s:21:\"typography_typography\";i:-98;s:22:\"typography_font_family\";i:-95;s:22:\"typography_font_weight\";i:-90;s:22:\"typography_line_height\";i:-64;s:21:\"typography_font_style\";i:-39;s:25:\"typography_text_transform\";i:-40;s:26:\"typography_text_decoration\";i:-29;s:25:\"typography_letter_spacing\";i:-21;s:20:\"typography_font_size\";i:-2;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:6:{s:16:\"_flex_align_self\";i:2;s:10:\"_flex_size\";i:4;s:23:\"_element_vertical_align\";i:1;s:7:\"_margin\";i:-49;s:21:\"_element_custom_width\";i:1;s:14:\"_element_width\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:-32;s:16:\"_animation_delay\";i:-1;}s:15:\"_section_border\";a:1:{s:13:\"_border_color\";i:-2;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:-3;}s:19:\"_section_background\";a:0:{}}}}s:6:\"column\";a:2:{s:5:\"count\";i:-219;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:-188;s:16:\"content_position\";i:-21;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:7:{s:21:\"background_background\";i:-36;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:1;s:36:\"background_motion_fx_motion_fx_mouse\";i:1;s:38:\"background_motion_fx_mouseTrack_effect\";i:1;s:41:\"background_motion_fx_mouseTrack_direction\";i:1;s:16:\"background_color\";i:-1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:-10;s:12:\"border_width\";i:-6;s:13:\"border_radius\";i:-20;s:12:\"border_color\";i:7;}s:26:\"section_background_overlay\";a:3:{s:26:\"background_overlay_opacity\";i:-22;s:29:\"background_overlay_background\";i:-17;s:24:\"background_overlay_color\";i:-9;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:1:{s:9:\"animation\";i:4;}s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:-40;s:7:\"padding\";i:-55;s:11:\"css_classes\";i:-4;}s:18:\"section_custom_css\";a:0:{}}}}s:7:\"section\";a:2:{s:5:\"count\";i:-154;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:9:{s:3:\"gap\";i:-54;s:6:\"height\";i:-1;s:13:\"custom_height\";i:-4;s:15:\"column_position\";i:-9;s:8:\"html_tag\";i:-4;s:18:\"gap_columns_custom\";i:1;s:13:\"content_width\";i:5;s:6:\"layout\";i:1;s:16:\"content_position\";i:7;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:10:{s:36:\"background_motion_fx_motion_fx_mouse\";i:10;s:16:\"background_image\";i:-7;s:19:\"background_position\";i:-27;s:17:\"background_repeat\";i:-26;s:15:\"background_size\";i:-27;s:21:\"background_background\";i:6;s:16:\"background_color\";i:4;s:24:\"background_gradient_type\";i:2;s:21:\"background_attachment\";i:3;s:18:\"background_color_b\";i:2;}s:26:\"section_background_overlay\";a:5:{s:26:\"background_overlay_color_b\";i:1;s:26:\"background_overlay_opacity\";i:-25;s:31:\"background_overlay_color_b_stop\";i:1;s:24:\"background_overlay_color\";i:3;s:29:\"background_overlay_background\";i:2;}s:21:\"section_shape_divider\";a:5:{s:26:\"shape_divider_top_negative\";i:-1;s:20:\"shape_divider_bottom\";i:2;s:29:\"shape_divider_bottom_negative\";i:2;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}s:14:\"section_border\";a:5:{s:13:\"border_radius\";i:-5;s:26:\"box_shadow_box_shadow_type\";i:3;s:21:\"box_shadow_box_shadow\";i:-2;s:12:\"border_color\";i:-12;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:4:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:-112;s:6:\"margin\";i:-59;s:11:\"_element_id\";i:7;s:11:\"css_classes\";i:-7;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:-6;s:15:\"animation_delay\";i:-1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:-15;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:7:{s:4:\"text\";i:-9;s:4:\"link\";i:19;s:11:\"icon_indent\";i:-22;s:11:\"button_type\";i:3;s:10:\"icon_align\";i:-13;s:4:\"size\";i:17;s:13:\"selected_icon\";i:11;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:19:{s:21:\"typography_typography\";i:-25;s:20:\"typography_font_size\";i:-18;s:16:\"background_color\";i:-15;s:15:\"hover_animation\";i:4;s:12:\"border_width\";i:-1;s:13:\"border_radius\";i:-31;s:5:\"align\";i:-9;s:29:\"button_background_hover_color\";i:-19;s:13:\"border_border\";i:-4;s:33:\"button_box_shadow_box_shadow_type\";i:6;s:21:\"typography_font_style\";i:9;s:25:\"button_hover_border_color\";i:-16;s:25:\"typography_letter_spacing\";i:-35;s:12:\"align_mobile\";i:9;s:22:\"typography_font_family\";i:15;s:22:\"typography_font_weight\";i:17;s:11:\"hover_color\";i:9;s:12:\"border_color\";i:11;s:17:\"button_text_color\";i:7;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:-15;s:7:\"_margin\";i:2;s:14:\"_element_width\";i:2;}s:18:\"_section_transform\";a:0:{}s:15:\"section_effects\";a:2:{s:18:\"animation_duration\";i:-4;s:10:\"_animation\";i:10;}s:15:\"_section_border\";a:0:{}}}}s:14:\"image-carousel\";a:2:{s:5:\"count\";i:-6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:22:\"section_image_carousel\";a:4:{s:14:\"thumbnail_size\";i:-6;s:14:\"slides_to_show\";i:-6;s:10:\"navigation\";i:-1;s:8:\"carousel\";i:1;}s:26:\"section_additional_options\";a:0:{}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:1:{s:13:\"dots_position\";i:3;}s:19:\"section_style_image\";a:4:{s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:2;s:18:\"image_border_color\";i:2;s:13:\"image_spacing\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:0:{}s:15:\"_section_border\";a:0:{}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:19;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:19;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:5:{s:13:\"divider_color\";i:9;s:17:\"icon_align_mobile\";i:2;s:13:\"space_between\";i:6;s:10:\"icon_align\";i:1;s:7:\"divider\";i:4;}s:18:\"section_icon_style\";a:6:{s:10:\"icon_color\";i:30;s:9:\"icon_size\";i:19;s:11:\"text_indent\";i:-5;s:15:\"icon_self_align\";i:-12;s:24:\"icon_self_vertical_align\";i:-9;s:20:\"icon_vertical_offset\";i:12;}s:18:\"section_text_style\";a:7:{s:26:\"icon_typography_typography\";i:19;s:27:\"icon_typography_font_family\";i:19;s:25:\"icon_typography_font_size\";i:19;s:27:\"icon_typography_font_weight\";i:20;s:28:\"text_shadow_text_shadow_type\";i:7;s:27:\"icon_typography_line_height\";i:-9;s:10:\"text_color\";i:9;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:12;s:14:\"_element_width\";i:5;s:21:\"_element_custom_width\";i:5;s:7:\"_margin\";i:-15;}s:19:\"_section_background\";a:2:{s:17:\"_background_color\";i:1;s:19:\"_background_color_b\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:17:\"animated-headline\";a:2:{s:5:\"count\";i:13;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:6:{s:6:\"marker\";i:21;s:11:\"before_text\";i:13;s:16:\"highlighted_text\";i:13;s:10:\"after_text\";i:8;s:28:\"highlight_animation_duration\";i:3;s:25:\"highlight_iteration_delay\";i:3;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:4:{s:12:\"marker_color\";i:20;s:13:\"above_content\";i:17;s:12:\"stroke_width\";i:7;s:13:\"rounded_edges\";i:11;}s:18:\"section_style_text\";a:11:{s:11:\"title_color\";i:15;s:27:\"title_typography_typography\";i:13;s:28:\"title_typography_font_family\";i:12;s:26:\"title_typography_font_size\";i:13;s:11:\"words_color\";i:16;s:27:\"words_typography_typography\";i:14;s:28:\"words_typography_font_family\";i:9;s:28:\"words_typography_font_weight\";i:9;s:28:\"title_typography_line_height\";i:7;s:28:\"text_stroke_text_stroke_type\";i:3;s:28:\"title_typography_font_weight\";i:5;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:5:{s:6:\"_title\";i:1;s:21:\"_element_custom_width\";i:1;s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;s:14:\"_element_width\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:10;s:17:\"_background_color\";i:4;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:7;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:-7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"style\";i:-5;s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:3:{s:21:\"section_divider_style\";a:3:{s:3:\"gap\";i:9;s:5:\"color\";i:3;s:6:\"weight\";i:3;}s:18:\"section_icon_style\";a:0:{}s:18:\"section_text_style\";a:0:{}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:0:{}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:-12;}s:15:\"_section_border\";a:0:{}}}}s:9:\"container\";a:2:{s:5:\"count\";i:50;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:24:\"section_layout_container\";a:8:{s:14:\"flex_direction\";i:1;s:13:\"content_width\";i:37;s:5:\"width\";i:6;s:11:\"boxed_width\";i:3;s:10:\"min_height\";i:3;s:16:\"flex_align_items\";i:-3;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}s:33:\"section_layout_additional_options\";a:1:{s:8:\"overflow\";i:3;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:27;s:16:\"background_color\";i:29;s:18:\"background_color_b\";i:6;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:10;s:12:\"border_width\";i:15;s:12:\"border_color\";i:17;s:13:\"border_radius\";i:23;}s:26:\"section_background_overlay\";a:4:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:3;s:26:\"background_overlay_color_b\";i:3;s:24:\"background_overlay_color\";i:1;}s:21:\"section_shape_divider\";a:6:{s:17:\"shape_divider_top\";i:3;s:23:\"shape_divider_top_width\";i:3;s:24:\"shape_divider_top_height\";i:3;s:23:\"shape_divider_top_color\";i:3;s:22:\"shape_divider_top_flip\";i:3;s:20:\"shape_divider_bottom\";i:-1;}}s:8:\"advanced\";a:2:{s:14:\"section_layout\";a:5:{s:10:\"_flex_size\";i:12;s:11:\"css_classes\";i:3;s:11:\"_element_id\";i:2;s:6:\"margin\";i:2;s:7:\"padding\";i:1;}s:15:\"section_effects\";a:0:{}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:9:\"shortcode\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:9:\"countdown\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:17:\"section_countdown\";a:5:{s:13:\"custom_labels\";i:3;s:8:\"due_date\";i:3;s:14:\"countdown_type\";i:3;s:23:\"evergreen_counter_hours\";i:3;s:25:\"evergreen_counter_minutes\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_box_style\";a:3:{s:17:\"box_border_radius\";i:3;s:11:\"box_spacing\";i:3;s:20:\"box_background_color\";i:3;}s:21:\"section_content_style\";a:10:{s:28:\"digits_typography_typography\";i:3;s:29:\"digits_typography_font_family\";i:3;s:29:\"digits_typography_font_weight\";i:3;s:12:\"digits_color\";i:3;s:27:\"digits_typography_font_size\";i:3;s:29:\"digits_typography_line_height\";i:3;s:11:\"label_color\";i:3;s:27:\"label_typography_typography\";i:3;s:28:\"label_typography_font_family\";i:3;s:28:\"label_typography_font_weight\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:28:\"woocommerce-purchase-summary\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:20:\"confirmation_message\";a:2:{s:25:\"confirmation_message_text\";i:3;s:30:\"confirmation_message_alignment\";i:3;}}s:5:\"style\";a:1:{s:16:\"typography_title\";a:4:{s:26:\"confirmation_message_color\";i:3;s:42:\"confirmation_message_typography_typography\";i:3;s:43:\"confirmation_message_typography_font_family\";i:3;s:41:\"confirmation_message_typography_font_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:13:\"checkout-form\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:22:\"section_general_fields\";a:1:{s:6:\"layout\";i:12;}s:37:\"section_product_option_section_fields\";a:4:{s:24:\"product_options_position\";i:7;s:20:\"product_options_skin\";i:7;s:22:\"product_options_images\";i:7;s:33:\"product_option_section_title_text\";i:6;}}s:5:\"style\";a:5:{s:28:\"section_general_style_fields\";a:6:{s:28:\"global_typography_typography\";i:10;s:29:\"global_typography_font_family\";i:10;s:29:\"global_typography_font_weight\";i:10;s:27:\"global_typography_font_size\";i:6;s:17:\"global_text_color\";i:3;s:20:\"global_primary_color\";i:1;}s:14:\"button_section\";a:9:{s:31:\"btn_background_color_background\";i:6;s:26:\"btn_background_color_color\";i:6;s:17:\"button_text_color\";i:3;s:28:\"btn_background_color_color_b\";i:3;s:34:\"btn_background_color_gradient_type\";i:3;s:29:\"buttons_typography_typography\";i:5;s:30:\"buttons_typography_font_family\";i:5;s:30:\"buttons_typography_font_weight\";i:3;s:28:\"buttons_typography_font_size\";i:2;}s:28:\"section_heading_style_fields\";a:5:{s:29:\"heading_typography_typography\";i:6;s:30:\"heading_typography_font_weight\";i:5;s:30:\"heading_typography_font_family\";i:5;s:28:\"heading_typography_font_size\";i:2;s:18:\"heading_text_color\";i:3;}s:13:\"input_section\";a:8:{s:32:\"input_text_typography_typography\";i:8;s:33:\"input_text_typography_font_weight\";i:5;s:33:\"input_text_typography_font_family\";i:6;s:31:\"input_text_typography_font_size\";i:5;s:11:\"label_color\";i:2;s:17:\"input_border_size\";i:1;s:12:\"input_radius\";i:1;s:18:\"input_border_color\";i:1;}s:28:\"section_payment_style_fields\";a:1:{s:26:\"payment_section_text_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:7;s:11:\"_element_id\";i:6;}s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:2;s:13:\"_border_width\";i:2;}}}}s:18:\"order-details-form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:4:\"html\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}}}s:5:\"video\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_video\";a:8:{s:11:\"youtube_url\";i:3;s:8:\"autoplay\";i:2;s:14:\"play_on_mobile\";i:1;s:4:\"loop\";i:1;s:10:\"insert_url\";i:1;s:12:\"external_url\";i:1;s:10:\"hosted_url\";i:1;s:6:\"poster\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_video_style\";a:1:{s:22:\"css_filters_css_filter\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"_section_border\";a:6:{s:27:\"_box_shadow_box_shadow_type\";i:2;s:22:\"_box_shadow_box_shadow\";i:1;s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}s:7:\"section\";a:3:{s:6:\"button\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:14:\"_element_width\";i:2;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:1;s:5:\"align\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}s:4:\"page\";a:14:{s:5:\"image\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:6;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:6:{s:5:\"width\";i:3;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:5;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"_section_border\";a:6:{s:14:\"_border_radius\";i:1;s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:49;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:49;s:11:\"header_size\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:49;s:21:\"typography_typography\";i:47;s:22:\"typography_font_family\";i:41;s:20:\"typography_font_size\";i:43;s:22:\"typography_font_weight\";i:42;s:22:\"typography_line_height\";i:19;s:5:\"align\";i:43;s:28:\"text_stroke_text_stroke_type\";i:3;s:23:\"text_stroke_text_stroke\";i:7;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:24;s:7:\"_margin\";i:11;s:12:\"_css_classes\";i:1;}s:19:\"_section_background\";a:6:{s:22:\"_background_background\";i:20;s:17:\"_background_color\";i:13;s:28:\"_background_hover_background\";i:3;s:19:\"_background_color_b\";i:3;s:25:\"_background_gradient_type\";i:3;s:26:\"_background_gradient_angle\";i:3;}s:15:\"_section_border\";a:2:{s:14:\"_border_radius\";i:12;s:27:\"_box_shadow_box_shadow_type\";i:4;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:16;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:3;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;s:14:\"_element_width\";i:1;s:10:\"_flex_size\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:15;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:15;s:4:\"link\";i:15;s:4:\"size\";i:15;s:13:\"selected_icon\";i:9;s:11:\"icon_indent\";i:2;s:10:\"icon_align\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:17:{s:12:\"align_mobile\";i:3;s:21:\"typography_typography\";i:15;s:22:\"typography_font_family\";i:15;s:20:\"typography_font_size\";i:15;s:22:\"typography_font_weight\";i:15;s:16:\"background_color\";i:13;s:15:\"hover_animation\";i:12;s:12:\"border_width\";i:12;s:12:\"border_color\";i:12;s:13:\"border_radius\";i:8;s:5:\"align\";i:14;s:13:\"border_border\";i:12;s:33:\"button_box_shadow_box_shadow_type\";i:2;s:11:\"hover_color\";i:10;s:29:\"button_background_hover_color\";i:10;s:21:\"typography_font_style\";i:3;s:17:\"button_text_color\";i:7;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:9;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:30;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:30;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:9:\"animation\";i:3;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:7;s:7:\"padding\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:5;s:12:\"border_width\";i:5;s:12:\"border_color\";i:5;s:13:\"border_radius\";i:3;}}}}s:14:\"image-carousel\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:22:\"section_image_carousel\";a:4:{s:14:\"thumbnail_size\";i:2;s:14:\"slides_to_show\";i:1;s:10:\"navigation\";i:1;s:8:\"carousel\";i:1;}s:26:\"section_additional_options\";a:1:{s:14:\"autoplay_speed\";i:1;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:1:{s:13:\"dots_position\";i:1;}s:19:\"section_style_image\";a:3:{s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:27;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:3:\"gap\";i:20;s:6:\"layout\";i:1;s:13:\"content_width\";i:5;s:6:\"height\";i:3;s:13:\"custom_height\";i:3;s:16:\"content_position\";i:7;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:10:{s:21:\"background_background\";i:21;s:16:\"background_color\";i:18;s:18:\"background_color_b\";i:2;s:24:\"background_gradient_type\";i:1;s:36:\"background_motion_fx_motion_fx_mouse\";i:3;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:3;s:26:\"background_overlay_opacity\";i:4;}s:14:\"section_border\";a:4:{s:13:\"border_radius\";i:2;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_border\";i:1;}s:21:\"section_shape_divider\";a:4:{s:20:\"shape_divider_bottom\";i:2;s:29:\"shape_divider_bottom_negative\";i:2;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:16;s:6:\"margin\";i:4;s:11:\"_element_id\";i:2;s:11:\"css_classes\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}}}s:17:\"animated-headline\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:6:{s:6:\"marker\";i:9;s:11:\"before_text\";i:9;s:16:\"highlighted_text\";i:9;s:10:\"after_text\";i:7;s:28:\"highlight_animation_duration\";i:1;s:25:\"highlight_iteration_delay\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:4:{s:12:\"marker_color\";i:9;s:13:\"above_content\";i:6;s:12:\"stroke_width\";i:4;s:13:\"rounded_edges\";i:4;}s:18:\"section_style_text\";a:11:{s:11:\"title_color\";i:9;s:27:\"title_typography_typography\";i:9;s:28:\"title_typography_font_family\";i:8;s:26:\"title_typography_font_size\";i:8;s:28:\"title_typography_font_weight\";i:5;s:11:\"words_color\";i:9;s:27:\"words_typography_typography\";i:8;s:28:\"words_typography_font_family\";i:6;s:28:\"words_typography_font_weight\";i:6;s:28:\"title_typography_line_height\";i:4;s:28:\"text_stroke_text_stroke_type\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:3;s:14:\"_element_width\";i:1;s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:2;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:14;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:14;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:5:{s:13:\"space_between\";i:6;s:10:\"icon_align\";i:1;s:17:\"icon_align_mobile\";i:1;s:7:\"divider\";i:4;s:13:\"divider_color\";i:4;}s:18:\"section_icon_style\";a:6:{s:10:\"icon_color\";i:14;s:9:\"icon_size\";i:14;s:11:\"text_indent\";i:1;s:15:\"icon_self_align\";i:1;s:24:\"icon_self_vertical_align\";i:4;s:20:\"icon_vertical_offset\";i:4;}s:18:\"section_text_style\";a:7:{s:26:\"icon_typography_typography\";i:14;s:27:\"icon_typography_font_family\";i:14;s:25:\"icon_typography_font_size\";i:14;s:27:\"icon_typography_font_weight\";i:14;s:10:\"text_color\";i:9;s:27:\"icon_typography_line_height\";i:3;s:28:\"text_shadow_text_shadow_type\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:27;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:24:\"section_layout_container\";a:8:{s:14:\"flex_direction\";i:12;s:13:\"content_width\";i:11;s:5:\"width\";i:5;s:8:\"flex_gap\";i:1;s:11:\"boxed_width\";i:4;s:10:\"min_height\";i:2;s:20:\"flex_justify_content\";i:1;s:16:\"flex_align_items\";i:1;}s:33:\"section_layout_additional_options\";a:1:{s:8:\"overflow\";i:1;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:10;s:16:\"background_color\";i:10;s:18:\"background_color_b\";i:2;}s:26:\"section_background_overlay\";a:4:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;s:26:\"background_overlay_color_b\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_radius\";i:3;s:12:\"border_width\";i:2;s:13:\"border_border\";i:1;s:12:\"border_color\";i:1;}s:21:\"section_shape_divider\";a:5:{s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:23:\"shape_divider_top_color\";i:1;s:22:\"shape_divider_top_flip\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:4:{s:10:\"_flex_size\";i:4;s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;s:7:\"padding\";i:1;}}}}s:9:\"countdown\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:17:\"section_countdown\";a:2:{s:13:\"custom_labels\";i:1;s:8:\"due_date\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_box_style\";a:3:{s:17:\"box_border_radius\";i:1;s:11:\"box_spacing\";i:1;s:20:\"box_background_color\";i:1;}s:21:\"section_content_style\";a:10:{s:28:\"digits_typography_typography\";i:1;s:29:\"digits_typography_font_family\";i:1;s:29:\"digits_typography_font_weight\";i:1;s:12:\"digits_color\";i:1;s:27:\"digits_typography_font_size\";i:1;s:29:\"digits_typography_line_height\";i:1;s:11:\"label_color\";i:1;s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_family\";i:1;s:28:\"label_typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"video\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_video\";a:6:{s:11:\"youtube_url\";i:2;s:10:\"insert_url\";i:1;s:12:\"external_url\";i:1;s:8:\"autoplay\";i:1;s:14:\"play_on_mobile\";i:1;s:4:\"loop\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"_section_border\";a:6:{s:14:\"_border_radius\";i:2;s:27:\"_box_shadow_box_shadow_type\";i:2;s:22:\"_box_shadow_box_shadow\";i:1;s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_video_style\";a:1:{s:22:\"css_filters_css_filter\";i:1;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"style\";i:3;s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}}}}s:7:\"wp-page\";a:13:{s:30:\"wp-widget-woocommerce_products\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}s:9:\"container\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:-15;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:-15;s:11:\"header_size\";i:-14;s:4:\"link\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:20:\"typography_font_size\";i:-8;s:11:\"title_color\";i:9;s:25:\"typography_letter_spacing\";i:2;s:5:\"align\";i:17;s:25:\"typography_text_transform\";i:-9;s:21:\"typography_typography\";i:6;s:22:\"typography_line_height\";i:2;s:22:\"typography_font_family\";i:3;s:22:\"typography_font_weight\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:-3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:-3;s:10:\"icon_align\";i:-3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:12:\"align_tablet\";i:6;s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:-4;s:29:\"button_background_hover_color\";i:-6;s:13:\"border_border\";i:-6;s:12:\"border_width\";i:-6;s:13:\"border_radius\";i:-6;s:12:\"text_padding\";i:-6;s:33:\"button_box_shadow_box_shadow_type\";i:-6;s:28:\"button_box_shadow_box_shadow\";i:-6;s:21:\"typography_typography\";i:2;s:25:\"button_hover_border_color\";i:1;s:12:\"border_color\";i:1;s:5:\"align\";i:4;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:-4;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:-12;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:-12;s:16:\"content_position\";i:-5;s:21:\"space_between_widgets\";i:-4;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:-5;s:7:\"padding\";i:-4;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:6:{s:27:\"background_hover_background\";i:4;s:21:\"background_background\";i:-14;s:16:\"background_image\";i:3;s:19:\"background_position\";i:2;s:15:\"background_size\";i:2;s:17:\"background_repeat\";i:3;}s:14:\"section_border\";a:8:{s:12:\"border_width\";i:4;s:12:\"border_color\";i:4;s:13:\"border_radius\";i:4;s:18:\"border_hover_width\";i:4;s:26:\"box_shadow_box_shadow_type\";i:2;s:21:\"box_shadow_box_shadow\";i:2;s:13:\"border_border\";i:8;s:19:\"border_hover_border\";i:8;}s:26:\"section_background_overlay\";a:3:{s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;}}}}s:9:\"image-box\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;s:10:\"title_size\";i:4;s:14:\"thumbnail_size\";i:8;s:4:\"link\";i:8;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:1:{s:11:\"image_space\";i:8;}s:19:\"section_style_image\";a:2:{s:10:\"image_size\";i:4;s:15:\"hover_animation\";i:8;}s:21:\"section_style_content\";a:2:{s:26:\"title_typography_font_size\";i:8;s:27:\"title_typography_typography\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:8;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:-9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:-9;s:22:\"image_custom_dimension\";i:-6;s:10:\"image_size\";i:-10;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:0;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:27:\"image_box_shadow_box_shadow\";i:1;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:1:{s:16:\"social_icon_list\";i:4;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:6:{s:10:\"icon_color\";i:4;s:18:\"icon_primary_color\";i:4;s:20:\"icon_secondary_color\";i:4;s:9:\"icon_size\";i:4;s:12:\"icon_padding\";i:4;s:12:\"icon_spacing\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:4;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:4;}}}}s:13:\"image-gallery\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:2:{s:10:\"wp_gallery\";i:1;s:14:\"thumbnail_size\";i:1;}}s:5:\"style\";a:1:{s:22:\"section_gallery_images\";a:2:{s:13:\"image_spacing\";i:1;s:20:\"image_spacing_custom\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:-6;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:22:\"typography_font_family\";i:-7;s:25:\"typography_letter_spacing\";i:1;s:22:\"typography_line_height\";i:-7;s:20:\"typography_font_size\";i:-7;s:5:\"align\";i:5;s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:3;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:-7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:-7;s:8:\"_padding\";i:2;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:-11;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:13:\"content_width\";i:1;s:12:\"height_inner\";i:-8;s:6:\"height\";i:-4;s:13:\"custom_height\";i:-4;s:19:\"custom_height_inner\";i:5;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:-13;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:-12;s:6:\"margin\";i:-4;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:-9;s:19:\"background_position\";i:-7;s:15:\"background_size\";i:-8;s:16:\"background_image\";i:6;s:17:\"background_repeat\";i:1;s:16:\"background_color\";i:11;}s:26:\"section_background_overlay\";a:11:{s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:26:\"background_overlay_color_b\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;s:23:\"background_overlay_size\";i:5;s:35:\"background_overlay_hover_transition\";i:1;s:24:\"background_overlay_image\";i:1;s:29:\"background_overlay_attachment\";i:1;s:25:\"background_overlay_repeat\";i:1;}s:14:\"section_border\";a:8:{s:13:\"border_radius\";i:5;s:21:\"box_shadow_box_shadow\";i:2;s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:19:\"border_hover_border\";i:2;s:18:\"border_hover_width\";i:2;s:18:\"border_hover_color\";i:2;}s:21:\"section_shape_divider\";a:4:{s:24:\"shape_divider_top_height\";i:2;s:22:\"shape_divider_top_flip\";i:1;s:26:\"shape_divider_top_negative\";i:1;s:23:\"shape_divider_top_width\";i:1;}}}}s:7:\"counter\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:3:{s:13:\"ending_number\";i:3;s:5:\"title\";i:4;s:6:\"suffix\";i:2;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:29:\"typography_number_line_height\";i:4;}s:13:\"section_title\";a:5:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_line_height\";i:4;s:31:\"typography_title_letter_spacing\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:17:\"icon_align_mobile\";i:1;}s:18:\"section_icon_style\";a:3:{s:9:\"icon_size\";i:1;s:11:\"text_indent\";i:1;s:10:\"icon_color\";i:1;}s:18:\"section_text_style\";a:3:{s:27:\"icon_typography_font_family\";i:1;s:27:\"icon_typography_font_weight\";i:1;s:10:\"text_color\";i:1;}}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('516651','elementor_woocommerce_purchase_summary_page_id','','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('571471','recovery_mode_email_last_sent','1780831094','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('630978','using_application_passwords','1','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('630979','woocommerce_mobile_app_usage','a:1:{s:7:\"android\";a:5:{s:8:\"platform\";s:7:\"android\";s:7:\"version\";s:4:\"22.9\";s:9:\"last_used\";s:25:\"2025-08-22T09:12:29+00:00\";s:17:\"installation_date\";s:25:\"2025-06-24T16:41:30+00:00\";s:10:\"first_used\";s:25:\"2025-06-24T16:45:55+00:00\";}}','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('635318','woocommerce_orders_report_date_tour_shown','yes','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('639862','woocommerce_coming_soon','no','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('639863','woocommerce_store_pages_only','no','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('639864','woocommerce_private_link','no','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1124057','softaculous_pro_rebranding','a:4:{s:2:\"sn\";s:11:\"Softaculous\";s:8:\"logo_url\";s:0:\"\";s:13:\"default_hf_bg\";s:0:\"\";s:15:\"default_hf_text\";s:0:\"\";}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1234037','_pre_user_id','12','auto');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1234186','allowed_astra_notices','a:1:{i:0;s:24:\"cartflows-5-start-notice\";}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1234189','can_compress_scripts','0','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1265844','wc_remote_inbox_notifications_wca_updated','','off');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1437438','dfwc_plugin_review','1','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1594210','rdn_fetch_14725b97','fetch','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606536','woocommerce_admin_install_timestamp','1780625923','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606577','woocommerce_admin_notices','a:0:{}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606727','widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606728','widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606729','widget_archives','a:2:{i:1;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606730','widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606731','widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606732','widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606733','widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606734','widget_meta','a:2:{i:1;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606735','widget_search','a:2:{i:1;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606736','widget_text','a:3:{i:1;a:4:{s:5:\"title\";s:7:\"Contact\";s:4:\"text\";s:164:\"Lorem ipsum dolor sit amet, consectet adipis cing elit. Curabitur venenatis.\r\n\r\n653 Jett Lane, Suite 50, Beverly Hills, CA 90210 +12 34 567 891 23 email@your.domain\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:2;a:4:{s:5:\"title\";s:7:\"Working\";s:4:\"text\";s:237:\"<ul>\r\n 	<li>Monday 9:00 - 24:00</li>\r\n 	<li>Tuesday 9:00 - 24:00</li>\r\n 	<li>Wednesday CLOSED</li>\r\n 	<li>Thursday 9:00 - 24:00</li>\r\n 	<li>Friday 9:00 - 02:00</li>\r\n 	<li>Saturday 9:00 - 02:00</li>\r\n 	<li>Sunday 9:00 - 02:00</li>\r\n</ul>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606737','widget_categories','a:2:{i:1;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606738','widget_recent-posts','a:2:{i:1;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606739','widget_recent-comments','a:2:{i:1;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606740','widget_rss','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606741','widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606742','widget_nav_menu','a:2:{i:1;a:3:{s:8:\"collapse\";b:0;s:5:\"title\";s:4:\"Help\";s:8:\"nav_menu\";s:2:\"42\";}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606743','widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606744','widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606745','widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606746','widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606747','widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606748','widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606749','widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606750','widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606751','widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606752','widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606753','widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606754','widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606755','widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606756','widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606757','widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606799','theme_mods_hello-elementor-child','a:2:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:0:{}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606800','elementor_log','a:11:{s:32:\"64612033995532ac37c67c6ed4b645fd\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-06-05 08:21:21\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:56:\"Attempt to read property &quot;post_status&quot; on null\";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:\"2026-06-05 08:21:21\";i:1;s:19:\"2026-06-05 08:21:56\";i:2;s:19:\"2026-06-05 08:23:53\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:46:\"Attempt to read property \"post_status\" on null\";s:4:\"file\";s:83:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\core\\kits\\manager.php\";s:4:\"line\";i:280;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:83:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\core\\kits\\manager.php\";s:7:\"\0*\0line\";i:280;}s:32:\"5316e12a9c80cf7e9f9d34b6d1845393\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-06-05 08:34:59\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:48:\"Undefined array key &quot;background_color&quot;\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2026-06-05 08:34:59\";i:1;s:19:\"2026-06-09 12:15:29\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:38:\"Undefined array key \"background_color\"\";s:4:\"file\";s:85:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\includes\\conditions.php\";s:4:\"line\";i:87;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:85:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\includes\\conditions.php\";s:7:\"\0*\0line\";i:87;}s:32:\"0da879b8f2247311aa6480453d7dc7bc\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-06-05 08:39:33\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:1551:\"Uncaught Exception: Access denied. in C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\core\\settings\\page\\manager.php:105\nStack trace:\n#0 C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\core\\base\\document.php(1790): Elementor\\Core\\Settings\\Page\\Manager-&gt;ajax_before_save_settings(Array, 3)\n#1 C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\core\\base\\document.php(908): Elementor\\Core\\Base\\Document-&gt;save_settings(Array)\n#2 C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\core\\kits\\manager.php(295): Elementor\\Core\\Base\\Document-&gt;update_settings(Array)\n#3 C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\core\\kits\\manager.php(464): Elementor\\Core\\Kits\\Manager-&gt;update_kit_settings_based_on_option(&#039;site_name&#039;, &#039;itgalaxy&#039;)\n#4 C:\\xampp\\htdocs\\custom_wordpress\\wp-includes\\class-wp-hook.php(326): Elementor\\Core\\Kits\\Manager-&gt;Elementor\\Core\\Kits\\{closure}(&#039;New WordPress S...&#039;, &#039;itgalaxy&#039;)\n#5 C:\\xampp\\htdocs\\custom_wordpress\\wp-includes\\class-wp-hook.php(348): WP_Hook-&gt;apply_filters(&#039;&#039;, Array)\n#6 C:\\xampp\\htdocs\\custom_wordpress\\wp-includes\\plugin.php(517): WP_Hook-&gt;do_action(Array)\n#7 C:\\xampp\\htdocs\\custom_wordpress\\wp-includes\\option.php(889): do_action(&#039;update_option_b...&#039;, &#039;New WordPress S...&#039;, &#039;itgalaxy&#039;, &#039;blogname&#039;)\n#8 C:\\xampp\\htdocs\\custom_wordpress\\.codex-itgalaxy-clean.php(124): update_option(&#039;blogname&#039;, &#039;itgalaxy&#039;)\n#9 {main}\n  thrown\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-06-05 08:39:33\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1420:\"Uncaught Exception: Access denied. in C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\core\\settings\\page\\manager.php:105\nStack trace:\n#0 C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\core\\base\\document.php(1790): Elementor\\Core\\Settings\\Page\\Manager->ajax_before_save_settings(Array, 3)\n#1 C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\core\\base\\document.php(908): Elementor\\Core\\Base\\Document->save_settings(Array)\n#2 C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\core\\kits\\manager.php(295): Elementor\\Core\\Base\\Document->update_settings(Array)\n#3 C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\core\\kits\\manager.php(464): Elementor\\Core\\Kits\\Manager->update_kit_settings_based_on_option(\'site_name\', \'itgalaxy\')\n#4 C:\\xampp\\htdocs\\custom_wordpress\\wp-includes\\class-wp-hook.php(326): Elementor\\Core\\Kits\\Manager->Elementor\\Core\\Kits\\{closure}(\'New WordPress S...\', \'itgalaxy\')\n#5 C:\\xampp\\htdocs\\custom_wordpress\\wp-includes\\class-wp-hook.php(348): WP_Hook->apply_filters(\'\', Array)\n#6 C:\\xampp\\htdocs\\custom_wordpress\\wp-includes\\plugin.php(517): WP_Hook->do_action(Array)\n#7 C:\\xampp\\htdocs\\custom_wordpress\\wp-includes\\option.php(889): do_action(\'update_option_b...\', \'New WordPress S...\', \'itgalaxy\', \'blogname\')\n#8 C:\\xampp\\htdocs\\custom_wordpress\\.codex-itgalaxy-clean.php(124): update_option(\'blogname\', \'itgalaxy\')\n#9 {main}\n  thrown\";s:4:\"file\";s:92:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\core\\settings\\page\\manager.php\";s:4:\"line\";i:105;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:92:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\core\\settings\\page\\manager.php\";s:7:\"\0*\0line\";i:105;}s:32:\"9e0508c5b8a9b2865eb32bd3a0d6e22a\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-06-07 09:38:27\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:59:\"foreach() argument must be of type array|object, null given\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-06-07 09:38:27\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:59:\"foreach() argument must be of type array|object, null given\";s:4:\"file\";s:128:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\modules\\home\\transformations\\filter-sidebar-upgrade-by-license.php\";s:4:\"line\";i:31;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:128:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\modules\\home\\transformations\\filter-sidebar-upgrade-by-license.php\";s:7:\"\0*\0line\";i:31;}s:32:\"c9b0fa50e9b1a79f9ec2fe12fd5d6137\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-06-07 09:41:29\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:82:\"rmdir(C:\\xampp\\htdocs\\custom_wordpress/wp-content/mu-plugins): Directory not empty\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-06-07 09:41:29\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:82:\"rmdir(C:\\xampp\\htdocs\\custom_wordpress/wp-content/mu-plugins): Directory not empty\";s:4:\"file\";s:90:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\modules\\safe-mode\\module.php\";s:4:\"line\";i:132;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:90:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\modules\\safe-mode\\module.php\";s:7:\"\0*\0line\";i:132;}s:32:\"1350ecfef5ee3ace710e0ae0d5ce7be8\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-06-07 13:36:34\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:79:\"strpos(): Passing null to parameter #1 ($haystack) 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:395;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2026-06-07 14:06:45\";i:1;s:19:\"2026-06-07 14:06:51\";i:2;s:19:\"2026-06-07 14:06:57\";i:3;s:19:\"2026-06-07 14:06:57\";i:4;s:19:\"2026-06-07 14:07:21\";i:5;s:19:\"2026-06-07 14:07:22\";i:6;s:19:\"2026-06-07 14:08:10\";i:7;s:19:\"2026-06-07 14:08:10\";i:8;s:19:\"2026-06-07 14:09:00\";i:9;s:19:\"2026-06-07 14:09:01\";i:10;s:19:\"2026-06-07 14:09:03\";i:11;s:19:\"2026-06-07 14:09:04\";i:12;s:19:\"2026-06-07 14:09:06\";i:13;s:19:\"2026-06-07 14:09:08\";i:14;s:19:\"2026-06-07 14:09:10\";i:15;s:19:\"2026-06-07 14:09:16\";i:16;s:19:\"2026-06-07 14:09:21\";i:17;s:19:\"2026-06-07 14:09:27\";i:18;s:19:\"2026-06-07 14:09:28\";i:19;s:19:\"2026-06-07 14:09:29\";i:20;s:19:\"2026-06-07 14:09:29\";i:21;s:19:\"2026-06-07 14:10:44\";i:22;s:19:\"2026-06-07 14:10:59\";i:23;s:19:\"2026-06-07 14:11:01\";i:24;s:19:\"2026-06-07 14:11:01\";i:25;s:19:\"2026-06-07 14:11:04\";i:26;s:19:\"2026-06-07 14:11:04\";i:27;s:19:\"2026-06-07 14:12:01\";i:28;s:19:\"2026-06-07 14:13:02\";i:29;s:19:\"2026-06-07 14:13:05\";i:30;s:19:\"2026-06-07 14:13:05\";i:31;s:19:\"2026-06-07 14:14:01\";i:32;s:19:\"2026-06-07 14:14:15\";i:33;s:19:\"2026-06-07 14:14:24\";i:34;s:19:\"2026-06-07 14:14:32\";i:35;s:19:\"2026-06-07 14:14:53\";i:36;s:19:\"2026-06-07 14:14:55\";i:37;s:19:\"2026-06-07 14:15:03\";i:38;s:19:\"2026-06-07 14:15:03\";i:39;s:19:\"2026-06-07 14:15:06\";i:40;s:19:\"2026-06-07 14:15:11\";i:41;s:19:\"2026-06-07 14:15:20\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:79:\"strpos(): Passing null to parameter #1 ($haystack) of type string is deprecated\";s:4:\"file\";s:97:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor-pro\\modules\\loop-builder\\module.php\";s:4:\"line\";i:204;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:97:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor-pro\\modules\\loop-builder\\module.php\";s:7:\"\0*\0line\";i:204;}s:32:\"02e08dcc4b7d7756d623c31e522e77b9\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-06-07 13:36:37\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:75:\"trim(): Passing null to parameter #1 ($string) 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:3;s:14:\"\0*\0times_dates\";a:3:{i:0;s:19:\"2026-06-07 13:36:37\";i:1;s:19:\"2026-06-08 20:57:15\";i:2;s:19:\"2026-06-08 22:14:04\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:75:\"trim(): Passing null to parameter #1 ($string) of type string is deprecated\";s:4:\"file\";s:95:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor-pro\\modules\\custom-css\\module.php\";s:4:\"line\";i:76;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:95:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor-pro\\modules\\custom-css\\module.php\";s:7:\"\0*\0line\";i:76;}s:32:\"38d2745972e53e9e3b57c783bf055a52\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-06-07 13:49:43\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:51:\"Trying to access array offset on value of type bool\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2026-06-07 13:49:43\";i:1;s:19:\"2026-06-09 10:27:22\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:51:\"Trying to access array offset on value of type bool\";s:4:\"file\";s:89:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\includes\\managers\\image.php\";s:4:\"line\";i:113;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:89:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\includes\\managers\\image.php\";s:7:\"\0*\0line\";i:113;}s:32:\"ca8428d47e5f7557e6699e9134ae6422\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-06-07 07:49:43\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:68:\"Cannot read properties of undefined (reading &#039;attributes&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-06-07 07:49:43\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1780818583\";s:7:\"message\";s:58:\"Cannot read properties of undefined (reading \'attributes\')\";s:3:\"url\";s:107:\"http://localhost/custom_wordpress/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.23.4\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"17146\";}s:7:\"\0*\0file\";s:107:\"http://localhost/custom_wordpress/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.23.4\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"17146\";}s:32:\"9480164face61e84877d70a38a7f98bd\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-06-07 13:55:09\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:80:\"parse_str(): Passing null to parameter #1 ($string) 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:51;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2026-06-09 11:07:24\";i:1;s:19:\"2026-06-09 11:07:49\";i:2;s:19:\"2026-06-09 11:08:46\";i:3;s:19:\"2026-06-09 11:14:56\";i:4;s:19:\"2026-06-09 11:15:21\";i:5;s:19:\"2026-06-09 11:15:31\";i:6;s:19:\"2026-06-09 11:15:52\";i:7;s:19:\"2026-06-09 11:17:33\";i:8;s:19:\"2026-06-09 11:20:15\";i:9;s:19:\"2026-06-09 11:25:06\";i:10;s:19:\"2026-06-09 12:14:05\";i:11;s:19:\"2026-06-09 12:27:43\";i:12;s:19:\"2026-06-09 12:27:56\";i:13;s:19:\"2026-06-09 12:28:39\";i:14;s:19:\"2026-06-09 12:28:51\";i:15;s:19:\"2026-06-09 12:34:51\";i:16;s:19:\"2026-06-09 13:19:13\";i:17;s:19:\"2026-06-09 20:45:08\";i:18;s:19:\"2026-06-09 20:45:15\";i:19;s:19:\"2026-06-09 20:45:20\";i:20;s:19:\"2026-06-09 20:58:54\";i:21;s:19:\"2026-06-09 20:58:58\";i:22;s:19:\"2026-06-09 21:00:44\";i:23;s:19:\"2026-06-09 21:00:49\";i:24;s:19:\"2026-06-09 21:00:59\";i:25;s:19:\"2026-06-09 21:01:10\";i:26;s:19:\"2026-06-10 08:55:44\";i:27;s:19:\"2026-06-10 08:55:51\";i:28;s:19:\"2026-06-10 08:55:54\";i:29;s:19:\"2026-06-10 08:56:23\";i:30;s:19:\"2026-06-10 09:14:12\";i:31;s:19:\"2026-06-10 09:14:29\";i:32;s:19:\"2026-06-10 09:14:49\";i:33;s:19:\"2026-06-10 10:01:07\";i:34;s:19:\"2026-06-10 10:01:29\";i:35;s:19:\"2026-06-10 10:01:30\";i:36;s:19:\"2026-06-10 10:43:23\";i:37;s:19:\"2026-06-10 10:46:45\";i:38;s:19:\"2026-06-10 10:46:55\";i:39;s:19:\"2026-06-10 10:56:32\";i:40;s:19:\"2026-06-10 12:17:31\";i:41;s:19:\"2026-06-10 17:26:39\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:80:\"parse_str(): Passing null to parameter #1 ($string) of type string is deprecated\";s:4:\"file\";s:96:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor-pro\\modules\\woocommerce\\module.php\";s:4:\"line\";i:611;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:96:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor-pro\\modules\\woocommerce\\module.php\";s:7:\"\0*\0line\";i:611;}s:32:\"5d2f4ae1f9b4cae8e05bf269ed06e005\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-06-08 22:14:40\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:22:\"Undefined array key -1\";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:8;s:14:\"\0*\0times_dates\";a:8:{i:0;s:19:\"2026-06-08 22:14:40\";i:1;s:19:\"2026-06-08 22:14:57\";i:2;s:19:\"2026-06-09 10:02:28\";i:3;s:19:\"2026-06-09 10:25:35\";i:4;s:19:\"2026-06-09 10:26:11\";i:5;s:19:\"2026-06-09 12:36:03\";i:6;s:19:\"2026-06-09 12:39:59\";i:7;s:19:\"2026-06-09 12:47:41\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:22:\"Undefined array key -1\";s:4:\"file\";s:94:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\includes\\base\\controls-stack.php\";s:4:\"line\";i:695;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:94:\"C:\\xampp\\htdocs\\custom_wordpress\\wp-content\\plugins\\elementor\\includes\\base\\controls-stack.php\";s:7:\"\0*\0line\";i:695;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606834','elementor_active_kit','3','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606898','nps-survey-cartflows','a:6:{s:13:\"dismiss_count\";i:1;s:19:\"dismiss_permanently\";b:0;s:12:\"dismiss_step\";s:10:\"nps-rating\";s:12:\"dismiss_time\";i:1780626849;s:16:\"dismiss_timespan\";i:1209600;s:17:\"first_render_time\";N;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606945','_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606946','_transient_timeout_woocommerce_blocks_asset_api_script_data','1783817331','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606947','_transient_woocommerce_blocks_asset_api_script_data','{\"script_data\":{\"assets\\/client\\/blocks\\/wc-settings.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-settings.js\",\"version\":\"eb5ac71a827c4c81fed8\",\"dependencies\":[\"wp-hooks\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-types.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-types.js\",\"version\":\"bda84b1be3361607d04a\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-middleware.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-middleware.js\",\"version\":\"ca04183222edaf8a26be\",\"dependencies\":[\"wp-api-fetch\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-data.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-data.js\",\"version\":\"0e434c6572b93f79dc50\",\"dependencies\":[\"wc-blocks-registry\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/wc-blocks-vendors.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-vendors.js\",\"version\":\"d9d7fcceb0c5bebdd22e\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-registry.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-registry.js\",\"version\":\"e3cff70739d4f4ef0a13\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-hooks\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks.js\",\"version\":\"00ce86264fca4977b16a\",\"dependencies\":[\"react\",\"wc-types\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-dom-ready\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-context.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-context.js\",\"version\":\"6eb6865831aa5a75475d\",\"dependencies\":[\"react\",\"wp-element\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\",\"version\":\"4f21a9f43ea5bfa7f02e\",\"dependencies\":[\"react\",\"wc-blocks-data-store\",\"wc-blocks-shared-context\",\"wc-types\",\"wp-data\",\"wp-element\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/price-format.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-format.js\",\"version\":\"483d2180eda1f53dc60d\",\"dependencies\":[\"wc-settings\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-frontend-vendors-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-frontend-vendors-frontend.js\",\"version\":\"14a323ef57eb3ed7e6d7\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-cart-checkout-vendors-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-cart-checkout-vendors-frontend.js\",\"version\":\"2ac95ec54eaf9af5414f\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-cart-checkout-base-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-cart-checkout-base-frontend.js\",\"version\":\"06f242f4287f114435ce\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/blocks-checkout.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-checkout.js\",\"version\":\"b17cecfe19e23a3899e0\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"react-dom\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/blocks-components.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-components.js\",\"version\":\"da0f5cdfc687e857c2c8\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"react-dom\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/wc-interactivity-dropdown.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-interactivity-dropdown.js\",\"version\":\"8997b5406dcf18064a4e\",\"dependencies\":[\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-interactivity-checkbox-list.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-interactivity-checkbox-list.js\",\"version\":\"91e00bc6d68f5554d45f\",\"dependencies\":[\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/active-filters.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/active-filters.js\",\"version\":\"07254c2f32c26d21c0ef\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/active-filters-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/active-filters-frontend.js\",\"version\":\"6c48702f58c24bb97f66\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/all-products.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-products.js\",\"version\":\"ade530385a5847b8e2f1\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"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-wordcount\"]},\"assets\\/client\\/blocks\\/all-products-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-products-frontend.js\",\"version\":\"d3b2da0916f9d8584854\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-autop\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/all-reviews.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-reviews.js\",\"version\":\"4421b2ba149150ba3a80\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-escape-html\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/reviews-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-frontend.js\",\"version\":\"403abda05b51a9c06a58\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/attribute-filter.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/attribute-filter.js\",\"version\":\"be80c8f5f8fcb0ad5075\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/attribute-filter-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/attribute-filter-frontend.js\",\"version\":\"61292cafbcfbb0d769e5\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/breadcrumbs.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/breadcrumbs.js\",\"version\":\"c78bceea82834e964257\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/catalog-sorting.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/catalog-sorting.js\",\"version\":\"6c2e6a0a2cd09107cf04\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/legacy-template.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/legacy-template.js\",\"version\":\"29c54d60b87e558b319b\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/classic-shortcode.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/classic-shortcode.js\",\"version\":\"77bba6e2f771a40e1cec\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/coming-soon.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/coming-soon.js\",\"version\":\"eda5aa7c09bf71414023\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-i18n\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/customer-account.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/customer-account.js\",\"version\":\"7b218585a46958b8a170\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/featured-category.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/featured-category.js\",\"version\":\"c7075e8fffe37d9ad21d\",\"dependencies\":[\"react\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/featured-product.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/featured-product.js\",\"version\":\"d3af59655b446a53100c\",\"dependencies\":[\"react\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/filter-wrapper.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filter-wrapper.js\",\"version\":\"7f2269e03957a553e47c\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/filter-wrapper-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filter-wrapper-frontend.js\",\"version\":\"be90313602d88db405f9\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/handpicked-products.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/handpicked-products.js\",\"version\":\"acf80e15b27dca063f23\",\"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\"]},\"assets\\/client\\/blocks\\/mini-cart.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart.js\",\"version\":\"bf3254a6e47fc6d85fc6\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/mini-cart-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-frontend.js\",\"version\":\"de93ee7eb69dd39340fa\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-i18n\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/store-notices.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/store-notices.js\",\"version\":\"2e8dc38e57382d79fce0\",\"dependencies\":[\"react\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-deprecated\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/price-filter.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-filter.js\",\"version\":\"67ddaae590e2c2e1d5ff\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/price-filter-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-filter-frontend.js\",\"version\":\"9b60270349d493bd0f8b\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-best-sellers.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-best-sellers.js\",\"version\":\"421922b42cf4c6de6a74\",\"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\"]},\"assets\\/client\\/blocks\\/product-button.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-button.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-button-interactivity-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-button-interactivity-frontend.js\",\"version\":\"cb28f5957f4ece0c48e5\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"react\",\"wc-blocks-data-store\",\"wc-interactivity\",\"wp-a11y\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-categories.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-categories.js\",\"version\":\"19dfea34dec3553590a0\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\"]},\"assets\\/client\\/blocks\\/product-category.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-category.js\",\"version\":\"2cb7ddb399fe6f29c932\",\"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\"]},\"assets\\/client\\/blocks\\/product-collection.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-collection.js\",\"version\":\"3630c621d2a0481ab5b9\",\"dependencies\":[\"react\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-editor\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-collection-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-collection-frontend.js\",\"version\":\"37b3a37d0211278e6a0c\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/product-collection-no-results.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-collection-no-results.js\",\"version\":\"d1c4e65a98c9f79e8930\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-gallery.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-gallery.js\",\"version\":\"c7b111b60716451682e0\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-gallery-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-gallery-frontend.js\",\"version\":\"c340254c6c31444370fb\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/product-gallery-large-image.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-gallery-large-image.js\",\"version\":\"32b186af1c3d64a75d46\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/product-gallery-large-image-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-gallery-large-image-frontend.js\",\"version\":\"dd8201c48d0f0223ee5a\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/product-new.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-new.js\",\"version\":\"8af7bb3cd67cd0e42b9a\",\"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\"]},\"assets\\/client\\/blocks\\/product-on-sale.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-on-sale.js\",\"version\":\"a056ece38962718de3a1\",\"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\"]},\"assets\\/client\\/blocks\\/product-template.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-template.js\",\"version\":\"eca1e74855f51d321260\",\"dependencies\":[\"react\",\"wc-blocks-shared-context\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-query.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-query.js\",\"version\":\"a7d5f3d226515cbdae09\",\"dependencies\":[\"react\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/product-query-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-query-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-results-count.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-results-count.js\",\"version\":\"f5e7da47100ae9363279\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-search.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-search.js\",\"version\":\"1a4b65a4e4891b2f8194\",\"dependencies\":[\"react\",\"wc-settings\",\"wc-types\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-summary.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-summary.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-tag.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-tag.js\",\"version\":\"342af558ffb7a1357f15\",\"dependencies\":[\"react\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/product-title.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-title.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-title-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-title-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-top-rated.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-top-rated.js\",\"version\":\"6fb347850bc724a274ea\",\"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\"]},\"assets\\/client\\/blocks\\/products-by-attribute.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/products-by-attribute.js\",\"version\":\"d543c49700a68f5c6c79\",\"dependencies\":[\"react\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/rating-filter.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/rating-filter.js\",\"version\":\"3636cb77f3b3dfd04265\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/reviews-by-category.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-by-category.js\",\"version\":\"4cb7066b850f401e4c1b\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"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\"]},\"assets\\/client\\/blocks\\/reviews-by-product.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-by-product.js\",\"version\":\"e8a05f6b98cd05f62626\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/single-product.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/single-product.js\",\"version\":\"0e8dba50189e03650508\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-store-data\",\"wc-types\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"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-wordcount\"]},\"assets\\/client\\/blocks\\/stock-filter.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/stock-filter.js\",\"version\":\"e8e06c19a750590aefee\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/stock-filter-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/stock-filter-frontend.js\",\"version\":\"61da2cb317321e6acc8f\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/page-content-wrapper.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/page-content-wrapper.js\",\"version\":\"b17d813006ab6721c0bf\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-status.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-status.js\",\"version\":\"40afdaffd6a6bd8365ec\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-summary.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-summary.js\",\"version\":\"bce30c87f99abc744d6b\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-date\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-totals.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-totals.js\",\"version\":\"3578f6bba1fdfa8f4584\",\"dependencies\":[\"react\",\"wc-price-format\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-totals-wrapper.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-totals-wrapper.js\",\"version\":\"186984378635e6e08423\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-downloads.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-downloads.js\",\"version\":\"1d9816820e49da031b6c\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-downloads-wrapper.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-downloads-wrapper.js\",\"version\":\"7d7efbae89a188570068\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-billing-address.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-billing-address.js\",\"version\":\"129b99c02e2f0bbd408a\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-shipping-address.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-shipping-address.js\",\"version\":\"0371dc375c63dd728238\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-billing-wrapper.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-billing-wrapper.js\",\"version\":\"fce4c23d911cc8526506\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-shipping-wrapper.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-shipping-wrapper.js\",\"version\":\"b923bf1dbf6392c32509\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-additional-information.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-additional-information.js\",\"version\":\"f4a1c3f8c632681e85dd\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-additional-fields-wrapper.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-additional-fields-wrapper.js\",\"version\":\"4b25a3e20f302075ad71\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-additional-fields.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-additional-fields.js\",\"version\":\"da73c5eb34820cd26854\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/cart.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart.js\",\"version\":\"f7f6d7c941de52ee8da2\",\"dependencies\":[\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"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-notices\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/wc-payment-method-cod.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-payment-method-cod.js\",\"version\":\"5f402826b33bac8f9e43\",\"dependencies\":[\"react\",\"wc-blocks-registry\",\"wc-settings\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/cart-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-frontend.js\",\"version\":\"0c8c5e9e37d57f42a825\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"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-wordcount\"]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-items-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-items-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-items-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-items-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-totals-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-totals-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-totals-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-totals-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-taxes-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-taxes-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-subtotal-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-subtotal-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-totals-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-totals-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/filled-cart-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filled-cart-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/empty-cart-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/empty-cart-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-totals-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-totals-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-items-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-items-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-line-items-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-line-items-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-express-payment-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-express-payment-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/proceed-to-checkout-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/proceed-to-checkout-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-accepted-payment-methods-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-accepted-payment-methods-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-coupon-form-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-coupon-form-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-discount-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-discount-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-fee-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-fee-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-heading-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-heading-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-shipping-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-shipping-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-cross-sells-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-cross-sells-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-cross-sells-products-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-cross-sells-products-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout.js\",\"version\":\"51872d6fb59f4108070e\",\"dependencies\":[\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"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-notices\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/checkout-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-frontend.js\",\"version\":\"01ca023b099c8689df96\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"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-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/checkout-blocks\\/actions-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/actions-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/actions-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/actions-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/additional-information-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/additional-information-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/additional-information-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/additional-information-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/express-payment-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/fields-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/fields-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/fields-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/fields-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-note-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-note-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/payment-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/payment-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/payment-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/payment-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/terms-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/terms-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/terms-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/terms-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/totals-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/totals-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/totals-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/totals-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-actions-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-actions-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-additional-information-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-additional-information-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-billing-address-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-billing-address-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-contact-information-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-contact-information-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-express-payment-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-express-payment-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-fields-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-fields-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-note-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-note-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-cart-items-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-cart-items-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-coupon-form-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-coupon-form-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-discount-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-discount-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-fee-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-fee-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-shipping-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-shipping-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-subtotal-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-subtotal-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-taxes-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-taxes-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-totals-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-totals-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-payment-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-payment-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-address-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-address-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-methods-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-methods-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-method-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-method-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-pickup-options-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-pickup-options-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-terms-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-terms-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-totals-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-totals-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents.js\",\"version\":\"14e25599dbb3d905d529\",\"dependencies\":[\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"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-wordcount\"]},\"assets\\/client\\/blocks\\/empty-mini-cart-contents-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/empty-mini-cart-contents-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/filled-mini-cart-contents-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filled-mini-cart-contents-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-footer-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-footer-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-items-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-items-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-products-table-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-products-table-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-shopping-button-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-shopping-button-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-cart-button-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-cart-button-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-checkout-button-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-checkout-button-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-items-counter-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-items-counter-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-label-block.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-label-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-component-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-component-frontend.js\",\"version\":\"a16b6f8290305eec2716\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"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-wordcount\"]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-style.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"http:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]}},\"version\":\"wc-9.2.3\",\"hash\":\"f7521ad80cfc7fe946248478b81b2db2\"}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606948','_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606963','_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:7:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-7.0.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-7.0.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-7.0-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-7.0-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"7.0\";s:7:\"version\";s:3:\"7.0\";s:11:\"php_version\";s:3:\"7.4\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:49:\"https://downloads.w.org/release/wordpress-7.0.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:49:\"https://downloads.w.org/release/wordpress-7.0.zip\";s:10:\"no_content\";s:60:\"https://downloads.w.org/release/wordpress-7.0-no-content.zip\";s:11:\"new_bundled\";s:61:\"https://downloads.w.org/release/wordpress-7.0-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"7.0\";s:7:\"version\";s:3:\"7.0\";s:11:\"php_version\";s:3:\"7.4\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.9.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.9.4.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.9.4-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.9.4-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.9.4\";s:7:\"version\";s:5:\"6.9.4\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.8.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.8.5.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.8.5-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.8.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.5\";s:7:\"version\";s:5:\"6.8.5\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.7.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.7.5.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.7.5-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.7.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.5\";s:7:\"version\";s:5:\"6.7.5\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:5;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.6.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.6.5.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.6.5-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.6.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.6.5\";s:7:\"version\";s:5:\"6.6.5\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:6;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.5.8.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.5.8.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.5.8-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.5.8-new-bundled.zip\";s:7:\"partial\";s:61:\"https://downloads.w.org/release/wordpress-6.5.8-partial-3.zip\";s:8:\"rollback\";s:62:\"https://downloads.w.org/release/wordpress-6.5.8-rollback-3.zip\";}s:7:\"current\";s:5:\"6.5.8\";s:7:\"version\";s:5:\"6.5.8\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:5:\"6.5.3\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1781222595;s:15:\"version_checked\";s:5:\"6.5.3\";s:12:\"translations\";a:0:{}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606980','_transient_woocommerce_reports-transient-version','1781107669','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606981','_transient_timeout_orders-all-statuses','1781712670','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606982','_transient_orders-all-statuses','a:2:{s:7:\"version\";s:10:\"1781107669\";s:5:\"value\";a:1:{i:0;s:13:\"wc-processing\";}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606989','woocommerce_admin_created_default_shipping_zones','yes','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606990','woocommerce_admin_reviewed_default_shipping_zones','yes','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606991','_transient_woocommerce_shipping_task_zone_count_transient','2','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606992','_transient_timeout_woocommerce_admin_marketing_recommendations_specs','1781232114','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606993','_transient_woocommerce_admin_marketing_recommendations_specs','a:1:{s:5:\"en_US\";a:22:{s:23:\"google-listings-and-ads\";O:8:\"stdClass\":10:{s:5:\"title\";s:22:\"Google for WooCommerce\";s:11:\"description\";s:111:\"Reach millions of active shoppers across Google by creating ads for your products straight from your dashboard.\";s:3:\"url\";s:122:\"https://woocommerce.com/products/google-listings-and-ads/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:1;s:4:\"icon\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/google.svg\";s:7:\"product\";s:23:\"google-listings-and-ads\";s:6:\"plugin\";s:51:\"google-listings-and-ads/google-listings-and-ads.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}s:13:\"subcategories\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:14:\"sales-channels\";s:4:\"name\";s:14:\"Sales channels\";}}s:4:\"tags\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"built-by-woocommerce\";s:4:\"name\";s:20:\"Built by WooCommerce\";}}}s:22:\"reddit-for-woocommerce\";O:8:\"stdClass\":10:{s:5:\"title\";s:22:\"Reddit for WooCommerce\";s:11:\"description\";s:69:\"Seamlessly sync your products to find new customers using Reddit Ads.\";s:3:\"url\";s:105:\"https://woocommerce.com/products/reddit/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:1;s:4:\"icon\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/reddit.svg\";s:7:\"product\";s:22:\"reddit-for-woocommerce\";s:6:\"plugin\";s:49:\"reddit-for-woocommerce/reddit-for-woocommerce.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}s:13:\"subcategories\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:14:\"sales-channels\";s:4:\"name\";s:14:\"Sales channels\";}}s:4:\"tags\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"built-by-woocommerce\";s:4:\"name\";s:20:\"Built by WooCommerce\";}}}s:19:\"tiktok-for-business\";O:8:\"stdClass\":10:{s:5:\"title\";s:22:\"TikTok for WooCommerce\";s:11:\"description\";s:92:\"Create advertising campaigns and reach one billion global users with TikTok for WooCommerce.\";s:3:\"url\";s:121:\"https://woocommerce.com/products/tiktok-for-woocommerce/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:1;s:4:\"icon\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/tiktok.jpg\";s:7:\"product\";s:19:\"tiktok-for-business\";s:6:\"plugin\";s:46:\"tiktok-for-business/tiktok-for-woocommerce.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}s:13:\"subcategories\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:14:\"sales-channels\";s:4:\"name\";s:14:\"Sales channels\";}}s:4:\"tags\";a:0:{}}s:24:\"snapchat-for-woocommerce\";O:8:\"stdClass\":10:{s:5:\"title\";s:24:\"Snapchat for WooCommerce\";s:11:\"description\";s:83:\"Find new customers by reaching an untapped audience using Snapchat for WooCommerce.\";s:3:\"url\";s:107:\"https://woocommerce.com/products/snapchat/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:1;s:4:\"icon\";s:98:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/snapchat.svg\";s:7:\"product\";s:24:\"snapchat-for-woocommerce\";s:6:\"plugin\";s:53:\"snapchat-for-woocommerce/snapchat-for-woocommerce.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}s:13:\"subcategories\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:14:\"sales-channels\";s:4:\"name\";s:14:\"Sales channels\";}}s:4:\"tags\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"built-by-woocommerce\";s:4:\"name\";s:20:\"Built by WooCommerce\";}}}s:25:\"pinterest-for-woocommerce\";O:8:\"stdClass\":10:{s:5:\"title\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:165:\"Grow your business on Pinterest! Use this official plugin to allow shoppers to Pin products while browsing your store, track conversions, and advertise on Pinterest.\";s:3:\"url\";s:124:\"https://woocommerce.com/products/pinterest-for-woocommerce/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:1;s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/pinterest.svg\";s:7:\"product\";s:25:\"pinterest-for-woocommerce\";s:6:\"plugin\";s:55:\"pinterest-for-woocommerce/pinterest-for-woocommerce.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}s:13:\"subcategories\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:14:\"sales-channels\";s:4:\"name\";s:14:\"Sales channels\";}}s:4:\"tags\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"built-by-woocommerce\";s:4:\"name\";s:20:\"Built by WooCommerce\";}}}s:9:\"blaze-ads\";O:8:\"stdClass\":10:{s:5:\"title\";s:9:\"Blaze Ads\";s:11:\"description\";s:133:\"The quickest way to grow your business by advertising to over 100 million users across Tumblr and WordPress, starting at just $5/day.\";s:3:\"url\";s:108:\"https://woocommerce.com/products/blaze-ads/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:1;s:4:\"icon\";s:95:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/blaze.svg\";s:7:\"product\";s:9:\"blaze-ads\";s:6:\"plugin\";s:23:\"blaze-ads/blaze-ads.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}s:13:\"subcategories\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:14:\"sales-channels\";s:4:\"name\";s:14:\"Sales channels\";}}s:4:\"tags\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"built-by-woocommerce\";s:4:\"name\";s:20:\"Built by WooCommerce\";}}}s:8:\"mailpoet\";O:8:\"stdClass\":10:{s:5:\"title\";s:8:\"MailPoet\";s:11:\"description\";s:111:\"Create and send purchase follow-up emails, newsletters, and promotional campaigns straight from your dashboard.\";s:3:\"url\";s:107:\"https://woocommerce.com/products/mailpoet/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:1;s:4:\"icon\";s:98:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/mailpoet.svg\";s:7:\"product\";s:8:\"mailpoet\";s:6:\"plugin\";s:21:\"mailpoet/mailpoet.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}s:13:\"subcategories\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";}}s:4:\"tags\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"built-by-woocommerce\";s:4:\"name\";s:20:\"Built by WooCommerce\";}}}s:7:\"klaviyo\";O:8:\"stdClass\":10:{s:5:\"title\";s:23:\"Klaviyo for WooCommerce\";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:3:\"url\";s:122:\"https://woocommerce.com/products/klaviyo-for-woocommerce/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:1;s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/klaviyo.png\";s:7:\"product\";s:7:\"klaviyo\";s:6:\"plugin\";s:19:\"klaviyo/klaviyo.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}s:13:\"subcategories\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";}}s:4:\"tags\";a:0:{}}s:25:\"mailchimp-for-woocommerce\";O:8:\"stdClass\":10:{s:5:\"title\";s:25:\"Mailchimp for WooCommerce\";s:11:\"description\";s:73:\"Send targeted campaigns, recover abandoned carts and more with Mailchimp.\";s:3:\"url\";s:124:\"https://woocommerce.com/products/mailchimp-for-woocommerce/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:1;s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/mailchimp.svg\";s:7:\"product\";s:25:\"mailchimp-for-woocommerce\";s:6:\"plugin\";s:51:\"mailchimp-for-woocommerce/mailchimp-woocommerce.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}s:13:\"subcategories\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";}}s:4:\"tags\";a:0:{}}s:11:\"automatewoo\";O:8:\"stdClass\":10:{s:5:\"title\";s:20:\"Personalized Coupons\";s:11:\"description\";s:86:\"Generate dynamic personalized coupons for your customers that increase purchase rates.\";s:3:\"url\";s:110:\"https://woocommerce.com/products/automatewoo/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:0;s:4:\"icon\";s:122:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/automatewoo-personalized-coupons.svg\";s:7:\"product\";s:11:\"automatewoo\";s:6:\"plugin\";s:27:\"automatewoo/automatewoo.php\";s:10:\"categories\";a:1:{i:0;s:7:\"coupons\";}s:13:\"subcategories\";a:0:{}s:4:\"tags\";a:0:{}}s:21:\"automatewoo-referrals\";O:8:\"stdClass\":10:{s:5:\"title\";s:26:\"AutomateWoo Refer a Friend\";s:11:\"description\";s:89:\"Boost your organic sales by adding a customer referral program to your WooCommerce store.\";s:3:\"url\";s:125:\"https://woocommerce.com/products/automatewoo-refer-a-friend/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:0;s:4:\"icon\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/automatewoo.svg\";s:7:\"product\";s:21:\"automatewoo-referrals\";s:6:\"plugin\";s:47:\"automatewoo-referrals/automatewoo-referrals.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}s:13:\"subcategories\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"automations\";s:4:\"name\";s:11:\"Automations\";}}s:4:\"tags\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"built-by-woocommerce\";s:4:\"name\";s:20:\"Built by WooCommerce\";}}}s:21:\"automatewoo-birthdays\";O:8:\"stdClass\":10:{s:5:\"title\";s:21:\"AutomateWoo Birthdays\";s:11:\"description\";s:119:\"Delight customers and boost organic sales with a special WooCommerce birthday email (and coupon!) on their special day.\";s:3:\"url\";s:120:\"https://woocommerce.com/products/automatewoo-birthdays/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:0;s:4:\"icon\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/automatewoo.svg\";s:7:\"product\";s:21:\"automatewoo-birthdays\";s:6:\"plugin\";s:47:\"automatewoo-birthdays/automatewoo-birthdays.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}s:13:\"subcategories\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"automations\";s:4:\"name\";s:11:\"Automations\";}}s:4:\"tags\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"built-by-woocommerce\";s:4:\"name\";s:20:\"Built by WooCommerce\";}}}s:18:\"trustpilot-reviews\";O:8:\"stdClass\":10:{s:5:\"title\";s:18:\"Trustpilot Reviews\";s:11:\"description\";s:59:\"Collect and showcase verified reviews that consumers trust.\";s:3:\"url\";s:117:\"https://woocommerce.com/products/trustpilot-reviews/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:1;s:4:\"icon\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/trustpilot.png\";s:7:\"product\";s:18:\"trustpilot-reviews\";s:6:\"plugin\";s:36:\"trustpilot-reviews/wc_trustpilot.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}s:13:\"subcategories\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"conversion\";s:4:\"name\";s:10:\"Conversion\";}}s:4:\"tags\";a:0:{}}s:5:\"vimeo\";O:8:\"stdClass\":10:{s:5:\"title\";s:21:\"Vimeo for WooCommerce\";s:11:\"description\";s:111:\"Turn your product images into stunning videos that engage and convert audiences - no video experience required.\";s:3:\"url\";s:104:\"https://woocommerce.com/products/vimeo/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:1;s:4:\"icon\";s:95:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/vimeo.png\";s:7:\"product\";s:5:\"vimeo\";s:6:\"plugin\";s:14:\"vimeo/Core.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}s:13:\"subcategories\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"conversion\";s:4:\"name\";s:10:\"Conversion\";}}s:4:\"tags\";a:0:{}}s:11:\"zero-bs-crm\";O:8:\"stdClass\":10:{s:5:\"title\";s:27:\"Jetpack CRM for WooCommerce\";s:11:\"description\";s:190:\"Harness data from WooCommerce to grow your business. Manage leads, customers, and segments, through automation, quotes, invoicing, billing, and email marketing. Power up your store with CRM.\";s:3:\"url\";s:110:\"https://woocommerce.com/products/jetpack-crm/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:1;s:4:\"icon\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/jetpack-crm.svg\";s:7:\"product\";s:11:\"zero-bs-crm\";s:6:\"plugin\";s:25:\"zero-bs-crm/ZeroBSCRM.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}s:13:\"subcategories\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:3:\"crm\";s:4:\"name\";s:3:\"CRM\";}}s:4:\"tags\";a:0:{}}s:18:\"woocommerce-zapier\";O:8:\"stdClass\":10:{s:5:\"title\";s:18:\"WooCommerce Zapier\";s:11:\"description\";s:100:\"Integrate your WooCommerce store with 5000+ cloud apps and services today. Trusted by 11,000+ users.\";s:3:\"url\";s:117:\"https://woocommerce.com/products/woocommerce-zapier/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:0;s:4:\"icon\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/zapier.png\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:6:\"plugin\";s:41:\"woocommerce-zapier/woocommerce-zapier.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}s:13:\"subcategories\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:3:\"crm\";s:4:\"name\";s:3:\"CRM\";}}s:4:\"tags\";a:0:{}}s:27:\"integration-with-salesforce\";O:8:\"stdClass\":10:{s:5:\"title\";s:10:\"Salesforce\";s:11:\"description\";s:125:\"Sync your website\'s data like contacts, products, and orders over Salesforce CRM with Salesforce Integration for WooCommerce.\";s:3:\"url\";s:142:\"https://woocommerce.com/products/integration-with-salesforce-for-woocommerce/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:0;s:4:\"icon\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/salesforce.jpg\";s:7:\"product\";s:27:\"integration-with-salesforce\";s:6:\"plugin\";s:59:\"integration-with-salesforce/integration-with-salesforce.php\";s:10:\"categories\";a:1:{i:0;s:9:\"marketing\";}s:13:\"subcategories\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:3:\"crm\";s:4:\"name\";s:3:\"CRM\";}}s:4:\"tags\";a:0:{}}s:25:\"woocommerce-smart-coupons\";O:8:\"stdClass\":10:{s:5:\"title\";s:13:\"Smart Coupons\";s:11:\"description\";s:100:\"Powerful, \"all in one\" solution for gift certificates, store credits, discount coupons and vouchers.\";s:3:\"url\";s:112:\"https://woocommerce.com/products/smart-coupons/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:0;s:4:\"icon\";s:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/woocommerce-smart-coupons.svg\";s:7:\"product\";s:25:\"woocommerce-smart-coupons\";s:6:\"plugin\";s:55:\"woocommerce-smart-coupons/woocommerce-smart-coupons.php\";s:10:\"categories\";a:1:{i:0;s:7:\"coupons\";}s:13:\"subcategories\";a:0:{}s:4:\"tags\";a:0:{}}s:23:\"woocommerce-url-coupons\";O:8:\"stdClass\":10:{s:5:\"title\";s:11:\"URL Coupons\";s:11:\"description\";s:108:\"Create a unique URL that applies a discount and optionally adds one or more products to the customer\'s cart.\";s:3:\"url\";s:110:\"https://woocommerce.com/products/url-coupons/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:0;s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/woocommerce-url-coupons.svg\";s:7:\"product\";s:23:\"woocommerce-url-coupons\";s:6:\"plugin\";s:51:\"woocommerce-url-coupons/woocommerce-url-coupons.php\";s:10:\"categories\";a:1:{i:0;s:7:\"coupons\";}s:13:\"subcategories\";a:0:{}s:4:\"tags\";a:0:{}}s:24:\"woocommerce-store-credit\";O:8:\"stdClass\":10:{s:5:\"title\";s:24:\"WooCommerce Store Credit\";s:11:\"description\";s:77:\"Create \"store credit\" coupons for customers which are redeemable at checkout.\";s:3:\"url\";s:111:\"https://woocommerce.com/products/store-credit/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:0;s:4:\"icon\";s:114:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/woocommerce-store-credit.svg\";s:7:\"product\";s:24:\"woocommerce-store-credit\";s:6:\"plugin\";s:53:\"woocommerce-store-credit/woocommerce-store-credit.php\";s:10:\"categories\";a:1:{i:0;s:7:\"coupons\";}s:13:\"subcategories\";a:0:{}s:4:\"tags\";a:0:{}}s:29:\"woocommerce-free-gift-coupons\";O:8:\"stdClass\":10:{s:5:\"title\";s:17:\"Free Gift Coupons\";s:11:\"description\";s:59:\"Give away a free item to any customer with the coupon code.\";s:3:\"url\";s:116:\"https://woocommerce.com/products/free-gift-coupons/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:0;s:4:\"icon\";s:119:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/woocommerce-free-gift-coupons.svg\";s:7:\"product\";s:29:\"woocommerce-free-gift-coupons\";s:6:\"plugin\";s:63:\"woocommerce-free-gift-coupons/woocommerce-free-gift-coupons.php\";s:10:\"categories\";a:1:{i:0;s:7:\"coupons\";}s:13:\"subcategories\";a:0:{}s:4:\"tags\";a:0:{}}s:25:\"woocommerce-group-coupons\";O:8:\"stdClass\":10:{s:5:\"title\";s:13:\"Group Coupons\";s:11:\"description\";s:137:\"Coupons for groups. Provides the option to have coupons that are restricted to group members or roles. Works with the free Groups plugin.\";s:3:\"url\";s:112:\"https://woocommerce.com/products/group-coupons/?utm_source=marketingtab&utm_medium=product&utm_campaign=wcaddons\";s:14:\"direct_install\";b:0;s:4:\"icon\";s:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/woocommerce-group-coupons.svg\";s:7:\"product\";s:25:\"woocommerce-group-coupons\";s:6:\"plugin\";s:55:\"woocommerce-group-coupons/woocommerce-group-coupons.php\";s:10:\"categories\";a:1:{i:0;s:7:\"coupons\";}s:13:\"subcategories\";a:0:{}s:4:\"tags\";a:0:{}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606996','_site_transient_timeout_browser_90daa551604269dbcdcf237b5cc700f3','1781232395','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606997','_site_transient_browser_90daa551604269dbcdcf237b5cc700f3','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"148.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606998','_site_transient_timeout_php_check_da775d00ae55849f14f81cf79fc50d46','1781232395','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1606999','_site_transient_php_check_da775d00ae55849f14f81cf79fc50d46','a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:3:\"7.4\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607000','_transient_product_query-transient-version','1781108190','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607001','_transient_shipping-transient-version','1780627597','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607002','_transient_timeout_wc_shipping_method_count_legacy','1783219597','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607003','_transient_wc_shipping_method_count_legacy','a:2:{s:7:\"version\";s:10:\"1780627597\";s:5:\"value\";i:2;}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607004','_site_transient_timeout_community-events-d41d8cd98f00b204e9800998ecf8427e','1781119423','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607005','_site_transient_community-events-d41d8cd98f00b204e9800998ecf8427e','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";b:0;}s:6:\"events\";a:2:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:87:\"WordPress Campus Connect Hajee Mohammad Danesh Science and Technology University (HSTU)\";s:3:\"url\";s:53:\"https://events.wordpress.org/campusconnect/2026/hstu/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-06-11 00:00:00\";s:8:\"end_date\";s:19:\"2026-06-11 00:00:00\";s:20:\"start_unix_timestamp\";i:1781114400;s:18:\"end_unix_timestamp\";i:1781114400;s:8:\"location\";a:4:{s:8:\"location\";s:20:\"Dinajpur, Bangladesh\";s:7:\"country\";s:2:\"BD\";s:8:\"latitude\";d:25.6951926;s:9:\"longitude\";d:88.6519613;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:22:\"WordCamp Rajshahi 2026\";s:3:\"url\";s:35:\"https://rajshahi.wordcamp.org/2026/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-07-02 00:00:00\";s:8:\"end_date\";s:19:\"2026-07-03 00:00:00\";s:20:\"start_unix_timestamp\";i:1782928800;s:18:\"end_unix_timestamp\";i:1783015200;s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Rajshahi,Bangladesh\";s:7:\"country\";s:2:\"BD\";s:8:\"latitude\";d:24.3745949;s:9:\"longitude\";d:88.6217392;}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607020','_site_transient_wp_plugin_dependencies_plugin_data','a:1:{s:11:\"woocommerce\";a:35:{s:4:\"name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:7:\"version\";s:6:\"10.8.1\";s:6:\"author\";s:67:\"<a href=\"https://profiles.wordpress.org/automattic/\">Automattic</a>\";s:14:\"author_profile\";s:42:\"https://profiles.wordpress.org/automattic/\";s:12:\"contributors\";a:50:{s:10:\"automattic\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/automattic/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"Automattic\";}s:11:\"woocommerce\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/woocommerce/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/c7781a3c13bcc86b57064b9539ec22da52fd5ef1902fbc020d0a4a8595b14ea0?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"WooCommerce\";}s:10:\"mikejolley\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/mikejolley/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/8295774fc174b6a5b9bd960709949f4de88cd0b8708d711dc5b6676693d41432?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Mike Jolley\";}s:11:\"jameskoster\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/jameskoster/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/94b5473c03a46cb204f0a868dfe65f8199ef483242814ec1bcaf6770ba90d203?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"James Koster\";}s:14:\"claudiosanches\";a:3:{s:7:\"profile\";s:46:\"https://profiles.wordpress.org/claudiosanches/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/ac91c7d73bb4501567ab3790755bf001d53dac8d1f4311a2480a5fb62dfb180c?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:15:\"Claudio Sanches\";}s:13:\"rodrigosprimo\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/rodrigosprimo/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/1dc85457417601db220b14e7fa96c842700fbd1cceecd21d65306c26fffb92cc?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Rodrigo Primo\";}s:15:\"peterfabian1000\";a:3:{s:7:\"profile\";s:47:\"https://profiles.wordpress.org/peterfabian1000/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/c25372df076206b9fe44dddd7ec6af6ba427d3fe2a457fa301fcb9cf90b23ddd?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Peter Fabian\";}s:7:\"vedjain\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/vedjain/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/eb19da24784b2f86d310a213b60c903b0a5464a6c725cf5fcabfd274383337c4?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:19:\"Vedanshu - Urumi.AI\";}s:8:\"jamosova\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/jamosova/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/73f150b0172cbb319293e372b3b20f4b78f0d5fbe70558318f69aad70908e95a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Julia Amosova\";}s:16:\"obliviousharmony\";a:3:{s:7:\"profile\";s:48:\"https://profiles.wordpress.org/obliviousharmony/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/67851e0deeb2c6a7a4c238cf45c0e9694a919e2c5e02706c5852e67c4ad279c9?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"obliviousharmony\";}s:9:\"konamiman\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/konamiman/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/ee97f225bf5be24cd3c3b04990b9fc3dfc67a2c9aaea418ec2bdd32e164ed9b1?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:23:\"Néstor Soriano Vilchez\";}s:8:\"sadowski\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/sadowski/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/cee318a6ec06e747df7f70f274da4e0cf4adba60c59e12d660d0f5a6ba78658a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:8:\"sadowski\";}s:8:\"wpmuguru\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/wpmuguru/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/23afb25faac780cb6ec9533b2ac9e5daedf7a1faf444b41db471b9529701f87e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Ron Rennick\";}s:5:\"royho\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/royho/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/1beda14f19fa93030ba2c66359dc270286820af6c667cdfeb4e87833c747f3a0?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"royho\";}s:13:\"barryhughes-1\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/barryhughes-1/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/6ce0f4afb77f8d32da9c43e9a39c84fcfb3ed0e9cac24f440c46a151946cdec8?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"Barry\";}s:12:\"claudiulodro\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/claudiulodro/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/34a74527d3859bd9fb0b477cd80c9f78b3610259a251c32a31023ead285ac124?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:19:\"Claudiu Lodromanean\";}s:12:\"tiagonoronha\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/tiagonoronha/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/0352cd451932c8a2ab15b8457933e6d90cc919bbf23db63e3bc35ee41d56577e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Tiago Noronha\";}s:6:\"ryelle\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/ryelle/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/6d860975d8bd4b166268bba8da8c1ea0e861a7d7f4ef0aee52fa727fc69e12b2?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:17:\"Kelly Choyce-Dwan\";}s:10:\"levinmedia\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/levinmedia/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/657d301b3683f02c75e4b2363681518e94485770056cc51526f19818884ba6aa?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"levinmedia\";}s:7:\"aljullu\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/aljullu/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/784f29a6d06799d1d40adc32b115da932cd1ee2b22d91cd8597e9fe6e4ee1420?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:21:\"Albert Juhé Lluveras\";}s:6:\"nerrad\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/nerrad/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/1bd692736861bd20949789e4a3d922736480efcacb0e44041616c5a79eaa54c0?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:22:\"Darren Ethier (nerrad)\";}s:10:\"joshuawold\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/joshuawold/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/f98224d78e12fcc0e9686dbf15f8c37b1967835212f25a92fceb6caafdc5b08d?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Joshua Wold\";}s:13:\"assassinateur\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/assassinateur/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/0850998ce28d445575c78a6405382fd8418569c761304c10c0d5df85453116c0?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Nadir Seghir\";}s:7:\"haszari\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/haszari/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/5478c55437f47714a4dae1016cf521e803dfc4633ce5781b2f24d749d1623f69?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Rua Haszard\";}s:10:\"mppfeiffer\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/mppfeiffer/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/0fe64f1ef1e4abe1825653bcb17113a4a14c755f5b6f77d2f27494fe349d7081?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:19:\"Michael P. Pfeiffer\";}s:10:\"nielslange\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/nielslange/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/0894ec0d7e5d70306a16431b36249b1928cad88a572de9b5211a54d75ad5d77a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Niels Lange\";}s:9:\"ralucastn\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/ralucastn/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/e65d79886499f47ee368495f5016117deef427d5abca9d3ed76c4bfaa42e7c0a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:6:\"Raluca\";}s:11:\"tjcafferkey\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/tjcafferkey/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/23d134901eef453e721759c9d84810f5748a84fc8681ed230c7d78e53583c77a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"tjcafferkey\";}s:13:\"danielwrobert\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/danielwrobert/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/f1f823ffbe2a6adb7f94c6998079fd6ae6636d3b6272dd8c54385783360e2cf8?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"danielwrobert\";}s:19:\"patriciahillebrandt\";a:3:{s:7:\"profile\";s:51:\"https://profiles.wordpress.org/patriciahillebrandt/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/13f5707fad9a68e5cf9c3c0ebb9c7179c862dcb279c761d20c9b40bd2fff9f4a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:19:\"patriciahillebrandt\";}s:7:\"albarin\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/albarin/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/0dd150b60949026a3c34f49d40089e3a8cf97dc331e2f5b27e805ffd34648e22?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:7:\"albarin\";}s:10:\"dinhtungdu\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/dinhtungdu/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/07e79c32b1abba868f8c5e3ee0c85b9150c74e2c2a946088a268e6be486d9114?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:7:\"Tung Du\";}s:10:\"imanish003\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/imanish003/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/59ff646ede2dd6475f24762ac21ee2afd7d72fdcade7b9d2915cf1c3c2d984a2?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Manish Menaria\";}s:12:\"karolmanijak\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/karolmanijak/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/42305d7047ca11d494b1912d687266a50edd05954fdec22e61ab1fe63cf2df6b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Karol Manijak\";}s:13:\"sunyatasattva\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/sunyatasattva/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/73ce316f9775441698b601e6902728a80837f7fd6df0846e3c5a82448dce447c?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:20:\"sunyatasattva (a11n)\";}s:13:\"alexandrelara\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/alexandrelara/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/1c0c71a072f798066e4661395461e73e0fb6692eaddcced2a0e457ef01a458e8?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Alexandre Lara\";}s:7:\"gigitux\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/gigitux/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/2dcd003f15403180364c56b093b48e6edca9a88c8f1470b965b87fc230c66d7f?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Luigi Teschio\";}s:12:\"danieldudzic\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/danieldudzic/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/b689767c4b308b8f5910cef3a2f44c2acdadcb3b63326b0d5c865d2c208c668e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"danieldudzic\";}s:11:\"samueljseay\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/samueljseay/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/4c4a5e8fd5b99749ed9ac735c31d0370254356e40feea46bcf51b2b607f8ab0e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:3:\"Sam\";}s:12:\"alexflorisca\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/alexflorisca/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/b68615471f527e6224909ce0726dda68b074e6cbcf89e0d4b5ecc483a96557ca?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Alex Florisca\";}s:5:\"opr18\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/opr18/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/e083a0759b8ea01b11c1f154a3087ddfaf65a93011cf97a85fdbfc0cda709538?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"opr18\";}s:12:\"tarunvijwani\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/tarunvijwani/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/fa4a4b2688afb8d238bb035f31fda4d07dabd67ccf41576276e5eb084463d617?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"tarunvijwani\";}s:12:\"pauloarromba\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/pauloarromba/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/ab6034aa12c0e53f21978df9e470f161f06810d814082cbe3ab74450f0618818?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Paulo Arromba\";}s:9:\"saadtarhi\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/saadtarhi/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/f4fd0df69b8c7bf3a3e6526df3b42c3854de544904ef825bfd549afc9829f645?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:7:\"Saad T.\";}s:4:\"bor0\";a:3:{s:7:\"profile\";s:36:\"https://profiles.wordpress.org/bor0/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/787d8ea71701ced680cd80411d656c20e0e600be5d34f6ce3478143d43dc9fd9?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"Boro Sitnikovski\";}s:5:\"kloon\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/kloon/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/c7c708f5b0957714ab48e00220b0f74acccb43b70fa0d4b5ee091d59951ae751?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:17:\"Gerhard Potgieter\";}s:12:\"coreymckrill\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/coreymckrill/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/9cc64cf0f650f165ac55f1294105259f82f2b72c4c24903a79af6d6cd1ad2a9a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Corey McKrill\";}s:12:\"jorgeatorres\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/jorgeatorres/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/33d6a063c7411775135383c5bae6cd4e45d094b72ec062c96ceafca5e2a4956f?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:15:\"Jorge A. Torres\";}s:10:\"leifsinger\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/leifsinger/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/8107603a6bbc5ff73e07e2450f260335af41a5adb2cccd80cba20cdd28b96651?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Leif Singer\";}s:9:\"neosinner\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/neosinner/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/68b52d53a3c6dd39841f697853a1965057c6f3aeb9e89f7d960d1921ffa90d29?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Ján Mikláš\";}}s:8:\"requires\";s:3:\"6.9\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:90;s:7:\"ratings\";a:5:{i:5;i:3977;i:4;i:196;i:3;i:112;i:2;i:108;i:1;i:408;}s:11:\"num_ratings\";i:4801;s:11:\"support_url\";s:49:\"https://wordpress.org/support/plugin/woocommerce/\";s:15:\"support_threads\";i:249;s:24:\"support_threads_resolved\";i:206;s:15:\"active_installs\";i:7000000;s:12:\"last_updated\";s:21:\"2026-05-27 5:54pm GMT\";s:5:\"added\";s:10:\"2011-09-27\";s:8:\"homepage\";s:24:\"https://woocommerce.com/\";s:8:\"sections\";a:6:{s:11:\"description\";s:12355:\"<p><a href=\"https://woocommerce.com/woocommerce/\" rel=\"nofollow ugc\">WooCommerce</a> is the open-source ecommerce platform for WordPress.</p>\n<p>Our core platform is free, flexible, and amplified by a global community. The freedom of open-source means you retain full ownership of your store’s content and data forever.</p>\n<p>Whether you’re launching a business, taking brick-and-mortar retail online, or developing sites for clients, use WooCommerce for a store that powerfully blends content and commerce.</p>\n<ul>\n<li><strong>Create beautiful, enticing storefronts</strong> with <a href=\"https://woocommerce.com/product-category/themes/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">themes</a> suited to your brand and industry.</li>\n<li><strong>Increase revenue</strong> with an optimized <a href=\"https://woocommerce.com/checkout-blocks/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">shopping cart experience</a> that converts.</li>\n<li><strong>Customize product pages in minutes</strong> using modular <a href=\"https://woocommerce.com/document/woocommerce-blocks/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">product blocks</a>.</li>\n<li>Showcase physical and digital goods, product variations, custom configurations, instant downloads, and affiliate items.</li>\n<li>Sell <a href=\"https://woocommerce.com/products/woocommerce-subscriptions/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">subscriptions</a>, <a href=\"https://woocommerce.com/products/woocommerce-bookings/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">bookings</a>, or <a href=\"https://woocommerce.com/products/woocommerce-memberships/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">memberships</a>, with our developer-vetted extensions.</li>\n<li><strong>Rise to the top of search results</strong> by leveraging <a href=\"https://www.searchenginejournal.com/wordpress-best-cms-seo/\" rel=\"nofollow ugc\">WordPress’ SEO advantage</a>.</li>\n<li><strong>Build on a platform that scales.</strong> Get flexible ecommerce for <a href=\"https://woocommerce.com/high-volume-stores/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">high-volume stores</a>.</li>\n</ul>\n<h4>ALL THE TOOLS YOU NEED TO SELL</h4>\n<p>Built-in tools and popular integrations help you efficiently manage your business operations. Many services are free to add with a single click via the optional <a href=\"https://woocommerce.com/document/woocommerce-setup-wizard/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Setup Wizard</a>.</p>\n<ul>\n<li><strong>Choose how you want to get paid</strong>. Conveniently manage payments from the comfort of your store with <a href=\"https://woocommerce.com/payments/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooPayments</a> (Available in the U.S., U.K., Ireland, Australia, New Zealand, Canada, Spain, France, Germany, and Italy). Securely accept credit cards, mobile wallets, bank transfers, and cash thanks to <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">100+ payment gateways</a> – including <a href=\"https://woocommerce.com/products/stripe/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Stripe</a>, <a href=\"https://woocommerce.com/products/woocommerce-gateway-paypal-checkout/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">PayPal</a>, and <a href=\"https://woocommerce.com/products/square/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Square</a>.</li>\n<li><strong>Configure your shipping options</strong>. Print USPS labels right from your dashboard and even schedule a pickup with <a href=\"https://woocommerce.com/products/shipping/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Shipping</a> (U.S.-only). Connect with <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">well-known carriers</a> such as UPS and FedEx – plus a wide variety of delivery, inventory, and fulfillment solutions for your locale.</li>\n<li><strong>Simplify sales tax</strong>. Add <a href=\"https://woocommerce.com/products/tax/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Tax</a> or <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/tax?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">similar integrated services</a> to make automated calculations a reality.</li>\n</ul>\n<h4>Grow your business, add features, and monitor your store on the go</h4>\n<p>WooCommerce means business. Keep tabs on the performance metrics most important to you with a powerful and flexible central dashboard built into WooCommerce.</p>\n<p>Expand your audience across marketing and social channels with <a href=\"https://woocommerce.com/products/google-ads/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Google Ads</a>, <a href=\"https://woocommerce.com/products/hubspot-for-woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">HubSpot</a>, <a href=\"https://woocommerce.com/products/mailchimp-for-woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Mailchimp</a>, and <a href=\"https://woocommerce.com/products/facebook/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Facebook</a> integrations. You can always check out the in-dashboard <a href=\"https://woocommerce.com/document/marketing-hub/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Marketing Hub</a> for fresh ideas and tips to help you succeed.</p>\n<p>Enhance store functionality with hundreds of free and paid extensions from the <a href=\"https://woocommerce.com/products/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Marketplace</a>. Our developers <a href=\"https://woocommerce.com/document/marketplace-overview/#section-6?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">vet each new extension</a> and regularly review existing extensions to maintain Marketplace quality standards. We are actively <a href=\"https://woocommerce.com/document/marketplace-overview/#section-2?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">looking for products that help store builders create successful stores</a>.</p>\n<p>Manage your store from anywhere with the free WooCommerce <a href=\"https://woocommerce.com/mobile/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">mobile app</a> (Android and iOS). Spoiler alert: Keep an ear out for the slightly addictive &#8220;cha-ching&#8221; notification sound each time you make a new sale!</p>\n<h4>Own and control your store data – forever</h4>\n<p>With <a href=\"https://woocommerce.com/woocommerce/\" rel=\"nofollow ugc\">WooCommerce</a>, your data belongs to you. Always.</p>\n<p>If you opt to share <a href=\"https://woocommerce.com/usage-tracking/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">usage data</a> with us, you can feel confident knowing that it’s anonymized and kept secure. Choose to opt-out at any time without impacting your store.</p>\n<p>Unlike hosted ecommerce solutions, WooCommerce store data is future-proof; you’re free to export all your content and take your site to any platform you choose. No restrictions.</p>\n<h4>Why developers choose (and love) WooCommerce</h4>\n<p>Developers can use <a href=\"https://woocommerce.com/woocommerce/\" rel=\"nofollow ugc\">WooCommerce</a> to create, customize, and scale a store to meet a client’s exact specifications, making enhancements through extensions or custom solutions.</p>\n<ul>\n<li>Leverage <a href=\"https://woocommerce.com/document/introduction-to-hooks-actions-and-filters/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">hooks and filters</a> to modify or create functionality.</li>\n<li>Integrate virtually any service using a robust <a href=\"https://developer.woocommerce.com/docs/getting-started-with-the-woocommerce-rest-api/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">REST API</a> and webhooks.</li>\n<li>Design and build custom content blocks with React.</li>\n<li><a href=\"https://developer.woocommerce.com/docs/category/extension-development/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Inspect and modify</a> any aspect of the core plugin code.</li>\n<li>Speed up development with a lightning-fast <a href=\"https://developer.woocommerce.com/docs/category/wc-cli/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">CLI</a>.</li>\n</ul>\n<p>The core platform is tested rigorously and often, supported by a dedicated development team working across time zones. Comprehensive documentation is updated with each release, empowering you to build exactly the store required.</p>\n<h4>Be part of our growing international community</h4>\n<p>WooCommerce has a large, passionate community dedicated to helping merchants succeed – and it’s growing fast.</p>\n<p>There are <a href=\"https://woocommerce.com/meetups/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Meetups</a> in locations around the world that you can attend for free and even get involved in running. These events are a great way to learn from others, share your expertise, and connect with like-minded folks.</p>\n<p>WooCommerce also has a regular presence at WordCamps across the globe – we’d love to meet you.</p>\n<h4>Contribute and translate</h4>\n<p>WooCommerce is developed and supported by Automattic, the creators of WordPress.com and Jetpack. We also have hundreds of independent contributors, and there’s always room for more. Head to the <a href=\"https://github.com/woocommerce/woocommerce?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce GitHub Repository</a> to find out how you can pitch in.</p>\n<p>WooCommerce is translated into multiple languages, including Danish, Ukrainian, and Persian. Help localize WooCommerce even further by adding your locale – visit <a href=\"https://translate.wordpress.org/projects/wp-plugins/woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">translate.wordpress.org</a>.</p>\n<h4>Connection to WooCommerce.com</h4>\n<p>You can connect your store to <a href=\"https://woocommerce.com/\" rel=\"nofollow ugc\">WooCommerce.com</a> to manage your subscriptions on WooCommerce Marketplace and receive product updates without leaving WordPress admin. Connection also enables installation of purchased products right from WooCommerce.com and streamlines access to technical support. If you’d like to learn about what data is gathered and how it is used, please refer to our <a href=\"https://automattic.com/privacy/\" rel=\"nofollow ugc\">Privacy Policy</a>.</p>\n\";s:12:\"installation\";s:2459:\"<h4>Minimum Requirements</h4>\n<ul>\n<li>PHP 7.4 or greater is required (PHP 8.0 or greater is recommended)</li>\n<li>MySQL 5.5.5 or greater, OR MariaDB version 10.1 or greater, is required</li>\n<li>WordPress 6.9 or greater</li>\n<li>(Recommended) WordPress <a href=\"https://woocommerce.com/document/increasing-the-wordpress-memory-limit/\" rel=\"nofollow ugc\">memory limit</a> of 256 MB or greater.</li>\n<li>(Recommended) <a href=\"https://woocommerce.com/document/ssl-and-https/\" rel=\"nofollow ugc\">HTTPS</a> support.</li>\n</ul>\n<h4>Automatic installation</h4>\n<p>Automatic installation is the easiest option &#8212; WordPress will handle the file transfer, and you won’t need to leave your web browser. To do an automatic install of WooCommerce, log in to your WordPress dashboard, navigate to the Plugins menu, and click “Add New.”</p>\n<p>In the search field type “WooCommerce,” then click “Search Plugins.” Once you’ve found us,  you can view details about it such as the point release, rating, and description. Most importantly of course, you can install it by! Click “Install Now,” and WordPress will take it from there.</p>\n<h4>Manual installation</h4>\n<p>Manual installation method requires downloading the WooCommerce plugin and uploading it to your web server via your favorite FTP application. The WordPress codex contains <a href=\"https://wordpress.org/support/article/managing-plugins/#manual-plugin-installation\" rel=\"ugc\">instructions on how to do this here</a>.</p>\n<h4>Updating</h4>\n<p>Automatic updates should work smoothly, but we still recommend you back up your site.</p>\n<p>If you encounter issues with the shop/category pages after an update, flush the permalinks by going to WordPress &gt; Settings &gt; Permalinks and hitting “Save.” That should return things to normal.</p>\n<h4>Sample data</h4>\n<p>WooCommerce comes with some sample data you can use to see how products look; import sample_products.xml via the <a href=\"https://wordpress.org/plugins/wordpress-importer/\" rel=\"ugc\">WordPress importer</a>. You can also use the core <a href=\"https://woocommerce.com/document/product-csv-importer-exporter/?utm_source=wp{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20org{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20repo{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20listing&amp;utm_content=3.6\" rel=\"nofollow ugc\">CSV importer</a> or our <a href=\"https://woocommerce.com/products/product-csv-import-suite/?utm_source=wp{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20org{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20repo{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20listing&amp;utm_content=3.6\" rel=\"nofollow ugc\">CSV Import Suite extension</a> to import sample_products.csv</p>\n\";s:3:\"faq\";s:7803:\"\n<dt id=\"where{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20can{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20i{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20find{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20woocommerce{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20documentation{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20and{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20user{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20guides{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3F\">\nWhere can I find WooCommerce documentation and user guides?\n</h4>\n<p>\n<p>For help setting up and configuring WooCommerce, please refer to <a href=\"https://woocommerce.com/documentation/plugins/woocommerce/getting-started/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Getting Started</a> and the <a href=\"https://woocommerce.com/guides/new-store/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">New WooCommerce Store Owner Guide</a>.</p>\n<p>For extending or theming WooCommerce, see our <a href=\"https://github.com/woocommerce/woocommerce/tree/trunk/docs\" rel=\"nofollow ugc\">documentation</a>, as well as the <a href=\"https://github.com/woocommerce/woocommerce/blob/trunk/docs/extension-development/extension-development-best-practices.md\" rel=\"nofollow ugc\">Plugin Developer Best Practices</a>.</p>\n</p>\n<dt id=\"where{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20can{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20i{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20get{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20help{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20or{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20talk{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20to{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20other{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20users{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20about{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20woocommerce{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20core{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3F\">\nWhere can I get help or talk to other users about WooCommerce Core?\n</h4>\n<p>\n<p>If you get stuck, you can ask for help in the <a href=\"https://wordpress.org/support/plugin/woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"ugc\">WooCommerce Support Forum</a> by following <a href=\"https://wordpress.org/support/topic/guide-to-the-woocommerce-forum/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"ugc\">these guidelines</a>, reach out via the <a href=\"https://woocommerce.com/community-slack/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Community Slack</a>, or post in the <a href=\"https://www.facebook.com/groups/advanced.woocommerce?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Community group</a> on Facebook.</p>\n</p>\n<dt id=\"where{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20can{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20i{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20get{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20help{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20for{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20extensions{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20i{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20have{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20purchased{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20from{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20the{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20woocommerce{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20marketplace{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3F\">\nWhere can I get help for extensions I have purchased from the WooCommerce Marketplace?\n</h4>\n<p>\n<p>For assistance with paid extensions from the WooCommerce Marketplace: first, review our <a href=\"https://woocommerce.com/document/woocommerce-self-service-guide/\" rel=\"nofollow ugc\">self-service troubleshooting guide</a>. If the problem persists, kindly log a support ticket via <a href=\"https://woocommerce.com/my-account/create-a-ticket/\" rel=\"nofollow ugc\">our helpdesk</a>. Our dedicated Happiness Engineers aim to respond within 24 hours.</p>\n</p>\n<dt id=\"i{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}E2{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}80{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}99m{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20having{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20trouble{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20logging{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20in{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20to{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20woocommerce.com{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}E2{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}80{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}93{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20what{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20now{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3F\">\nI’m having trouble logging in to WooCommerce.com – what now?\n</h4>\n<p>\n<p>First, troubleshoot common login issues using this helpful <a href=\"https://woocommerce.com/document/log-into-woocommerce-com-with-wordpress-com/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">step-by-step guide</a>. Still not working? <a href=\"https://woocommerce.com/contact-us/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Get in touch with us</a>.</p>\n</p>\n<dt id=\"will{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20woocommerce{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20work{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20with{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20my{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20theme{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3F\">\nWill WooCommerce work with my theme?\n</h4>\n<p>\n<p>Yes! WooCommerce will work with any theme but may require some additional styling. If you’re looking for a theme featuring deep WooCommerce integration, we recommend <a href=\"https://woocommerce.com/storefront/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Storefront</a>.</p>\n</p>\n<dt id=\"how{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20do{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20i{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20update{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20woocommerce{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3F\">\nHow do I update WooCommerce?\n</h4>\n<p>\n<p>We have a detailed guide on <a href=\"https://woocommerce.com/document/how-to-update-woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">How To Update WooCommerce</a>.</p>\n</p>\n<dt id=\"my{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20site{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20broke{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}E2{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}80{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}93{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20what{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20do{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20i{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20do{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3F\">\nMy site broke – what do I do?\n</h4>\n<p>\n<p>Start by diagnosing the issue using our helpful <a href=\"https://woocommerce.com/documentation/get-help/troubleshooting-get-help/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">troubleshooting guide</a>.</p>\n<p>If you noticed the error after updating a theme or plugin, there might be compatibility issues between it and WooCommerce. If the issue appeared after updating WooCommerce, there could be a conflict between WooCommerce and an outdated theme or plugin.</p>\n<p>In both instances, we recommend running a conflict test using <a href=\"https://woocommerce.com/document/troubleshooting-using-health-check/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Health Check</a> (which allows you to disable themes and plugins without affecting your visitors) or troubleshooting the issue using a <a href=\"https://woocommerce.com/document/how-to-test-for-conflicts/#section-3?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">staging site</a>.</p>\n</p>\n<dt id=\"where{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20can{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20i{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20report{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20bugs{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3F\">\nWhere can I report bugs?\n</h4>\n<p>\n<p>Report bugs on the <a href=\"https://github.com/woocommerce/woocommerce/issues?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce GitHub repository</a>. You can also notify us via our support forum – be sure to search the forums to confirm that the error has not already been reported.</p>\n</p>\n<dt id=\"where{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20can{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20i{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20request{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20new{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20features{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20themes{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20and{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20extensions{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3F\">\nWhere can I request new features, themes, and extensions?\n</h4>\n<p>\n<p>Request new features and extensions and vote on existing suggestions on our official <a href=\"https://woocommerce.com/feature-requests/woocommerce?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">feature request board</a>. Our Product teams regularly review requests and consider them valuable for product planning.</p>\n</p>\n<dt id=\"woocommerce{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20is{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20awesome{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}21{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20can{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20i{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20contribute{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3F\">\nWooCommerce is awesome! Can I contribute?\n</h4>\n<p>\n<p>Yes, you can! Join in on our <a href=\"https://github.com/woocommerce/woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">GitHub repository</a> and follow the <a href=\"https://woocommerce.wordpress.com/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">development blog</a> to stay up-to-date with everything happening in the project.</p>\n</p>\n<dt id=\"where{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20can{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20i{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20find{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20rest{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20api{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20documentation{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3F\">\nWhere can I find REST API documentation?\n</h4>\n<p>\n<p>Extensive <a href=\"https://woocommerce.github.io/woocommerce-rest-api-docs/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce REST API Documentation</a> is available on GitHub.</p>\n</p>\n<dt id=\"my{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20question{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20is{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20not{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20listed{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20here.{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20where{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20can{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20i{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20find{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20more{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20answers{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3F\">\nMy question is not listed here. Where can I find more answers?\n</h4>\n<p>\n<p>Check out <a href=\"https://woocommerce.com/document/frequently-asked-questions/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Frequently Asked Questions</a> for more.</p>\n</p>\n\n\";s:9:\"changelog\";s:717:\"<h4>10.8.1 2026-05-27</h4>\n<p><strong>WooCommerce</strong></p>\n<ul>\n<li>Fix &#8211; Fix a fatal error during in-place upgrade to 10.8.0 caused by the new DefaultCustomerAddress enum being referenced from class-wc-settings-general.php before the in-process autoloader classmap is refreshed. <a href=\"https://github.com/woocommerce/woocommerce/pull/65359\" rel=\"nofollow ugc\">#65359</a></li>\n<li>Fix &#8211; Fix WooPayments onboarding business type dropdown crash. <a href=\"https://github.com/woocommerce/woocommerce/pull/65345\" rel=\"nofollow ugc\">#65345</a></li>\n</ul>\n<p><a href=\"https://raw.githubusercontent.com/woocommerce/woocommerce/trunk/changelog.txt\" rel=\"nofollow ugc\">See changelog for all versions</a>.</p>\n\";s:11:\"screenshots\";s:1035:\"<ol><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-1.png?rev=3234504\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-1.png?rev=3234504\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-2.png?rev=3234504\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-2.png?rev=3234504\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-3.png?rev=3234504\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-3.png?rev=3234504\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-4.png?rev=3235205\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-4.png?rev=3235205\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-5.png?rev=3234504\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-5.png?rev=3234504\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-6.png?rev=3234504\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-6.png?rev=3234504\" alt=\"\"></a></li></ol>\";s:7:\"reviews\";s:17801:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Better and better</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/jkont/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/9b78eb671db07bf060451a421bb6edfd2f6abcece5767ea3513018a892fbaad2?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/9b78eb671db07bf060451a421bb6edfd2f6abcece5767ea3513018a892fbaad2?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/jkont/\" class=\"reviewer-name\">jkont</a> on <span class=\"review-date\">June 8, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>With every update it gets better and better !</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Full featured and easy to use online shop plugin</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/daver56/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/8640fb2fe75865dae0048300be16b81fcdb7322a9813135dba9d9ccaab43418e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/8640fb2fe75865dae0048300be16b81fcdb7322a9813135dba9d9ccaab43418e?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/daver56/\" class=\"reviewer-name\">DaveR56</a> on <span class=\"review-date\">June 7, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>WooCommerce definitely is the one to go for if you want to add an online shop to your website. Setting up is straight forward, though there will be a bit of work adding payment functionality and a shipping calculator. For UK users it integrates with your Royal Mail Click &amp; Drop account - new orders are automatically fed through to Click &amp; Drop with their contents, total weight, etc and once despatched the order is automatically marked complete. There are plenty of plugins to enhance the basic shop functions. Support is great too.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Good plugin and support</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/james-feaver/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/f15ce9afa63a491d04f3b683ba1aeadae2b83faaa278a8412b40a1f902dc023c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/f15ce9afa63a491d04f3b683ba1aeadae2b83faaa278a8412b40a1f902dc023c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/james-feaver/\" class=\"reviewer-name\">James <small>(James Feaver)</small></a> on <span class=\"review-date\">June 3, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I recently had a few issues and got quick responses from support. In the end it was my CSS and also issues in Outlook that were the cause. I\'ve been using WooCommerce for my site for 2017 and recommend it. There are plugins for all you needs, is highly customisable and is evolving. I\'ve had block -based pages, posts and products for a while and they are a great step forward. Shortly I will move to block-based cart and checkout to get their advantages, when the final plugin gets an update. </p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">It&#039;s hard to imagine WordPress today without WooCommerce</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/baicu4design/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/dd8f8591390e3f7e9b8f08c3df7879f0efb47bd3006f719f30223700ed6061c8?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/dd8f8591390e3f7e9b8f08c3df7879f0efb47bd3006f719f30223700ed6061c8?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/baicu4design/\" class=\"reviewer-name\">WPHostee <small>(baicu4design)</small></a> on <span class=\"review-date\">June 2, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We\'ve been working with WordPress for many years and host a large number of WordPress websites at WPHostee.com. It\'s hard to imagine WordPress today without WooCommerce.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What I like most about WooCommerce is that it gives website owners complete control over their online store. Whether someone is selling a few products or running a large e-commerce business, WooCommerce provides the flexibility to grow without forcing you into an expensive platform.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As a hosting provider, we\'ve seen countless WooCommerce stores running successfully on our servers, from small local businesses to much larger online shops. The plugin is reliable, regularly updated, and integrates well with the WordPress ecosystem.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No software is perfect, but WooCommerce remains the first solution we recommend whenever a client asks us how to build an online store with WordPress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Thank you to the WooCommerce team for continuing to improve and support such an important plugin for the WordPress community.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Mixed Experience</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"3 out of 5 stars\" data-title-template=\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}s out of 5 stars\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/devlin1/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/71f6586dbbc3ee4e15425b5c5aacba2f9b65db3566e3dae8ee207c0ea9cb5aa9?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/71f6586dbbc3ee4e15425b5c5aacba2f9b65db3566e3dae8ee207c0ea9cb5aa9?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/devlin1/\" class=\"reviewer-name\">devlin1</a> on <span class=\"review-date\">June 2, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Setup was ok &amp; store features are solid. But tbh some parts felt heavy and needed extra tweaking. Works for me overall, just not always smooth. Thnkz for the free base plugin.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Coupon System is 🔥</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/alexmccormick/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/7a2a5edaecf45d304f22302277142a8cf9cd60c58522071ddeabe26ad9ee5348?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/7a2a5edaecf45d304f22302277142a8cf9cd60c58522071ddeabe26ad9ee5348?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/alexmccormick/\" class=\"reviewer-name\">alexmccormick</a> on <span class=\"review-date\">June 1, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>been using woo for my handmade jewelry shop. The built-in coupon &amp; discount system is lowkey underrated. Set up buy 2 get 1 free in like 10 mins. Inventory tracking also works rly well. super happy w it</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Fatal error in update 10.8.0, it&#039;s best to stay on version 10.7.0</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/barjumbexley/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a44decd4e752086d48ae99c44309ba4ff4d694736d38c1bb1939c419fb0a982b?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a44decd4e752086d48ae99c44309ba4ff4d694736d38c1bb1939c419fb0a982b?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/barjumbexley/\" class=\"reviewer-name\">barjumbexley</a> on <span class=\"review-date\">May 28, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Error Fatal al actualizar a la versión 10.8.0, tumba la tienda y el sitio completo, la actualizacion es mediocre y genera mas de 17 errores obligandote a restaurar el sitio completo y perder la información agregada el mismo dia de la actualzación. Recomiendo permanecer en la version 10.7.0 con wordpress 7.0 que es estable por ahora, hasta que corrijan el error por completo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fatal error when updating to version 10.8.0. It crashes the store and the entire site. The update is poor and generates more than 17 errors, forcing you to restore the entire site and lose all the data added on the day of the update. I recommend staying on version 10.7.0 with WordPress 7.0, which is stable for now, until they completely fix the error.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Bye Bye Shopify</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/francesco33/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/792a4903c8df3405f7cebc01e10995183fe19573936def4f81d610ca44bd3850?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/792a4903c8df3405f7cebc01e10995183fe19573936def4f81d610ca44bd3850?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/francesco33/\" class=\"reviewer-name\">Francesco <small>(francesco33)</small></a> on <span class=\"review-date\">May 25, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Was throwing money at Shopify every month 4 no reason. Switched my whole store 2 WooCommerce n honestly best decision ever. Full control, costs way less, sales still going strong</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great support</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/cdelph75/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/4b7a6d1254041ab178f1962fa17bf06395b25378a0514faafd74838ae0cf543d?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/4b7a6d1254041ab178f1962fa17bf06395b25378a0514faafd74838ae0cf543d?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/cdelph75/\" class=\"reviewer-name\">cdelph75</a> on <span class=\"review-date\">May 22, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Big thank you to LovingBro from the customer support team for his support on my problem. It was fast and effective. Problem solved quickly. Thanks again!</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">GOOD</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/krshohag88/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/3e71a632fb0271d438eb0917759f2ab7b92a79c9534932309ecfee7ced0d7663?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/3e71a632fb0271d438eb0917759f2ab7b92a79c9534932309ecfee7ced0d7663?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/krshohag88/\" class=\"reviewer-name\">krshohag88</a> on <span class=\"review-date\">May 20, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>USE EASY AND GOOD</p>\n<!-- /wp:paragraph --></div>\n</div>\n\";}s:17:\"short_description\";s:146:\"Everything you need to launch an online store in days and keep it growing for years. From your first sale to millions in revenue, Woo is with you.\";s:13:\"download_link\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.8.1.zip\";s:14:\"upgrade_notice\";a:0:{}s:11:\"screenshots\";a:6:{i:1;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-1.png?rev=3234504\";s:7:\"caption\";s:0:\"\";}i:2;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-2.png?rev=3234504\";s:7:\"caption\";s:0:\"\";}i:3;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-3.png?rev=3234504\";s:7:\"caption\";s:0:\"\";}i:4;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-4.png?rev=3235205\";s:7:\"caption\";s:0:\"\";}i:5;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-5.png?rev=3234504\";s:7:\"caption\";s:0:\"\";}i:6;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-6.png?rev=3234504\";s:7:\"caption\";s:0:\"\";}}s:4:\"tags\";a:5:{s:9:\"ecommerce\";s:9:\"ecommerce\";s:12:\"online-store\";s:12:\"online store\";s:11:\"sell-online\";s:11:\"sell online\";s:4:\"shop\";s:4:\"shop\";s:13:\"shopping-cart\";s:13:\"shopping cart\";}s:8:\"versions\";a:629:{s:6:\"10.0.0\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.0.0.zip\";s:11:\"10.0.0-rc.1\";s:66:\"https://downloads.wordpress.org/plugin/woocommerce.10.0.0-rc.1.zip\";s:11:\"10.0.0-rc.2\";s:66:\"https://downloads.wordpress.org/plugin/woocommerce.10.0.0-rc.2.zip\";s:6:\"10.0.1\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.0.1.zip\";s:6:\"10.0.2\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.0.2.zip\";s:6:\"10.0.3\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.0.3.zip\";s:6:\"10.0.4\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.0.4.zip\";s:6:\"10.0.5\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.0.5.zip\";s:6:\"10.0.6\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.0.6.zip\";s:6:\"10.1.0\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.1.0.zip\";s:11:\"10.1.0-rc.1\";s:66:\"https://downloads.wordpress.org/plugin/woocommerce.10.1.0-rc.1.zip\";s:11:\"10.1.0-rc.2\";s:66:\"https://downloads.wordpress.org/plugin/woocommerce.10.1.0-rc.2.zip\";s:11:\"10.1.0-rc.3\";s:66:\"https://downloads.wordpress.org/plugin/woocommerce.10.1.0-rc.3.zip\";s:11:\"10.1.0-rc.4\";s:66:\"https://downloads.wordpress.org/plugin/woocommerce.10.1.0-rc.4.zip\";s:6:\"10.1.1\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.1.1.zip\";s:6:\"10.1.2\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.1.2.zip\";s:6:\"10.1.3\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.1.3.zip\";s:6:\"10.1.4\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.1.4.zip\";s:6:\"10.2.0\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.2.0.zip\";s:13:\"10.2.0-beta.1\";s:68:\"https://downloads.wordpress.org/plugin/woocommerce.10.2.0-beta.1.zip\";s:13:\"10.2.0-beta.2\";s:68:\"https://downloads.wordpress.org/plugin/woocommerce.10.2.0-beta.2.zip\";s:11:\"10.2.0-rc.1\";s:66:\"https://downloads.wordpress.org/plugin/woocommerce.10.2.0-rc.1.zip\";s:6:\"10.2.1\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.2.1.zip\";s:6:\"10.2.2\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.2.2.zip\";s:6:\"10.2.3\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.2.3.zip\";s:6:\"10.2.4\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.2.4.zip\";s:6:\"10.3.0\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.3.0.zip\";s:13:\"10.3.0-beta.1\";s:68:\"https://downloads.wordpress.org/plugin/woocommerce.10.3.0-beta.1.zip\";s:13:\"10.3.0-beta.2\";s:68:\"https://downloads.wordpress.org/plugin/woocommerce.10.3.0-beta.2.zip\";s:11:\"10.3.0-rc.1\";s:66:\"https://downloads.wordpress.org/plugin/woocommerce.10.3.0-rc.1.zip\";s:11:\"10.3.0-rc.2\";s:66:\"https://downloads.wordpress.org/plugin/woocommerce.10.3.0-rc.2.zip\";s:6:\"10.3.1\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.3.1.zip\";s:6:\"10.3.2\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.3.2.zip\";s:6:\"10.3.3\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.3.3.zip\";s:6:\"10.3.4\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.3.4.zip\";s:6:\"10.3.5\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.3.5.zip\";s:6:\"10.3.6\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.3.6.zip\";s:6:\"10.3.7\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.3.7.zip\";s:6:\"10.3.8\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.3.8.zip\";s:6:\"10.4.0\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.4.0.zip\";s:13:\"10.4.0-beta.1\";s:68:\"https://downloads.wordpress.org/plugin/woocommerce.10.4.0-beta.1.zip\";s:13:\"10.4.0-beta.2\";s:68:\"https://downloads.wordpress.org/plugin/woocommerce.10.4.0-beta.2.zip\";s:11:\"10.4.0-rc.1\";s:66:\"https://downloads.wordpress.org/plugin/woocommerce.10.4.0-rc.1.zip\";s:6:\"10.4.1\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.4.1.zip\";s:6:\"10.4.2\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.4.2.zip\";s:6:\"10.4.3\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.4.3.zip\";s:6:\"10.4.4\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.4.4.zip\";s:6:\"10.5.0\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.5.0.zip\";s:13:\"10.5.0-beta.1\";s:68:\"https://downloads.wordpress.org/plugin/woocommerce.10.5.0-beta.1.zip\";s:13:\"10.5.0-beta.2\";s:68:\"https://downloads.wordpress.org/plugin/woocommerce.10.5.0-beta.2.zip\";s:11:\"10.5.0-rc.1\";s:66:\"https://downloads.wordpress.org/plugin/woocommerce.10.5.0-rc.1.zip\";s:11:\"10.5.0-rc.2\";s:66:\"https://downloads.wordpress.org/plugin/woocommerce.10.5.0-rc.2.zip\";s:11:\"10.5.0-rc.3\";s:66:\"https://downloads.wordpress.org/plugin/woocommerce.10.5.0-rc.3.zip\";s:6:\"10.5.1\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.5.1.zip\";s:6:\"10.5.2\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.5.2.zip\";s:6:\"10.5.3\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.5.3.zip\";s:6:\"10.6.0\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.6.0.zip\";s:13:\"10.6.0-beta.1\";s:68:\"https://downloads.wordpress.org/plugin/woocommerce.10.6.0-beta.1.zip\";s:13:\"10.6.0-beta.2\";s:68:\"https://downloads.wordpress.org/plugin/woocommerce.10.6.0-beta.2.zip\";s:11:\"10.6.0-rc.1\";s:66:\"https://downloads.wordpress.org/plugin/woocommerce.10.6.0-rc.1.zip\";s:6:\"10.6.1\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.6.1.zip\";s:6:\"10.6.2\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.6.2.zip\";s:6:\"10.7.0\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.7.0.zip\";s:13:\"10.7.0-beta.1\";s:68:\"https://downloads.wordpress.org/plugin/woocommerce.10.7.0-beta.1.zip\";s:13:\"10.7.0-beta.2\";s:68:\"https://downloads.wordpress.org/plugin/woocommerce.10.7.0-beta.2.zip\";s:11:\"10.7.0-rc.1\";s:66:\"https://downloads.wordpress.org/plugin/woocommerce.10.7.0-rc.1.zip\";s:6:\"10.8.0\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.8.0.zip\";s:13:\"10.8.0-beta.1\";s:68:\"https://downloads.wordpress.org/plugin/woocommerce.10.8.0-beta.1.zip\";s:13:\"10.8.0-beta.2\";s:68:\"https://downloads.wordpress.org/plugin/woocommerce.10.8.0-beta.2.zip\";s:11:\"10.8.0-rc.1\";s:66:\"https://downloads.wordpress.org/plugin/woocommerce.10.8.0-rc.1.zip\";s:6:\"10.8.1\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.8.1.zip\";s:13:\"10.9.0-beta.1\";s:68:\"https://downloads.wordpress.org/plugin/woocommerce.10.9.0-beta.1.zip\";s:5:\"3.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.0.zip\";s:5:\"3.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.1.zip\";s:5:\"3.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.2.zip\";s:5:\"3.0.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.3.zip\";s:5:\"3.0.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.4.zip\";s:5:\"3.0.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.5.zip\";s:5:\"3.0.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.6.zip\";s:5:\"3.0.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.7.zip\";s:5:\"3.0.8\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.8.zip\";s:5:\"3.0.9\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.9.zip\";s:5:\"3.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.1.0.zip\";s:5:\"3.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.1.1.zip\";s:5:\"3.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.1.2.zip\";s:5:\"3.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.0.zip\";s:5:\"3.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.1.zip\";s:5:\"3.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.2.zip\";s:5:\"3.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.3.zip\";s:5:\"3.2.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.4.zip\";s:5:\"3.2.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.5.zip\";s:5:\"3.2.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.6.zip\";s:5:\"3.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.0.zip\";s:5:\"3.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.1.zip\";s:5:\"3.3.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.2.zip\";s:10:\"3.3.2-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.2-rc.1.zip\";s:5:\"3.3.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.3.zip\";s:5:\"3.3.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.4.zip\";s:5:\"3.3.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.5.zip\";s:5:\"3.3.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.6.zip\";s:5:\"3.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.0.zip\";s:12:\"3.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.0-beta.1.zip\";s:10:\"3.4.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.0-rc.2.zip\";s:5:\"3.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.1.zip\";s:5:\"3.4.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.2.zip\";s:5:\"3.4.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.3.zip\";s:5:\"3.4.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.4.zip\";s:5:\"3.4.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.5.zip\";s:5:\"3.4.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.6.zip\";s:5:\"3.4.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.7.zip\";s:5:\"3.4.8\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.8.zip\";s:5:\"3.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0.zip\";s:12:\"3.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0-beta.1.zip\";s:10:\"3.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0-rc.1.zip\";s:10:\"3.5.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0-rc.2.zip\";s:5:\"3.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.1.zip\";s:6:\"3.5.10\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.10.zip\";s:5:\"3.5.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.2.zip\";s:5:\"3.5.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.3.zip\";s:5:\"3.5.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.4.zip\";s:5:\"3.5.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.5.zip\";s:5:\"3.5.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.6.zip\";s:5:\"3.5.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.7.zip\";s:5:\"3.5.8\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.8.zip\";s:5:\"3.5.9\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.9.zip\";s:5:\"3.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0.zip\";s:12:\"3.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-beta.1.zip\";s:10:\"3.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.1.zip\";s:10:\"3.6.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.2.zip\";s:10:\"3.6.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.3.zip\";s:5:\"3.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.1.zip\";s:5:\"3.6.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.2.zip\";s:5:\"3.6.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.3.zip\";s:5:\"3.6.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.4.zip\";s:5:\"3.6.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.5.zip\";s:5:\"3.6.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.6.zip\";s:5:\"3.6.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.7.zip\";s:5:\"3.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0.zip\";s:12:\"3.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0-beta.1.zip\";s:10:\"3.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0-rc.1.zip\";s:10:\"3.7.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0-rc.2.zip\";s:5:\"3.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.1.zip\";s:5:\"3.7.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.2.zip\";s:5:\"3.7.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.3.zip\";s:5:\"3.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0.zip\";s:12:\"3.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0-beta.1.zip\";s:10:\"3.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0-rc.1.zip\";s:10:\"3.8.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0-rc.2.zip\";s:5:\"3.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.1.zip\";s:5:\"3.8.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.2.zip\";s:5:\"3.8.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.3.zip\";s:5:\"3.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0.zip\";s:12:\"3.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-beta.1.zip\";s:12:\"3.9.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-beta.2.zip\";s:10:\"3.9.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.1.zip\";s:10:\"3.9.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.2.zip\";s:10:\"3.9.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.3.zip\";s:10:\"3.9.0-rc.4\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.4.zip\";s:5:\"3.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.1.zip\";s:5:\"3.9.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.2.zip\";s:5:\"3.9.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.3.zip\";s:5:\"3.9.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.4.zip\";s:5:\"3.9.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.5.zip\";s:5:\"4.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.0.zip\";s:12:\"4.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.0-beta.1.zip\";s:10:\"4.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.0-rc.1.zip\";s:10:\"4.0.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.0-rc.2.zip\";s:5:\"4.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.1.zip\";s:5:\"4.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.2.zip\";s:5:\"4.0.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.3.zip\";s:5:\"4.0.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.4.zip\";s:5:\"4.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0.zip\";s:12:\"4.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0-beta.1.zip\";s:12:\"4.1.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0-beta.2.zip\";s:10:\"4.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0-rc.1.zip\";s:10:\"4.1.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0-rc.2.zip\";s:5:\"4.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.1.zip\";s:5:\"4.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.2.zip\";s:5:\"4.1.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.3.zip\";s:5:\"4.1.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.4.zip\";s:5:\"4.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.0.zip\";s:10:\"4.2.0-RC.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.0-RC.1.zip\";s:10:\"4.2.0-RC.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.0-RC.2.zip\";s:12:\"4.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.0-beta.1.zip\";s:5:\"4.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.1.zip\";s:5:\"4.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.2.zip\";s:5:\"4.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.3.zip\";s:5:\"4.2.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.4.zip\";s:5:\"4.2.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.5.zip\";s:5:\"4.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0.zip\";s:12:\"4.3.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0-beta.1.zip\";s:10:\"4.3.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0-rc.1.zip\";s:10:\"4.3.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0-rc.2.zip\";s:10:\"4.3.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0-rc.3.zip\";s:5:\"4.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.1.zip\";s:5:\"4.3.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.2.zip\";s:5:\"4.3.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.3.zip\";s:5:\"4.3.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.4.zip\";s:5:\"4.3.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.5.zip\";s:5:\"4.3.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.6.zip\";s:5:\"4.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.0.zip\";s:12:\"4.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.0-beta.1.zip\";s:10:\"4.4.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.0-rc.1.zip\";s:5:\"4.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.1.zip\";s:5:\"4.4.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.2.zip\";s:5:\"4.4.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.3.zip\";s:5:\"4.4.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.4.zip\";s:5:\"4.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.0.zip\";s:12:\"4.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.0-beta.1.zip\";s:10:\"4.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.0-rc.1.zip\";s:10:\"4.5.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.0-rc.3.zip\";s:5:\"4.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.1.zip\";s:5:\"4.5.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.2.zip\";s:5:\"4.5.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.3.zip\";s:5:\"4.5.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.4.zip\";s:5:\"4.5.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.5.zip\";s:5:\"4.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.0.zip\";s:12:\"4.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.0-beta.1.zip\";s:10:\"4.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.0-rc.1.zip\";s:5:\"4.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.1.zip\";s:5:\"4.6.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.2.zip\";s:5:\"4.6.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.3.zip\";s:5:\"4.6.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.4.zip\";s:5:\"4.6.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.5.zip\";s:5:\"4.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.0.zip\";s:12:\"4.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.0-beta.1.zip\";s:12:\"4.7.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.0-beta.2.zip\";s:10:\"4.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.0-rc.1.zip\";s:5:\"4.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.1.zip\";s:12:\"4.7.1-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.1-beta.1.zip\";s:5:\"4.7.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.2.zip\";s:5:\"4.7.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.3.zip\";s:5:\"4.7.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.4.zip\";s:5:\"4.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.0.zip\";s:12:\"4.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.0-beta.1.zip\";s:10:\"4.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.0-rc.1.zip\";s:10:\"4.8.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.0-rc.2.zip\";s:5:\"4.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.1.zip\";s:5:\"4.8.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.2.zip\";s:5:\"4.8.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.3.zip\";s:5:\"4.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.0.zip\";s:12:\"4.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.0-beta.1.zip\";s:10:\"4.9.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.0-rc.1.zip\";s:10:\"4.9.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.0-rc.2.zip\";s:5:\"4.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.1.zip\";s:5:\"4.9.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.2.zip\";s:5:\"4.9.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.3.zip\";s:5:\"4.9.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.4.zip\";s:5:\"4.9.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.5.zip\";s:5:\"5.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0.zip\";s:12:\"5.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-beta.1.zip\";s:12:\"5.0.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-beta.2.zip\";s:10:\"5.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-rc.1.zip\";s:10:\"5.0.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-rc.2.zip\";s:10:\"5.0.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-rc.3.zip\";s:5:\"5.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.1.zip\";s:5:\"5.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.2.zip\";s:5:\"5.0.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.3.zip\";s:5:\"5.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.0.zip\";s:12:\"5.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.0-beta.1.zip\";s:10:\"5.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.0-rc.1.zip\";s:5:\"5.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.1.zip\";s:5:\"5.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.2.zip\";s:5:\"5.1.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.3.zip\";s:5:\"5.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.0.zip\";s:12:\"5.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.0-beta.1.zip\";s:10:\"5.2.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.0-rc.1.zip\";s:10:\"5.2.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.0-rc.2.zip\";s:5:\"5.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.1.zip\";s:5:\"5.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.2.zip\";s:5:\"5.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.3.zip\";s:5:\"5.2.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.4.zip\";s:5:\"5.2.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.5.zip\";s:5:\"5.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.0.zip\";s:12:\"5.3.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.0-beta.1.zip\";s:10:\"5.3.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.0-rc.1.zip\";s:10:\"5.3.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.0-rc.2.zip\";s:5:\"5.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.1.zip\";s:5:\"5.3.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.2.zip\";s:5:\"5.3.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.3.zip\";s:5:\"5.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.0.zip\";s:12:\"5.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.0-beta.1.zip\";s:10:\"5.4.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.0-rc.1.zip\";s:5:\"5.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.1.zip\";s:5:\"5.4.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.2.zip\";s:5:\"5.4.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.3.zip\";s:5:\"5.4.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.4.zip\";s:5:\"5.4.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.5.zip\";s:5:\"5.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.0.zip\";s:12:\"5.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.0-beta.1.zip\";s:10:\"5.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.0-rc.1.zip\";s:10:\"5.5.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.0-rc.2.zip\";s:5:\"5.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.1.zip\";s:5:\"5.5.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.2.zip\";s:5:\"5.5.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.3.zip\";s:5:\"5.5.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.4.zip\";s:5:\"5.5.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.5.zip\";s:5:\"5.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.0.zip\";s:12:\"5.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.0-beta.1.zip\";s:10:\"5.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.0-rc.1.zip\";s:10:\"5.6.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.0-rc.2.zip\";s:5:\"5.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.1.zip\";s:5:\"5.6.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.2.zip\";s:5:\"5.6.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.3.zip\";s:5:\"5.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.0.zip\";s:12:\"5.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.0-beta.1.zip\";s:10:\"5.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.0-rc.1.zip\";s:5:\"5.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.1.zip\";s:5:\"5.7.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.2.zip\";s:5:\"5.7.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.3.zip\";s:5:\"5.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.0.zip\";s:12:\"5.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.0-beta.1.zip\";s:12:\"5.8.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.0-beta.2.zip\";s:10:\"5.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.0-rc.1.zip\";s:5:\"5.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.1.zip\";s:5:\"5.8.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.2.zip\";s:5:\"5.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.0.zip\";s:12:\"5.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.0-beta.1.zip\";s:10:\"5.9.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.0-rc.1.zip\";s:10:\"5.9.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.0-rc.2.zip\";s:5:\"5.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.1.zip\";s:5:\"5.9.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.2.zip\";s:5:\"6.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.0.0.zip\";s:12:\"6.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.0.0-beta.1.zip\";s:10:\"6.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.0.0-rc.1.zip\";s:5:\"6.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.0.1.zip\";s:5:\"6.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.0.2.zip\";s:5:\"6.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.0.zip\";s:12:\"6.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.0-beta.1.zip\";s:10:\"6.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.0-rc.1.zip\";s:10:\"6.1.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.0-rc.2.zip\";s:5:\"6.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.1.zip\";s:5:\"6.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.2.zip\";s:5:\"6.1.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.3.zip\";s:5:\"6.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.0.zip\";s:12:\"6.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.0-beta.1.zip\";s:10:\"6.2.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.0-rc.1.zip\";s:10:\"6.2.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.0-rc.2.zip\";s:5:\"6.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.1.zip\";s:5:\"6.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.2.zip\";s:5:\"6.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.3.zip\";s:5:\"6.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.3.0.zip\";s:12:\"6.3.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.3.0-beta.1.zip\";s:10:\"6.3.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.3.0-rc.1.zip\";s:10:\"6.3.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.3.0-rc.2.zip\";s:5:\"6.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.3.1.zip\";s:5:\"6.3.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.3.2.zip\";s:5:\"6.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.4.0.zip\";s:12:\"6.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.4.0-beta.1.zip\";s:10:\"6.4.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.4.0-rc.1.zip\";s:5:\"6.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.4.1.zip\";s:5:\"6.4.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.4.2.zip\";s:5:\"6.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.0.zip\";s:12:\"6.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.0-beta.1.zip\";s:10:\"6.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.0-rc.1.zip\";s:10:\"6.5.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.0-rc.2.zip\";s:5:\"6.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.1.zip\";s:5:\"6.5.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.2.zip\";s:5:\"6.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.6.0.zip\";s:12:\"6.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.6.0-beta.1.zip\";s:10:\"6.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.6.0-rc.1.zip\";s:10:\"6.6.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.6.0-rc.2.zip\";s:5:\"6.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.6.1.zip\";s:5:\"6.6.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.6.2.zip\";s:5:\"6.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.7.0.zip\";s:12:\"6.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.7.0-beta.1.zip\";s:12:\"6.7.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.7.0-beta.2.zip\";s:10:\"6.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.7.0-rc.1.zip\";s:5:\"6.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.7.1.zip\";s:5:\"6.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.0.zip\";s:12:\"6.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.0-beta.1.zip\";s:12:\"6.8.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.0-beta.2.zip\";s:10:\"6.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.0-rc.1.zip\";s:5:\"6.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.1.zip\";s:5:\"6.8.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.2.zip\";s:5:\"6.8.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.8.3.zip\";s:5:\"6.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.0.zip\";s:12:\"6.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.0-beta.1.zip\";s:12:\"6.9.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.0-beta.2.zip\";s:10:\"6.9.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.0-rc.1.zip\";s:5:\"6.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.1.zip\";s:5:\"6.9.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.2.zip\";s:5:\"6.9.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.3.zip\";s:5:\"6.9.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.4.zip\";s:5:\"6.9.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.9.5.zip\";s:5:\"7.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0.zip\";s:12:\"7.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0-beta.1.zip\";s:12:\"7.0.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0-beta.2.zip\";s:12:\"7.0.0-beta.3\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0-beta.3.zip\";s:10:\"7.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0-rc.1.zip\";s:10:\"7.0.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.0-rc.2.zip\";s:5:\"7.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.1.zip\";s:5:\"7.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.2.zip\";s:5:\"7.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.0.zip\";s:12:\"7.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.0-beta.1.zip\";s:12:\"7.1.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.0-beta.2.zip\";s:10:\"7.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.0-rc.1.zip\";s:10:\"7.1.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.0-rc.2.zip\";s:5:\"7.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.1.zip\";s:5:\"7.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.2.zip\";s:5:\"7.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.0.zip\";s:12:\"7.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.0-beta.1.zip\";s:12:\"7.2.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.0-beta.2.zip\";s:10:\"7.2.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.0-rc.1.zip\";s:10:\"7.2.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.0-rc.2.zip\";s:5:\"7.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.1.zip\";s:5:\"7.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.2.zip\";s:5:\"7.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.3.zip\";s:5:\"7.2.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.4.zip\";s:5:\"7.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.3.0.zip\";s:12:\"7.3.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.3.0-beta.1.zip\";s:12:\"7.3.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.3.0-beta.2.zip\";s:10:\"7.3.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.3.0-rc.1.zip\";s:10:\"7.3.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.3.0-rc.2.zip\";s:5:\"7.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.3.1.zip\";s:5:\"7.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.0.zip\";s:12:\"7.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.0-beta.1.zip\";s:12:\"7.4.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.0-beta.2.zip\";s:10:\"7.4.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.0-rc.1.zip\";s:10:\"7.4.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.0-rc.2.zip\";s:5:\"7.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.1.zip\";s:5:\"7.4.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.2.zip\";s:5:\"7.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.5.0.zip\";s:12:\"7.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.5.0-beta.1.zip\";s:12:\"7.5.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.5.0-beta.2.zip\";s:10:\"7.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.5.0-rc.1.zip\";s:5:\"7.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.5.1.zip\";s:5:\"7.5.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.5.2.zip\";s:5:\"7.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.0.zip\";s:12:\"7.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.0-beta.1.zip\";s:12:\"7.6.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.0-beta.2.zip\";s:10:\"7.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.0-rc.1.zip\";s:10:\"7.6.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.0-rc.2.zip\";s:10:\"7.6.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.0-rc.3.zip\";s:5:\"7.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.1.zip\";s:5:\"7.6.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.2.zip\";s:5:\"7.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.0.zip\";s:12:\"7.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.0-beta.1.zip\";s:12:\"7.7.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.0-beta.2.zip\";s:10:\"7.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.0-rc.1.zip\";s:5:\"7.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.1.zip\";s:5:\"7.7.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.2.zip\";s:5:\"7.7.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.3.zip\";s:5:\"7.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.0.zip\";s:12:\"7.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.0-beta.1.zip\";s:12:\"7.8.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.0-beta.2.zip\";s:10:\"7.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.0-rc.1.zip\";s:10:\"7.8.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.0-rc.2.zip\";s:5:\"7.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.1.zip\";s:5:\"7.8.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.2.zip\";s:5:\"7.8.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.3.zip\";s:5:\"7.8.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.4.zip\";s:5:\"7.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.9.0.zip\";s:12:\"7.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.9.0-beta.1.zip\";s:12:\"7.9.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.9.0-beta.2.zip\";s:10:\"7.9.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.9.0-rc.2.zip\";s:10:\"7.9.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.9.0-rc.3.zip\";s:5:\"7.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.9.1.zip\";s:5:\"7.9.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.9.2.zip\";s:5:\"8.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.0.zip\";s:12:\"8.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.0-beta.1.zip\";s:12:\"8.0.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.0-beta.2.zip\";s:10:\"8.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.0-rc.1.zip\";s:10:\"8.0.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.0-rc.2.zip\";s:5:\"8.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.1.zip\";s:5:\"8.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.2.zip\";s:5:\"8.0.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.3.zip\";s:5:\"8.0.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.4.zip\";s:5:\"8.0.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.5.zip\";s:5:\"8.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.1.0.zip\";s:12:\"8.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.1.0-beta.1.zip\";s:10:\"8.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.1.0-rc.1.zip\";s:10:\"8.1.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.1.0-rc.2.zip\";s:5:\"8.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.1.1.zip\";s:5:\"8.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.1.2.zip\";s:5:\"8.1.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.1.3.zip\";s:5:\"8.1.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.1.4.zip\";s:5:\"8.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.2.0.zip\";s:12:\"8.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.2.0-beta.1.zip\";s:10:\"8.2.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.2.0-rc.1.zip\";s:10:\"8.2.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.2.0-rc.2.zip\";s:5:\"8.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.2.1.zip\";s:5:\"8.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.2.2.zip\";s:5:\"8.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.2.3.zip\";s:5:\"8.2.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.2.4.zip\";s:5:\"8.2.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.2.5.zip\";s:5:\"8.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.3.0.zip\";s:12:\"8.3.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.3.0-beta.1.zip\";s:10:\"8.3.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.3.0-rc.1.zip\";s:10:\"8.3.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.3.0-rc.2.zip\";s:5:\"8.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.3.1.zip\";s:5:\"8.3.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.3.2.zip\";s:5:\"8.3.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.3.3.zip\";s:5:\"8.3.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.3.4.zip\";s:5:\"8.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.4.0.zip\";s:12:\"8.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.4.0-beta.1.zip\";s:10:\"8.4.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.4.0-rc.1.zip\";s:5:\"8.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.4.1.zip\";s:5:\"8.4.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.4.2.zip\";s:5:\"8.4.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.4.3.zip\";s:5:\"8.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.5.0.zip\";s:12:\"8.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.5.0-beta.1.zip\";s:10:\"8.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.5.0-rc.1.zip\";s:5:\"8.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.5.1.zip\";s:5:\"8.5.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.5.2.zip\";s:5:\"8.5.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.5.3.zip\";s:5:\"8.5.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.5.4.zip\";s:5:\"8.5.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.5.5.zip\";s:5:\"8.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.6.0.zip\";s:12:\"8.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.6.0-beta.1.zip\";s:10:\"8.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.6.0-rc.1.zip\";s:5:\"8.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.6.1.zip\";s:5:\"8.6.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.6.2.zip\";s:5:\"8.6.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.6.3.zip\";s:5:\"8.6.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.6.4.zip\";s:5:\"8.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.7.0.zip\";s:12:\"8.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.7.0-beta.1.zip\";s:12:\"8.7.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.7.0-beta.2.zip\";s:10:\"8.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.7.0-rc.1.zip\";s:5:\"8.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.7.1.zip\";s:5:\"8.7.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.7.2.zip\";s:5:\"8.7.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.7.3.zip\";s:5:\"8.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.8.0.zip\";s:12:\"8.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.8.0-beta.1.zip\";s:10:\"8.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.8.0-rc.1.zip\";s:5:\"8.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.8.1.zip\";s:5:\"8.8.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.8.2.zip\";s:5:\"8.8.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.8.3.zip\";s:5:\"8.8.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.8.4.zip\";s:5:\"8.8.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.8.5.zip\";s:5:\"8.8.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.8.6.zip\";s:5:\"8.8.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.8.7.zip\";s:5:\"8.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.9.0.zip\";s:12:\"8.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.9.0-beta.1.zip\";s:10:\"8.9.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.9.0-rc.1.zip\";s:5:\"8.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.9.1.zip\";s:5:\"8.9.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.9.2.zip\";s:5:\"8.9.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.9.3.zip\";s:5:\"8.9.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.9.4.zip\";s:5:\"8.9.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.9.5.zip\";s:5:\"9.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.0.0.zip\";s:12:\"9.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.0.0-beta.1.zip\";s:12:\"9.0.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.0.0-beta.2.zip\";s:10:\"9.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.9.0.0-rc.1.zip\";s:5:\"9.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.0.1.zip\";s:5:\"9.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.0.2.zip\";s:5:\"9.0.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.0.3.zip\";s:5:\"9.0.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.0.4.zip\";s:5:\"9.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.1.0.zip\";s:12:\"9.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.1.0-beta.1.zip\";s:10:\"9.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.9.1.0-rc.1.zip\";s:5:\"9.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.1.1.zip\";s:5:\"9.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.1.2.zip\";s:5:\"9.1.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.1.3.zip\";s:5:\"9.1.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.1.4.zip\";s:5:\"9.1.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.1.5.zip\";s:5:\"9.1.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.1.6.zip\";s:5:\"9.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.2.0.zip\";s:12:\"9.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.2.0-beta.1.zip\";s:10:\"9.2.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.9.2.0-rc.1.zip\";s:5:\"9.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.2.1.zip\";s:5:\"9.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.2.2.zip\";s:5:\"9.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.2.3.zip\";s:5:\"9.2.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.2.4.zip\";s:5:\"9.2.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.2.5.zip\";s:5:\"9.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.3.0.zip\";s:12:\"9.3.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.3.0-beta.1.zip\";s:10:\"9.3.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.9.3.0-rc.1.zip\";s:5:\"9.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.3.1.zip\";s:5:\"9.3.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.3.2.zip\";s:5:\"9.3.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.3.3.zip\";s:5:\"9.3.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.3.4.zip\";s:5:\"9.3.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.3.5.zip\";s:5:\"9.3.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.3.6.zip\";s:5:\"9.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.4.0.zip\";s:12:\"9.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.4.0-beta.1.zip\";s:12:\"9.4.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.4.0-beta.2.zip\";s:10:\"9.4.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.9.4.0-rc.1.zip\";s:10:\"9.4.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.9.4.0-rc.2.zip\";s:10:\"9.4.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.9.4.0-rc.3.zip\";s:10:\"9.4.0-rc.4\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.9.4.0-rc.4.zip\";s:5:\"9.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.4.1.zip\";s:5:\"9.4.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.4.2.zip\";s:5:\"9.4.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.4.3.zip\";s:5:\"9.4.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.4.4.zip\";s:5:\"9.4.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.4.5.zip\";s:5:\"9.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.5.0.zip\";s:12:\"9.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.5.0-beta.1.zip\";s:12:\"9.5.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.5.0-beta.2.zip\";s:10:\"9.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.9.5.0-rc.1.zip\";s:5:\"9.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.5.1.zip\";s:5:\"9.5.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.5.2.zip\";s:5:\"9.5.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.5.3.zip\";s:5:\"9.5.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.5.4.zip\";s:5:\"9.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.6.0.zip\";s:12:\"9.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.6.0-beta.1.zip\";s:12:\"9.6.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.6.0-beta.2.zip\";s:10:\"9.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.9.6.0-rc.1.zip\";s:5:\"9.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.6.1.zip\";s:5:\"9.6.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.6.2.zip\";s:5:\"9.6.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.6.3.zip\";s:5:\"9.6.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.6.4.zip\";s:5:\"9.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.7.0.zip\";s:12:\"9.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.7.0-beta.1.zip\";s:10:\"9.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.9.7.0-rc.1.zip\";s:5:\"9.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.7.1.zip\";s:5:\"9.7.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.7.2.zip\";s:5:\"9.7.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.7.3.zip\";s:5:\"9.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.8.0.zip\";s:12:\"9.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.8.0-beta.1.zip\";s:10:\"9.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.9.8.0-rc.1.zip\";s:5:\"9.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.8.1.zip\";s:5:\"9.8.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.8.2.zip\";s:5:\"9.8.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.8.3.zip\";s:5:\"9.8.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.8.4.zip\";s:5:\"9.8.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.8.5.zip\";s:5:\"9.8.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.8.6.zip\";s:5:\"9.8.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.8.7.zip\";s:5:\"9.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.9.0.zip\";s:12:\"9.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.9.9.0-beta.1.zip\";s:10:\"9.9.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.9.9.0-rc.1.zip\";s:5:\"9.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.9.1.zip\";s:5:\"9.9.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.9.2.zip\";s:5:\"9.9.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.9.3.zip\";s:5:\"9.9.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.9.4.zip\";s:5:\"9.9.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.9.5.zip\";s:5:\"9.9.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.9.6.zip\";s:5:\"9.9.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.9.7.zip\";s:5:\"trunk\";s:54:\"https://downloads.wordpress.org/plugin/woocommerce.zip\";}s:14:\"business_model\";s:10:\"commercial\";s:14:\"repository_url\";s:0:\"\";s:22:\"commercial_support_url\";s:0:\"\";s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3234504\";s:4:\"high\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3234504\";}s:5:\"icons\";a:2:{s:2:\"1x\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";s:3:\"svg\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";}s:12:\"preview_link\";s:0:\"\";s:4:\"Name\";s:11:\"WooCommerce\";}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607021','_transient_product-transient-version','1781108190','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607023','_transient_timeout_wc_shipping_method_count','1783220605','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607024','_transient_wc_shipping_method_count','a:2:{s:7:\"version\";s:10:\"1780627597\";s:5:\"value\";i:2;}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607025','_elementor_notifications_data','a:2:{s:7:\"timeout\";i:1781131163;s:5:\"value\";s:12028:\"[{\"id\":\"4.1-atomic-form\",\"title\":\"Generate Atomic Forms\",\"description\":\"Ask Angie to generate forms for lead generation, contact, bookings, promotions and more. Use the new atomic form elements like date picker, radio button, and file upoad.\",\"topic\":\"Atomic Editor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/41-atomic-form-angie.png\",\"chipTags\":[\"Angie\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.1-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"4.1-atomic-form\",\"title\":\"Generate Atomic Forms\",\"description\":\"Ask Angie to generate forms for lead generation, contact, bookings, promotions and more. Use the new atomic form elements like date picker, radio button, and file upoad.\",\"topic\":\"Atomic Editor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/41-atomic-form-angie.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"Angie\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.1-blog\\/\",\"readMoreText\":\"Learn more\",\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.1-atomic-form\\/\"},{\"id\":\"cookie-consent-launch\",\"title\":\"Introducing Cookie Consent\",\"description\":\"Add a cookie consent banner to your site in minutes. Scan for cookies, manage scripts based on visitor consent, and customize the banner to match your site, or design it in the Editor with Elementor Popups. Free to get started, with more features in Elementor One.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cookie-launch.png\",\"chipTags\":[\"New feature\"],\"cta\":\"Get Cookie Consent\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/cookie-consent-in-editor-whats-new\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"cookiez\\/cookiez.php\",\"operator\":\"!=\"}]]},{\"id\":\"angie-super-admin\",\"title\":\"Super Admin Mode\",\"description\":\"Revolutionize your WordPress workflow with Super Admin Mode. Perform root-level WordPress operations through natural language - bulk post and product updates, PHP error diagnosis, and more.\",\"topic\":\"Angie\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/angie-super-admin.png\",\"chipTags\":[\"Angie\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-angie-super-admin\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"4.0-default\",\"title\":\"The new default\",\"description\":\"New sites now start with version 4.0 and atomic features enabled by default. Existing sites can choose to manually activate. Nothing happens to your existing layouts and sites.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-default.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"angie-revisions\",\"title\":\"Restore snippets precisely with Revisions\",\"description\":\"Restore any previous version of your snippets to its exact saved state. Each time you revise, Angie preserves a complete snapshot of the snippet\'s code, structure, and configuration. Open version history, select any saved state, and return to it in one click.\",\"topic\":\"Angie\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/angie-notification-revision.png\",\"chipTags\":[\"Angie\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-angie-revisions\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"4.0-atomic-forms\",\"title\":\"Atomic Forms\",\"description\":\"Build forms as part of your layout, not separate widgets. Create flexible, multi-column designs, nest elements freely, and maintain full control with the same atomic system and styling logic.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-atomic-form.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"4.0-atomic-forms\",\"title\":\"Atomic Forms\",\"description\":\"Build forms as part of your layout, not separate widgets. Create flexible, multi-column designs, nest elements freely, and maintain full control with the same atomic system and styling logic.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-custom-css.png\",\"chipTags\":[\"Atomic Editor\"],\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-atomic-forms\\/\"},{\"id\":\"angie-cloud-library\",\"title\":\"Introducing Angie Cloud Library\",\"description\":\"Your Angie snippets are now available across every site you manage. Save any asset you build to your account and pull it into a new project in a few clicks, fully editable and ready to adapt. Available to all users with free daily credits.\",\"topic\":\"Angie\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/angie-cloud-library.png\",\"chipTags\":[\"Angie\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-angie-cloud-library\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"4.0-interactions\",\"title\":\"Pro Interactions\",\"description\":\"Create advanced, lightweight motion inside the Editor. Define behavior visually, keep everything system-based, and deliver engaging experiences without bloated scripts or external tools.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-interactions.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"4.0-interactions\",\"title\":\"Pro Interactions\",\"description\":\"Create advanced, lightweight motion inside the Editor. Define behavior visually, keep everything system-based, and deliver engaging experiences without bloated scripts or external tools.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-interactions.png\",\"chipTags\":[\"Atomic Editor\"],\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-interactions\\/\"},{\"id\":\"4.0-sync-design-system\",\"title\":\"Sync and share design systems\",\"description\":\"Export and import Variables and Classes between sites, and sync them with v3 Global Styles. Maintain a consistent design system across projects and across versions.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-sync-design-system.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"angie-launch\",\"title\":\"Introducing Angie Code.\",\"description\":\"Create custom Elementor widgets, and snippets for custom site functionality from a simple description. Built natively for WordPress, and Elementor. Preview safely, refine through conversation, and publish when ready.\",\"topic\":\"Angie Code\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/angie-launch.png\",\"chipTags\":[\"New launch\"],\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-angie-launch\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"partner-program\",\"title\":\"Partner with Elementor. Grow your business.\",\"description\":\"Join to unlock exclusive access, secure visibility, benefit from marketing opportunities, and create additional revenue from the work you have already done. Join for free and start benefiting!\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/notification-partner.png\",\"chipTags\":[\"Partner Program\"],\"cta\":\"Apply now\",\"ctaLink\":\"https:\\/\\/my.elementor.com\\/agency\\/\"},{\"id\":\"manage-launch\",\"title\":\"Introducing Manage\",\"description\":\"Monitor, optimize and maintain all your sites from one centralized dashboard. Track performance, perform bulk updates and detect security risks to stay ahead of issues.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/manage.png\",\"chipTags\":[\"New Launch\"],\"cta\":\"Start free\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/manage\\/whatsnew\"},{\"id\":\"components-3.35\",\"title\":\"Components\",\"description\":\"Build modular, reusable sections that update everywhere and decide how much control to give away to your team or clients.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/components-3-35.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-components-3.35-blog\",\"readMoreText\":\"Learn More\"},{\"id\":\"one-launch\",\"title\":\"Introducing Elementor One\",\"description\":\"The complete website building experience. All the tools to create, optimize, and manage websites, unified under one roof.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/one-launch.png\",\"chipTags\":[\"New Launch\"],\"cta\":\"Explore Elementor One\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/launch-whats-new\"},{\"id\":\"atomic-tabs-3.34\",\"title\":\"Atomic Tabs\",\"description\":\"Nest any type of content inside tab triggers or content panels, unlocking a truly atomic way of design.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/tabs-3.34.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.34-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"variables-manager-3.33\",\"title\":\"Variables Manager\",\"description\":\"Centralize and control all your color, typography, and size tokens for consistent, scalable design systems.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-variables-manager.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"ally-assistant\",\"title\":\"New! Fix accessibility issues with Ally Assistant\",\"description\":\"Scan any page for accessibility issues and fix them in one click. From color contrast to missing alt text, Ally Assistant provides guided steps or AI-powered fixes to make your site more inclusive.\",\"topic\":\"Ally by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ally-assistant.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Scan for free\",\"ctaLink\":\"http:\\/\\/go.elementor.com\\/acc-assistant-launch-whats-new\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"pojo-accessibility\\/pojo-accessibility.php\"}]]},{\"id\":\"image-optimizer-3.19\",\"title\":\"Effortlessly optimize images for a stunning, high-speed website with the Image Optimizer plugin.\",\"description\":\"Image Optimizer perfectly balances between image quality and performance to boost your website.  Resize, compress, and convert images to WebP, for faster loading times and and better user experience.\",\"topic\":\"Image Optimizer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/image-optimizer-3.19.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get the Image Optimizer\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/io-notification-wp-dash-learn-more\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"image-optimization\\/image-optimization.php\"}]]},{\"id\":\"5-star-rating-prompt\",\"title\":\"Love the New Features? Let Us Know with 5 Stars!\",\"description\":\"Help spread the word by telling the world what you love about Elementor.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/5-star-rating-prompt.png\",\"cta\":\"Leave a Review\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/wp-dash-notification-five-stars\\/\"},{\"id\":\"site-mailer-introducing\",\"title\":\"Introducing Site Mailer\",\"description\":\"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\\u2014no need for an SMTP plugin or complicated configurations.\",\"topic\":\"Site Mailer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/Site-mailer.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/sm-wp-dash-whatsnew\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"site-mailer\\/site-mailer.php\"}]]}]\";}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607040','_transient_orders-transient-version','1781107663','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607044','_transient_timeout_wc_report_customers_133c83fa836e57bebee7b66abb30a3d7','1781435777','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607045','_transient_wc_report_customers_133c83fa836e57bebee7b66abb30a3d7','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":4:{s:4:\"data\";a:1:{i:0;a:15:{s:2:\"id\";i:1;s:7:\"user_id\";i:17;s:8:\"username\";s:11:\"admin_codex\";s:4:\"name\";s:16:\"Md.Asadul Islam \";s:5:\"email\";s:25:\"admin_codex@example.local\";s:7:\"country\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:15:\"date_registered\";s:19:\"2026-06-05 08:09:34\";s:16:\"date_last_active\";s:19:\"2026-06-07 09:59:07\";s:15:\"date_last_order\";s:19:\"2026-06-07 09:59:07\";s:12:\"orders_count\";i:3;s:11:\"total_spend\";d:3300;s:15:\"avg_order_value\";d:1100;}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607046','_transient_timeout_cartflows-5-start-notice','1783222216','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607047','_transient_cartflows-5-start-notice','1','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607067','_transient_timeout_wc_product_loop_94ffee8a1d16e8c437b74c24293467e5','1783305894','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607068','_transient_wc_product_loop_94ffee8a1d16e8c437b74c24293467e5','a:2:{s:7:\"version\";s:10:\"1780713520\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:4:{i:0;i:147;i:1;i:155;i:2;i:151;i:3;i:51;}s:5:\"total\";i:4;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:-1;s:12:\"current_page\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607069','_transient_timeout_wc_related_51','1780742061','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607070','_transient_wc_related_51','a:1:{s:50:\"limit=4&exclude_ids{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}5B0{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}5D=0&exclude_ids{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}5B1{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}5D=51\";a:0:{}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607130','_transient_timeout_wcpay_incentive_store_has_orders','1788410873','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607131','_transient_wcpay_incentive_store_has_orders','yes','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607138','_elementor_pro_editor_activate_license_notice_dismissed','1781106177','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607143','_transient_timeout_woocommerce_admin_remote_inbox_notifications_specs','1781260710','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607144','_transient_woocommerce_admin_remote_inbox_notifications_specs','a:1:{s:5:\"en_US\";a:52:{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:467:\"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://woocommerce.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:130:\"https://woocommerce.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:144:\"https://woocommerce.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:46:\"WooPayments setup - let us know what you think\";s:7:\"content\";s:137:\"Congrats on enabling WooPayments 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:58:\"https://automattic.survey.fm/woopayments-new-user-feedback\";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:122:\"https://woocommerce.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:738:\"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://woocommerce.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://woocommerce.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&section=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:442:\"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://woocommerce.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:358:\"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://woocommerce.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:137:\"https://woocommerce.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:137:\"https://woocommerce.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:137:\"https://woocommerce.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:137:\"https://woocommerce.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:391:\"<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://woocommerce.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 &gt; 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:148:\"https://woocommerce.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:17:{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.\";}i:1;O:8:\"stdClass\":3:{s:6:\"locale\";s:2:\"ar\";s:5:\"title\";s:50:\"كيف تسير عملية إعداد متجرك؟\";s:7:\"content\";s:368:\"هدفنا هو التأكد من لديك جميع الأدوات المناسبة لبدء إعداد متجرك بأسهل طريقة ممكنة.\r\nنود معرفة ما إذا كنا قد وفقنا في تحقيق هدفنا أم لا، وكيف يمكننا التحسين. لجمع آرائك، أعددنا لك استطلاع للرأي مدته 2 دقيقة.\";}i:2;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"zh_CN\";s:5:\"title\";s:39:\"您的商店设置工作进展如何？\";s:7:\"content\";s:273:\"我们的目标是确保您拥有所有合适的工具，以便尽可能顺利地开始设置您的商店。\r\n我们很想知道我们是否达到了预期目标，以及我们可以如何改进。 为了收集您的想法，我们制作了一份 2 分钟的调查问卷。\";}i:3;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"zh_TW\";s:5:\"title\";s:33:\"你的商店設定進展如何？\";s:7:\"content\";s:246:\"我們的目標是確保你取得所有必備工具，能夠以最順暢的方式開始設定自己的商店。\r\n我們想知道是否達成目標，以及如何進行提升。 為了收集你的想法，我們製作了 2 分鐘的問卷調查。\";}i:4;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"nl_NL\";s:5:\"title\";s:44:\"Hoe gaat het met het opzetten van je winkel?\";s:7:\"content\";s:254:\"Ons doel is ervoor te zorgen dat je alle juiste tools hebt om je winkel op de soepelste manier op te zetten.\r\nWe horen graag of we ons doel hebben bereikt en hoe we kunnen verbeteren. We hebben een enquête van 2 minuten gemaakt om te horen hoe het gaat.\";}i:5;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"fr_FR\";s:5:\"title\";s:54:\"Comment se passe la configuration de votre boutique ?\";s:7:\"content\";s:318:\"Notre objectif est de nous assurer que vous avez tous les bons outils pour commencer à configurer votre boutique de la manière la plus fluide possible.\r\nNous aimerions savoir si nous y sommes parvenus et comment nous pouvons nous améliorer. Pour recueillir vos idées, nous avons réalisé un sondage de 2 minutes.\";}i:6;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"de_DE\";s:5:\"title\";s:43:\"Wie läuft die Einrichtung deines Shops ab?\";s:7:\"content\";s:304:\"Wir möchten sicherstellen, dass du alle passenden Tools hast, damit du deinen Shop so problemlos wie möglich einrichten kannst.\r\nWir würden gerne wissen, ob wir unser Ziel erreicht haben und wie wir uns verbessern können. Um deine Meinung zu erfahren, haben wir eine zweiminütige Befragung erstellt.\";}i:7;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"he_IL\";s:5:\"title\";s:50:\"איך הולך עם הגדרת החנות שלך?\";s:7:\"content\";s:341:\"המטרה שלנו היא לוודא שיהיו ברשותך כל הכלים הנכונים כדי להתחיל להקים את החנות שלך בצורה החלקה ביותר האפשרית.\r\nנשמח לדעת אם מימשנו אותה וכיצד נוכל להשתפר. כדי לשמוע את דעתך, הכנו סקר בן 2 דקות.\";}i:8;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"id_ID\";s:5:\"title\";s:43:\"Bagaimana perkembangan penyiapan toko Anda?\";s:7:\"content\";s:285:\"Kami ingin memastikan Anda memiliki alat-alat yang tepat untuk mempersonalisasi toko semudah mungkin.\r\nKami ingin tahu apakah kami sudah tepat sasaran dan apa saja yang perlu ditingkatkan. Untuk mengetahui pendapat Anda, kami membuat survei yang pengisiannya hanya butuh waktu 2 menit.\";}i:9;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"it_IT\";s:5:\"title\";s:38:\"Come va la configurazione del negozio?\";s:7:\"content\";s:288:\"Il nostro obiettivo è quello di offrirti tutti gli strumenti giusti per iniziare a configurare il tuo negozio nel modo più semplice possibile.\r\nCi piacerebbe sapere se l\'abbiamo raggiunto e come possiamo migliorare. Abbiamo creato un sondaggio di 2 minuti per conoscere la tua opinione.\";}i:10;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"ja_JP\";s:5:\"title\";s:65:\"ストアのセットアップは順調に進んでいますか ?\";s:7:\"content\";s:382:\"適切なツールがすべて揃った状態で、できる限りスムーズにストアをセットアップしていただけることがわたしたちの目標です。\r\nその目標を達成できているかどうか、また改善点があればぜひお聞かせください。 ご意見をお伺いする場として、2分間のアンケートを用意しています。\";}i:11;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"ko_KR\";s:5:\"title\";s:47:\"스토어 설정은 잘 진행되고 있나요?\";s:7:\"content\";s:342:\"가능한 가장 원활하게 스토어 설정을 시작할 수 있도록 모든 적합한 도구를 제공하는 것을 목표로 하고 있습니다.\r\n목표를 달성했는지, 그리고 어떻게 개선할 수 있는지 알고 싶습니다. 여러분의 의견을 듣기 위해 2분 정도 소요되는 설문조사를 준비했습니다.\";}i:12;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"pt_BR\";s:5:\"title\";s:45:\"Como está indo a configuração da sua loja?\";s:7:\"content\";s:276:\"Nosso objetivo é garantir que você tenha todas as ferramentas certas para começar a configurar sua loja da maneira mais tranquila possível.\r\nAdoraríamos saber se atingimos nosso objetivo e como podemos melhorar. Para saber sua opinião, criamos uma pesquisa de 2 minutos.\";}i:13;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"ru_RU\";s:5:\"title\";s:60:\"Как проходит настройка магазина?\";s:7:\"content\";s:542:\"Наша цель — обеспечить вас всеми необходимыми инструментами, чтобы вы могли приступить к настройке магазина, избежав по возможности любых технических проблем.\r\nМы хотели бы знать, удалось ли нам достичь цели и что мы можем улучшить. Чтобы узнать мнение пользователей, мы создали 2-минутный опрос.\";}i:14;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"es_ES\";s:5:\"title\";s:42:\"¿Cómo va la configuración de tu tienda?\";s:7:\"content\";s:297:\"Nuestro objetivo es garantizar que cuentas con las herramientas adecuadas para empezar a configurar tu tienda de la manera más fácil possible.\r\nNos encantaría saber si hemos cumplido nuestra objetivo y cómo podemos mejorar. Para recopilar tus opiniones, hemos creado una encuesta de 2 minutos.\";}i:15;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"sv_SV\";s:5:\"title\";s:46:\"Hur går det med konfigureringen av din butik?\";s:7:\"content\";s:271:\"Vårt mål är att se till att du har rätt verktyg för att börja konfigurera din butik på enklast möjliga sätt.\r\nVi vill gärna veta om vi har lyckats och hur vi kan förbättra oss. Vi har skapat en två minuter lång undersökning för att samla in dina åsikter.\";}i:16;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"tr_TR\";s:5:\"title\";s:35:\"Mağaza kurulumunuz nasıl gidiyor?\";s:7:\"content\";s:310:\"Hedefimiz mağazanızı mümkün olan en sorunsuz şekilde kurmaya başlamanız için tüm doğru araçlara sahip olduğunuzdan emin olmak.\r\nHedefimizi tutturup tutturmadığımızı ve kendimizi nasıl geliştirebileceğimizi bilmek isteriz. Düşüncelerinizi öğrenmek için 2 dakikalık bir anket yaptık.\";}}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:17:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how it’s going\";}i:1;O:8:\"stdClass\":2:{s:6:\"locale\";s:2:\"ar\";s:5:\"label\";s:41:\"أخبرنا كيف تسير تجربتك\";}i:2;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"zh_CN\";s:5:\"label\";s:24:\"告诉我们进展如何\";}i:3;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"zh_TW\";s:5:\"label\";s:27:\"請告訴我們設定進展\";}i:4;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"nl_NL\";s:5:\"label\";s:23:\"Vertel ons hoe het gaat\";}i:5;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"fr_FR\";s:5:\"label\";s:36:\"Faites-nous part de vos commentaires\";}i:6;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"de_DE\";s:5:\"label\";s:22:\"Sag uns, wie es läuft\";}i:7;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"he_IL\";s:5:\"label\";s:32:\"ספר/י לנו איך הולך\";}i:8;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"id_ID\";s:5:\"label\";s:30:\"Beri tahu kami perkembangannya\";}i:9;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"it_IT\";s:5:\"label\";s:22:\"Dicci come sta andando\";}i:10;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"ja_JP\";s:5:\"label\";s:54:\"セットアップの感想をお聞かせください\";}i:11;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"ko_KR\";s:5:\"label\";s:25:\"의견을 들려주세요\";}i:12;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"pt_BR\";s:5:\"label\";s:26:\"Conte-nos o que você acha\";}i:13;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"ru_RU\";s:5:\"label\";s:87:\"Расскажите нам, как этот процесс проходит у вас.\";}i:14;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"es_ES\";s:5:\"label\";s:22:\"Cuéntanos cómo te va\";}i:15;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"sv_SV\";s:5:\"label\";s:30:\"Berätta för oss hur det går\";}i:16;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"tr_TR\";s:5:\"label\";s:32:\"Nasıl gittiğini bize söyleyin\";}}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: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&section=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:155:\"https://woocommerce.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:143:\"https://woocommerce.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&section=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:178:\"https://woocommerce.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&section=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:161:\"https://woocommerce.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&section=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: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&section=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:169:\"https://woocommerce.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&section=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: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:125:\"https://woocommerce.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 &amp; 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: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:131:\"https://woocommerce.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: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:1:\"<\";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:161:\"https://woocommerce.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:142:\"https://woocommerce.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\";}}}}s:30:\"remove_estimated_deposits_2024\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"remove_estimated_deposits_2024\";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:33:\"Estimated deposits are going away\";s:7:\"content\";s:267:\"To provide more accurate deposit information and support the expansion of instant deposits, estimated deposit details will no longer be available in WooPayments. We recommend upgrading to the latest version of WooPayments for more detailed balance status information.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"view_docs\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:29:\"Learn about Deposit schedules\";}}s:3:\"url\";s:151:\"https://woocommerce.com/document/woopayments/deposits/deposit-schedule/?utm_source=inbox_note&utm_medium=product&utm_campaign=view_docs#available-funds\";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\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"6.9\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2024-01-21 08:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2024-01-31 23:59:59\";}}}s:26:\"sirt-woo-2024-11-xss-admin\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"sirt-woo-2024-11-xss-admin\";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:47:\"An important update is required for WooCommerce\";s:7:\"content\";s:353:\"This update addresses a security vulnerability that could allow unauthorized access to administrative privileges on your site. <a href=\"https://developer.woocommerce.com/2024/12/03/woocommerce-9-4-3-and-woocommerce-9-3-4-available-now/\">Learn more</a>.\r\n<br><br>\r\n<strong>Please ensure your site is updated to the latest version to stay secure.</strong>\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"sirt-woo-2024-11-xss-admin\";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:26:\"sirt-woo-2024-11-xss-admin\";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:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2024-12-04 02:07: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:\"8.4.0\";}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:\"9.4.3\";}}}s:44:\"paypal-braintree-sdk-depreciation-2025-02-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"paypal-braintree-sdk-depreciation-2025-02-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:51:\"Update required for your PayPal Braintree extension\";s:7:\"content\";s:253:\"To continue securely accepting payments, you must update your PayPal Braintree extension to version 3.2.4 or newer before June 30, 2025. Your current extension version will not support payment processing after this date due to an SSL certificate update.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:51:\"paypal-braintree-sdk-depreciation-2025-02-20-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Upgrade now\";}}s:3:\"url\";s:21:\"/wp-admin/plugins.php\";s:18:\"url_is_admin_query\";b:1;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:\"2025-03-03 19:49:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:47:\"woocommerce-gateway-paypal-powered-by-braintree\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"3.2.3\";}}}s:24:\"uk-vat-notice-2025-04-30\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"uk-vat-notice-2025-04-30\";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:38:\"UK VAT numbers are no longer supported\";s:7:\"content\";s:322:\"Due to recent HM Revenue &amp; Customs (HMRC) VAT API changes, your EU VAT Number for WooCommerce extension can no longer validate UK VAT numbers. HMRC now requires merchants to register an API key, which this extension does not currently support. We recommend EU/UK VAT Validation Manager for WooCommerce as a replacement\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:31:\"uk-vat-notice-button-2025-04-30\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:31:\"Learn more about this extension\";}}s:3:\"url\";s:53:\"https://wordpress.org/plugins/eu-vat-for-woocommerce/\";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:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-eu-vat-number\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2025-05-05 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2025-05-15 00:00:00\";}}}s:44:\"paypal-braintree-sdk-depreciation-2025-05-30\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"paypal-braintree-sdk-depreciation-2025-05-30\";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:54:\"Action required: Update the PayPal Braintree extension\";s:7:\"content\";s:228:\"Your PayPal Braintree extension is using an outdated SDK and will stop processing payments after June 30, 2025, due to a root SSL certificate expiration. To avoid service disruption, update to version 3.2.4 or newer immediately.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:51:\"paypal-braintree-sdk-depreciation-2025-05-30-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Update now\";}}s:3:\"url\";s:21:\"/wp-admin/plugins.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}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:\"2025-05-29 17:56:45\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:47:\"woocommerce-gateway-paypal-powered-by-braintree\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"3.2.3\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607145','_transient_timeout_as-post-store-dependencies-met','1780742311','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607146','_transient_as-post-store-dependencies-met','yes','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607154','action_scheduler_migration_status','complete','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607166','_transient_timeout_wc_order_137_needs_processing','1780743039','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607167','_transient_wc_order_137_needs_processing','1','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607181','_transient_timeout_wc_report_orders_stats_6e0dd50e79d7fb25d4052731bbd6d947','1781262683','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607182','_transient_wc_report_orders_stats_6e0dd50e79d7fb25d4052731bbd6d947','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"products\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-04 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-05 17:11:21\";s:12:\"date_end_gmt\";s:19:\"2026-06-05 11:11:21\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607183','_transient_timeout_wc_report_orders_stats_718da2a13f4944ba4be1e4ca7a0a21a5','1781262683','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607184','_transient_wc_report_orders_stats_718da2a13f4944ba4be1e4ca7a0a21a5','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"products\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-04 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-05 17:11:21\";s:12:\"date_end_gmt\";s:19:\"2026-06-05 11:11:21\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607185','_transient_timeout_wc_report_orders_stats_0774c715ec93092bf034c028e017303c','1781262683','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607186','_transient_wc_report_orders_stats_0774c715ec93092bf034c028e017303c','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-03 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-04 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607187','_transient_timeout_wc_report_orders_stats_0b80f7d72ddf01d93c288c86c9674e15','1781262683','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607188','_transient_wc_report_orders_stats_0b80f7d72ddf01d93c288c86c9674e15','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-03 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-04 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607196','_transient_timeout_wc_report_orders_stats_641eca19074e06a3620cf48cd5feaab2','1781264394','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607197','_transient_wc_report_orders_stats_641eca19074e06a3620cf48cd5feaab2','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"products\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-04 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-05 17:39:52\";s:12:\"date_end_gmt\";s:19:\"2026-06-05 11:39:52\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607198','_transient_timeout_wc_report_orders_stats_6d8476f674c4761b75aa57d4b183c9d3','1781264394','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607199','_transient_wc_report_orders_stats_6d8476f674c4761b75aa57d4b183c9d3','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"products\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-04 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-05 17:39:52\";s:12:\"date_end_gmt\";s:19:\"2026-06-05 11:39:52\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607205','_transient_timeout_wc_related_147','1780750137','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607206','_transient_wc_related_147','a:1:{s:51:\"limit=4&exclude_ids{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}5B0{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}5D=0&exclude_ids{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}5B1{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}5D=147\";a:0:{}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607210','_transient_timeout_wc_related_151','1780757667','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607211','_transient_wc_related_151','a:1:{s:51:\"limit=4&exclude_ids{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}5B0{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}5D=0&exclude_ids{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}5B1{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}5D=151\";a:0:{}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607223','wp_calendar_block_has_published_posts','1','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607254','_transient_timeout_wc_report_orders_stats_74aa019bf82146afa4125340c002ecb5','1781312467','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607255','_transient_timeout_wc_report_orders_stats_213b8d269d0c7e043b9678f04a599014','1781312467','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607256','_transient_wc_report_orders_stats_74aa019bf82146afa4125340c002ecb5','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-05 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-06 07:01:05\";s:12:\"date_end_gmt\";s:19:\"2026-06-06 01:01:05\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607257','_transient_wc_report_orders_stats_213b8d269d0c7e043b9678f04a599014','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"products\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-04 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-05 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607258','_transient_timeout_wc_report_orders_stats_e53701afa071f78aed3fe804407a1853','1781312467','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607259','_transient_timeout_wc_report_orders_stats_685a680321173322ad5378628e58f095','1781312467','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607260','_transient_wc_report_orders_stats_e53701afa071f78aed3fe804407a1853','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-05 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-06 07:01:05\";s:12:\"date_end_gmt\";s:19:\"2026-06-06 01:01:05\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607261','_transient_wc_report_orders_stats_685a680321173322ad5378628e58f095','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"products\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-04 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-05 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607262','_transient_timeout_wc_report_orders_stats_2a4f60ba45f00b3bd345e8db706be2b4','1781313064','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607263','_transient_wc_report_orders_stats_2a4f60ba45f00b3bd345e8db706be2b4','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-05 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-06 07:11:02\";s:12:\"date_end_gmt\";s:19:\"2026-06-06 01:11:02\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607264','_transient_timeout_wc_report_orders_stats_c3dc44e97773da16ed6ebcf98df9d70c','1781313064','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607265','_transient_wc_report_orders_stats_c3dc44e97773da16ed6ebcf98df9d70c','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-05 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-06 07:11:02\";s:12:\"date_end_gmt\";s:19:\"2026-06-06 01:11:02\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607273','_transient_timeout_wc_report_orders_stats_0548da2d397ed3a6ce82ed82a39ecdb1','1781316620','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607274','_transient_wc_report_orders_stats_0548da2d397ed3a6ce82ed82a39ecdb1','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"products\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-06 08:10:18\";s:12:\"date_end_gmt\";s:19:\"2026-06-06 02:10:18\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607275','_transient_timeout_wc_report_orders_stats_dddab09f70b1d1c26d0c6d56aab1f90a','1781316620','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607276','_transient_wc_report_orders_stats_dddab09f70b1d1c26d0c6d56aab1f90a','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"products\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-06 08:10:18\";s:12:\"date_end_gmt\";s:19:\"2026-06-06 02:10:18\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607277','_transient_timeout_wc_report_orders_stats_2cbcb96febd82f4bcd9d27d627bffaf2','1781316620','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607278','_transient_wc_report_orders_stats_2cbcb96febd82f4bcd9d27d627bffaf2','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:2:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:2;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607279','_transient_timeout_wc_report_orders_stats_f85c61a9d129d02096b216b51e6a0be9','1781316620','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607280','_transient_timeout_wc_report_orders_stats_8f03fe9ca43d882db8863ca54e897997','1781316620','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607281','_transient_wc_report_orders_stats_f85c61a9d129d02096b216b51e6a0be9','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:2:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:2;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607282','_transient_wc_report_orders_stats_8f03fe9ca43d882db8863ca54e897997','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":7:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:8:\"products\";i:1;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:6:{i:0;a:6:{s:8:\"interval\";s:10:\"2026-06-01\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-01 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2026-06-02\";s:10:\"date_start\";s:19:\"2026-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-01 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-02 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2026-06-03\";s:10:\"date_start\";s:19:\"2026-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-02 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-03 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2026-06-04\";s:10:\"date_start\";s:19:\"2026-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-03 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-04 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2026-06-05\";s:10:\"date_start\";s:19:\"2026-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-04 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-05 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2026-06-06\";s:10:\"date_start\";s:19:\"2026-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-05 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-06 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:6;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607283','_transient_timeout_wc_report_orders_stats_b4582699b0cbd26318170d3fbb44741b','1781316620','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607284','_transient_wc_report_orders_stats_b4582699b0cbd26318170d3fbb44741b','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":7:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:8:\"products\";i:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:6:{i:0;a:6:{s:8:\"interval\";s:10:\"2025-06-01\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2025-06-02\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-02 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2025-06-03\";s:10:\"date_start\";s:19:\"2025-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-02 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-03 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2025-06-04\";s:10:\"date_start\";s:19:\"2025-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-03 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-04 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2025-06-05\";s:10:\"date_start\";s:19:\"2025-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-04 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-05 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2025-06-06\";s:10:\"date_start\";s:19:\"2025-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-05 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:6;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607285','_transient_timeout_wc_report_products_stats_9f100617abd3d4d9ea5d786b275f8888','1781316621','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607286','_transient_timeout_wc_report_products_stats_9e64463003521f97d46dc26badc0033b','1781316621','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607287','_transient_wc_report_products_stats_9f100617abd3d4d9ea5d786b275f8888','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:5;s:11:\"net_revenue\";d:3750;s:12:\"orders_count\";i:5;s:14:\"products_count\";i:1;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-06 08:10:18\";s:12:\"date_end_gmt\";s:19:\"2026-06-06 02:10:18\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:5;s:11:\"net_revenue\";d:3750;s:12:\"orders_count\";i:5;s:14:\"products_count\";i:1;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607288','_transient_wc_report_products_stats_9e64463003521f97d46dc26badc0033b','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:2:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:2;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607289','_transient_timeout_wc_report_variations_stats_a321243be9c1138e96af53f977a54548','1781316621','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607290','_transient_timeout_wc_report_variations_stats_4f6984edb38867954cc60975bdb04381','1781316621','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607291','_transient_wc_report_variations_stats_a321243be9c1138e96af53f977a54548','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:2:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:2;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607292','_transient_wc_report_variations_stats_4f6984edb38867954cc60975bdb04381','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-06 08:10:18\";s:12:\"date_end_gmt\";s:19:\"2026-06-06 02:10:18\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607293','_transient_timeout_wc_report_orders_stats_abff1eed0d666485980e7ab8c2fc6c88','1781316622','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607294','_transient_wc_report_orders_stats_abff1eed0d666485980e7ab8c2fc6c88','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:12:\"orders_count\";i:1;s:15:\"avg_order_value\";d:0;s:8:\"products\";i:1;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:6:{i:0;a:6:{s:8:\"interval\";s:10:\"2026-06-01\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-01 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2026-06-02\";s:10:\"date_start\";s:19:\"2026-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-01 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-02 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2026-06-03\";s:10:\"date_start\";s:19:\"2026-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-02 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-03 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2026-06-04\";s:10:\"date_start\";s:19:\"2026-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-03 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-04 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2026-06-05\";s:10:\"date_start\";s:19:\"2026-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-04 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-05 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:1;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2026-06-06\";s:10:\"date_start\";s:19:\"2026-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-05 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-06 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:6;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607295','_transient_timeout_wc_report_orders_stats_a5024f83aa028ee4fee1fa0b46a6d3d7','1781316622','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607296','_transient_wc_report_orders_stats_a5024f83aa028ee4fee1fa0b46a6d3d7','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:8:\"products\";i:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:6:{i:0;a:6:{s:8:\"interval\";s:10:\"2025-06-01\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2025-06-02\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-02 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2025-06-03\";s:10:\"date_start\";s:19:\"2025-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-02 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-03 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2025-06-04\";s:10:\"date_start\";s:19:\"2025-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-03 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-04 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2025-06-05\";s:10:\"date_start\";s:19:\"2025-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-04 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-05 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2025-06-06\";s:10:\"date_start\";s:19:\"2025-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-05 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:6;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607297','_transient_timeout_wc_report_orders_stats_9ec6fc4d878236012bc5b61ddc0ee2cf','1781316622','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607298','_transient_wc_report_orders_stats_9ec6fc4d878236012bc5b61ddc0ee2cf','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"products\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-06 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607299','_transient_timeout_wc_report_orders_stats_22712ceb7685637f1387f51c332abf78','1781316622','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607300','_transient_wc_report_orders_stats_22712ceb7685637f1387f51c332abf78','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"products\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-06 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607301','_transient_timeout_wc_report_products_stats_9844210928c721627215f968ff743874','1781316622','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607302','_transient_wc_report_products_stats_9844210928c721627215f968ff743874','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:5;s:11:\"net_revenue\";d:3750;s:12:\"orders_count\";i:5;s:14:\"products_count\";i:1;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-06 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:5;s:11:\"net_revenue\";d:3750;s:12:\"orders_count\";i:5;s:14:\"products_count\";i:1;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607303','_transient_timeout_wc_report_variations_stats_45b1b3f34fdbccffb3288b7f8f30afac','1781316622','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607304','_transient_wc_report_variations_stats_45b1b3f34fdbccffb3288b7f8f30afac','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-06 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607305','_transient_timeout_wc_report_customers_6db61d1f51ac7ef5f47bd24e5b5e89cb','1781316622','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607306','_transient_wc_report_customers_6db61d1f51ac7ef5f47bd24e5b5e89cb','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":4:{s:4:\"data\";a:4:{i:0;a:15:{s:2:\"id\";i:1;s:7:\"user_id\";i:17;s:8:\"username\";s:11:\"admin_codex\";s:4:\"name\";s:16:\"Md.Asadul Islam \";s:5:\"email\";s:25:\"admin_codex@example.local\";s:7:\"country\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:15:\"date_registered\";s:19:\"2026-06-05 02:09:34\";s:16:\"date_last_active\";s:19:\"2026-06-05 03:55:40\";s:15:\"date_last_order\";s:19:\"2026-06-05 09:55:40\";s:12:\"orders_count\";i:2;s:11:\"total_spend\";d:1500;s:15:\"avg_order_value\";d:750;}i:1;a:15:{s:2:\"id\";i:5;s:7:\"user_id\";i:0;s:8:\"username\";s:0:\"\";s:4:\"name\";s:11:\"asadulyyyy \";s:5:\"email\";s:0:\"\";s:7:\"country\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:15:\"date_registered\";N;s:16:\"date_last_active\";s:19:\"2026-06-05 10:50:38\";s:15:\"date_last_order\";s:19:\"2026-06-05 16:50:38\";s:12:\"orders_count\";i:1;s:11:\"total_spend\";d:750;s:15:\"avg_order_value\";d:750;}i:2;a:15:{s:2:\"id\";i:4;s:7:\"user_id\";i:0;s:8:\"username\";s:0:\"\";s:4:\"name\";s:7:\"asadul \";s:5:\"email\";s:0:\"\";s:7:\"country\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:15:\"date_registered\";N;s:16:\"date_last_active\";s:19:\"2026-06-05 04:47:53\";s:15:\"date_last_order\";s:19:\"2026-06-05 10:47:53\";s:12:\"orders_count\";i:1;s:11:\"total_spend\";d:750;s:15:\"avg_order_value\";d:750;}i:3;a:15:{s:2:\"id\";i:2;s:7:\"user_id\";i:0;s:8:\"username\";s:0:\"\";s:4:\"name\";s:1:\" \";s:5:\"email\";s:0:\"\";s:7:\"country\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:15:\"date_registered\";N;s:16:\"date_last_active\";s:19:\"2026-06-05 03:44:05\";s:15:\"date_last_order\";s:19:\"2026-06-05 09:44:05\";s:12:\"orders_count\";i:1;s:11:\"total_spend\";d:0;s:15:\"avg_order_value\";d:0;}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607307','_transient_timeout_wc_report_products_c02bf2c6dd12fe241dfe6d1d9f340723','1781316622','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607308','_transient_wc_report_products_c02bf2c6dd12fe241dfe6d1d9f340723','a:2:{s:7:\"version\";s:10:\"1780656693\";s:5:\"value\";O:8:\"stdClass\":4:{s:4:\"data\";a:1:{i:0;a:4:{s:10:\"product_id\";i:51;s:10:\"items_sold\";i:5;s:11:\"net_revenue\";d:3750;s:12:\"orders_count\";i:5;}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607322','_transient_timeout_wc_order_186_needs_processing','1780800102','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607323','_transient_wc_order_186_needs_processing','1','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607325','_transient_timeout_wc_report_customers_ffd030ba43ec892cde6dc3b50bfe5943','1781318518','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607326','_transient_wc_report_customers_ffd030ba43ec892cde6dc3b50bfe5943','a:2:{s:7:\"version\";s:10:\"1780713716\";s:5:\"value\";O:8:\"stdClass\":4:{s:4:\"data\";a:1:{i:0;a:15:{s:2:\"id\";i:6;s:7:\"user_id\";i:0;s:8:\"username\";s:0:\"\";s:4:\"name\";s:15:\"asadulyyyy rter\";s:5:\"email\";s:16:\"mansur@gmail.com\";s:7:\"country\";s:2:\"BD\";s:4:\"city\";s:2:\"er\";s:5:\"state\";s:5:\"BD-06\";s:8:\"postcode\";s:3:\"455\";s:15:\"date_registered\";N;s:16:\"date_last_active\";s:19:\"2026-06-06 02:41:41\";s:15:\"date_last_order\";s:19:\"2026-06-06 08:41:41\";s:12:\"orders_count\";i:1;s:11:\"total_spend\";d:750;s:15:\"avg_order_value\";d:750;}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607327','_transient_timeout_wc_order_187_needs_processing','1780800305','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607328','_transient_wc_order_187_needs_processing','1','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607356','clarity_wordpress_site_id','6a4a7f89-aa3f-48ae-843f-067801623a64','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607357','BAInjectFrontendScript','false','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607360','BAOauthRepairDone','1','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607361','BAWebhooksBackfillDone','1','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607364','clarity_ba_eligible_triggered','1','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607367','_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1781222595;s:7:\"checked\";a:3:{s:21:\"hello-elementor-child\";s:0:\"\";s:15:\"hello-elementor\";s:5:\"3.1.1\";s:7:\"kadence\";s:5:\"1.5.0\";}s:8:\"response\";a:1:{s:15:\"hello-elementor\";a:6:{s:5:\"theme\";s:15:\"hello-elementor\";s:11:\"new_version\";s:5:\"3.4.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/hello-elementor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/hello-elementor.3.4.9.zip\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.4\";}}s:9:\"no_update\";a:1:{s:7:\"kadence\";a:6:{s:5:\"theme\";s:7:\"kadence\";s:11:\"new_version\";s:5:\"1.5.0\";s:3:\"url\";s:37:\"https://wordpress.org/themes/kadence/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/kadence.1.5.0.zip\";s:8:\"requires\";s:3:\"6.3\";s:12:\"requires_php\";s:3:\"7.4\";}}s:12:\"translations\";a:0:{}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607369','_transient_timeout__woocommerce_upload_directory_status','1780811238','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607370','_transient__woocommerce_upload_directory_status','protected','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607373','_transient_timeout_stellarwp_auth_url_kadence_starter_templates','1780811264','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607374','_transient_stellarwp_auth_url_kadence_starter_templates','https://www.kadencewp.com/account-auth/','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607375','_transient_timeout_kadence_starter_templates_uplink_nonce','1780726964','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607376','_transient_kadence_starter_templates_uplink_nonce','Fr2ntCx8k0hQCzcg','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607377','kadence_starter_templates_config','{\"starterType\":\"elementor\",\"aiStatus\":\"\"}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607378','_kadence_starter_templates_last_import_data','a:23:{s:4:\"slug\";s:3:\"e09\";s:4:\"name\";s:15:\"Gourmet Burgers\";s:10:\"categories\";a:0:{}s:3:\"pro\";b:0;s:6:\"member\";b:0;s:7:\"content\";s:93:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/gourmetburger_all_content.xml\";s:11:\"widget_data\";s:80:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_widgets.json\";s:9:\"form_data\";s:79:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_fluent.json\";s:14:\"give_form_data\";s:0:\"\";s:18:\"give_donation_data\";s:0:\"\";s:13:\"theme_options\";s:86:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/gourmet_e09_theme.json\";s:13:\"depicter_data\";s:0:\"\";s:7:\"plugins\";a:3:{i:0;s:10:\"fluentform\";i:1;s:9:\"elementor\";i:2;s:11:\"woocommerce\";}s:3:\"url\";s:37:\"https://startertemplatecloud.com/e09/\";s:5:\"image\";s:89:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_preview-image-min.jpg\";s:13:\"content_width\";s:6:\"normal\";s:4:\"type\";s:9:\"elementor\";s:9:\"ecommerce\";b:1;s:8:\"homepage\";s:4:\"Home\";s:8:\"blogpage\";s:4:\"Blog\";s:8:\"keywords\";a:3:{i:0;s:11:\"restaurant\r\";i:1;s:5:\"food\r\";i:2;s:8:\"business\";}s:5:\"pages\";a:7:{s:4:\"home\";a:8:{s:2:\"id\";s:4:\"home\";s:5:\"title\";s:4:\"Home\";s:3:\"url\";s:37:\"https://startertemplatecloud.com/e09/\";s:5:\"image\";s:81:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_home-min.jpeg\";s:9:\"thumbnail\";s:90:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_home-min-800x4199.jpeg\";s:14:\"crop_thumbnail\";s:90:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_home-min-800x1008.jpeg\";s:7:\"content\";s:76:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_home.xml\";s:4:\"meta\";s:7:\"inherit\";}s:7:\"reviews\";a:8:{s:2:\"id\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:3:\"url\";s:45:\"https://startertemplatecloud.com/e09/reviews/\";s:5:\"image\";s:79:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/reviews_e09.jpg\";s:9:\"thumbnail\";s:87:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/reviews_e09-800x836.jpg\";s:14:\"crop_thumbnail\";s:88:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/reviews_e09-800x1008.jpg\";s:7:\"content\";s:79:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_reviews.xml\";s:4:\"meta\";s:7:\"inherit\";}s:7:\"ourmenu\";a:8:{s:2:\"id\";s:7:\"ourmenu\";s:5:\"title\";s:4:\"Menu\";s:3:\"url\";s:46:\"https://startertemplatecloud.com/e09/our-menu/\";s:5:\"image\";s:76:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/menu_e09.jpg\";s:9:\"thumbnail\";s:85:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/menu_e09-800x1393.jpg\";s:14:\"crop_thumbnail\";s:85:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/menu_e09-800x1008.jpg\";s:7:\"content\";s:79:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_ourmenu.xml\";s:4:\"meta\";s:7:\"inherit\";}s:8:\"services\";a:8:{s:2:\"id\";s:8:\"services\";s:5:\"title\";s:8:\"Services\";s:3:\"url\";s:46:\"https://startertemplatecloud.com/e09/our-menu/\";s:5:\"image\";s:80:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/services_e09.jpg\";s:9:\"thumbnail\";s:89:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/services_e09-800x1778.jpg\";s:14:\"crop_thumbnail\";s:89:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/services_e09-800x1008.jpg\";s:7:\"content\";s:80:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_services.xml\";s:4:\"meta\";s:7:\"inherit\";}s:5:\"about\";a:8:{s:2:\"id\";s:5:\"about\";s:5:\"title\";s:5:\"About\";s:3:\"url\";s:46:\"https://startertemplatecloud.com/e09/about-us/\";s:5:\"image\";s:77:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_about.jpg\";s:9:\"thumbnail\";s:86:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_about-800x1640.jpg\";s:14:\"crop_thumbnail\";s:86:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_about-800x1008.jpg\";s:7:\"content\";s:77:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_about.xml\";s:4:\"meta\";s:7:\"inherit\";}s:3:\"faq\";a:8:{s:2:\"id\";s:3:\"faq\";s:5:\"title\";s:3:\"FAQ\";s:3:\"url\";s:41:\"https://startertemplatecloud.com/e09/faq/\";s:5:\"image\";s:75:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_faq.jpg\";s:9:\"thumbnail\";s:83:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_faq-800x912.jpg\";s:14:\"crop_thumbnail\";s:84:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_faq-800x1008.jpg\";s:7:\"content\";s:75:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_faq.xml\";s:4:\"meta\";s:7:\"inherit\";}s:7:\"contact\";a:8:{s:2:\"id\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:3:\"url\";s:45:\"https://startertemplatecloud.com/e09/contact/\";s:5:\"image\";s:79:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_contact.jpg\";s:9:\"thumbnail\";s:88:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_contact-800x1026.jpg\";s:14:\"crop_thumbnail\";s:88:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_contact-800x1008.jpg\";s:7:\"content\";s:79:\"https://api.startertemplatecloud.com/wp-content/uploads/2021/03/e09_contact.xml\";s:4:\"meta\";s:7:\"inherit\";}}s:5:\"menus\";a:0:{}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607381','woocommerce_force_ssl_checkout','no','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607382','woocommerce_unforce_ssl_checkout','no','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607387','stellar_schema_version_viewport_hashes','1.0.5','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607388','stellar_schema_version_optimizer','2.0.5','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607389','kadence_blocks_schema_version','1','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607390','_transient_wc_attribute_taxonomies','a:0:{}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607391','stellarwp_telemetry_last_send','','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607392','stellarwp_telemetry','a:1:{s:7:\"plugins\";a:1:{s:14:\"kadence-blocks\";a:2:{s:7:\"wp_slug\";s:33:\"kadence-blocks/kadence-blocks.php\";s:5:\"optin\";b:0;}}}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607393','stellarwp_telemetry_kadence-blocks_show_optin','1','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607394','kadenceblocks_data_settings','a:4:{s:10:\"db_version\";i:0;s:15:\"version_history\";a:1:{i:0;s:3:\"new\";}s:13:\"prior_version\";s:3:\"new\";s:15:\"current_version\";s:5:\"3.7.5\";}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607395','woocommerce_attribute_lookup_enabled','yes','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607398','fluentform_entry_details_migrated','yes','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607399','fluentform_db_fluentform_logs_added','1','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607400','fluentform_scheduled_actions_migrated','yes','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607401','_fluentform_global_form_settings','a:2:{s:6:\"layout\";a:5:{s:14:\"labelPlacement\";s:3:\"top\";s:17:\"asteriskPlacement\";s:14:\"asterisk-right\";s:20:\"helpMessagePlacement\";s:10:\"with_label\";s:21:\"errorMessagePlacement\";s:6:\"inline\";s:12:\"cssClassName\";s:0:\"\";}s:4:\"misc\";a:5:{s:18:\"isIpLogingDisabled\";b:0;s:19:\"isAnalyticsDisabled\";b:1;s:21:\"file_upload_locations\";s:0:\"\";s:20:\"admin_top_nav_status\";s:3:\"yes\";s:23:\"default_admin_date_time\";s:9:\"time_diff\";}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607402','_fluentform_installed_version','6.2.4','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607403','fluentform_global_modules_status','a:9:{s:9:\"mailchimp\";s:2:\"no\";s:14:\"activecampaign\";s:2:\"no\";s:16:\"campaign_monitor\";s:2:\"no\";s:17:\"constatantcontact\";s:2:\"no\";s:11:\"getresponse\";s:2:\"no\";s:8:\"icontact\";s:2:\"no\";s:7:\"webhook\";s:2:\"no\";s:6:\"zapier\";s:2:\"no\";s:5:\"slack\";s:2:\"no\";}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607404','widget_fluentform_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607405','elementor_disable_color_schemes','yes','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607406','elementor_disable_typography_schemes','yes','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607409','_kadence_starter_templates_old_customizer','a:3:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;s:15:\"initial_version\";s:5:\"1.5.0\";}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607410','sidebars_widgets','a:6:{s:13:\"array_version\";i:3;s:15:\"sidebar-primary\";a:3:{i:0;s:8:\"search-1\";i:1;s:14:\"recent-posts-1\";i:2;s:17:\"recent-comments-1\";}s:17:\"sidebar-secondary\";a:3:{i:0;s:10:\"archives-1\";i:1;s:12:\"categories-1\";i:2;s:6:\"meta-1\";}s:7:\"footer1\";a:1:{i:0;s:6:\"text-1\";}s:7:\"footer2\";a:1:{i:0;s:6:\"text-2\";}s:7:\"footer3\";a:1:{i:0;s:10:\"nav_menu-1\";}}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607411','kadence_global_palette','{\"palette\":[{\"color\":\"#420a6e\",\"slug\":\"palette1\",\"name\":\"Palette Color 1\"},{\"color\":\"#b47fff\",\"slug\":\"palette2\",\"name\":\"Palette Color 2\"},{\"color\":\"#f0a0ff\",\"slug\":\"palette3\",\"name\":\"Palette Color 3\"},{\"color\":\"#f7fafc\",\"slug\":\"palette4\",\"name\":\"Palette Color 4\"},{\"color\":\"#edf2f7\",\"slug\":\"palette5\",\"name\":\"Palette Color 5\"},{\"color\":\"#cbd2d9\",\"slug\":\"palette6\",\"name\":\"Palette Color 6\"},{\"color\":\"#533656\",\"slug\":\"palette7\",\"name\":\"Palette Color 7\"},{\"color\":\"#252c39\",\"slug\":\"palette8\",\"name\":\"Palette Color 8\"},{\"color\":\"#1a202c\",\"slug\":\"palette9\",\"name\":\"Palette Color 9\"},{\"color\":\"#c249ff\",\"slug\":\"palette10\",\"name\":\"Palette Color Complement\"},{\"color\":\"#4e1361\",\"slug\":\"palette11\",\"name\":\"Palette Color Success\"},{\"color\":\"#1159af\",\"slug\":\"palette12\",\"name\":\"Palette Color Info\"},{\"color\":\"#b82105\",\"slug\":\"palette13\",\"name\":\"Palette Color Alert\"},{\"color\":\"#f7630c\",\"slug\":\"palette14\",\"name\":\"Palette Color Warning\"},{\"color\":\"#f5a524\",\"slug\":\"palette15\",\"name\":\"Palette Color Rating\"}],\"second-palette\":[{\"color\":\"#3182CE\",\"slug\":\"palette1\",\"name\":\"Palette Color 1\"},{\"color\":\"#2B6CB0\",\"slug\":\"palette2\",\"name\":\"Palette Color 2\"},{\"color\":\"#1A202C\",\"slug\":\"palette3\",\"name\":\"Palette Color 3\"},{\"color\":\"#2D3748\",\"slug\":\"palette4\",\"name\":\"Palette Color 4\"},{\"color\":\"#4A5568\",\"slug\":\"palette5\",\"name\":\"Palette Color 5\"},{\"color\":\"#718096\",\"slug\":\"palette6\",\"name\":\"Palette Color 6\"},{\"color\":\"#EDF2F7\",\"slug\":\"palette7\",\"name\":\"Palette Color 7\"},{\"color\":\"#F7FAFC\",\"slug\":\"palette8\",\"name\":\"Palette Color 8\"},{\"color\":\"#ffffff\",\"slug\":\"palette9\",\"name\":\"Palette Color 9\"},{\"color\":\"#FfFfFf\",\"slug\":\"palette10\",\"name\":\"Palette Color Complement\"},{\"color\":\"#13612e\",\"slug\":\"palette11\",\"name\":\"Palette Color Success\"},{\"color\":\"#1159af\",\"slug\":\"palette12\",\"name\":\"Palette Color Info\"},{\"color\":\"#b82105\",\"slug\":\"palette13\",\"name\":\"Palette Color Alert\"},{\"color\":\"#f7630c\",\"slug\":\"palette14\",\"name\":\"Palette Color Warning\"},{\"color\":\"#f5a524\",\"slug\":\"palette15\",\"name\":\"Palette Color Rating\"}],\"third-palette\":[{\"color\":\"#3182CE\",\"slug\":\"palette1\",\"name\":\"Palette Color 1\"},{\"color\":\"#2B6CB0\",\"slug\":\"palette2\",\"name\":\"Palette Color 2\"},{\"color\":\"#1A202C\",\"slug\":\"palette3\",\"name\":\"Palette Color 3\"},{\"color\":\"#2D3748\",\"slug\":\"palette4\",\"name\":\"Palette Color 4\"},{\"color\":\"#4A5568\",\"slug\":\"palette5\",\"name\":\"Palette Color 5\"},{\"color\":\"#718096\",\"slug\":\"palette6\",\"name\":\"Palette Color 6\"},{\"color\":\"#EDF2F7\",\"slug\":\"palette7\",\"name\":\"Palette Color 7\"},{\"color\":\"#F7FAFC\",\"slug\":\"palette8\",\"name\":\"Palette Color 8\"},{\"color\":\"#ffffff\",\"slug\":\"palette9\",\"name\":\"Palette Color 9\"},{\"color\":\"#FfFfFf\",\"slug\":\"palette10\",\"name\":\"Palette Color Complement\"},{\"color\":\"#13612e\",\"slug\":\"palette11\",\"name\":\"Palette Color Success\"},{\"color\":\"#1159af\",\"slug\":\"palette12\",\"name\":\"Palette Color Info\"},{\"color\":\"#b82105\",\"slug\":\"palette13\",\"name\":\"Palette Color Alert\"},{\"color\":\"#f7630c\",\"slug\":\"palette14\",\"name\":\"Palette Color Warning\"},{\"color\":\"#f5a524\",\"slug\":\"palette15\",\"name\":\"Palette Color Rating\"}],\"active\":\"palette\"}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607413','fluentform_empty_manager_scopes_normalized','6.2.4','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607414','theme_mods_kadence','a:179:{s:15:\"initial_version\";s:5:\"1.5.0\";s:18:\"custom_css_post_id\";i:533;i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:43;}s:18:\"buttons_typography\";a:13:{s:4:\"size\";a:1:{s:7:\"desktop\";i:19;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";d:1.5;}s:6:\"family\";s:10:\"Bebas Neue\";s:6:\"google\";b:1;s:6:\"weight\";s:6:\"normal\";s:7:\"variant\";s:7:\"regular\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";i:1;}s:11:\"spacingType\";s:2:\"px\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:9:\"uppercase\";s:4:\"flag\";b:0;}s:15:\"buttons_padding\";a:3:{s:6:\"locked\";a:1:{s:7:\"desktop\";b:0;}s:4:\"flag\";b:1;s:4:\"size\";a:1:{s:7:\"desktop\";a:4:{i:0;s:2:\"13\";i:1;s:2:\"40\";i:2;s:2:\"13\";i:3;s:2:\"40\";}}}s:9:\"base_font\";a:14:{s:4:\"size\";a:1:{s:7:\"desktop\";i:15;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";d:1.7;}s:6:\"family\";s:9:\"Open Sans\";s:6:\"google\";b:1;s:6:\"weight\";s:6:\"normal\";s:7:\"variant\";s:7:\"regular\";s:5:\"color\";s:8:\"palette5\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:1;}s:12:\"heading_font\";a:4:{s:6:\"family\";s:6:\"Oswald\";s:6:\"google\";b:1;s:7:\"variant\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:7:\"regular\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";}s:4:\"flag\";b:1;}s:7:\"h1_font\";a:14:{s:4:\"size\";a:1:{s:7:\"desktop\";i:70;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";d:1.2;}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:6:\"normal\";s:7:\"variant\";s:7:\"regular\";s:5:\"color\";s:8:\"palette3\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";i:1;}s:11:\"spacingType\";s:2:\"px\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:9:\"uppercase\";s:4:\"flag\";b:0;}s:7:\"h2_font\";a:14:{s:4:\"size\";a:1:{s:7:\"desktop\";i:50;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";d:1.2;}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:6:\"normal\";s:7:\"variant\";s:7:\"regular\";s:5:\"color\";s:8:\"palette3\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";i:1;}s:11:\"spacingType\";s:2:\"px\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:9:\"uppercase\";s:4:\"flag\";b:0;}s:7:\"h3_font\";a:14:{s:4:\"size\";a:1:{s:7:\"desktop\";i:45;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";d:1.2;}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:6:\"normal\";s:7:\"variant\";s:7:\"regular\";s:5:\"color\";s:8:\"palette3\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";i:1;}s:11:\"spacingType\";s:2:\"px\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:9:\"uppercase\";s:4:\"flag\";b:0;}s:7:\"h4_font\";a:14:{s:4:\"size\";a:1:{s:7:\"desktop\";i:40;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";d:1.2;}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:6:\"normal\";s:7:\"variant\";s:7:\"regular\";s:5:\"color\";s:8:\"palette4\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"px\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:9:\"uppercase\";s:4:\"flag\";b:0;}s:7:\"h5_font\";a:14:{s:4:\"size\";a:1:{s:7:\"desktop\";i:25;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";d:1.2;}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:6:\"normal\";s:7:\"variant\";s:7:\"regular\";s:5:\"color\";s:8:\"palette4\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";i:1;}s:11:\"spacingType\";s:2:\"px\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:9:\"uppercase\";s:4:\"flag\";b:1;}s:7:\"h6_font\";a:14:{s:4:\"size\";a:1:{s:7:\"desktop\";i:27;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";d:1.3;}s:6:\"family\";s:8:\"Pacifico\";s:6:\"google\";b:1;s:6:\"weight\";s:6:\"normal\";s:7:\"variant\";s:7:\"regular\";s:5:\"color\";s:8:\"palette2\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";i:0;}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:10:\"capitalize\";s:4:\"flag\";b:0;}s:18:\"header_main_layout\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:9:\"contained\";s:4:\"flag\";b:1;}s:22:\"header_main_background\";a:2:{s:7:\"desktop\";a:1:{s:5:\"color\";s:8:\"palette1\";}s:4:\"flag\";b:1;}s:20:\"header_desktop_items\";a:4:{s:3:\"top\";a:5:{s:8:\"top_left\";a:0:{}s:15:\"top_left_center\";a:0:{}s:10:\"top_center\";a:0:{}s:16:\"top_right_center\";a:0:{}s:9:\"top_right\";a:0:{}}s:4:\"main\";a:5:{s:9:\"main_left\";a:1:{i:0;s:6:\"social\";}s:16:\"main_left_center\";a:1:{i:0;s:10:\"navigation\";}s:11:\"main_center\";a:1:{i:0;s:4:\"logo\";}s:17:\"main_right_center\";a:1:{i:0;s:12:\"navigation-2\";}s:10:\"main_right\";a:1:{i:0;s:4:\"cart\";}}s:6:\"bottom\";a:5:{s:11:\"bottom_left\";a:0:{}s:18:\"bottom_left_center\";a:0:{}s:13:\"bottom_center\";a:0:{}s:19:\"bottom_right_center\";a:0:{}s:12:\"bottom_right\";a:0:{}}s:4:\"flag\";b:1;}s:19:\"footer_html_content\";s:31:\"{copyright} {year} {site-title}\";s:21:\"footer_bottom_columns\";s:1:\"2\";s:20:\"footer_bottom_layout\";a:4:{s:6:\"mobile\";s:3:\"row\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:5:\"equal\";s:4:\"flag\";b:1;}s:12:\"footer_items\";a:4:{s:3:\"top\";a:5:{s:5:\"top_1\";a:0:{}s:5:\"top_2\";a:0:{}s:5:\"top_3\";a:0:{}s:5:\"top_4\";a:0:{}s:5:\"top_5\";a:0:{}}s:6:\"middle\";a:5:{s:8:\"middle_1\";a:1:{i:0;s:14:\"footer-widget1\";}s:8:\"middle_2\";a:1:{i:0;s:14:\"footer-widget2\";}s:8:\"middle_3\";a:1:{i:0;s:14:\"footer-widget3\";}s:8:\"middle_4\";a:1:{i:0;s:13:\"footer-social\";}s:8:\"middle_5\";a:0:{}}s:6:\"bottom\";a:5:{s:8:\"bottom_1\";a:1:{i:0;s:11:\"footer-html\";}s:8:\"bottom_2\";a:1:{i:0;s:17:\"footer-navigation\";}s:8:\"bottom_3\";a:0:{}s:8:\"bottom_4\";a:0:{}s:8:\"bottom_5\";a:0:{}}s:4:\"flag\";b:1;}s:21:\"footer_middle_columns\";s:1:\"4\";s:20:\"footer_middle_layout\";a:4:{s:6:\"mobile\";s:3:\"row\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:5:\"equal\";s:4:\"flag\";b:1;}s:10:\"logo_width\";a:3:{s:4:\"size\";a:3:{s:6:\"mobile\";i:90;s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";i:110;}s:4:\"unit\";a:3:{s:6:\"mobile\";s:2:\"px\";s:6:\"tablet\";s:2:\"px\";s:7:\"desktop\";s:2:\"px\";}s:4:\"flag\";b:0;}s:11:\"logo_layout\";a:3:{s:7:\"include\";a:3:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:9:\"logo_only\";}s:6:\"layout\";a:3:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:8:\"standard\";}s:4:\"flag\";b:1;}s:19:\"header_logo_padding\";a:4:{s:4:\"size\";a:3:{s:7:\"desktop\";a:4:{i:0;s:1:\"0\";i:1;s:2:\"50\";i:2;s:1:\"0\";i:3;s:2:\"50\";}s:6:\"tablet\";a:4:{i:0;i:0;i:1;i:0;i:2;i:0;i:3;i:0;}s:6:\"mobile\";a:4:{i:0;i:0;i:1;i:0;i:2;i:0;i:3;i:0;}}s:4:\"unit\";a:1:{s:7:\"desktop\";s:2:\"px\";}s:6:\"locked\";a:3:{s:7:\"desktop\";b:0;s:6:\"mobile\";b:1;s:6:\"tablet\";b:1;}s:4:\"flag\";b:0;}s:35:\"primary_navigation_vertical_spacing\";a:2:{s:4:\"size\";d:0.2;s:4:\"unit\";s:2:\"em\";}s:24:\"primary_navigation_color\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"hover\";s:8:\"palette2\";s:6:\"active\";s:8:\"palette2\";}s:29:\"primary_navigation_typography\";a:13:{s:4:\"size\";a:1:{s:7:\"desktop\";i:20;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";s:0:\"\";}s:6:\"family\";s:10:\"Bebas Neue\";s:6:\"google\";b:1;s:6:\"weight\";s:6:\"normal\";s:7:\"variant\";s:7:\"regular\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";i:1;}s:11:\"spacingType\";s:2:\"px\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:9:\"uppercase\";s:4:\"flag\";b:1;}s:25:\"dropdown_navigation_color\";a:3:{s:5:\"color\";s:8:\"palette3\";s:5:\"hover\";s:8:\"palette1\";s:6:\"active\";s:8:\"palette1\";}s:30:\"dropdown_navigation_background\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"hover\";s:7:\"#ffffff\";s:6:\"active\";s:7:\"#ffffff\";}s:30:\"dropdown_navigation_typography\";a:13:{s:4:\"size\";a:1:{s:7:\"desktop\";i:19;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";d:1.2;}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:0:\"\";s:7:\"variant\";s:0:\"\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:1;}s:26:\"dropdown_navigation_reveal\";s:7:\"fade-up\";s:26:\"primary_navigation_spacing\";a:2:{s:4:\"size\";d:1.3;s:4:\"unit\";s:2:\"em\";}s:37:\"secondary_navigation_vertical_spacing\";a:2:{s:4:\"size\";d:0.2;s:4:\"unit\";s:2:\"em\";}s:26:\"secondary_navigation_color\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"hover\";s:8:\"palette2\";s:6:\"active\";s:8:\"palette2\";}s:27:\"dropdown_navigation_divider\";a:4:{s:5:\"width\";i:0;s:4:\"unit\";s:2:\"px\";s:5:\"style\";s:4:\"none\";s:5:\"color\";s:19:\"rgba(255,255,255,0)\";}s:31:\"secondary_navigation_typography\";a:13:{s:4:\"size\";a:1:{s:7:\"desktop\";i:20;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";s:0:\"\";}s:6:\"family\";s:10:\"Bebas Neue\";s:6:\"google\";b:1;s:6:\"weight\";s:6:\"normal\";s:7:\"variant\";s:7:\"regular\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"px\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:9:\"uppercase\";s:4:\"flag\";b:0;}s:17:\"header_cart_color\";a:2:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"hover\";s:8:\"palette2\";}s:22:\"header_cart_background\";a:2:{s:5:\"color\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:28:\"header_cart_total_background\";a:2:{s:5:\"color\";s:8:\"palette2\";s:5:\"hover\";s:0:\"\";}s:17:\"header_cart_style\";s:8:\"dropdown\";s:21:\"header_cart_icon_size\";a:2:{s:4:\"size\";d:1.2;s:4:\"unit\";s:2:\"em\";}s:19:\"header_social_color\";a:2:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"hover\";s:8:\"palette2\";}s:24:\"header_social_background\";a:2:{s:5:\"color\";s:13:\"rgba(0,0,0,0)\";s:5:\"hover\";s:0:\"\";}s:26:\"header_social_item_spacing\";a:2:{s:4:\"size\";d:0.2;s:4:\"unit\";s:2:\"em\";}s:23:\"header_social_icon_size\";a:2:{s:4:\"size\";d:1.1;s:4:\"unit\";s:2:\"em\";}s:11:\"custom_logo\";i:1723;s:25:\"transparent_header_enable\";b:1;s:35:\"transparent_header_site_title_color\";a:2:{s:5:\"color\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:29:\"transparent_header_background\";a:2:{s:7:\"desktop\";a:1:{s:5:\"color\";s:0:\"\";}s:4:\"flag\";b:0;}s:18:\"buttons_background\";a:2:{s:5:\"color\";s:8:\"palette1\";s:5:\"hover\";s:8:\"palette1\";}s:28:\"post_archive_item_title_font\";a:14:{s:4:\"size\";a:1:{s:7:\"desktop\";i:30;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";s:0:\"\";}s:6:\"family\";s:0:\"\";s:6:\"google\";b:0;s:6:\"weight\";s:0:\"\";s:7:\"variant\";s:0:\"\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";i:1;}s:11:\"spacingType\";s:2:\"px\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:8:\"palette4\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:1;}s:37:\"post_archive_title_element_breadcrumb\";a:3:{s:7:\"enabled\";b:1;s:10:\"show_title\";b:1;s:4:\"flag\";b:1;}s:19:\"post_archive_layout\";s:6:\"normal\";s:26:\"post_archive_content_style\";s:5:\"boxed\";s:31:\"post_archive_title_inner_layout\";s:8:\"standard\";s:24:\"post_archive_title_align\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:6:\"center\";s:4:\"flag\";b:0;}s:25:\"post_archive_title_height\";a:3:{s:4:\"size\";a:3:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";i:280;}s:4:\"unit\";a:3:{s:6:\"mobile\";s:2:\"px\";s:6:\"tablet\";s:2:\"px\";s:7:\"desktop\";s:2:\"px\";}s:4:\"flag\";b:0;}s:29:\"post_archive_title_background\";a:2:{s:7:\"desktop\";a:3:{s:5:\"color\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:5:\"image\";a:4:{s:3:\"url\";s:81:\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/fast-background.jpg\";s:6:\"repeat\";s:9:\"no-repeat\";s:4:\"size\";s:5:\"cover\";s:10:\"attachment\";s:6:\"scroll\";}}s:4:\"flag\";b:0;}s:32:\"post_archive_title_bottom_border\";a:2:{s:7:\"desktop\";a:4:{s:5:\"width\";i:30;s:4:\"unit\";s:2:\"px\";s:5:\"style\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:4:\"flag\";b:0;}s:32:\"post_archive_title_overlay_color\";a:2:{s:5:\"color\";s:13:\"rgba(0,0,0,0)\";s:5:\"hover\";s:0:\"\";}s:28:\"post_archive_element_excerpt\";a:4:{s:7:\"enabled\";b:1;s:5:\"words\";i:25;s:11:\"fullContent\";b:0;s:4:\"flag\";b:0;}s:31:\"post_archive_element_categories\";a:4:{s:7:\"enabled\";b:1;s:5:\"style\";s:9:\"underline\";s:7:\"divider\";s:3:\"dot\";s:4:\"flag\";b:1;}s:25:\"post_archive_element_meta\";a:20:{s:2:\"id\";s:4:\"meta\";s:7:\"enabled\";b:1;s:7:\"divider\";s:10:\"customicon\";s:6:\"author\";b:1;s:10:\"authorLink\";b:1;s:11:\"authorImage\";b:1;s:15:\"authorImageSize\";i:25;s:17:\"authorEnableLabel\";b:1;s:11:\"authorLabel\";s:0:\"\";s:4:\"date\";b:1;s:15:\"dateEnableLabel\";b:0;s:9:\"dateLabel\";s:0:\"\";s:11:\"dateUpdated\";b:0;s:22:\"dateUpdatedEnableLabel\";b:0;s:16:\"dateUpdatedLabel\";s:0:\"\";s:10:\"categories\";b:0;s:21:\"categoriesEnableLabel\";b:0;s:15:\"categoriesLabel\";s:0:\"\";s:8:\"comments\";b:0;s:4:\"flag\";b:1;}s:12:\"page_feature\";b:1;s:29:\"page_title_element_breadcrumb\";a:3:{s:7:\"enabled\";b:1;s:10:\"show_title\";b:1;s:4:\"flag\";b:1;}s:25:\"page_title_featured_image\";b:1;s:21:\"page_vertical_padding\";s:4:\"hide\";s:21:\"page_feature_position\";s:6:\"behind\";s:17:\"post_title_layout\";s:6:\"normal\";s:11:\"post_layout\";s:6:\"narrow\";s:18:\"post_content_style\";s:5:\"boxed\";s:23:\"post_archive_background\";a:2:{s:7:\"desktop\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"image\";a:5:{s:3:\"url\";s:0:\"\";s:4:\"size\";s:5:\"cover\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";a:2:{s:1:\"x\";d:0.5;s:1:\"y\";d:0.5;}s:10:\"attachment\";s:6:\"scroll\";}s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:0;}s:31:\"post_archive_content_background\";a:2:{s:7:\"desktop\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"image\";a:5:{s:3:\"url\";s:0:\"\";s:4:\"size\";s:5:\"cover\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";a:2:{s:1:\"x\";d:0.5;s:1:\"y\";d:0.5;}s:10:\"attachment\";s:6:\"scroll\";}s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:0;}s:36:\"post_archive_title_description_color\";a:2:{s:5:\"color\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:25:\"post_archive_title_layout\";s:5:\"above\";s:23:\"post_title_inner_layout\";s:8:\"standard\";s:16:\"post_title_align\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:6:\"center\";s:4:\"flag\";b:1;}s:21:\"post_feature_position\";s:6:\"behind\";s:23:\"transparent_header_post\";b:0;s:21:\"post_vertical_padding\";s:6:\"bottom\";s:23:\"transparent_header_page\";b:0;s:12:\"post_feature\";b:1;s:18:\"post_feature_width\";s:4:\"full\";s:18:\"post_feature_ratio\";s:3:\"2-3\";s:15:\"post_background\";a:2:{s:7:\"desktop\";a:3:{s:5:\"color\";s:8:\"palette8\";s:5:\"image\";a:5:{s:3:\"url\";s:0:\"\";s:4:\"size\";s:5:\"cover\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";a:2:{s:1:\"x\";d:0.5;s:1:\"y\";d:0.5;}s:10:\"attachment\";s:6:\"scroll\";}s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:0;}s:23:\"post_content_background\";a:2:{s:7:\"desktop\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"image\";a:5:{s:3:\"url\";s:0:\"\";s:4:\"size\";s:5:\"cover\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";a:2:{s:1:\"x\";d:0.5;s:1:\"y\";d:0.5;}s:10:\"attachment\";s:6:\"scroll\";}s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:0;}s:19:\"footer_social_title\";s:12:\"Get in Touch\";s:25:\"footer_navigation_spacing\";a:2:{s:4:\"size\";d:1.6;s:4:\"unit\";s:2:\"em\";}s:23:\"footer_navigation_color\";a:3:{s:5:\"color\";s:8:\"palette3\";s:5:\"hover\";s:17:\"palette-highlight\";s:6:\"active\";s:8:\"palette1\";}s:28:\"footer_navigation_typography\";a:13:{s:4:\"size\";a:1:{s:7:\"desktop\";i:20;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";d:1.2;}s:6:\"family\";s:10:\"Bebas Neue\";s:6:\"google\";b:1;s:6:\"weight\";s:6:\"normal\";s:7:\"variant\";s:7:\"regular\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";i:1;}s:11:\"spacingType\";s:2:\"px\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:9:\"uppercase\";s:4:\"flag\";b:0;}s:23:\"footer_navigation_align\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:6:\"center\";s:7:\"desktop\";s:5:\"right\";s:4:\"flag\";b:1;}s:19:\"footer_social_color\";a:2:{s:5:\"color\";s:8:\"palette9\";s:5:\"hover\";s:0:\"\";}s:24:\"footer_social_background\";a:2:{s:5:\"color\";s:8:\"palette1\";s:5:\"hover\";s:7:\"#970a11\";}s:26:\"footer_social_item_spacing\";a:2:{s:4:\"size\";d:0.6;s:4:\"unit\";s:2:\"em\";}s:20:\"footer_social_margin\";a:4:{s:4:\"size\";a:4:{i:0;i:0;i:1;i:0;i:2;i:0;i:3;s:0:\"\";}s:4:\"unit\";s:2:\"px\";s:6:\"locked\";b:0;s:4:\"flag\";b:0;}s:21:\"footer_bottom_contain\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:9:\"fullwidth\";s:4:\"flag\";b:1;}s:21:\"footer_middle_contain\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:9:\"fullwidth\";s:4:\"flag\";b:0;}s:23:\"footer_bottom_direction\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:3:\"row\";s:4:\"flag\";b:0;}s:24:\"footer_bottom_top_border\";a:2:{s:7:\"desktop\";a:4:{s:5:\"width\";i:1;s:4:\"unit\";s:2:\"px\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:8:\"palette7\";}s:4:\"flag\";b:0;}s:25:\"footer_middle_top_spacing\";a:3:{s:4:\"size\";a:3:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";i:55;}s:4:\"unit\";a:3:{s:6:\"mobile\";s:2:\"px\";s:6:\"tablet\";s:2:\"px\";s:7:\"desktop\";s:2:\"px\";}s:4:\"flag\";b:0;}s:24:\"footer_middle_top_border\";a:2:{s:7:\"desktop\";a:4:{s:5:\"width\";i:1;s:4:\"unit\";s:2:\"px\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:8:\"palette7\";}s:4:\"flag\";b:1;}s:24:\"page_title_overlay_color\";a:2:{s:5:\"color\";s:13:\"rgba(0,0,0,0)\";s:5:\"hover\";s:0:\"\";}s:18:\"page_feature_ratio\";s:3:\"2-3\";s:17:\"page_title_height\";a:3:{s:4:\"size\";a:3:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";i:240;}s:4:\"unit\";a:3:{s:6:\"mobile\";s:2:\"px\";s:6:\"tablet\";s:2:\"px\";s:7:\"desktop\";s:2:\"px\";}s:4:\"flag\";b:1;}s:15:\"page_title_font\";a:14:{s:4:\"size\";a:1:{s:7:\"desktop\";s:0:\"\";}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";s:0:\"\";}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:0:\"\";s:7:\"variant\";s:0:\"\";s:5:\"color\";s:0:\"\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:0;}s:27:\"page_title_breadcrumb_color\";a:2:{s:5:\"color\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:21:\"page_title_background\";a:2:{s:7:\"desktop\";a:3:{s:5:\"color\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:5:\"image\";a:4:{s:3:\"url\";s:81:\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/fast-background.jpg\";s:4:\"size\";s:5:\"cover\";s:6:\"repeat\";s:9:\"no-repeat\";s:10:\"attachment\";s:6:\"scroll\";}}s:4:\"flag\";b:1;}s:21:\"page_title_meta_color\";a:2:{s:5:\"color\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:23:\"footer_middle_direction\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:3:\"row\";s:4:\"flag\";b:0;}s:28:\"footer_middle_column_spacing\";a:3:{s:4:\"size\";a:3:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";i:30;s:7:\"desktop\";i:80;}s:4:\"unit\";a:3:{s:6:\"mobile\";s:2:\"px\";s:6:\"tablet\";s:2:\"px\";s:7:\"desktop\";s:2:\"px\";}s:4:\"flag\";b:1;}s:19:\"mobile_trigger_icon\";s:4:\"menu\";s:20:\"mobile_trigger_style\";s:8:\"bordered\";s:20:\"mobile_trigger_color\";a:2:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"hover\";s:8:\"palette2\";}s:19:\"header_popup_layout\";s:9:\"sidepanel\";s:26:\"header_popup_content_align\";s:4:\"left\";s:27:\"header_popup_vertical_align\";s:3:\"top\";s:23:\"header_popup_background\";a:2:{s:7:\"desktop\";a:1:{s:5:\"color\";s:8:\"palette1\";}s:4:\"flag\";b:0;}s:23:\"mobile_navigation_color\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"hover\";s:8:\"palette2\";s:6:\"active\";s:8:\"palette2\";}s:25:\"mobile_navigation_divider\";a:4:{s:5:\"width\";i:1;s:4:\"unit\";s:2:\"px\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:21:\"rgba(255,255,255,0.3)\";}s:28:\"mobile_navigation_typography\";a:13:{s:4:\"size\";a:1:{s:7:\"desktop\";i:22;}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";i:1;}s:6:\"family\";s:10:\"Bebas Neue\";s:6:\"google\";b:1;s:6:\"weight\";s:6:\"normal\";s:7:\"variant\";s:7:\"regular\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";i:1;}s:11:\"spacingType\";s:2:\"px\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:1;}s:28:\"footer_middle_bottom_spacing\";a:3:{s:4:\"size\";a:2:{s:6:\"mobile\";s:0:\"\";s:7:\"desktop\";i:25;}s:4:\"unit\";a:3:{s:6:\"mobile\";s:2:\"px\";s:6:\"tablet\";s:2:\"px\";s:7:\"desktop\";s:2:\"px\";}s:4:\"flag\";b:1;}s:32:\"footer_navigation_vertical_align\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:3:\"top\";s:7:\"desktop\";s:8:\"standard\";s:4:\"flag\";b:1;}s:17:\"footer_html_align\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:6:\"center\";s:7:\"desktop\";s:8:\"standard\";s:4:\"flag\";b:1;}s:20:\"footer_widget1_align\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:4:\"left\";s:7:\"desktop\";s:0:\"\";s:4:\"flag\";b:0;}s:22:\"footer_wrap_background\";a:2:{s:7:\"desktop\";a:1:{s:5:\"color\";s:8:\"palette9\";}s:4:\"flag\";b:0;}s:19:\"footer_social_align\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:4:\"left\";s:7:\"desktop\";s:0:\"\";s:4:\"flag\";b:0;}s:20:\"footer_widget3_align\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:4:\"left\";s:7:\"desktop\";s:0:\"\";s:4:\"flag\";b:0;}s:20:\"footer_widget2_align\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:4:\"left\";s:7:\"desktop\";s:0:\"\";s:4:\"flag\";b:0;}s:18:\"post_archive_title\";b:1;s:23:\"post_archive_sidebar_id\";s:15:\"sidebar-primary\";s:24:\"post_archive_title_color\";a:2:{s:5:\"color\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:35:\"post_archive_title_breadcrumb_color\";a:2:{s:5:\"color\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:22:\"header_wrap_background\";a:2:{s:7:\"desktop\";a:2:{s:5:\"color\";s:7:\"#5f19a1\";s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:0;}s:20:\"content_narrow_width\";a:2:{s:4:\"size\";i:980;s:4:\"unit\";s:2:\"px\";}s:23:\"post_related_title_font\";a:14:{s:4:\"size\";a:1:{s:7:\"desktop\";s:0:\"\";}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";s:0:\"\";}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:0:\"\";s:7:\"variant\";s:0:\"\";s:5:\"color\";s:8:\"palette3\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:1;}s:23:\"post_related_background\";a:2:{s:7:\"desktop\";a:3:{s:5:\"color\";s:8:\"palette8\";s:5:\"image\";a:5:{s:3:\"url\";s:0:\"\";s:4:\"size\";s:5:\"cover\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";a:2:{s:1:\"x\";d:0.5;s:1:\"y\";d:0.5;}s:10:\"attachment\";s:6:\"scroll\";}s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:0;}s:13:\"post_comments\";b:0;s:18:\"post_comments_date\";b:1;s:12:\"post_related\";b:1;s:22:\"post_footer_area_boxed\";b:0;s:22:\"footer_top_top_spacing\";a:3:{s:4:\"size\";a:3:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:2:\"30\";}s:4:\"unit\";a:3:{s:6:\"mobile\";s:2:\"px\";s:6:\"tablet\";s:2:\"px\";s:7:\"desktop\";s:2:\"px\";}s:4:\"flag\";b:0;}s:20:\"post_related_columns\";s:1:\"3\";s:21:\"woo_store_notice_font\";a:14:{s:4:\"size\";a:1:{s:7:\"desktop\";s:0:\"\";}s:10:\"lineHeight\";a:1:{s:7:\"desktop\";s:0:\"\";}s:6:\"family\";s:7:\"inherit\";s:6:\"google\";b:0;s:6:\"weight\";s:0:\"\";s:7:\"variant\";s:0:\"\";s:5:\"color\";s:8:\"palette9\";s:8:\"sizeType\";s:2:\"px\";s:8:\"lineType\";s:1:\"-\";s:13:\"letterSpacing\";a:1:{s:7:\"desktop\";s:0:\"\";}s:11:\"spacingType\";s:2:\"em\";s:5:\"style\";s:6:\"normal\";s:9:\"transform\";s:0:\"\";s:4:\"flag\";b:1;}s:27:\"woo_store_notice_background\";a:2:{s:5:\"color\";s:8:\"palette1\";s:5:\"hover\";s:0:\"\";}s:28:\"product_archive_title_layout\";s:6:\"normal\";s:27:\"product_archive_title_align\";a:4:{s:6:\"mobile\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:7:\"desktop\";s:6:\"center\";s:4:\"flag\";b:1;}s:40:\"product_archive_title_element_breadcrumb\";a:3:{s:7:\"enabled\";b:1;s:10:\"show_title\";b:1;s:4:\"flag\";b:1;}s:27:\"product_archive_title_color\";a:2:{s:5:\"color\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:26:\"product_archive_background\";a:2:{s:7:\"desktop\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"image\";a:5:{s:3:\"url\";s:0:\"\";s:4:\"size\";s:5:\"cover\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";a:2:{s:1:\"x\";d:0.5;s:1:\"y\";d:0.5;}s:10:\"attachment\";s:6:\"scroll\";}s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:1;}s:34:\"product_archive_content_background\";a:2:{s:7:\"desktop\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"image\";a:5:{s:3:\"url\";s:0:\"\";s:4:\"size\";s:5:\"cover\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";a:2:{s:1:\"x\";d:0.5;s:1:\"y\";d:0.5;}s:10:\"attachment\";s:6:\"scroll\";}s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:1;}s:39:\"product_archive_title_description_color\";a:2:{s:5:\"color\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:38:\"product_archive_title_breadcrumb_color\";a:2:{s:5:\"color\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:21:\"footer_top_background\";a:2:{s:7:\"desktop\";a:1:{s:5:\"color\";s:0:\"\";}s:4:\"flag\";b:0;}s:15:\"content_spacing\";a:3:{s:4:\"size\";a:3:{s:6:\"mobile\";i:2;s:6:\"tablet\";i:3;s:7:\"desktop\";i:5;}s:4:\"unit\";a:3:{s:6:\"mobile\";s:3:\"rem\";s:6:\"tablet\";s:3:\"rem\";s:7:\"desktop\";s:3:\"rem\";}s:4:\"flag\";b:1;}s:24:\"product_vertical_padding\";s:4:\"show\";s:15:\"custom_quantity\";b:1;s:34:\"product_archive_title_inner_layout\";s:8:\"standard\";s:22:\"product_archive_layout\";s:6:\"normal\";s:21:\"product_archive_style\";s:15:\"action-on-hover\";s:28:\"product_archive_button_style\";s:4:\"text\";s:20:\"product_above_layout\";s:4:\"none\";s:21:\"product_content_style\";s:5:\"boxed\";s:14:\"product_layout\";s:6:\"normal\";s:32:\"product_content_element_category\";a:2:{s:7:\"enabled\";b:0;s:4:\"flag\";b:0;}s:30:\"product_content_element_extras\";a:13:{s:7:\"enabled\";b:1;s:5:\"title\";s:33:\"Free shipping on orders over $50!\";s:9:\"feature_1\";s:23:\"Satisfaction Guaranteed\";s:9:\"feature_2\";s:17:\"No Hassle Refunds\";s:9:\"feature_3\";s:15:\"Secure Payments\";s:9:\"feature_4\";s:0:\"\";s:9:\"feature_5\";s:0:\"\";s:14:\"feature_1_icon\";s:12:\"shield_check\";s:14:\"feature_2_icon\";s:12:\"shield_check\";s:14:\"feature_3_icon\";s:12:\"shield_check\";s:14:\"feature_4_icon\";s:12:\"shield_check\";s:14:\"feature_5_icon\";s:12:\"shield_check\";s:4:\"flag\";b:1;}s:32:\"product_content_element_payments\";a:11:{s:7:\"enabled\";b:1;s:5:\"title\";s:24:\"GUARANTEED SAFE CHECKOUT\";s:4:\"visa\";b:1;s:10:\"mastercard\";b:1;s:4:\"amex\";b:1;s:8:\"discover\";b:1;s:6:\"paypal\";b:1;s:8:\"applepay\";b:0;s:6:\"stripe\";b:0;s:10:\"card_color\";s:7:\"inherit\";s:4:\"flag\";b:1;}s:36:\"product_additional_weight_dimensions\";b:1;s:13:\"buttons_color\";a:2:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"hover\";s:7:\"#ffffff\";}s:20:\"buttons_shadow_hover\";a:6:{s:5:\"color\";s:15:\"rgba(0,0,0,0.2)\";s:7:\"hOffset\";i:0;s:7:\"vOffset\";i:15;s:4:\"blur\";i:25;s:6:\"spread\";i:-7;s:5:\"inset\";b:0;}s:13:\"content_width\";a:2:{s:4:\"size\";i:2000;s:4:\"unit\";s:2:\"px\";}s:28:\"header_main_trans_background\";a:2:{s:7:\"desktop\";a:1:{s:5:\"color\";s:8:\"palette1\";}s:4:\"flag\";b:1;}s:18:\"page_content_style\";s:7:\"unboxed\";s:17:\"product_tab_style\";s:6:\"center\";s:15:\"site_background\";a:2:{s:7:\"desktop\";a:2:{s:5:\"color\";s:7:\"#352539\";s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:1;}s:18:\"content_background\";a:2:{s:7:\"desktop\";a:2:{s:5:\"color\";s:7:\"#271a2c\";s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:1;}s:24:\"footer_middle_background\";a:2:{s:7:\"desktop\";a:2:{s:5:\"color\";s:7:\"#110212\";s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:1;}s:24:\"footer_bottom_background\";a:2:{s:7:\"desktop\";a:2:{s:5:\"color\";s:7:\"#200536\";s:4:\"type\";s:5:\"color\";}s:4:\"flag\";b:0;}}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607417','category_children','a:0:{}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607418','elementor_library_category_children','a:0:{}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607419','product_cat_children','a:0:{}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607420','site_logo','1723','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607437','woocommerce_admin_customize_store_completed','yes','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607474','jeepno_image_upload_fix_last_conversion','a:3:{s:4:\"from\";s:41:\"ChatGPT-Image-Jun-3-2026-02_26_48-PM.webp\";s:2:\"to\";s:42:\"ChatGPT-Image-Jun-3-2026-02_26_48-PM-1.jpg\";s:4:\"time\";s:19:\"2026-06-07 08:16:31\";}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607504','_transient_timeout_elementor_image_optimization_campaign','1783394278','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607505','_transient_elementor_image_optimization_campaign','a:3:{s:6:\"source\";s:23:\"io-editor-image-install\";s:8:\"campaign\";s:6:\"io-plg\";s:6:\"medium\";s:7:\"wp-dash\";}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607513','nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607515','_transient_timeout_elementor_remote_templates_data_3.23.4','1780846593','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607516','_transient_elementor_remote_templates_data_3.23.4','a:440:{i:0;a:21:{s:4:\"tmpl\";i:1536;s:2:\"id\";i:27005;s:5:\"title\";s:40:\"Wireframe &#8211; Home 1 &#8211; Flexbox\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1670399061;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/wireframe-home-1-flexbox/?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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:1;a:21:{s:4:\"tmpl\";i:1538;s:2:\"id\";i:25452;s:5:\"title\";s:48:\"Digital Course &#8211; eCommerce &#8211; Flexbox\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1670399124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/digital-course-ecommerce-flexbox/?utm_source=template-library&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:67:\"[\"Course Online\",\"Ecommerce\",\"Flexbox\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:21:{s:4:\"tmpl\";i:1539;s:2:\"id\";i:27016;s:5:\"title\";s:43:\"Wireframe &#8211; Gallery 1 &#8211; Flexbox\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1670399140;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/wireframe-gallery-1-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:21:{s:4:\"tmpl\";i:1541;s:2:\"id\";i:27024;s:5:\"title\";s:44:\"Online Training &#8211; Home &#8211; Flexbox\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1670399202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/online-training-home-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:21:{s:4:\"tmpl\";i:1543;s:2:\"id\";i:26786;s:5:\"title\";s:56:\"Construction Project &#8211; Real Estate &#8211; Flexbox\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1670399351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/construction-project-real-estate-flexbox/?utm_source=template-library&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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:21:{s:4:\"tmpl\";i:1547;s:2:\"id\";i:27033;s:5:\"title\";s:43:\"Doctors Online Consultation &#8211; Flexbox\";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:1670399449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/doctors-online-consultation-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:21:{s:4:\"tmpl\";i:1556;s:2:\"id\";i:28684;s:5:\"title\";s:46:\"Bottom Bar | Discount  | Ecommerce Wireframe 2\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/10/ecommerce-wireframe-2-popup-small.jpg\";s:12:\"tmpl_created\";i:1670399738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/bottom-bar-discount-ecommerce-wireframe-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:10:\"bottom bar\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Flexbox\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:21:{s:4:\"tmpl\";i:1687;s:2:\"id\";i:26939;s:5:\"title\";s:43:\"Wireframe &#8211; Contact 5 &#8211; Flexbox\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1670408155;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/wireframe-contact-5-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:21:{s:4:\"tmpl\";i:1692;s:2:\"id\";i:26934;s:5:\"title\";s:41:\"Wireframe &#8211; About 4 &#8211; Flexbox\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1670408273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/wireframe-about-4-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:21:{s:4:\"tmpl\";i:1693;s:2:\"id\";i:26926;s:5:\"title\";s:40:\"Wireframe &#8211; Home 2 &#8211; Flexbox\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1670408321;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/wireframe-home-2-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:21:{s:4:\"tmpl\";i:1460;s:2:\"id\";i:26748;s:5:\"title\";s:44:\"Wireframe &#8211; Services 1 &#8211; Flexbox\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1670335603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/wireframe-services-1-flexbox/?utm_source=template-library&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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:21:{s:4:\"tmpl\";i:1461;s:2:\"id\";i:26753;s:5:\"title\";s:44:\"Wireframe &#8211; Services 3 &#8211; Flexbox\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1670337901;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/wireframe-services-3-flexbox/?utm_source=template-library&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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:21:{s:4:\"tmpl\";i:1462;s:2:\"id\";i:26761;s:5:\"title\";s:43:\"Wireframe &#8211; Webinar 1 &#8211; Flexbox\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1670337974;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/wireframe-webinar-1-flexbox/?utm_source=template-library&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:145:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:21:{s:4:\"tmpl\";i:1471;s:2:\"id\";i:29025;s:5:\"title\";s:30:\"Candidate Recruitment Platform\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/11/30-Candidate-Recruitment-Platform-home.jpg\";s:12:\"tmpl_created\";i:1670342991;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/candidate-recruitment-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:\"[\"Advisor\",\"App\",\"Assistant\",\"HR\",\"Pricing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:21:{s:4:\"tmpl\";i:1472;s:2:\"id\";i:29055;s:5:\"title\";s:21:\"Menu &#8211; Bar/Cafe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/11/34-Menu-BarCafe-page.jpg\";s:12:\"tmpl_created\";i:1670343252;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/menu-bar-cafe/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:\"[\"bar\",\"Chef\",\"Coffee\",\"Delivery Service\",\"menu\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:21:{s:4:\"tmpl\";i:1473;s:2:\"id\";i:29063;s:5:\"title\";s:24:\"Podcast Hosting Platform\";s:9:\"thumbnail\";s:100:\"https://library.elementor.com/wp-content/uploads/2022/11/95-Podcast-Hosting-Platform_home_screen.jpg\";s:12:\"tmpl_created\";i:1670351468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/podcast-hosting-platform/?utm_source=template-library&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:\"[\"Business\",\"Flexbox\",\"Landing Pages\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:21:{s:4:\"tmpl\";i:1476;s:2:\"id\";i:28871;s:5:\"title\";s:42:\"Fly-In | Newsletter | Barbershop | Flexbox\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1670352233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop-flexbox/?utm_source=template-library&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:38:\"[\"Barber Shop\",\"Barbershop\",\"Flexbox\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:21:{s:4:\"tmpl\";i:1477;s:2:\"id\";i:28876;s:5:\"title\";s:41:\"Fly-In | Contact | Beauty Salon | Flexbox\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1670352301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon-flexbox/?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:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"Beauty\",\"Beauty Salon\",\"salon\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:21:{s:4:\"tmpl\";i:1478;s:2:\"id\";i:28880;s:5:\"title\";s:43:\"Classic | Subscribe | Travel Blog | Flexbox\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1670352389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscribe-travel-blog-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:\"[\"Blog\",\"Subscribe\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:21:{s:4:\"tmpl\";i:1479;s:2:\"id\";i:28884;s:5:\"title\";s:38:\"Classic | Menu | Photography | Flexbox\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1670352837;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-menu-photography-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:\"[\"Flexbox\",\"menu\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:21:{s:4:\"tmpl\";i:1480;s:2:\"id\";i:28888;s:5:\"title\";s:46:\"Classic | Japanese restaurant | Sale | Flexbox\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1670352899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:39:\"[\"Flexbox\",\"Restaurant\",\"Sale\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:21:{s:4:\"tmpl\";i:1482;s:2:\"id\";i:26766;s:5:\"title\";s:42:\"Luxury Car &#8211; Product &#8211; Flexbox\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1670353385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/luxury-car-product-flexbox/?utm_source=template-library&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:64:\"[\"car\",\"Ecommerce\",\"Flexbox\",\"Landing Pages\",\"Luxury\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:21:{s:4:\"tmpl\";i:1483;s:2:\"id\";i:28932;s:5:\"title\";s:42:\"Classic | Subscribe | Shoe Store | Flexbox\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1670396484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-subscribe-shoe-store-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:46:\"[\"Flexbox\",\"Shoes\",\"Shop\",\"store\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:21:{s:4:\"tmpl\";i:1484;s:2:\"id\";i:28911;s:5:\"title\";s:45:\"Fly-In | Sign up | Flooring Company | Flexbox\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1670396617;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company-flexbox/?utm_source=template-library&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:\"[\"Flexbox\",\"Flooring company\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:21:{s:4:\"tmpl\";i:1485;s:2:\"id\";i:28936;s:5:\"title\";s:44:\"Slide-In | Menu | Flooring Company | Flexbox\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1670396668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/slide-in-menu-flooring-company-flexbox/?utm_source=template-library&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:37:\"[\"Flexbox\",\"Flooring company\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:21:{s:4:\"tmpl\";i:1486;s:2:\"id\";i:28928;s:5:\"title\";s:39:\"Classic | CTA | Online Course | Flexbox\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1670396845;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-cta-online-course-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:\"[\"Course Online\",\"cta\",\"Flexbox\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:21:{s:4:\"tmpl\";i:1487;s:2:\"id\";i:28915;s:5:\"title\";s:40:\"Classic | Menu | Online Course | Flexbox\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1670396875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-menu-online-course-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:\"[\"Course Online\",\"Flexbox\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:21:{s:4:\"tmpl\";i:1488;s:2:\"id\";i:28924;s:5:\"title\";s:42:\"Classic | Contact | Psychologist | Flexbox\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1670396956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-contact-psychologist-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:\"[\"Contact\",\"Flexbox\",\"Psychologist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:21:{s:4:\"tmpl\";i:1489;s:2:\"id\";i:28940;s:5:\"title\";s:46:\"Classic | Digital Agency | Marketing | Flexbox\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2022/10/Popup-s.jpeg\";s:12:\"tmpl_created\";i:1670397033;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-digital-agency-marketing-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:\"[\"Digital Agency\",\"Flexbox\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:21:{s:4:\"tmpl\";i:1490;s:2:\"id\";i:28920;s:5:\"title\";s:62:\"Classic | Newsletter | Subscribe | Magazine and Blog | Flexbox\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1670397088;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:160:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:41:\"[\"Blog\",\"Flexbox\",\"Magazine\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:21:{s:4:\"tmpl\";i:1491;s:2:\"id\";i:28900;s:5:\"title\";s:41:\"Fullscreen | Menu | Travel Blog | Flexbox\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1670397155;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog-flexbox/?utm_source=template-library&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:34:\"[\"Blog\",\"Flexbox\",\"menu\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:21:{s:4:\"tmpl\";i:1492;s:2:\"id\";i:28906;s:5:\"title\";s:43:\"Slide In | Law Firm | Information | Flexbox\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1670397299;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/slide-in-law-firm-information-flexbox/?utm_source=template-library&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:\"[\"Flexbox\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:21:{s:4:\"tmpl\";i:1494;s:2:\"id\";i:28896;s:5:\"title\";s:49:\"Slide-In | Contact | Luxury Real Estate | Flexbox\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1670397448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate-flexbox/?utm_source=template-library&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:57:\"[\"Contact\",\"Flexbox\",\"Luxury\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:21:{s:4:\"tmpl\";i:1495;s:2:\"id\";i:28892;s:5:\"title\";s:61:\"Classic | Contact | Classic Car Restoration Company | Flexbox\";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:1670397513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:161:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:\"[\"car\",\"Contact\",\"Flexbox\",\"Form\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:21:{s:4:\"tmpl\";i:1508;s:2:\"id\";i:26944;s:5:\"title\";s:40:\"Wireframe &#8211; Home 3 &#8211; Flexbox\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1670398027;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/wireframe-home-3-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:21:{s:4:\"tmpl\";i:1513;s:2:\"id\";i:26949;s:5:\"title\";s:43:\"Wireframe &#8211; Pricing 1 &#8211; Flexbox\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1670398125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/wireframe-pricing-1-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:21:{s:4:\"tmpl\";i:1516;s:2:\"id\";i:26957;s:5:\"title\";s:45:\"Interior Design &#8211; Home &#8211;  Flexbox\";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:1670398317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/interior-design-home-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:21:{s:4:\"tmpl\";i:1517;s:2:\"id\";i:26966;s:5:\"title\";s:42:\"Conference &#8211; Contact &#8211; Flexbox\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1670398421;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/conference-contact-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:21:{s:4:\"tmpl\";i:1778;s:2:\"id\";i:29972;s:5:\"title\";s:28:\"Food Blog &#8211; Posts Loop\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/12/Food-Blog-Posts-Loop-Featured_Img.jpg\";s:12:\"tmpl_created\";i:1671108760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/loop-builders/food-blog-posts-loop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lb\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"post\";s:4:\"tags\";s:25:\"[\"Blog\",\"Flexbox\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:21:{s:4:\"tmpl\";i:1525;s:2:\"id\";i:26976;s:5:\"title\";s:58:\"Packing &#038; Moving Company &#8211; Home &#8211; Flexbox\";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:1670398750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/packing-moving-company-home-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:21:{s:4:\"tmpl\";i:1781;s:2:\"id\";i:30144;s:5:\"title\";s:44:\"Wireframe &#8211; Services 1 &#8211; Flexbox\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1675009185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/wireframe-services-1-flexbox/?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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:41;a:21:{s:4:\"tmpl\";i:1782;s:2:\"id\";i:30149;s:5:\"title\";s:43:\"Wireframe &#8211; Contact 2 &#8211; Flexbox\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1675009538;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/wireframe-contact-2-flexbox/?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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:42;a:21:{s:4:\"tmpl\";i:1783;s:2:\"id\";i:30163;s:5:\"title\";s:43:\"Ecommerce Wireframe 1 &#8211; Products Loop\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2023/02/Ecommerce-Wireframe-1-Products-Loop-Featured_Img.jpg\";s:12:\"tmpl_created\";i:1675857130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/loop-builders/ecommerce-wireframe-1-products-loop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lb\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:7:\"product\";s:4:\"tags\";s:77:\"[\"Ecommerce\",\"Flexbox\",\"Online Shop\",\"Product\",\"Products\",\"Shop\",\"Wireframe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:21:{s:4:\"tmpl\";i:1784;s:2:\"id\";i:30180;s:5:\"title\";s:47:\"Digital Marketing Studio &#8211; Portfolio Loop\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2023/02/Digital-Marketing-Studio-Portfolio-Loop-Featured_Img.jpg\";s:12:\"tmpl_created\";i:1677427840;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/loop-builders/digital-marketing-studio-portfolio-loop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lb\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"post\";s:4:\"tags\";s:112:\"[\"Agency\",\"Business\",\"Creative Portfolio\",\"Design\",\"Digital Agency\",\"Flexbox\",\"Gallery\",\"Marketing\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:21:{s:4:\"tmpl\";i:1785;s:2:\"id\";i:30190;s:5:\"title\";s:43:\"Veterinary Center &#8211; Testimonials Loop\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2023/02/Veterinary-Center-Testimonials-Loop-Featured_Img.jpg\";s:12:\"tmpl_created\";i:1677430475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/loop-builders/veterinary-center-testimonials-loop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lb\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"post\";s:4:\"tags\";s:68:\"[\"Dog\",\"Flexbox\",\"Health\",\"Medical\",\"Pets\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:21:{s:4:\"tmpl\";i:1786;s:2:\"id\";i:30199;s:5:\"title\";s:44:\"Mobile Payment App &#8211; Testimonials Loop\";s:9:\"thumbnail\";s:110:\"https://library.elementor.com/wp-content/uploads/2023/02/Mobile-Payment-App-Testimonials-Loop-Featured_Img.jpg\";s:12:\"tmpl_created\";i:1677437595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/loop-builders/mobile-payment-app-testimonials-loop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lb\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"post\";s:4:\"tags\";s:51:\"[\"App\",\"Computer\",\"Flexbox\",\"Mobile\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:21:{s:4:\"tmpl\";i:1787;s:2:\"id\";i:30212;s:5:\"title\";s:49:\"Fine Dining Restaurant  &#8211; Testimonials Loop\";s:9:\"thumbnail\";s:114:\"https://library.elementor.com/wp-content/uploads/2023/02/Fine-Dining-Restaurant-Testimonials-Loop-Featured_Img.jpg\";s:12:\"tmpl_created\";i:1677437929;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/loop-builders/fine-dining-restaurant-testimonials-loop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lb\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"post\";s:4:\"tags\";s:66:\"[\"Business\",\"Cooking\",\"Flexbox\",\"Food\",\"Restaurant\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:21:{s:4:\"tmpl\";i:1788;s:2:\"id\";i:30221;s:5:\"title\";s:45:\"Digital Marketing Agency 2 &#8211; Posts Loop\";s:9:\"thumbnail\";s:111:\"https://library.elementor.com/wp-content/uploads/2023/02/Digital-Marketing-Agency-2-Posts-Loop-Featured_Img.jpg\";s:12:\"tmpl_created\";i:1677438308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/loop-builders/digital-marketing-agency-2-posts-loop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lb\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"post\";s:4:\"tags\";s:63:\"[\"Agency\",\"Blog\",\"Digital Agency\",\"Flexbox\",\"Marketing\",\"Post\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:21:{s:4:\"tmpl\";i:1533;s:2:\"id\";i:26989;s:5:\"title\";s:44:\"Wireframe &#8211; Services 2 &#8211; Flexbox\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1670399013;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/wireframe-services-2-flexbox/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=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:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:21:{s:4:\"tmpl\";i:1789;s:2:\"id\";i:30234;s:5:\"title\";s:39:\"Vases Online Shop &#8211; Products Loop\";s:9:\"thumbnail\";s:105:\"https://library.elementor.com/wp-content/uploads/2023/02/Vases-Online-Shop-Products-Loop-Featured_Img.jpg\";s:12:\"tmpl_created\";i:1677438685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/loop-builders/vases-online-shop-products-loop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lb\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:7:\"product\";s:4:\"tags\";s:148:\"[\"Art\",\"Business\",\"Colorful\",\"Design\",\"Ecommerce\",\"Flexbox\",\"Furniture Design\",\"Interior Design\",\"Modern\",\"Online Shop\",\"Product\",\"Products\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:21:{s:4:\"tmpl\";i:1790;s:2:\"id\";i:30249;s:5:\"title\";s:47:\"Houseplants Supplies Shop &#8211; Products Loop\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2023/02/Houseplants-Supplies-Shop-Products-Loop-Featured_Img.jpg\";s:12:\"tmpl_created\";i:1677597392;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/loop-builders/houseplants-supplies-shop-products-loop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lb\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:7:\"product\";s:4:\"tags\";s:111:\"[\"Ecommerce\",\"Flexbox\",\"Flower\",\"Furniture Design\",\"Interior Design\",\"Online Shop\",\"Product\",\"Products\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:21:{s:4:\"tmpl\";i:1791;s:2:\"id\";i:30258;s:5:\"title\";s:35:\"Swimwear Shop &#8211; Products Loop\";s:9:\"thumbnail\";s:101:\"https://library.elementor.com/wp-content/uploads/2023/02/Swimwear-Shop-Products-Loop-Featured_Img.jpg\";s:12:\"tmpl_created\";i:1677597738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/loop-builders/swimwear-shop-products-loop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lb\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:7:\"product\";s:4:\"tags\";s:99:\"[\"Ecommerce\",\"Fitness\",\"Flexbox\",\"Gym\",\"Online Shop\",\"Pilates\",\"Product\",\"Products\",\"Shop\",\"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:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:21:{s:4:\"tmpl\";i:1792;s:2:\"id\";i:30370;s:5:\"title\";s:20:\"Single Chat WhatsApp\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2024/06/Single-Chat-WhatsApp_360.jpg\";s:12:\"tmpl_created\";i:1717917823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/floating-button/single-chat-whatsapp/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:43:\"[\"Contact\",\"Flexbox\",\"floating\",\"WhatsApp\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:53;a:21:{s:4:\"tmpl\";i:1587;s:2:\"id\";i:27051;s:5:\"title\";s:32:\"Marketing Agency &#8211; About 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/About-1.jpg\";s:12:\"tmpl_created\";i:1670403167;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/marketing-agency-about-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:5:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:21:{s:4:\"tmpl\";i:1552;s:2:\"id\";i:29198;s:5:\"title\";s:28:\"Live Music Venue &#8211; 404\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/11/16-Live-Music-Venue.jpg\";s:12:\"tmpl_created\";i:1670399593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/live-music-venue-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:32:\"[\"404\",\"Event\",\"Events\",\"Music\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:21:{s:4:\"tmpl\";i:1888;s:2:\"id\";i:31552;s:5:\"title\";s:22:\"Animated Classic Phone\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2024/06/Animated_Callnow_360.jpg\";s:12:\"tmpl_created\";i:1719224528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/floating-button/animated-classic-phone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:39:\"[\"Animated\",\"Call\",\"Contact\",\"Flexbox\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:21:{s:4:\"tmpl\";i:1892;s:2:\"id\";i:31566;s:5:\"title\";s:21:\"Interactive eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2024/06/Interactive-Red_360.jpg\";s:12:\"tmpl_created\";i:1719230111;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/floating-button/interactive-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:35:\"[\"Contact\",\"Flexbox\",\"Interactive\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:21:{s:4:\"tmpl\";i:1468;s:2:\"id\";i:27953;s:5:\"title\";s:43:\"Psychologist &#8211; Footer &#8211; Flexbox\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1670342099;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/psychologist-footer-flexbox/?utm_source=template-library&utm_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:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:21:{s:4:\"tmpl\";i:1828;s:2:\"id\";i:31137;s:5:\"title\";s:22:\"Quick Access Bar Basic\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2024/06/Quick-access-bar-purple_360.jpg\";s:12:\"tmpl_created\";i:1718887011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/floating-button/quick-access-bar-classic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:40:\"[\"Contact\",\"Flexbox\",\"Quick access bar\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:21:{s:4:\"tmpl\";i:1904;s:2:\"id\";i:31658;s:5:\"title\";s:26:\"Quick Access Bar Wireframe\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2024/06/Quick-access-bar-grey_360.jpg\";s:12:\"tmpl_created\";i:1719813003;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/floating-button/quick-access-bar-wireframe/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:52:\"[\"Contact\",\"Flexbox\",\"Quick access bar\",\"Wireframe\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:21:{s:4:\"tmpl\";i:1481;s:2:\"id\";i:29172;s:5:\"title\";s:28:\"Delivery Company &#8211; 404\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/11/14-Delivery-Company.jpg\";s:12:\"tmpl_created\";i:1670353105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/delivery-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:48:\"[\"404\",\"Delivery\",\"Delivery Service\",\"Services\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:21:{s:4:\"tmpl\";i:1889;s:2:\"id\";i:31561;s:5:\"title\";s:21:\"Animated Classic Waze\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2024/06/Animated_Waze_360.jpg\";s:12:\"tmpl_created\";i:1719229884;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/floating-button/animated-classic-waze/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:43:\"[\"Animated\",\"Contact\",\"Flexbox\",\"WhatsApp\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:21:{s:4:\"tmpl\";i:1664;s:2:\"id\";i:28386;s:5:\"title\";s:41:\"Local Services Wireframe 1 &#8211; Header\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/12/Wireframe1-header-350_31122023.jpg\";s:12:\"tmpl_created\";i:1670405300;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/blocks/local-services-wireframe-1-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:20:\"[\"Flexbox\",\"Header\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:21:{s:4:\"tmpl\";i:1794;s:2:\"id\";i:30386;s:5:\"title\";s:17:\"Single Chat Email\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2024/06/single-chat-mail_360.jpg\";s:12:\"tmpl_created\";i:1717933916;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/floating-button/single-chat-email/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:29:\"[\"Contact\",\"Email\",\"Flexbox\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:64;a:21:{s:4:\"tmpl\";i:1561;s:2:\"id\";i:27881;s:5:\"title\";s:43:\"Dance Studio &#8211; Footer &#8211; Flexbox\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1670400220;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/dance-studio-footer-flexbox/?utm_source=template-library&utm_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:20:\"[\"Flexbox\",\"Footer\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:21:{s:4:\"tmpl\";i:1560;s:2:\"id\";i:27891;s:5:\"title\";s:36:\"Beauty Salon -Footer &#8211; Flexbox\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1670400164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/beauty-salon-footer-flexbox/?utm_source=template-library&utm_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:42:\"[\"Beauty Salon\",\"Flexbox\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:21:{s:4:\"tmpl\";i:1887;s:2:\"id\";i:31436;s:5:\"title\";s:25:\"Animated Classic WhatsApp\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2024/06/Animated_WhatsApp_360.jpg\";s:12:\"tmpl_created\";i:1719224081;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/floating-button/animated-classic-whatsapp-new/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:43:\"[\"Animated\",\"Contact\",\"Flexbox\",\"WhatsApp\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:21:{s:4:\"tmpl\";i:1890;s:2:\"id\";i:31572;s:5:\"title\";s:17:\"Interactive Basic\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2024/06/Interactive-Black_360.jpg\";s:12:\"tmpl_created\";i:1719229983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/floating-button/interactive-basic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:35:\"[\"Contact\",\"Flexbox\",\"Interactive\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:21:{s:4:\"tmpl\";i:1903;s:2:\"id\";i:31586;s:5:\"title\";s:14:\"Classic Food 1\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2024/06/Classic-Food-cover.jpg\";s:12:\"tmpl_created\";i:1719289947;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/classic-food-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:\"Link in Bio\";s:4:\"tags\";s:32:\"[\"Flexbox\",\"Food\",\"Link in Bio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:21:{s:4:\"tmpl\";i:1891;s:2:\"id\";i:31573;s:5:\"title\";s:21:\"Interactive Wireframe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2024/06/Interactive-Blue_360.jpg\";s:12:\"tmpl_created\";i:1719229996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/floating-button/interactive-wireframe/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:35:\"[\"Contact\",\"Flexbox\",\"Interactive\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:21:{s:4:\"tmpl\";i:1902;s:2:\"id\";i:31349;s:5:\"title\";s:15:\"Showcase Food 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2024/06/Showcase-Food-cover-2.jpg\";s:12:\"tmpl_created\";i:1719230887;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/showcase-food-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:\"Link in Bio\";s:4:\"tags\";s:32:\"[\"Flexbox\",\"Food\",\"Link in Bio\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:21:{s:4:\"tmpl\";i:1804;s:2:\"id\";i:30893;s:5:\"title\";s:17:\"Classic Messenger\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2024/06/Classic-Messenger_360.jpg\";s:12:\"tmpl_created\";i:1718543871;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/floating-button/classic-messenger/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:33:\"[\"Contact\",\"Flexbox\",\"Messenger\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:21:{s:4:\"tmpl\";i:1853;s:2:\"id\";i:31396;s:5:\"title\";s:31:\"Portfolio Health and Wellness 2\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2024/06/health-portfolio2-profile.jpg\";s:12:\"tmpl_created\";i:1719220628;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/blocks/portfolio-health-and-wellness-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:\"Link in Bio\";s:4:\"tags\";s:45:\"[\"Flexbox\",\"Health\",\"Link in Bio\",\"Wellness\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:21:{s:4:\"tmpl\";i:1847;s:2:\"id\";i:30584;s:5:\"title\";s:20:\"Services Education 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2024/06/Services-Education-cover-1.jpg\";s:12:\"tmpl_created\";i:1719219495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/services-education-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:\"Link in Bio\";s:4:\"tags\";s:37:\"[\"Education\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:21:{s:4:\"tmpl\";i:1818;s:2:\"id\";i:31028;s:5:\"title\";s:11:\"Info Beauty\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2024/06/SC_green_360.jpg\";s:12:\"tmpl_created\";i:1718876522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/floating-button/info-beauty/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Beauty Salon\",\"Contact\",\"Fashion\",\"Flexbox\",\"Info\",\"Spa\",\"Wellness\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:21:{s:4:\"tmpl\";i:1848;s:2:\"id\";i:30667;s:5:\"title\";s:23:\"Portfolio Photography 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2024/06/portfolio-photo-2.jpg\";s:12:\"tmpl_created\";i:1719219498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/portfolio-photography-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:\"Link in Bio\";s:4:\"tags\";s:39:\"[\"Flexbox\",\"Link in Bio\",\"Photography\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:21:{s:4:\"tmpl\";i:1803;s:2:\"id\";i:30887;s:5:\"title\";s:16:\"Classic WhatsApp\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2024/06/Classic-WhatsApp_360.jpg\";s:12:\"tmpl_created\";i:1718542661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/floating-button/classic-whatsapp/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:22:\"[\"Flexbox\",\"WhatsApp\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:21:{s:4:\"tmpl\";i:1849;s:2:\"id\";i:31227;s:5:\"title\";s:29:\"Services Fashion and Beauty 2\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2024/06/fashion-services2-preview.jpg\";s:12:\"tmpl_created\";i:1719219505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/services-fashion-and-beauty-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:\"Link in Bio\";s:4:\"tags\";s:44:\"[\"Beauty\",\"Fashion\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:21:{s:4:\"tmpl\";i:1820;s:2:\"id\";i:31059;s:5:\"title\";s:22:\"Info Creative Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2024/06/SC_purple_360.jpg\";s:12:\"tmpl_created\";i:1718878394;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/floating-button/info-creative-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:61:\"[\"Contact\",\"Creative\",\"Designer\",\"Flexbox\",\"Info\",\"Services\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:21:{s:4:\"tmpl\";i:1850;s:2:\"id\";i:31354;s:5:\"title\";s:30:\"Services Health and Wellness 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2024/06/health-services1-preview.jpg\";s:12:\"tmpl_created\";i:1719219514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/services-health-and-wellness-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:\"Link in Bio\";s:4:\"tags\";s:45:\"[\"Flexbox\",\"Health\",\"Link in Bio\",\"Wellness\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:21:{s:4:\"tmpl\";i:1559;s:2:\"id\";i:27916;s:5:\"title\";s:47:\"Flooring Company &#8211; Footer &#8211; Flexbox\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1670400009;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/blocks/flooring-company-footer-flexbox/?utm_source=template-library&utm_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:\"[\"Flexbox\",\"Flooring company\",\"Footer\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:21:{s:4:\"tmpl\";i:1822;s:2:\"id\";i:31074;s:5:\"title\";s:24:\"Info Creative Services 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2024/06/SC_white_360.jpg\";s:12:\"tmpl_created\";i:1718878957;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/floating-button/info-creative-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:50:\"[\"Contact\",\"Creative\",\"Flexbox\",\"Info\",\"Services\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:21:{s:4:\"tmpl\";i:1823;s:2:\"id\";i:31088;s:5:\"title\";s:26:\"Info Professional Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2024/06/SC_orange_360.jpg\";s:12:\"tmpl_created\";i:1718879649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/floating-button/info-professional-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:54:\"[\"Contact\",\"Flexbox\",\"Info\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:21:{s:4:\"tmpl\";i:1851;s:2:\"id\";i:31215;s:5:\"title\";s:29:\"Services Fashion and Beauty 1\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2024/06/fashion-services1-preview.jpg\";s:12:\"tmpl_created\";i:1719219536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/services-fashion-and-beauty-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:\"Link in Bio\";s:4:\"tags\";s:44:\"[\"Beauty\",\"Fashion\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:21:{s:4:\"tmpl\";i:1558;s:2:\"id\";i:27931;s:5:\"title\";s:25:\"Footer 04 &#8211; Flexbox\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1670399898;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/footer-04-flexbox/?utm_source=template-library&utm_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:20:\"[\"Flexbox\",\"Footer\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:21:{s:4:\"tmpl\";i:1815;s:2:\"id\";i:31017;s:5:\"title\";s:14:\"Info Wireframe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2024/06/SC_blue_360.jpg\";s:12:\"tmpl_created\";i:1718874492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/floating-button/info-wireframe/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:33:\"[\"Contact\",\"Flexbox\",\"Wireframe\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:21:{s:4:\"tmpl\";i:1827;s:2:\"id\";i:31120;s:5:\"title\";s:15:\"Mobile Bar Link\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2024/06/Mobile-bar-sale_360.jpg\";s:12:\"tmpl_created\";i:1718885351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/floating-button/mobile-bar-link/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:34:\"[\"Contact\",\"Flexbox\",\"Mobile bar\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:21:{s:4:\"tmpl\";i:1852;s:2:\"id\";i:30850;s:5:\"title\";s:20:\"Services Education 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2024/06/Services-Education-cover-2.jpg\";s:12:\"tmpl_created\";i:1719219545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/services-education-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:\"Link in Bio\";s:4:\"tags\";s:37:\"[\"Education\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:21:{s:4:\"tmpl\";i:1805;s:2:\"id\";i:30899;s:5:\"title\";s:13:\"Classic Viber\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2024/06/Classic-Viber_360.jpg\";s:12:\"tmpl_created\";i:1718544687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/floating-button/classic-viber/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:29:\"[\"Contact\",\"Flexbox\",\"Viber\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:21:{s:4:\"tmpl\";i:1854;s:2:\"id\";i:31381;s:5:\"title\";s:31:\"Portfolio Health and Wellness 1\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2024/06/health-portfolio1-preview.jpg\";s:12:\"tmpl_created\";i:1719220660;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/blocks/portfolio-health-and-wellness-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:\"Link in Bio\";s:4:\"tags\";s:44:\"[\"Beauty\",\"Fashion\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:21:{s:4:\"tmpl\";i:1824;s:2:\"id\";i:31102;s:5:\"title\";s:23:\"Mobile Bar Phone Number\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2024/06/Mobile-bar-waze_360.jpg\";s:12:\"tmpl_created\";i:1718880257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/floating-button/mobile-bar-phone-number/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:41:\"[\"Call\",\"Contact\",\"Flexbox\",\"Mobile bar\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:21:{s:4:\"tmpl\";i:1845;s:2:\"id\";i:30836;s:5:\"title\";s:16:\"Services Music 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2024/06/music-services-1.jpg\";s:12:\"tmpl_created\";i:1719219330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/services-music-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:\"Link in Bio\";s:4:\"tags\";s:33:\"[\"Flexbox\",\"Link in Bio\",\"Music\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:21:{s:4:\"tmpl\";i:1825;s:2:\"id\";i:31110;s:5:\"title\";s:19:\"Mobile Bar WhatsApp\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2024/06/Mobile-bar-whatsapp_360.jpg\";s:12:\"tmpl_created\";i:1718880569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/floating-button/mobile-bar-whatsapp/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:45:\"[\"Contact\",\"Flexbox\",\"Mobile bar\",\"WhatsApp\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:21:{s:4:\"tmpl\";i:1855;s:2:\"id\";i:31251;s:5:\"title\";s:30:\"Portfolio Fashion and Beauty 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2024/06/fashion-portfolio2-preview.jpg\";s:12:\"tmpl_created\";i:1719220669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/portfolio-fashion-and-beauty-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:\"Link in Bio\";s:4:\"tags\";s:44:\"[\"Beauty\",\"Fashion\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:21:{s:4:\"tmpl\";i:1817;s:2:\"id\";i:31032;s:5:\"title\";s:26:\"Multi Chat Account Manager\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2024/06/Multi-chat-Account-Manager_360.jpg\";s:12:\"tmpl_created\";i:1718875522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/floating-button/multi-chat-account-manager/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:82:\"[\"Contact\",\"Email\",\"Flexbox\",\"Info\",\"Messenger\",\"Resources\",\"Services\",\"WhatsApp\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:21:{s:4:\"tmpl\";i:1856;s:2:\"id\";i:31237;s:5:\"title\";s:30:\"Portfolio Fashion and Beauty 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2024/06/fashion-portfolio1-preview.jpg\";s:12:\"tmpl_created\";i:1719220682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/portfolio-fashion-and-beauty-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:\"Link in Bio\";s:4:\"tags\";s:44:\"[\"Beauty\",\"Fashion\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:21:{s:4:\"tmpl\";i:1821;s:2:\"id\";i:31069;s:5:\"title\";s:29:\"Multi Chat Education Director\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2024/06/Multi-chat-Education-Director_360.jpg\";s:12:\"tmpl_created\";i:1718878603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/floating-button/multi-chat-education-director/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:94:\"[\"Contact\",\"Education\",\"Email\",\"Flexbox\",\"Info\",\"Messenger\",\"Resources\",\"Services\",\"WhatsApp\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:21:{s:4:\"tmpl\";i:1857;s:2:\"id\";i:30610;s:5:\"title\";s:25:\"Photography Business Card\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2024/06/business-card-photo.jpg\";s:12:\"tmpl_created\";i:1719220694;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/photography-business-card/?utm_source=template-library&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:\"Link in Bio\";s:4:\"tags\";s:39:\"[\"Flexbox\",\"Link in Bio\",\"Photography\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:21:{s:4:\"tmpl\";i:1829;s:2:\"id\";i:31142;s:5:\"title\";s:26:\"Quick Access Bar Messaging\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2024/06/Quick-access-bar-black_360.jpg\";s:12:\"tmpl_created\";i:1718888169;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/floating-button/quick-access-bar-messaging/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:40:\"[\"Contact\",\"Flexbox\",\"Quick access bar\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:21:{s:4:\"tmpl\";i:1858;s:2:\"id\";i:30826;s:5:\"title\";s:11:\"Music Links\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2024/06/music-links.jpg\";s:12:\"tmpl_created\";i:1719220705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/music-links-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:\"Link in Bio\";s:4:\"tags\";s:33:\"[\"Flexbox\",\"Link in Bio\",\"Music\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:21:{s:4:\"tmpl\";i:1826;s:2:\"id\";i:31115;s:5:\"title\";s:15:\"Mobile Bar Waze\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2024/06/Mobile-bar-waze_360.jpg\";s:12:\"tmpl_created\";i:1718884885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/floating-button/mobile-bar-waze/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:41:\"[\"Contact\",\"Flexbox\",\"Mobile bar\",\"Waze\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:21:{s:4:\"tmpl\";i:1859;s:2:\"id\";i:30430;s:5:\"title\";s:19:\"Music Business Card\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2024/06/music-businesscard.jpg\";s:12:\"tmpl_created\";i:1719220760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/music-links/?utm_source=template-library&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:\"Link in Bio\";s:4:\"tags\";s:33:\"[\"Flexbox\",\"Link in Bio\",\"Music\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:21:{s:4:\"tmpl\";i:1810;s:2:\"id\";i:30973;s:5:\"title\";s:19:\"Resources Ecommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2024/06/RB_purple_360.jpg\";s:12:\"tmpl_created\";i:1718867374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/floating-button/resources-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:56:\"[\"Contact\",\"Ecommerce\",\"Flexbox\",\"Resources\",\"Services\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:21:{s:4:\"tmpl\";i:1860;s:2:\"id\";i:30391;s:5:\"title\";s:24:\"Minimalist Photography 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2024/06/minimalist-photo-feature.jpg\";s:12:\"tmpl_created\";i:1719221005;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/minimalist-music-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:11:\"Link in Bio\";s:4:\"tags\";s:39:\"[\"Flexbox\",\"Link in Bio\",\"Photography\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:104;a:21:{s:4:\"tmpl\";i:1813;s:2:\"id\";i:30994;s:5:\"title\";s:19:\"Resources Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2024/06/RB_yellow_360.jpg\";s:12:\"tmpl_created\";i:1718871626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/floating-button/resources-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:54:\"[\"Contact\",\"Education\",\"Flexbox\",\"Resources\",\"School\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:21:{s:4:\"tmpl\";i:1846;s:2:\"id\";i:31365;s:5:\"title\";s:30:\"Services Health and Wellness 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2024/06/health-services2-preview.jpg\";s:12:\"tmpl_created\";i:1719219425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/services-health-and-wellness-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:\"Link in Bio\";s:4:\"tags\";s:45:\"[\"Flexbox\",\"Health\",\"Link in Bio\",\"Wellness\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:21:{s:4:\"tmpl\";i:1814;s:2:\"id\";i:31005;s:5:\"title\";s:20:\"Resources Healthcare\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2024/06/RB_orange_360.jpg\";s:12:\"tmpl_created\";i:1718873281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/floating-button/resources-healthcare/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:64:\"[\"Contact\",\"Flexbox\",\"Health\",\"Resources\",\"Services\",\"Wellness\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:21:{s:4:\"tmpl\";i:1844;s:2:\"id\";i:30407;s:5:\"title\";s:16:\"Services Music 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2024/06/music-services-2.jpg\";s:12:\"tmpl_created\";i:1719219301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/minimalist-music-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:\"Link in Bio\";s:4:\"tags\";s:33:\"[\"Flexbox\",\"Link in Bio\",\"Music\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:21:{s:4:\"tmpl\";i:1812;s:2:\"id\";i:30985;s:5:\"title\";s:21:\"Resources Real Estate\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2024/06/RB_green_360.jpg\";s:12:\"tmpl_created\";i:1718870478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/floating-button/resources-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:81:\"[\"Contact\",\"Flexbox\",\"Real estate\",\"Realestate\",\"realtor\",\"Resources\",\"Services\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:21:{s:4:\"tmpl\";i:1863;s:2:\"id\";i:31291;s:5:\"title\";s:32:\"Minimalist Health and Wellness 1\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2024/06/health-minimalist-preview.jpg\";s:12:\"tmpl_created\";i:1719221111;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/blocks/minimalist-health-and-wellness-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:11:\"Link in Bio\";s:4:\"tags\";s:45:\"[\"Flexbox\",\"Health\",\"Link in Bio\",\"Wellness\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:110;a:21:{s:4:\"tmpl\";i:1809;s:2:\"id\";i:30962;s:5:\"title\";s:23:\"Resources Travel Agency\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2024/06/RB_light-blue_360.jpg\";s:12:\"tmpl_created\";i:1718867329;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/floating-button/resources-travel-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:42:\"[\"Contact\",\"Flexbox\",\"Resources\",\"Travel\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:21:{s:4:\"tmpl\";i:1835;s:2:\"id\";i:31305;s:5:\"title\";s:30:\"Showcase Health and Wellness 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2024/06/health-showcase2-preview.jpg\";s:12:\"tmpl_created\";i:1719218847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/showcase-health-and-wellness-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:\"Link in Bio\";s:4:\"tags\";s:45:\"[\"Flexbox\",\"Health\",\"Link in Bio\",\"Wellness\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:21:{s:4:\"tmpl\";i:1800;s:2:\"id\";i:30450;s:5:\"title\";s:17:\"Classic Education\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2024/06/Classic-Education-cover.jpg\";s:12:\"tmpl_created\";i:1718025729;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/classic-law/?utm_source=template-library&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:\"Link in Bio\";s:4:\"tags\";s:37:\"[\"Education\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:21:{s:4:\"tmpl\";i:1808;s:2:\"id\";i:30929;s:5:\"title\";s:19:\"Resources Wireframe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2024/06/RB_blue_360.jpg\";s:12:\"tmpl_created\";i:1718867101;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/floating-button/resources-wireframe/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:45:\"[\"Contact\",\"Flexbox\",\"Resources\",\"Wireframe\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:21:{s:4:\"tmpl\";i:1793;s:2:\"id\";i:30372;s:5:\"title\";s:21:\"Single Chat Messenger\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2024/06/single-chat-messenger_360.jpg\";s:12:\"tmpl_created\";i:1717918600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/floating-button/single-chat-messenger/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:44:\"[\"Contact\",\"Flexbox\",\"floating\",\"Messenger\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:115;a:21:{s:4:\"tmpl\";i:1830;s:2:\"id\";i:30422;s:5:\"title\";s:12:\"Classic Food\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2024/06/Classic-Food-cover.jpg\";s:12:\"tmpl_created\";i:1718894308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/minimalist-music-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:\"Link in Bio\";s:4:\"tags\";s:32:\"[\"Flexbox\",\"Food\",\"Link in Bio\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:21:{s:4:\"tmpl\";i:1807;s:2:\"id\";i:30917;s:5:\"title\";s:26:\"Vertical Links Help Center\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2024/06/Vertical-Links-Help-Center_360.jpg\";s:12:\"tmpl_created\";i:1718785988;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/floating-button/vertical-links-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:74:\"[\"Business\",\"Contact\",\"Email\",\"Flexbox\",\"floating\",\"Messenger\",\"WhatsApp\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:21:{s:4:\"tmpl\";i:1831;s:2:\"id\";i:30725;s:5:\"title\";s:22:\"Showcase Photography 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2024/06/showcase-photo-2.jpg\";s:12:\"tmpl_created\";i:1719218258;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/showcase-photography-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:\"Link in Bio\";s:4:\"tags\";s:39:\"[\"Flexbox\",\"Link in Bio\",\"Photography\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:21:{s:4:\"tmpl\";i:1811;s:2:\"id\";i:30975;s:5:\"title\";s:25:\"Vertical Links My Account\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2024/06/Vertical-Links-My-Account_360.jpg\";s:12:\"tmpl_created\";i:1718867812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/floating-button/vertical-links-my-account/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:56:\"[\"Contact\",\"Flexbox\",\"My Account\",\"Vertical\",\"WhatsApp\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:21:{s:4:\"tmpl\";i:1832;s:2:\"id\";i:30543;s:5:\"title\";s:16:\"Showcase Music 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2024/06/showcase-music-3-image.jpg\";s:12:\"tmpl_created\";i:1719218500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/showcase-music-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:\"Link in Bio\";s:4:\"tags\";s:33:\"[\"Flexbox\",\"Link in Bio\",\"Music\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:21:{s:4:\"tmpl\";i:1806;s:2:\"id\";i:30905;s:5:\"title\";s:24:\"Vertical Links Wireframe\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2024/06/Vertical-Links_360.jpg\";s:12:\"tmpl_created\";i:1718613913;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/floating-button/vertical-links/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:52:\"[\"Contact\",\"Email\",\"Flexbox\",\"Messenger\",\"WhatsApp\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:21:{s:4:\"tmpl\";i:1833;s:2:\"id\";i:30486;s:5:\"title\";s:14:\"Showcase Law 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2024/06/law-showcase-2-preview.jpg\";s:12:\"tmpl_created\";i:1719218648;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/showcase-law-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:\"Link in Bio\";s:4:\"tags\";s:42:\"[\"Flexbox\",\"Law\",\"Law Firm\",\"Link in Bio\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:21:{s:4:\"tmpl\";i:1819;s:2:\"id\";i:31048;s:5:\"title\";s:14:\"Info Ecommerce\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2024/06/SC_black_360.jpg\";s:12:\"tmpl_created\";i:1718877598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/floating-button/info-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Floating Button\";s:4:\"tags\";s:66:\"[\"Contact\",\"Ecommerce\",\"Flexbox\",\"Info\",\"Services\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:21:{s:4:\"tmpl\";i:1834;s:2:\"id\";i:30470;s:5:\"title\";s:14:\"Showcase Law 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2024/06/law-showcase-1-preview-.jpg\";s:12:\"tmpl_created\";i:1719218765;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/showcase-law-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:\"Link in Bio\";s:4:\"tags\";s:42:\"[\"Flexbox\",\"Law\",\"Law Firm\",\"Link in Bio\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:21:{s:4:\"tmpl\";i:1816;s:2:\"id\";i:31020;s:5:\"title\";s:20:\"Multi Chat Wireframe\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2024/06/Multi-chat-wireframe_360.jpg\";s:12:\"tmpl_created\";i:1718874633;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/floating-button/multi-chat-wireframe/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:15:\"floating_button\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"Email\";s:4:\"tags\";s:32:\"[\"Contact\",\"Flexbox\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:21:{s:4:\"tmpl\";i:1836;s:2:\"id\";i:30657;s:5:\"title\";s:22:\"Showcase Photography 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2024/06/showcase-photo-1.jpg\";s:12:\"tmpl_created\";i:1719218917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/showcase-photography-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:\"Link in Bio\";s:4:\"tags\";s:39:\"[\"Flexbox\",\"Link in Bio\",\"Photography\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:21:{s:4:\"tmpl\";i:1843;s:2:\"id\";i:30696;s:5:\"title\";s:22:\"Services Photography 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2024/06/services-photo-1.jpg\";s:12:\"tmpl_created\";i:1719219290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/services-photography-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:\"Link in Bio\";s:4:\"tags\";s:39:\"[\"Flexbox\",\"Link in Bio\",\"Photography\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:21:{s:4:\"tmpl\";i:1837;s:2:\"id\";i:31319;s:5:\"title\";s:30:\"Showcase Health and Wellness 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2024/06/health-showcase1-preview.jpg\";s:12:\"tmpl_created\";i:1719219130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/showcase-health-and-wellness-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:\"Link in Bio\";s:4:\"tags\";s:45:\"[\"Flexbox\",\"Health\",\"Link in Bio\",\"Wellness\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:21:{s:4:\"tmpl\";i:1838;s:2:\"id\";i:31188;s:5:\"title\";s:29:\"Showcase Fashion and Beauty 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2024/06/fashion-showcase-2-preview.jpg\";s:12:\"tmpl_created\";i:1719219139;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/showcase-fashion-and-beauty-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:\"Link in Bio\";s:4:\"tags\";s:44:\"[\"Beauty\",\"Fashion\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:21:{s:4:\"tmpl\";i:1839;s:2:\"id\";i:31173;s:5:\"title\";s:29:\"Showcase Fashion and Beauty 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2024/06/fashion-showcase-1-cover.jpg\";s:12:\"tmpl_created\";i:1719219145;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/showcase-fashion-and-beauty-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:\"Link in Bio\";s:4:\"tags\";s:44:\"[\"Beauty\",\"Fashion\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:21:{s:4:\"tmpl\";i:1840;s:2:\"id\";i:30814;s:5:\"title\";s:20:\"Showcase Education 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2024/06/Showcase-Education-cover-2.jpg\";s:12:\"tmpl_created\";i:1719219163;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/showcase-education-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:\"Link in Bio\";s:4:\"tags\";s:37:\"[\"Education\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:21:{s:4:\"tmpl\";i:1841;s:2:\"id\";i:30790;s:5:\"title\";s:20:\"Showcase Education 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2024/06/Showcase-Education-cover-1.jpg\";s:12:\"tmpl_created\";i:1719219189;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/showcase-education-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:\"Link in Bio\";s:4:\"tags\";s:37:\"[\"Education\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:21:{s:4:\"tmpl\";i:1842;s:2:\"id\";i:30709;s:5:\"title\";s:22:\"Services Photography 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2024/06/services-photo-2.jpg\";s:12:\"tmpl_created\";i:1719219216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/services-photography-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:\"Link in Bio\";s:4:\"tags\";s:39:\"[\"Flexbox\",\"Link in Bio\",\"Photography\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:21:{s:4:\"tmpl\";i:1862;s:2:\"id\";i:30565;s:5:\"title\";s:18:\"Minimalist Music 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2024/06/Design-1-image.jpg\";s:12:\"tmpl_created\";i:1719221042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/minimalist-music-2-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:11:\"Link in Bio\";s:4:\"tags\";s:33:\"[\"Flexbox\",\"Link in Bio\",\"Music\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:134;a:21:{s:4:\"tmpl\";i:1861;s:2:\"id\";i:30629;s:5:\"title\";s:24:\"Minimalist Photography 1\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2024/06/minimalist-photo-1.jpg\";s:12:\"tmpl_created\";i:1719221032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/minimalist-photography-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:11:\"Link in Bio\";s:4:\"tags\";s:39:\"[\"Flexbox\",\"Link in Bio\",\"Photography\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:135;a:21:{s:4:\"tmpl\";i:1864;s:2:\"id\";i:31299;s:5:\"title\";s:32:\"Minimalist Health and Wellness 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2024/06/health-minimalist2-preview.jpg\";s:12:\"tmpl_created\";i:1719221117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/blocks/minimalist-health-and-wellness-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:11:\"Link in Bio\";s:4:\"tags\";s:45:\"[\"Flexbox\",\"Health\",\"Link in Bio\",\"Wellness\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:136;a:21:{s:4:\"tmpl\";i:1880;s:2:\"id\";i:31157;s:5:\"title\";s:11:\"Classic Law\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2024/06/law-classic-preview.jpg\";s:12:\"tmpl_created\";i:1719222615;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/classic-law-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:\"Link in Bio\";s:4:\"tags\";s:42:\"[\"Flexbox\",\"Law\",\"Law Firm\",\"Link in Bio\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:21:{s:4:\"tmpl\";i:1897;s:2:\"id\";i:31474;s:5:\"title\";s:16:\"Portfolio Food 1\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2024/06/Portfolio-Food-cover-1.jpg\";s:12:\"tmpl_created\";i:1719230665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/portfolio-food-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:\"Link in Bio\";s:4:\"tags\";s:44:\"[\"Flexbox\",\"Food\",\"Link in Bio\",\"Portfolio\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:21:{s:4:\"tmpl\";i:1896;s:2:\"id\";i:31181;s:5:\"title\";s:17:\"Minimalist Food 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2024/06/Minimalist-Food-cover-2.jpg\";s:12:\"tmpl_created\";i:1719230622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/minimalist-food-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:11:\"Link in Bio\";s:4:\"tags\";s:32:\"[\"Flexbox\",\"Food\",\"Link in Bio\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:139;a:21:{s:4:\"tmpl\";i:1895;s:2:\"id\";i:31169;s:5:\"title\";s:17:\"Minimalist Food 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2024/06/Minimalist-Food-cover-1.jpg\";s:12:\"tmpl_created\";i:1719230604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/minimalist-food-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:11:\"Link in Bio\";s:4:\"tags\";s:32:\"[\"Flexbox\",\"Food\",\"Link in Bio\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:140;a:21:{s:4:\"tmpl\";i:1894;s:2:\"id\";i:30591;s:5:\"title\";s:10:\"Food Links\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2024/06/Links-Food-cover-1.jpg\";s:12:\"tmpl_created\";i:1719230571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/food-links/?utm_source=template-library&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:\"Link in Bio\";s:4:\"tags\";s:32:\"[\"Flexbox\",\"Food\",\"Link in Bio\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:21:{s:4:\"tmpl\";i:1893;s:2:\"id\";i:31528;s:5:\"title\";s:18:\"Food Business Card\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2024/06/Business-card-Food-cover.jpg\";s:12:\"tmpl_created\";i:1719230215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/food-business-card/?utm_source=template-library&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:\"Link in Bio\";s:4:\"tags\";s:43:\"[\"Business\",\"Flexbox\",\"Food\",\"Link in Bio\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:21:{s:4:\"tmpl\";i:1900;s:2:\"id\";i:31462;s:5:\"title\";s:15:\"Services Food 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2024/06/Services-Food-cover-2.jpg\";s:12:\"tmpl_created\";i:1719230756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/services-food-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:\"Link in Bio\";s:4:\"tags\";s:43:\"[\"Flexbox\",\"Food\",\"Link in Bio\",\"Services\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:21:{s:4:\"tmpl\";i:1886;s:2:\"id\";i:30738;s:5:\"title\";s:23:\"Portfolio Photography 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2024/06/portfolio-photo-1.jpg\";s:12:\"tmpl_created\";i:1719222799;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/portfolio-photography-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:\"Link in Bio\";s:4:\"tags\";s:39:\"[\"Flexbox\",\"Link in Bio\",\"Photography\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:144;a:21:{s:4:\"tmpl\";i:1885;s:2:\"id\";i:30780;s:5:\"title\";s:26:\"Classic Fashion and Beauty\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2024/06/fashion-classic-preview1.jpg\";s:12:\"tmpl_created\";i:1719222642;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/classic-fashion-and-beauty/?utm_source=template-library&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:\"Link in Bio\";s:4:\"tags\";s:44:\"[\"Beauty\",\"Fashion\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:21:{s:4:\"tmpl\";i:1884;s:2:\"id\";i:30638;s:5:\"title\";s:13:\"Classic Music\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2024/06/classic-music.jpg\";s:12:\"tmpl_created\";i:1719222626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/classic-music/?utm_source=template-library&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:\"Link in Bio\";s:4:\"tags\";s:33:\"[\"Flexbox\",\"Link in Bio\",\"Music\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:21:{s:4:\"tmpl\";i:1883;s:2:\"id\";i:30863;s:5:\"title\";s:23:\"Education Business Card\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2024/06/edu-card-preview.jpg\";s:12:\"tmpl_created\";i:1719222626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/education-business-card/?utm_source=template-library&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:\"Link in Bio\";s:4:\"tags\";s:37:\"[\"Education\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:21:{s:4:\"tmpl\";i:1865;s:2:\"id\";i:30762;s:5:\"title\";s:18:\"Minimalist Music 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2024/06/Design-1-logo.jpg\";s:12:\"tmpl_created\";i:1719221170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/minimalist-music-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:11:\"Link in Bio\";s:4:\"tags\";s:33:\"[\"Flexbox\",\"Link in Bio\",\"Music\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:148;a:21:{s:4:\"tmpl\";i:1882;s:2:\"id\";i:31311;s:5:\"title\";s:19:\"Classic Photography\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2024/06/classic-photo.jpg\";s:12:\"tmpl_created\";i:1719222622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/classic-photography/?utm_source=template-library&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:\"Link in Bio\";s:4:\"tags\";s:39:\"[\"Flexbox\",\"Link in Bio\",\"Photography\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:21:{s:4:\"tmpl\";i:1881;s:2:\"id\";i:31278;s:5:\"title\";s:27:\"Classic Health and Wellness\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2024/06/health-classic-preview.jpg\";s:12:\"tmpl_created\";i:1719222620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/classic-health-and-wellness/?utm_source=template-library&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:\"Link in Bio\";s:4:\"tags\";s:45:\"[\"Flexbox\",\"Health\",\"Link in Bio\",\"Wellness\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:21:{s:4:\"tmpl\";i:1879;s:2:\"id\";i:31509;s:5:\"title\";s:24:\"Fashion and Beauty Links\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2024/06/fashion-links-preview.jpg\";s:12:\"tmpl_created\";i:1719222425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/fashion-and-beauty-links/?utm_source=template-library&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:\"Link in Bio\";s:4:\"tags\";s:44:\"[\"Beauty\",\"Fashion\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:21:{s:4:\"tmpl\";i:1898;s:2:\"id\";i:31486;s:5:\"title\";s:16:\"Portfolio Food 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2024/06/Portfolio-Food-cover-2.jpg\";s:12:\"tmpl_created\";i:1719230679;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/portfolio-food-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:\"Link in Bio\";s:4:\"tags\";s:44:\"[\"Flexbox\",\"Food\",\"Link in Bio\",\"Portfolio\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:21:{s:4:\"tmpl\";i:1878;s:2:\"id\";i:31272;s:5:\"title\";s:32:\"Fashion and Beauty Business Card\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2024/06/fashion-card-preview.jpg\";s:12:\"tmpl_created\";i:1719222409;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/blocks/fashion-and-beauty-business-card/?utm_source=template-library&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:\"Link in Bio\";s:4:\"tags\";s:44:\"[\"Beauty\",\"Fashion\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:21:{s:4:\"tmpl\";i:1877;s:2:\"id\";i:31408;s:5:\"title\";s:33:\"Health and Wellness Business Card\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2024/06/health-card-preview.jpg\";s:12:\"tmpl_created\";i:1719222401;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/blocks/health-and-wellness-business-card/?utm_source=template-library&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:\"Link in Bio\";s:4:\"tags\";s:45:\"[\"Flexbox\",\"Health\",\"Link in Bio\",\"Wellness\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:21:{s:4:\"tmpl\";i:1876;s:2:\"id\";i:30751;s:5:\"title\";s:17:\"Law Business Card\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2024/06/law-card-preview-1-1.jpg\";s:12:\"tmpl_created\";i:1719222395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/law-business-card/?utm_source=template-library&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:\"Link in Bio\";s:4:\"tags\";s:42:\"[\"Flexbox\",\"Law\",\"Law Firm\",\"Link in Bio\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:21:{s:4:\"tmpl\";i:1875;s:2:\"id\";i:31342;s:5:\"title\";s:25:\"Links Health and Wellness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2024/06/Links-Food-cover.jpg\";s:12:\"tmpl_created\";i:1719222392;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/links-health-and-wellness/?utm_source=template-library&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:\"Link in Bio\";s:4:\"tags\";s:45:\"[\"Flexbox\",\"Health\",\"Link in Bio\",\"Wellness\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:21:{s:4:\"tmpl\";i:1873;s:2:\"id\";i:31195;s:5:\"title\";s:9:\"Links Law\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2024/06/law-links-preview.jpg\";s:12:\"tmpl_created\";i:1719222389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/links-law/?utm_source=template-library&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:\"Link in Bio\";s:4:\"tags\";s:42:\"[\"Flexbox\",\"Law\",\"Law Firm\",\"Link in Bio\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:21:{s:4:\"tmpl\";i:1872;s:2:\"id\";i:30689;s:5:\"title\";s:17:\"Links Photography\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2024/06/links-photo.jpg\";s:12:\"tmpl_created\";i:1719222373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/links-photography/?utm_source=template-library&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:\"Link in Bio\";s:4:\"tags\";s:39:\"[\"Flexbox\",\"Link in Bio\",\"Photography\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:21:{s:4:\"tmpl\";i:1871;s:2:\"id\";i:30622;s:5:\"title\";s:22:\"Minimalist Education 1\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2024/06/Minimalist-Education-cover-1.jpg\";s:12:\"tmpl_created\";i:1719222353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/minimalist-education-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:11:\"Link in Bio\";s:4:\"tags\";s:37:\"[\"Education\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:21:{s:4:\"tmpl\";i:1870;s:2:\"id\";i:30620;s:5:\"title\";s:22:\"Minimalist Education 2\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2024/06/Minimalist-Education-cover-2.jpg\";s:12:\"tmpl_created\";i:1719222342;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/minimalist-education-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:11:\"Link in Bio\";s:4:\"tags\";s:37:\"[\"Education\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:160;a:21:{s:4:\"tmpl\";i:1869;s:2:\"id\";i:30621;s:5:\"title\";s:31:\"Minimalist Fashion and Beauty 1\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2024/06/fashion-classic-preview-1.jpg\";s:12:\"tmpl_created\";i:1719221336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/blocks/minimalist-fashion-and-beauty-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:11:\"Link in Bio\";s:4:\"tags\";s:44:\"[\"Beauty\",\"Fashion\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:161;a:21:{s:4:\"tmpl\";i:1868;s:2:\"id\";i:30771;s:5:\"title\";s:31:\"Minimalist Fashion and Beauty 2\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2024/06/fashion-minimalist-preview-2.jpg\";s:12:\"tmpl_created\";i:1719221196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/blocks/minimalist-fashion-and-beauty-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:11:\"Link in Bio\";s:4:\"tags\";s:44:\"[\"Beauty\",\"Fashion\",\"Flexbox\",\"Link in Bio\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:162;a:21:{s:4:\"tmpl\";i:1867;s:2:\"id\";i:30431;s:5:\"title\";s:16:\"Minimalist Law 1\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2024/06/law-minimalist-preview.jpg\";s:12:\"tmpl_created\";i:1719221186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/minimalist-law-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:11:\"Link in Bio\";s:4:\"tags\";s:42:\"[\"Flexbox\",\"Law\",\"Law Firm\",\"Link in Bio\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:21:{s:4:\"tmpl\";i:1866;s:2:\"id\";i:30443;s:5:\"title\";s:16:\"Minimalist Law 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2024/06/law-minimalist-2-preview.jpg\";s:12:\"tmpl_created\";i:1719221179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/minimalist-law-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:11:\"Link in Bio\";s:4:\"tags\";s:42:\"[\"Flexbox\",\"Law\",\"Law Firm\",\"Link in Bio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:164;a:21:{s:4:\"tmpl\";i:1901;s:2:\"id\";i:31330;s:5:\"title\";s:15:\"Showcase Food 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2024/06/Showcase-Food-cover-1.jpg\";s:12:\"tmpl_created\";i:1719230867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/showcase-food-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:\"Link in Bio\";s:4:\"tags\";s:32:\"[\"Flexbox\",\"Food\",\"Link in Bio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:165;a:21:{s:4:\"tmpl\";i:1899;s:2:\"id\";i:31438;s:5:\"title\";s:15:\"Services Food 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2024/06/Services-Food-cover-1.jpg\";s:12:\"tmpl_created\";i:1719230716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/services-food-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:\"Link in Bio\";s:4:\"tags\";s:43:\"[\"Flexbox\",\"Food\",\"Link in Bio\",\"Services\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.23.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:21:{s:4:\"tmpl\";i:1665;s:2:\"id\";i:28399;s:5:\"title\";s:41:\"Local Services Wireframe 1 &#8211; Footer\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/10/Wireframe1-footer-350.jpg\";s:12:\"tmpl_created\";i:1670405320;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/blocks/local-services-wireframe-1-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:20:\"[\"Flexbox\",\"Footer\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:21:{s:4:\"tmpl\";i:1454;s:2:\"id\";i:27901;s:5:\"title\";s:41:\"Barbershop &#8211; Footer &#8211; Flexbox\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1670246294;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/barbershop-footer-flexbox/?utm_source=template-library&utm_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:47:\"[\"Barber Shop\",\"Barbershop\",\"Flexbox\",\"Footer\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:21:{s:4:\"tmpl\";i:1455;s:2:\"id\";i:28010;s:5:\"title\";s:41:\"Barbershop &#8211; Header &#8211; Flexbox\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1670315823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/barbershop-header-flexbox/?utm_source=template-library&utm_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:47:\"[\"Barber Shop\",\"Barbershop\",\"Flexbox\",\"Header\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:21:{s:4:\"tmpl\";i:1463;s:2:\"id\";i:27994;s:5:\"title\";s:43:\"Dance Studio &#8211; Header &#8211; Flexbox\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1670340716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/dance-studio-header-flexbox/?utm_source=template-library&utm_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:81;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:21:{s:4:\"tmpl\";i:1464;s:2:\"id\";i:28029;s:5:\"title\";s:50:\"Japanese Restaurant &#8211; Header &#8211; Flexbox\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1670341172;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/blocks/japanese-restaurant-header-flexbox/?utm_source=template-library&utm_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:82;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:21:{s:4:\"tmpl\";i:1465;s:2:\"id\";i:28037;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1670341270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/law-firm-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:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:172;a:21:{s:4:\"tmpl\";i:1549;s:2:\"id\";i:29161;s:5:\"title\";s:23:\"Recipe Blog &#8211; 404\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/11/15-Recipe-Blog.jpg\";s:12:\"tmpl_created\";i:1670399512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/recipe-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:14:\"[\"404\",\"Blog\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:21:{s:4:\"tmpl\";i:1466;s:2:\"id\";i:28048;s:5:\"title\";s:34:\"Gym &#8211; Header &#8211; Flexbox\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1670341332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/gym-header-flexbox/?utm_source=template-library&utm_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:85;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:21:{s:4:\"tmpl\";i:1467;s:2:\"id\";i:27967;s:5:\"title\";s:37:\"Travel &#8211; Footer &#8211; Flexbox\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1670341944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-footer-flexbox/?utm_source=template-library&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:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:21:{s:4:\"tmpl\";i:1475;s:2:\"id\";i:29154;s:5:\"title\";s:22:\"Music Blog &#8211; 404\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2022/11/13-Music-Blog.jpg\";s:12:\"tmpl_created\";i:1670352130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/music-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:32:\"[\"404\",\"Event\",\"Events\",\"Music\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:21:{s:4:\"tmpl\";i:1470;s:2:\"id\";i:27975;s:5:\"title\";s:49:\"Luxury Real Estate &#8211; Footer &#8211; Flexbox\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1670342352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/blocks/luxury-real-estate-footer-flexbox/?utm_source=template-library&utm_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:88;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:21:{s:4:\"tmpl\";i:1588;s:2:\"id\";i:27060;s:5:\"title\";s:32:\"Marketing Agency &#8211; About 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/About-2.jpg\";s:12:\"tmpl_created\";i:1670403186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/marketing-agency-about-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:5:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:21:{s:4:\"tmpl\";i:1469;s:2:\"id\";i:27938;s:5:\"title\";s:42:\"Travel Blog &#8211; Footer &#8211; Flexbox\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1670342307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/travel-blog-footer-flexbox/?utm_source=template-library&utm_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:\"[\"Blog\",\"Flexbox\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:179;a:21:{s:4:\"tmpl\";i:1764;s:2:\"id\";i:29370;s:5:\"title\";s:32:\"Interior Design Firm &#8211; 404\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/12/3-Interior-Design-Firm.jpg\";s:12:\"tmpl_created\";i:1670413998;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/interior-design-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:111:\"[\"404\",\"Accommodation\",\"Art\",\"Creative\",\"Design\",\"Flexbox\",\"Furniture Design\",\"Interior Design\",\"Professional\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:21:{s:4:\"tmpl\";i:1710;s:2:\"id\";i:29325;s:5:\"title\";s:26:\"Clothing Store &#8211; 404\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/12/1-Clothing-Store.jpg\";s:12:\"tmpl_created\";i:1670409968;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/clothing-store-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:55:\"[\"404\",\"Ecommerce\",\"Fashion\",\"Flexbox\",\"Modern\",\"Shop\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:21:{s:4:\"tmpl\";i:1718;s:2:\"id\";i:29340;s:5:\"title\";s:25:\"Travel Agency &#8211; 404\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/12/2-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1670410699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/travel-agency-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\",\"Agency\",\"Travel\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:21:{s:4:\"tmpl\";i:1557;s:2:\"id\";i:29187;s:5:\"title\";s:27:\"Basic Wear Shop &#8211; 404\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/11/17-Basic-Wear-Shop.jpg\";s:12:\"tmpl_created\";i:1670399814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/basic-wear-shop-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:26:\"[\"404\",\"Ecommerce\",\"Shop\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:21:{s:4:\"tmpl\";i:1777;s:2:\"id\";i:28002;s:5:\"title\";s:43:\"Beauty Salon &#8211; Header &#8211; Flexbox\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1670415290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/beauty-salon-header-flexbox/?utm_source=template-library&utm_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:95;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:21:{s:4:\"tmpl\";i:1563;s:2:\"id\";i:28118;s:5:\"title\";s:38:\"Blog Wireframe 1 &#8211; Posts Archive\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/09/Blog-Wireframe1-Archive-350.jpg\";s:12:\"tmpl_created\";i:1670401388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/blog-wireframe-1-posts-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:36:\"[\"Archive\",\"Blog\",\"Flexbox\",\"posts\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:185;a:21:{s:4:\"tmpl\";i:1672;s:2:\"id\";i:28108;s:5:\"title\";s:36:\"Blog Wireframe 1 &#8211; Single Post\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/09/Blog-Wireframe1-Single-350.jpg\";s:12:\"tmpl_created\";i:1670407389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/blog-wireframe-1-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:34:\"[\"Blog\",\"Flexbox\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:186;a:21:{s:4:\"tmpl\";i:1456;s:2:\"id\";i:25505;s:5:\"title\";s:15:\"Boxing Club 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2022/09/404-2.jpg\";s:12:\"tmpl_created\";i:1670332120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/boxing-club-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:17:\"[\"404\",\"Flexbox\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:21:{s:4:\"tmpl\";i:1458;s:2:\"id\";i:25519;s:5:\"title\";s:19:\"Boxing Club About 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/About-5.jpg\";s:12:\"tmpl_created\";i:1670333831;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/boxing-club-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:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:188;a:21:{s:4:\"tmpl\";i:1459;s:2:\"id\";i:25524;s:5:\"title\";s:19:\"Boxing Club About 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/About-6.jpg\";s:12:\"tmpl_created\";i:1670333989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/boxing-club-about-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:5:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:189;a:21:{s:4:\"tmpl\";i:1493;s:2:\"id\";i:25534;s:5:\"title\";s:19:\"Boxing Club About 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/About-4.jpg\";s:12:\"tmpl_created\";i:1670397426;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/boxing-club-about-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:5:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:21:{s:4:\"tmpl\";i:1496;s:2:\"id\";i:25543;s:5:\"title\";s:22:\"Boxing Club Benefits 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Benefites-4.jpg\";s:12:\"tmpl_created\";i:1670397608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/boxing-club-benefits-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:8:\"Benefits\";s:4:\"tags\";s:22:\"[\"Benefits\",\"Flexbox\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:21:{s:4:\"tmpl\";i:1497;s:2:\"id\";i:25549;s:5:\"title\";s:22:\"Boxing Club Benefits 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Benefites-5.jpg\";s:12:\"tmpl_created\";i:1670397614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/boxing-club-benefits-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:8:\"Benefits\";s:4:\"tags\";s:22:\"[\"Benefits\",\"Flexbox\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:21:{s:4:\"tmpl\";i:1498;s:2:\"id\";i:25558;s:5:\"title\";s:22:\"Boxing Club Benefits 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Benefites-6.jpg\";s:12:\"tmpl_created\";i:1670397617;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/boxing-club-benefits-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:\"Benefits\";s:4:\"tags\";s:22:\"[\"Benefits\",\"Flexbox\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:21:{s:4:\"tmpl\";i:1499;s:2:\"id\";i:25564;s:5:\"title\";s:21:\"Boxing Club Contact 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Contact-5.jpg\";s:12:\"tmpl_created\";i:1670397720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/boxing-club-contact-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:\"contact\";s:4:\"tags\";s:28:\"[\"Contact\",\"Flexbox\",\"Form\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:21:{s:4:\"tmpl\";i:1500;s:2:\"id\";i:25573;s:5:\"title\";s:21:\"Boxing Club Contact 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Contact-6.jpg\";s:12:\"tmpl_created\";i:1670397726;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/boxing-club-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:28:\"[\"Contact\",\"Flexbox\",\"Form\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:21:{s:4:\"tmpl\";i:1501;s:2:\"id\";i:25633;s:5:\"title\";s:21:\"Boxing Club Contact 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Contact-4.jpg\";s:12:\"tmpl_created\";i:1670397730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/boxing-club-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:21:\"[\"Contact\",\"Flexbox\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:21:{s:4:\"tmpl\";i:1502;s:2:\"id\";i:25640;s:5:\"title\";s:17:\"Boxing Club CTA 1\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2022/09/CTA-5.jpg\";s:12:\"tmpl_created\";i:1670397855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/boxing-club-cta-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:14:\"call to action\";s:4:\"tags\";s:17:\"[\"cta\",\"Flexbox\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:21:{s:4:\"tmpl\";i:1503;s:2:\"id\";i:25649;s:5:\"title\";s:17:\"Boxing Club CTA 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2022/09/CTA-7.jpg\";s:12:\"tmpl_created\";i:1670397860;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/boxing-club-cta-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:14:\"call to action\";s:4:\"tags\";s:17:\"[\"cta\",\"Flexbox\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:21:{s:4:\"tmpl\";i:1504;s:2:\"id\";i:25658;s:5:\"title\";s:17:\"Boxing Club CTA 3\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2022/09/CTA-8.jpg\";s:12:\"tmpl_created\";i:1670397865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/boxing-club-cta-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:14:\"call to action\";s:4:\"tags\";s:17:\"[\"cta\",\"Flexbox\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:21:{s:4:\"tmpl\";i:1505;s:2:\"id\";i:25664;s:5:\"title\";s:17:\"Boxing Club CTA 4\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2022/09/CTA-6.jpg\";s:12:\"tmpl_created\";i:1670397869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/boxing-club-cta-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:14:\"call to action\";s:4:\"tags\";s:17:\"[\"cta\",\"Flexbox\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:21:{s:4:\"tmpl\";i:1509;s:2:\"id\";i:25673;s:5:\"title\";s:17:\"Boxing Club FAQ 1\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2022/09/FAQ-6.jpg\";s:12:\"tmpl_created\";i:1670398070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/boxing-club-faq-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:3:\"faq\";s:4:\"tags\";s:17:\"[\"Faq\",\"Flexbox\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:21:{s:4:\"tmpl\";i:1510;s:2:\"id\";i:25682;s:5:\"title\";s:17:\"Boxing Club FAQ 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2022/09/FAQ-5.jpg\";s:12:\"tmpl_created\";i:1670398076;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/boxing-club-faq-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:3:\"faq\";s:4:\"tags\";s:17:\"[\"Faq\",\"Flexbox\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:21:{s:4:\"tmpl\";i:1511;s:2:\"id\";i:25691;s:5:\"title\";s:17:\"Boxing Club FAQ 3\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2022/09/FAQ-7.jpg\";s:12:\"tmpl_created\";i:1670398080;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/boxing-club-faq-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:3:\"faq\";s:4:\"tags\";s:17:\"[\"Faq\",\"Flexbox\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:21:{s:4:\"tmpl\";i:1512;s:2:\"id\";i:25697;s:5:\"title\";s:17:\"Boxing Club FAQ 4\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2022/09/FAQ-8.jpg\";s:12:\"tmpl_created\";i:1670398084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/boxing-club-faq-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:3:\"faq\";s:4:\"tags\";s:17:\"[\"Faq\",\"Flexbox\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:21:{s:4:\"tmpl\";i:1506;s:2:\"id\";i:25703;s:5:\"title\";s:21:\"Boxing Club Gallery 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Gallery-3.jpg\";s:12:\"tmpl_created\";i:1670397973;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/boxing-club-gallery-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:\"Gallery\";s:4:\"tags\";s:21:\"[\"Flexbox\",\"Gallery\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:21:{s:4:\"tmpl\";i:1507;s:2:\"id\";i:25712;s:5:\"title\";s:21:\"Boxing Club Gallery 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Gallery-4.jpg\";s:12:\"tmpl_created\";i:1670397978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/boxing-club-gallery-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:\"Gallery\";s:4:\"tags\";s:21:\"[\"Flexbox\",\"Gallery\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:21:{s:4:\"tmpl\";i:1514;s:2:\"id\";i:25719;s:5:\"title\";s:18:\"Boxing Club Hero 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/Hero-11.jpg\";s:12:\"tmpl_created\";i:1670398227;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/boxing-club-hero-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:\"hero\";s:4:\"tags\";s:18:\"[\"Flexbox\",\"hero\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:21:{s:4:\"tmpl\";i:1540;s:2:\"id\";i:25613;s:5:\"title\";s:18:\"Boxing Club Hero 2\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2022/12/Hero-2.jpg\";s:12:\"tmpl_created\";i:1670399199;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/boxing-club-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:11:\"[\"Flexbox\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:21:{s:4:\"tmpl\";i:1515;s:2:\"id\";i:25728;s:5:\"title\";s:18:\"Boxing Club Hero 3\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2022/09/Hero-4.jpg\";s:12:\"tmpl_created\";i:1670398296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/boxing-club-hero-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:4:\"hero\";s:4:\"tags\";s:18:\"[\"Flexbox\",\"hero\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:21:{s:4:\"tmpl\";i:1518;s:2:\"id\";i:25737;s:5:\"title\";s:21:\"Boxing Club Pricing 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Pricing-5.jpg\";s:12:\"tmpl_created\";i:1670398508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/boxing-club-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:21:\"[\"Flexbox\",\"Pricing\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:21:{s:4:\"tmpl\";i:1519;s:2:\"id\";i:25749;s:5:\"title\";s:21:\"Boxing Club Pricing 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Pricing-6.jpg\";s:12:\"tmpl_created\";i:1670398530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/boxing-club-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:21:\"[\"Flexbox\",\"Pricing\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:21:{s:4:\"tmpl\";i:1520;s:2:\"id\";i:25758;s:5:\"title\";s:21:\"Boxing Club Pricing 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Pricing-8.jpg\";s:12:\"tmpl_created\";i:1670398568;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/boxing-club-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:21:\"[\"Flexbox\",\"Pricing\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:21:{s:4:\"tmpl\";i:1521;s:2:\"id\";i:25767;s:5:\"title\";s:21:\"Boxing Club Pricing 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Pricing-8-1.jpg\";s:12:\"tmpl_created\";i:1670398580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/boxing-club-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:21:\"[\"Flexbox\",\"Pricing\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:21:{s:4:\"tmpl\";i:1522;s:2:\"id\";i:25774;s:5:\"title\";s:19:\"Boxing Club Quote 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/Quate-4.jpg\";s:12:\"tmpl_created\";i:1670398694;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/boxing-club-quote-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:5:\"Quote\";s:4:\"tags\";s:19:\"[\"Flexbox\",\"Quote\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:21:{s:4:\"tmpl\";i:1523;s:2:\"id\";i:25783;s:5:\"title\";s:19:\"Boxing Club Quote 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/Quate-2.jpg\";s:12:\"tmpl_created\";i:1670398699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/boxing-club-quote-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:5:\"Quote\";s:4:\"tags\";s:19:\"[\"Flexbox\",\"Quote\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:21:{s:4:\"tmpl\";i:1524;s:2:\"id\";i:25789;s:5:\"title\";s:19:\"Boxing Club Quote 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/Quate-5.jpg\";s:12:\"tmpl_created\";i:1670398703;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/boxing-club-quote-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:5:\"Quote\";s:4:\"tags\";s:19:\"[\"Flexbox\",\"Quote\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:21:{s:4:\"tmpl\";i:1526;s:2:\"id\";i:25798;s:5:\"title\";s:29:\"Boxing Club Service details 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/09/Service-details-4.jpg\";s:12:\"tmpl_created\";i:1670398800;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/boxing-club-service-details-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:15:\"Service Details\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:217;a:21:{s:4:\"tmpl\";i:1527;s:2:\"id\";i:25807;s:5:\"title\";s:29:\"Boxing Club Service details 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/09/Service-details-5.jpg\";s:12:\"tmpl_created\";i:1670398803;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/boxing-club-service-details-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:15:\"Service Details\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:21:{s:4:\"tmpl\";i:1528;s:2:\"id\";i:25816;s:5:\"title\";s:29:\"Boxing Club Service details 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/09/Service-details-6.jpg\";s:12:\"tmpl_created\";i:1670398808;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/boxing-club-service-details-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:15:\"Service Details\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:21:{s:4:\"tmpl\";i:1529;s:2:\"id\";i:25828;s:5:\"title\";s:22:\"Boxing Club Services 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-4.jpg\";s:12:\"tmpl_created\";i:1670398877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/boxing-club-services-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:8:\"services\";s:4:\"tags\";s:22:\"[\"Flexbox\",\"Services\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:21:{s:4:\"tmpl\";i:1530;s:2:\"id\";i:25837;s:5:\"title\";s:22:\"Boxing Club Services 2\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-2.jpg\";s:12:\"tmpl_created\";i:1670398900;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/boxing-club-services-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:8:\"services\";s:4:\"tags\";s:22:\"[\"Flexbox\",\"Services\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:21:{s:4:\"tmpl\";i:1531;s:2:\"id\";i:25843;s:5:\"title\";s:22:\"Boxing Club Services 3\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-3.jpg\";s:12:\"tmpl_created\";i:1670398925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/boxing-club-services-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:\"services\";s:4:\"tags\";s:22:\"[\"Flexbox\",\"Services\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:21:{s:4:\"tmpl\";i:1532;s:2:\"id\";i:25849;s:5:\"title\";s:19:\"Boxing Club Stats 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/Stats-5.jpg\";s:12:\"tmpl_created\";i:1670399005;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/boxing-club-stats-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:\"Data\";s:4:\"tags\";s:19:\"[\"Flexbox\",\"Stats\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:223;a:21:{s:4:\"tmpl\";i:1534;s:2:\"id\";i:25855;s:5:\"title\";s:19:\"Boxing Club Stats 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/Stats-4.jpg\";s:12:\"tmpl_created\";i:1670399025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/boxing-club-stats-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:\"Data\";s:4:\"tags\";s:19:\"[\"Flexbox\",\"Stats\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:21:{s:4:\"tmpl\";i:1535;s:2:\"id\";i:25867;s:5:\"title\";s:19:\"Boxing Club Stats 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/Stats-6.jpg\";s:12:\"tmpl_created\";i:1670399041;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/boxing-club-stats-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:4:\"Data\";s:4:\"tags\";s:19:\"[\"Flexbox\",\"Stats\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:21:{s:4:\"tmpl\";i:1537;s:2:\"id\";i:25876;s:5:\"title\";s:23:\"Boxing Club Subscribe 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Subscribe-2.jpg\";s:12:\"tmpl_created\";i:1670399099;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/boxing-club-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:23:\"[\"Flexbox\",\"Subscribe\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:21:{s:4:\"tmpl\";i:1542;s:2:\"id\";i:25885;s:5:\"title\";s:23:\"Boxing Club Subscribe 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Subscirbe-2.jpg\";s:12:\"tmpl_created\";i:1670399292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/boxing-club-subscribe-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:23:\"[\"Flexbox\",\"Subscribe\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:21:{s:4:\"tmpl\";i:1544;s:2:\"id\";i:25894;s:5:\"title\";s:18:\"Boxing Club Team 1\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2022/09/Team-5.jpg\";s:12:\"tmpl_created\";i:1670399395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/boxing-club-team-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:\"team\";s:4:\"tags\";s:18:\"[\"Flexbox\",\"Team\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:21:{s:4:\"tmpl\";i:1673;s:2:\"id\";i:28075;s:5:\"title\";s:37:\"Ecommerce Wireframe 1 &#8211; Archive\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/09/Ecommerce-Wireframe-1-Archive-350.jpg\";s:12:\"tmpl_created\";i:1670407438;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/ecommerce-wireframe-1-archive/?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:32:\"[\"Archive\",\"Flexbox\",\"Products\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:21:{s:4:\"tmpl\";i:1545;s:2:\"id\";i:25900;s:5:\"title\";s:18:\"Boxing Club Team 2\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2022/09/Team-6.jpg\";s:12:\"tmpl_created\";i:1670399416;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/boxing-club-team-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:18:\"[\"Flexbox\",\"Team\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:21:{s:4:\"tmpl\";i:1674;s:2:\"id\";i:28065;s:5:\"title\";s:44:\"Ecommerce Wireframe 1 &#8211; Single Product\";s:9:\"thumbnail\";s:105:\"https://library.elementor.com/wp-content/uploads/2022/09/Ecommerce-Wireframe1-Single-Product-Page-350.jpg\";s:12:\"tmpl_created\";i:1670407478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/blocks/ecommerce-wireframe-1-single-product/?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:42:\"[\"Ecommerce\",\"Flexbox\",\"Products\",\"singl\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:21:{s:4:\"tmpl\";i:1546;s:2:\"id\";i:25906;s:5:\"title\";s:18:\"Boxing Club Team 3\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2022/09/Team-7.jpg\";s:12:\"tmpl_created\";i:1670399434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/boxing-club-team-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:4:\"team\";s:4:\"tags\";s:18:\"[\"Flexbox\",\"Team\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:21:{s:4:\"tmpl\";i:1548;s:2:\"id\";i:25912;s:5:\"title\";s:18:\"Boxing Club Team 4\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2022/09/Team-8.jpg\";s:12:\"tmpl_created\";i:1670399483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/boxing-club-team-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:\"team\";s:4:\"tags\";s:18:\"[\"Flexbox\",\"Team\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:21:{s:4:\"tmpl\";i:1676;s:2:\"id\";i:28146;s:5:\"title\";s:44:\"Ecommerce Wireframe 2 &#8211; Single Product\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/09/Home-Decor-Shop-single-product-350.jpg\";s:12:\"tmpl_created\";i:1670407530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/blocks/ecommerce-wireframe-2-single-product/?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:46:\"[\"Ecommerce\",\"Flexbox\",\"Single\",\"woocommerce\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:21:{s:4:\"tmpl\";i:1550;s:2:\"id\";i:25927;s:5:\"title\";s:26:\"Boxing Club Testimonials 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/09/Testemonials-7.jpg\";s:12:\"tmpl_created\";i:1670399544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/boxing-club-testimonials-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:\"clients\";s:4:\"tags\";s:35:\"[\"Clients\",\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:21:{s:4:\"tmpl\";i:1551;s:2:\"id\";i:25951;s:5:\"title\";s:26:\"Boxing Club Testimonials 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/09/Testemonials-8.jpg\";s:12:\"tmpl_created\";i:1670399568;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/boxing-club-testimonials-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:35:\"[\"Clients\",\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:21:{s:4:\"tmpl\";i:1553;s:2:\"id\";i:25443;s:5:\"title\";s:26:\"Boxing Club Testimonials 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/09/Testemonials-9.jpg\";s:12:\"tmpl_created\";i:1670399593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/boxing-club-testimonials-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:12:\"testimonials\";s:4:\"tags\";s:25:\"[\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:21:{s:4:\"tmpl\";i:1554;s:2:\"id\";i:25957;s:5:\"title\";s:26:\"Boxing Club Testimonials 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/09/Testemonials-10.jpg\";s:12:\"tmpl_created\";i:1670399659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/boxing-club-testimonials-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:12:\"testimonials\";s:4:\"tags\";s:35:\"[\"Clients\",\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:238;a:21:{s:4:\"tmpl\";i:1555;s:2:\"id\";i:25977;s:5:\"title\";s:26:\"Boxing Club Testimonials 5\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/09/Testemonials-6.jpg\";s:12:\"tmpl_created\";i:1670399677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/boxing-club-testimonials-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:\"clients\";s:4:\"tags\";s:35:\"[\"Clients\",\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:21:{s:4:\"tmpl\";i:1570;s:2:\"id\";i:27546;s:5:\"title\";s:41:\"Business Consultant &#8211; 404 &#8211; 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2022/09/404-6.jpg\";s:12:\"tmpl_created\";i:1670402260;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/business-consultant-404-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:8:\"404 page\";s:4:\"tags\";s:17:\"[\"404\",\"Flexbox\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:21:{s:4:\"tmpl\";i:1572;s:2:\"id\";i:27555;s:5:\"title\";s:41:\"Business Consultant &#8211; 404 &#8211; 3\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2022/09/404-5.jpg\";s:12:\"tmpl_created\";i:1670402296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/business-consultant-404-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:17:\"[\"404\",\"Flexbox\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:21:{s:4:\"tmpl\";i:1574;s:2:\"id\";i:27561;s:5:\"title\";s:35:\"Business Consultant &#8211; About 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/About-5-3.jpg\";s:12:\"tmpl_created\";i:1670402343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/business-consultant-about-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:5:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:21:{s:4:\"tmpl\";i:1576;s:2:\"id\";i:27567;s:5:\"title\";s:35:\"Business Consultant &#8211; About 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/About-6-2.jpg\";s:12:\"tmpl_created\";i:1670402443;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/business-consultant-about-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:5:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:243;a:21:{s:4:\"tmpl\";i:1578;s:2:\"id\";i:27573;s:5:\"title\";s:35:\"Business Consultant &#8211; About 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/About-7-1.jpg\";s:12:\"tmpl_created\";i:1670402589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/business-consultant-about-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:5:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:21:{s:4:\"tmpl\";i:1581;s:2:\"id\";i:27578;s:5:\"title\";s:35:\"Business Consultant &#8211; About 4\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/About-8.jpg\";s:12:\"tmpl_created\";i:1670402663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/business-consultant-about-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:5:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:245;a:21:{s:4:\"tmpl\";i:1612;s:2:\"id\";i:27590;s:5:\"title\";s:38:\"Business Consultant &#8211; Benefits 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2022/09/Benefites-6-2.jpg\";s:12:\"tmpl_created\";i:1670403994;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/business-consultant-benefits-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:8:\"Benefits\";s:4:\"tags\";s:22:\"[\"Benefits\",\"Flexbox\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:21:{s:4:\"tmpl\";i:1614;s:2:\"id\";i:27596;s:5:\"title\";s:38:\"Business Consultant &#8211; Benefits 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2022/09/Benefites-7-1.jpg\";s:12:\"tmpl_created\";i:1670404086;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/business-consultant-benefits-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:\"Benefits\";s:4:\"tags\";s:22:\"[\"Benefits\",\"Flexbox\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:247;a:21:{s:4:\"tmpl\";i:1615;s:2:\"id\";i:27602;s:5:\"title\";s:38:\"Business Consultant &#8211; Benefits 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2022/09/Benefites-8-1.jpg\";s:12:\"tmpl_created\";i:1670404131;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/business-consultant-benefits-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:8:\"Benefits\";s:4:\"tags\";s:22:\"[\"Benefits\",\"Flexbox\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:248;a:21:{s:4:\"tmpl\";i:1618;s:2:\"id\";i:27608;s:5:\"title\";s:37:\"Business Consultant &#8211; Clients 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Clients-1.jpg\";s:12:\"tmpl_created\";i:1670404203;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/business-consultant-clients-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:\"clients\";s:4:\"tags\";s:21:\"[\"Clients\",\"Flexbox\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:21:{s:4:\"tmpl\";i:1620;s:2:\"id\";i:27614;s:5:\"title\";s:37:\"Business Consultant &#8211; Clients 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Clients-4.jpg\";s:12:\"tmpl_created\";i:1670404291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/business-consultant-clients-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:21:\"[\"Clients\",\"Flexbox\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:21:{s:4:\"tmpl\";i:1668;s:2:\"id\";i:27622;s:5:\"title\";s:37:\"Business Consultant &#8211; Clients 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Clients-5.jpg\";s:12:\"tmpl_created\";i:1670406150;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/business-consultant-clients-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:\"clients\";s:4:\"tags\";s:21:\"[\"Clients\",\"Flexbox\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:21:{s:4:\"tmpl\";i:1669;s:2:\"id\";i:27631;s:5:\"title\";s:37:\"Business Consultant &#8211; Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Contact-5-2.jpg\";s:12:\"tmpl_created\";i:1670406220;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/business-consultant-contact-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:\"contact\";s:4:\"tags\";s:28:\"[\"Contact\",\"Flexbox\",\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:21:{s:4:\"tmpl\";i:1670;s:2:\"id\";i:27647;s:5:\"title\";s:37:\"Business Consultant &#8211; Contact 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Contact-6-2.jpg\";s:12:\"tmpl_created\";i:1670406636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/business-consultant-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:28:\"[\"Contact\",\"Flexbox\",\"Form\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:21:{s:4:\"tmpl\";i:1671;s:2:\"id\";i:27653;s:5:\"title\";s:37:\"Business Consultant &#8211; Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Contact-8-1.jpg\";s:12:\"tmpl_created\";i:1670407095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/business-consultant-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:28:\"[\"Contact\",\"Flexbox\",\"Form\"]\";s:10:\"menu_order\";i:165;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:21:{s:4:\"tmpl\";i:1675;s:2:\"id\";i:27659;s:5:\"title\";s:37:\"Business Consultant &#8211; Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Contact-7-1.jpg\";s:12:\"tmpl_created\";i:1670407484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/business-consultant-contact-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:\"contact\";s:4:\"tags\";s:28:\"[\"Contact\",\"Flexbox\",\"Form\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:255;a:21:{s:4:\"tmpl\";i:1679;s:2:\"id\";i:27666;s:5:\"title\";s:33:\"Business Consultant &#8211; CTA 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/CTA-4-2.jpg\";s:12:\"tmpl_created\";i:1670407895;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/business-consultant-cta-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:14:\"call to action\";s:4:\"tags\";s:17:\"[\"cta\",\"Flexbox\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:21:{s:4:\"tmpl\";i:1680;s:2:\"id\";i:27672;s:5:\"title\";s:33:\"Business Consultant &#8211; CTA 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/CTA-6-3.jpg\";s:12:\"tmpl_created\";i:1670408012;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/business-consultant-cta-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:14:\"call to action\";s:4:\"tags\";s:17:\"[\"cta\",\"Flexbox\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:21:{s:4:\"tmpl\";i:1681;s:2:\"id\";i:27678;s:5:\"title\";s:33:\"Business Consultant &#8211; CTA 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/CTA-5-3.jpg\";s:12:\"tmpl_created\";i:1670408032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/business-consultant-cta-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:14:\"call to action\";s:4:\"tags\";s:17:\"[\"cta\",\"Flexbox\"]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:258;a:21:{s:4:\"tmpl\";i:1682;s:2:\"id\";i:27684;s:5:\"title\";s:33:\"Business Consultant &#8211; FAQ 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/FAQ-7-1.jpg\";s:12:\"tmpl_created\";i:1670408054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/business-consultant-faq-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:3:\"faq\";s:4:\"tags\";s:17:\"[\"Faq\",\"Flexbox\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:21:{s:4:\"tmpl\";i:1683;s:2:\"id\";i:27690;s:5:\"title\";s:33:\"Business Consultant &#8211; FAQ 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/FAQ-8-1.jpg\";s:12:\"tmpl_created\";i:1670408074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/business-consultant-faq-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:3:\"faq\";s:4:\"tags\";s:17:\"[\"Faq\",\"Flexbox\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:21:{s:4:\"tmpl\";i:1684;s:2:\"id\";i:27699;s:5:\"title\";s:33:\"Business Consultant &#8211; FAQ 3\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2022/09/FAQ-9.jpg\";s:12:\"tmpl_created\";i:1670408094;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/business-consultant-faq-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:3:\"faq\";s:4:\"tags\";s:17:\"[\"Faq\",\"Flexbox\"]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:21:{s:4:\"tmpl\";i:1685;s:2:\"id\";i:27705;s:5:\"title\";s:33:\"Business Consultant &#8211; FAQ 4\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2022/09/FAQ-10.jpg\";s:12:\"tmpl_created\";i:1670408116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/business-consultant-faq-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:3:\"faq\";s:4:\"tags\";s:17:\"[\"Faq\",\"Flexbox\"]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:21:{s:4:\"tmpl\";i:1686;s:2:\"id\";i:27711;s:5:\"title\";s:33:\"Business Consultant &#8211; FAQ 5\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2022/09/FAQ-11.jpg\";s:12:\"tmpl_created\";i:1670408133;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/business-consultant-faq-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:3:\"faq\";s:4:\"tags\";s:17:\"[\"Faq\",\"Flexbox\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:21:{s:4:\"tmpl\";i:1688;s:2:\"id\";i:27717;s:5:\"title\";s:33:\"Business Consultant &#8211; FAQ 6\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2022/09/FAQ-12.jpg\";s:12:\"tmpl_created\";i:1670408193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/business-consultant-faq-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:3:\"faq\";s:4:\"tags\";s:17:\"[\"Faq\",\"Flexbox\"]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:21:{s:4:\"tmpl\";i:1689;s:2:\"id\";i:27723;s:5:\"title\";s:34:\"Business Consultant &#8211; Hero 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2022/09/Hero-5-1.jpg\";s:12:\"tmpl_created\";i:1670408212;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/business-consultant-hero-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:\"hero\";s:4:\"tags\";s:18:\"[\"Flexbox\",\"hero\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:21:{s:4:\"tmpl\";i:1690;s:2:\"id\";i:27729;s:5:\"title\";s:34:\"Business Consultant &#8211; Hero 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2022/09/Hero-6-1.jpg\";s:12:\"tmpl_created\";i:1670408236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/business-consultant-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:18:\"[\"Flexbox\",\"hero\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:21:{s:4:\"tmpl\";i:1691;s:2:\"id\";i:27735;s:5:\"title\";s:34:\"Business Consultant &#8211; Hero 3\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2022/09/Hero-7.jpg\";s:12:\"tmpl_created\";i:1670408259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/business-consultant-hero-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:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:21:{s:4:\"tmpl\";i:1695;s:2:\"id\";i:27741;s:5:\"title\";s:35:\"Business Consultant &#8211; Quote 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/Quote-2.jpg\";s:12:\"tmpl_created\";i:1670408606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/business-consultant-quote-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:5:\"Quote\";s:4:\"tags\";s:19:\"[\"Flexbox\",\"Quote\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:21:{s:4:\"tmpl\";i:1696;s:2:\"id\";i:27750;s:5:\"title\";s:45:\"Business Consultant &#8211; Service Details 1\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/09/Service-Details-5-1.jpg\";s:12:\"tmpl_created\";i:1670408630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/business-consultant-service-details-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:15:\"Service Details\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:21:{s:4:\"tmpl\";i:1697;s:2:\"id\";i:27756;s:5:\"title\";s:45:\"Business Consultant &#8211; Service Details 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/09/Service-Details-6-1.jpg\";s:12:\"tmpl_created\";i:1670408655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/business-consultant-service-details-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:15:\"Service Details\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:21:{s:4:\"tmpl\";i:1698;s:2:\"id\";i:27762;s:5:\"title\";s:45:\"Business Consultant &#8211; Service Details 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/09/Service-Details-8.jpg\";s:12:\"tmpl_created\";i:1670408682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/business-consultant-service-details-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:15:\"Service Details\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:21:{s:4:\"tmpl\";i:1699;s:2:\"id\";i:27769;s:5:\"title\";s:45:\"Business Consultant &#8211; Service Details 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/09/Service-Details-7.jpg\";s:12:\"tmpl_created\";i:1670409021;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/business-consultant-service-details-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:15:\"Service Details\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:21:{s:4:\"tmpl\";i:1700;s:2:\"id\";i:27774;s:5:\"title\";s:38:\"Business Consultant &#8211; Services 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-6-1.jpg\";s:12:\"tmpl_created\";i:1670409044;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/business-consultant-services-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:8:\"services\";s:4:\"tags\";s:22:\"[\"Flexbox\",\"Services\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:21:{s:4:\"tmpl\";i:1701;s:2:\"id\";i:27780;s:5:\"title\";s:38:\"Business Consultant &#8211; Services 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-7-1.jpg\";s:12:\"tmpl_created\";i:1670409126;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/business-consultant-services-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:8:\"services\";s:4:\"tags\";s:22:\"[\"Flexbox\",\"Services\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:21:{s:4:\"tmpl\";i:1770;s:2:\"id\";i:28333;s:5:\"title\";s:31:\"Marketing Studio &#8211; Header\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/12/Marketing-Studio-header-350_31122023.jpg\";s:12:\"tmpl_created\";i:1670414929;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/marketing-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:20:\"[\"Flexbox\",\"Header\"]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:21:{s:4:\"tmpl\";i:1702;s:2:\"id\";i:27786;s:5:\"title\";s:38:\"Business Consultant &#8211; Services 3\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-8-1.jpg\";s:12:\"tmpl_created\";i:1670409204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/business-consultant-services-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:\"services\";s:4:\"tags\";s:22:\"[\"Flexbox\",\"Services\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:21:{s:4:\"tmpl\";i:1703;s:2:\"id\";i:27795;s:5:\"title\";s:38:\"Business Consultant &#8211; Services 4\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-9.jpg\";s:12:\"tmpl_created\";i:1670409225;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/business-consultant-services-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:8:\"services\";s:4:\"tags\";s:22:\"[\"Flexbox\",\"Services\"]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:21:{s:4:\"tmpl\";i:1704;s:2:\"id\";i:27801;s:5:\"title\";s:38:\"Business Consultant &#8211; Services 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-10.jpg\";s:12:\"tmpl_created\";i:1670409263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/business-consultant-services-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:\"services\";s:4:\"tags\";s:22:\"[\"Flexbox\",\"Services\"]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:21:{s:4:\"tmpl\";i:1667;s:2:\"id\";i:28441;s:5:\"title\";s:36:\"Portfolio Wireframe 1 &#8211; Header\";s:9:\"thumbnail\";s:102:\"https://library.elementor.com/wp-content/uploads/2022/12/portfolio-wireframe-1-header-350_31122023.jpg\";s:12:\"tmpl_created\";i:1670405394;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/portfolio-wireframe-1-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:\"[\"Flexbox\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:21:{s:4:\"tmpl\";i:1706;s:2:\"id\";i:27813;s:5:\"title\";s:35:\"Business Consultant &#8211; Stats 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/Stats-3.jpg\";s:12:\"tmpl_created\";i:1670409802;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/business-consultant-stats-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:5:\"stats\";s:4:\"tags\";s:19:\"[\"Flexbox\",\"Stats\"]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:21:{s:4:\"tmpl\";i:1707;s:2:\"id\";i:27819;s:5:\"title\";s:35:\"Business Consultant &#8211; Stats 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Stats-4-1.jpg\";s:12:\"tmpl_created\";i:1670409826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/business-consultant-stats-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:5:\"stats\";s:4:\"tags\";s:19:\"[\"Flexbox\",\"Stats\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:281;a:21:{s:4:\"tmpl\";i:1708;s:2:\"id\";i:27825;s:5:\"title\";s:39:\"Business Consultant &#8211; Subscribe 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2022/09/Subscribe-4-1.jpg\";s:12:\"tmpl_created\";i:1670409854;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/blocks/business-consultant-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:30:\"[\"Flexbox\",\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:21:{s:4:\"tmpl\";i:1709;s:2:\"id\";i:27831;s:5:\"title\";s:39:\"Business Consultant &#8211; Subscribe 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Subscribe-6.jpg\";s:12:\"tmpl_created\";i:1670409875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/blocks/business-consultant-subscribe-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:30:\"[\"Flexbox\",\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:21:{s:4:\"tmpl\";i:1711;s:2:\"id\";i:27843;s:5:\"title\";s:39:\"Business Consultant &#8211; Subscribe 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Subscribe-5.jpg\";s:12:\"tmpl_created\";i:1670409985;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/blocks/business-consultant-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:30:\"[\"Flexbox\",\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:284;a:21:{s:4:\"tmpl\";i:1712;s:2:\"id\";i:27849;s:5:\"title\";s:42:\"Business Consultant &#8211; Testimonials 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/09/Testimonials-6.jpg\";s:12:\"tmpl_created\";i:1670410010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/blocks/business-consultant-testimonials-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:12:\"testimonials\";s:4:\"tags\";s:25:\"[\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:21:{s:4:\"tmpl\";i:1713;s:2:\"id\";i:27855;s:5:\"title\";s:42:\"Business Consultant &#8211; Testimonials 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/09/Testimonials-7.jpg\";s:12:\"tmpl_created\";i:1670410147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/blocks/business-consultant-testimonials-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:25:\"[\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:286;a:21:{s:4:\"tmpl\";i:1767;s:2:\"id\";i:28287;s:5:\"title\";s:40:\"Vases Online Shop &#8211; Single Product\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/09/Vases-Online-Shop-Single-350.jpg\";s:12:\"tmpl_created\";i:1670414814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/vases-online-shop-single-post/?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:44:\"[\"Decor\",\"Design\",\"Product\",\"Shop\",\"Single\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:287;a:21:{s:4:\"tmpl\";i:1714;s:2:\"id\";i:27861;s:5:\"title\";s:42:\"Business Consultant &#8211; Testimonials 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/09/Testimonials-8.jpg\";s:12:\"tmpl_created\";i:1670410193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/blocks/business-consultant-testimonials-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:12:\"testimonials\";s:4:\"tags\";s:25:\"[\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:21:{s:4:\"tmpl\";i:1715;s:2:\"id\";i:27867;s:5:\"title\";s:42:\"Business Consultant &#8211; Testimonials 4\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/09/Testimonials-9.jpg\";s:12:\"tmpl_created\";i:1670410279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/blocks/business-consultant-testimonials-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:12:\"testimonials\";s:4:\"tags\";s:25:\"[\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:289;a:21:{s:4:\"tmpl\";i:1780;s:2:\"id\";i:27873;s:5:\"title\";s:42:\"Business Consultant &#8211; Testimonials 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/09/Testimonials-10.jpg\";s:12:\"tmpl_created\";i:1673882267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/blocks/business-consultant-testimonials-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:12:\"testimonials\";s:4:\"tags\";s:25:\"[\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:21:{s:4:\"tmpl\";i:1716;s:2:\"id\";i:27540;s:5:\"title\";s:33:\"Business Consultant 404 &#8211; 1\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2022/09/404-4.jpg\";s:12:\"tmpl_created\";i:1670410345;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/business-consultant-404-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:8:\"404 page\";s:4:\"tags\";s:17:\"[\"404\",\"Flexbox\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:291;a:21:{s:4:\"tmpl\";i:1774;s:2:\"id\";i:28211;s:5:\"title\";s:31:\"Business Consulting &#8211; 404\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/09/Business-Consulting-404-350.jpg\";s:12:\"tmpl_created\";i:1670415130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/business-consulting-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:\"[\"404\",\"Consulting\",\"Flexbox\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:21:{s:4:\"tmpl\";i:1775;s:2:\"id\";i:28197;s:5:\"title\";s:41:\"Business Consulting &#8211; Posts Archive\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/09/Business-Consulting-Archive-350.jpg\";s:12:\"tmpl_created\";i:1670415171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/blocks/business-consulting-posts-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:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:21:{s:4:\"tmpl\";i:1776;s:2:\"id\";i:28180;s:5:\"title\";s:39:\"Business Consulting &#8211; Single Post\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/09/Business-Consulting-Single-350.jpg\";s:12:\"tmpl_created\";i:1670415206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/blocks/business-consulting-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:51:\"[\"Business\",\"Consulting\",\"Flexbox\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:21:{s:4:\"tmpl\";i:1474;s:2:\"id\";i:29132;s:5:\"title\";s:29:\"Eco Friendly Blog &#8211; 404\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/11/12-Eco-Friendly-Blog.jpg\";s:12:\"tmpl_created\";i:1670352022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/eco-friendly-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:14:\"[\"404\",\"Blog\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:21:{s:4:\"tmpl\";i:1564;s:2:\"id\";i:28085;s:5:\"title\";s:33:\"Ecommerce Wireframe 1 &#8211; 404\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/09/Ecommerce-Wireframe-1-404-350.jpg\";s:12:\"tmpl_created\";i:1670401454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/ecommerce-wireframe-1-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\",\"Ecommerce\",\"Flexbox\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:296;a:21:{s:4:\"tmpl\";i:1565;s:2:\"id\";i:28168;s:5:\"title\";s:33:\"Ecommerce Wireframe 2 &#8211; 404\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/12/404-ecommerce-2.jpg\";s:12:\"tmpl_created\";i:1670401499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/ecommerce-wireframe-2-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:17:\"[\"404\",\"Flexbox\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:21:{s:4:\"tmpl\";i:1566;s:2:\"id\";i:28678;s:5:\"title\";s:37:\"Ecommerce Wireframe 2 &#8211; Gallery\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/10/ecommerce-wireframe-2-gallery.jpg\";s:12:\"tmpl_created\";i:1670401696;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/ecommerce-wireframe-2-gallery/?utm_source=template-library&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:\"Gallery\";s:4:\"tags\";s:21:\"[\"Flexbox\",\"Gallery\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:21:{s:4:\"tmpl\";i:1575;s:2:\"id\";i:28668;s:5:\"title\";s:34:\"Ecommerce Wireframe 2 &#8211; Hero\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/12/Hero2wireframe.jpg\";s:12:\"tmpl_created\";i:1670402354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/ecommerce-wireframe-2-hero/?utm_source=template-library&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:18:\"[\"Flexbox\",\"hero\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:21:{s:4:\"tmpl\";i:1567;s:2:\"id\";i:28673;s:5:\"title\";s:35:\"Ecommerce Wireframe 2 &#8211; Quote\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/10/ecommerce-wireframe-2-quote.jpg\";s:12:\"tmpl_created\";i:1670402146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/ecommerce-wireframe-2-quote/?utm_source=template-library&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:\"Quote\";s:4:\"tags\";s:19:\"[\"Flexbox\",\"Quote\"]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:21:{s:4:\"tmpl\";i:1677;s:2:\"id\";i:28159;s:5:\"title\";s:46:\"Ecommerce Wireframe 2 &#8211; Products Archive\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/09/Ecommerce-Wireframe-2-Archive-350.jpg\";s:12:\"tmpl_created\";i:1670407570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/blocks/ecommerce-wireframe-2-products-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:32:\"[\"Archive\",\"Flexbox\",\"Products\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:21:{s:4:\"tmpl\";i:1771;s:2:\"id\";i:28258;s:5:\"title\";s:21:\"Food Blog &#8211; 404\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/09/Food-Blog-404-350.jpg\";s:12:\"tmpl_created\";i:1670414998;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/food-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:17:\"[\"404\",\"Flexbox\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:21:{s:4:\"tmpl\";i:1772;s:2:\"id\";i:28246;s:5:\"title\";s:31:\"Food Blog &#8211; Posts Archive\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/09/Food-Blog-Archive-350.jpg\";s:12:\"tmpl_created\";i:1670415060;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/food-blog-posts-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:19:\"[\"Archive\",\"posts\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:21:{s:4:\"tmpl\";i:1773;s:2:\"id\";i:28237;s:5:\"title\";s:29:\"Food Blog &#8211; Single Post\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/09/Food-Blog-single-350.jpg\";s:12:\"tmpl_created\";i:1670415103;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/food-blog-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:31:\"[\"Blog\",\"Food\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:21:{s:4:\"tmpl\";i:1694;s:2:\"id\";i:27984;s:5:\"title\";s:50:\"Japanese Restaurant &#8211; Footer &#8211; Flexbox\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1670408457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/blocks/japanese-restaurant-footer-flexbox/?utm_source=template-library&utm_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:51:\"[\"Flexbox\",\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:21:{s:4:\"tmpl\";i:1568;s:2:\"id\";i:28425;s:5:\"title\";s:38:\"Local Services Wireframe 1 &#8211; 404\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/10/Wireframe1-404.jpg\";s:12:\"tmpl_created\";i:1670402188;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/local-services-wireframe-1-404/?utm_source=template-library&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:\"404 page\";s:4:\"tags\";s:17:\"[\"404\",\"Flexbox\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:306;a:21:{s:4:\"tmpl\";i:1569;s:2:\"id\";i:28489;s:5:\"title\";s:42:\"Local Services Wireframe 1 &#8211; Benefit\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/10/Local-Services-Wirefram-1-Benefit.jpg\";s:12:\"tmpl_created\";i:1670402220;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/blocks/local-services-wireframe-1-benefit/?utm_source=template-library&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:\"Benefits\";s:4:\"tags\";s:28:\"[\"Benefits\",\"cta\",\"Flexbox\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:307;a:21:{s:4:\"tmpl\";i:1571;s:2:\"id\";i:28495;s:5:\"title\";s:44:\"Local Services Wireframe 1 &#8211; Benefit 2\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/10/Local-Services-Wirefram-1-Benefit2.jpg\";s:12:\"tmpl_created\";i:1670402295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/blocks/local-services-wireframe-1-benefit-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:8:\"Benefits\";s:4:\"tags\";s:22:\"[\"Benefits\",\"Flexbox\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:308;a:21:{s:4:\"tmpl\";i:1573;s:2:\"id\";i:28506;s:5:\"title\";s:42:\"Local Services Wireframe 1 &#8211; Clients\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/10/Local-Services-Wirefram-1-clients.jpg\";s:12:\"tmpl_created\";i:1670402315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/blocks/local-services-wireframe-1-clients/?utm_source=template-library&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:21:\"[\"Clients\",\"Flexbox\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:21:{s:4:\"tmpl\";i:1577;s:2:\"id\";i:28471;s:5:\"title\";s:39:\"Local Services Wireframe 1 &#8211; Hero\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/10/Local-Services-Wireframe-1-Hero.jpg\";s:12:\"tmpl_created\";i:1670402586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/blocks/local-services-wireframe-1-hero/?utm_source=template-library&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:29:\"[\"Flexbox\",\"hero\",\"Services\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:310;a:21:{s:4:\"tmpl\";i:1579;s:2:\"id\";i:28480;s:5:\"title\";s:47:\"Local Services Wireframe 1 &#8211; Our Services\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/10/Local-Services-Wirefram-1-our_services.jpg\";s:12:\"tmpl_created\";i:1670402623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/local-services-wireframe-1-our-services/?utm_source=template-library&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:\"services\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:21:{s:4:\"tmpl\";i:1580;s:2:\"id\";i:28500;s:5:\"title\";s:47:\"Local Services Wireframe 1 &#8211; Testimonials\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/10/Local-Services-Wirefram-1-Testimonials.jpg\";s:12:\"tmpl_created\";i:1670402653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/local-services-wireframe-1-testimonials/?utm_source=template-library&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:25:\"[\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:21:{s:4:\"tmpl\";i:1582;s:2:\"id\";i:28521;s:5:\"title\";s:35:\"Local Services Wireframe 1- Contact\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/10/Local-Services-Wirefram-1-contact.jpg\";s:12:\"tmpl_created\";i:1670402679;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/blocks/local-services-wireframe-1-contact/?utm_source=template-library&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:28:\"[\"Contact\",\"Flexbox\",\"Form\"]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:21:{s:4:\"tmpl\";i:1583;s:2:\"id\";i:28512;s:5:\"title\";s:31:\"Local Services Wireframe 1- FAQ\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/10/Local-Services-Wirefram-1-faq.jpg\";s:12:\"tmpl_created\";i:1670402696;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/local-services-wireframe-1-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:17:\"[\"Faq\",\"Flexbox\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:21:{s:4:\"tmpl\";i:1601;s:2:\"id\";i:28590;s:5:\"title\";s:38:\"Local Services Wireframe 4 &#8211; 404\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/10/local-services-wireframe-4-404.jpg\";s:12:\"tmpl_created\";i:1670403458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/local-services-wireframe-4-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:17:\"[\"404\",\"Flexbox\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:315;a:21:{s:4:\"tmpl\";i:1602;s:2:\"id\";i:28570;s:5:\"title\";s:42:\"Local Services Wireframe 4 &#8211; Contact\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/10/local-services-wireframe-4-contact.jpg\";s:12:\"tmpl_created\";i:1670403475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/blocks/local-services-wireframe-4-contact/?utm_source=template-library&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:28:\"[\"Contact\",\"Flexbox\",\"Form\"]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:21:{s:4:\"tmpl\";i:1593;s:2:\"id\";i:28576;s:5:\"title\";s:44:\"Local Services Wireframe 4 &#8211; Contact 2\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/10/local-services-wireframe-4-contact2.jpg\";s:12:\"tmpl_created\";i:1670403308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/blocks/local-services-wireframe-4-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:28:\"[\"Contact\",\"Flexbox\",\"Info\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:21:{s:4:\"tmpl\";i:1595;s:2:\"id\";i:28581;s:5:\"title\";s:44:\"Local Services Wireframe 4 &#8211; Contact 3\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/10/portfolio-wireframe-1-contact3.jpg\";s:12:\"tmpl_created\";i:1670403326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/blocks/local-services-wireframe-4-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:28:\"[\"Contact\",\"Flexbox\",\"Form\"]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:21:{s:4:\"tmpl\";i:1596;s:2:\"id\";i:28539;s:5:\"title\";s:38:\"Local Services Wireframe 4 &#8211; CTA\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/10/local-services-wireframe-4-cta.jpg\";s:12:\"tmpl_created\";i:1670403344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/local-services-wireframe-4-cta/?utm_source=template-library&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:17:\"[\"cta\",\"Flexbox\"]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:21:{s:4:\"tmpl\";i:1666;s:2:\"id\";i:28604;s:5:\"title\";s:41:\"Local Services Wireframe 4 &#8211; Footer\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2022/10/local-services-wireframe-4-footer-350.jpg\";s:12:\"tmpl_created\";i:1670405355;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/blocks/local-services-wireframe-4-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:20:\"[\"Flexbox\",\"Footer\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:21:{s:4:\"tmpl\";i:1678;s:2:\"id\";i:28455;s:5:\"title\";s:46:\"Local Services Wireframe 4 &#8211; Single Post\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2022/10/Local-Services-Wireframe-4-Single-350.jpg\";s:12:\"tmpl_created\";i:1670407618;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/blocks/local-services-wireframe-4-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:34:\"[\"Blog\",\"Flexbox\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:21:{s:4:\"tmpl\";i:1598;s:2:\"id\";i:28551;s:5:\"title\";s:40:\"Local Services Wireframe 4 &#8211; Stats\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/10/local-services-wireframe-4-numbers.jpg\";s:12:\"tmpl_created\";i:1670403361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/blocks/local-services-wireframe-4-stats/?utm_source=template-library&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:29:\"[\"Flexbox\",\"numbers\",\"Stats\"]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:21:{s:4:\"tmpl\";i:1611;s:2:\"id\";i:28596;s:5:\"title\";s:44:\"Local Services Wireframe 4 &#8211; Subscribe\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/12/Subscription.jpg\";s:12:\"tmpl_created\";i:1670403963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/blocks/local-services-wireframe-4-subscribe/?utm_source=template-library&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:36:\"[\"cta\",\"Flexbox\",\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:21:{s:4:\"tmpl\";i:1599;s:2:\"id\";i:28561;s:5:\"title\";s:39:\"Local Services Wireframe 4 &#8211; Team\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/10/local-services-wireframe-4-team.jpg\";s:12:\"tmpl_created\";i:1670403423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/blocks/local-services-wireframe-4-team/?utm_source=template-library&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:18:\"[\"Flexbox\",\"Team\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:21:{s:4:\"tmpl\";i:1600;s:2:\"id\";i:28545;s:5:\"title\";s:47:\"Local Services Wireframe 4 &#8211; Testimonials\";s:9:\"thumbnail\";s:100:\"https://library.elementor.com/wp-content/uploads/2022/10/local-services-wireframe-4-Testimonials.jpg\";s:12:\"tmpl_created\";i:1670403441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/local-services-wireframe-4-testimonials/?utm_source=template-library&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:35:\"[\"Clients\",\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:21:{s:4:\"tmpl\";i:1584;s:2:\"id\";i:27042;s:5:\"title\";s:28:\"Marketing Agency &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2022/09/404.jpg\";s:12:\"tmpl_created\";i:1670403043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/marketing-agency-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:17:\"[\"404\",\"Flexbox\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:21:{s:4:\"tmpl\";i:1590;s:2:\"id\";i:27066;s:5:\"title\";s:32:\"Marketing Agency &#8211; About 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/About-3.jpg\";s:12:\"tmpl_created\";i:1670403271;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/marketing-agency-about-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:5:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:21:{s:4:\"tmpl\";i:1591;s:2:\"id\";i:27072;s:5:\"title\";s:32:\"Marketing Agency &#8211; About 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/About-4-2.jpg\";s:12:\"tmpl_created\";i:1670403290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/marketing-agency-about-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:5:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:21:{s:4:\"tmpl\";i:1592;s:2:\"id\";i:27081;s:5:\"title\";s:32:\"Marketing Agency &#8211; About 5\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/About-5-2.jpg\";s:12:\"tmpl_created\";i:1670403304;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/marketing-agency-about-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:5:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:21:{s:4:\"tmpl\";i:1597;s:2:\"id\";i:27087;s:5:\"title\";s:35:\"Marketing Agency &#8211; Benefits 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/09/Benefits-1.jpg\";s:12:\"tmpl_created\";i:1670403347;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/marketing-agency-benefits-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:8:\"Benefits\";s:4:\"tags\";s:22:\"[\"Benefits\",\"Flexbox\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:21:{s:4:\"tmpl\";i:1609;s:2:\"id\";i:27093;s:5:\"title\";s:35:\"Marketing Agency &#8211; Benefits 2\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/09/Benefits-2.jpg\";s:12:\"tmpl_created\";i:1670403832;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/marketing-agency-benefits-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:8:\"Benefits\";s:4:\"tags\";s:22:\"[\"Benefits\",\"Flexbox\"]\";s:10:\"menu_order\";i:242;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:21:{s:4:\"tmpl\";i:1608;s:2:\"id\";i:27099;s:5:\"title\";s:35:\"Marketing Agency &#8211; Benefits 3\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/09/Benefits-3.jpg\";s:12:\"tmpl_created\";i:1670403802;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/marketing-agency-benefits-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:\"Benefits\";s:4:\"tags\";s:22:\"[\"Benefits\",\"Flexbox\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:21:{s:4:\"tmpl\";i:1606;s:2:\"id\";i:27105;s:5:\"title\";s:34:\"Marketing Agency &#8211; Clients 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/CTA-6-2.jpg\";s:12:\"tmpl_created\";i:1670403770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/marketing-agency-clients-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:\"clients\";s:4:\"tags\";s:21:\"[\"Clients\",\"Flexbox\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:21:{s:4:\"tmpl\";i:1605;s:2:\"id\";i:27111;s:5:\"title\";s:34:\"Marketing Agency &#8211; Clients 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/CTA-7-1.jpg\";s:12:\"tmpl_created\";i:1670403719;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/marketing-agency-clients-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:21:\"[\"Clients\",\"Flexbox\"]\";s:10:\"menu_order\";i:245;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:21:{s:4:\"tmpl\";i:1604;s:2:\"id\";i:27117;s:5:\"title\";s:34:\"Marketing Agency &#8211; Clients 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/CTA-8-1.jpg\";s:12:\"tmpl_created\";i:1670403691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/marketing-agency-clients-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:\"clients\";s:4:\"tags\";s:21:\"[\"Clients\",\"Flexbox\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:21:{s:4:\"tmpl\";i:1603;s:2:\"id\";i:27123;s:5:\"title\";s:34:\"Marketing Agency &#8211; Contact 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Contact-1.jpg\";s:12:\"tmpl_created\";i:1670403664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/marketing-agency-contact-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:\"contact\";s:4:\"tags\";s:28:\"[\"Contact\",\"Flexbox\",\"Form\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:21:{s:4:\"tmpl\";i:1610;s:2:\"id\";i:27129;s:5:\"title\";s:34:\"Marketing Agency &#8211; Contact 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Contact-2.jpg\";s:12:\"tmpl_created\";i:1670403956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/marketing-agency-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:28:\"[\"Contact\",\"Flexbox\",\"Form\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:21:{s:4:\"tmpl\";i:1613;s:2:\"id\";i:27135;s:5:\"title\";s:34:\"Marketing Agency &#8211; Contact 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Contact-3.jpg\";s:12:\"tmpl_created\";i:1670403999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/marketing-agency-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:28:\"[\"Contact\",\"Flexbox\",\"Form\"]\";s:10:\"menu_order\";i:249;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:21:{s:4:\"tmpl\";i:1616;s:2:\"id\";i:27141;s:5:\"title\";s:30:\"Marketing Agency &#8211; CTA 1\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2022/09/CTA.jpg\";s:12:\"tmpl_created\";i:1670404149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/marketing-agency-cta-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:14:\"call to action\";s:4:\"tags\";s:17:\"[\"cta\",\"Flexbox\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:21:{s:4:\"tmpl\";i:1617;s:2:\"id\";i:27150;s:5:\"title\";s:30:\"Marketing Agency &#8211; CTA 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2022/09/CTA-2.jpg\";s:12:\"tmpl_created\";i:1670404171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/marketing-agency-cta-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:14:\"call to action\";s:4:\"tags\";s:17:\"[\"cta\",\"Flexbox\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:21:{s:4:\"tmpl\";i:1619;s:2:\"id\";i:27157;s:5:\"title\";s:30:\"Marketing Agency &#8211; CTA 3\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2022/09/CTA-3.jpg\";s:12:\"tmpl_created\";i:1670404220;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/marketing-agency-cta-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:14:\"call to action\";s:4:\"tags\";s:17:\"[\"cta\",\"Flexbox\"]\";s:10:\"menu_order\";i:252;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:341;a:21:{s:4:\"tmpl\";i:1623;s:2:\"id\";i:27166;s:5:\"title\";s:30:\"Marketing Agency &#8211; CTA 4\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/CTA-4-1.jpg\";s:12:\"tmpl_created\";i:1670404328;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/marketing-agency-cta-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:14:\"call to action\";s:4:\"tags\";s:17:\"[\"cta\",\"Flexbox\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:21:{s:4:\"tmpl\";i:1624;s:2:\"id\";i:27172;s:5:\"title\";s:30:\"Marketing Agency &#8211; CTA 5\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/CTA-5-2.jpg\";s:12:\"tmpl_created\";i:1670404354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/marketing-agency-cta-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:14:\"call to action\";s:4:\"tags\";s:17:\"[\"cta\",\"Flexbox\"]\";s:10:\"menu_order\";i:254;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:21:{s:4:\"tmpl\";i:1626;s:2:\"id\";i:27178;s:5:\"title\";s:30:\"Marketing Agency &#8211; FAQ 1\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2022/09/FAQ.jpg\";s:12:\"tmpl_created\";i:1670404378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/marketing-agency-faq-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:3:\"faq\";s:4:\"tags\";s:17:\"[\"Faq\",\"Flexbox\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:344;a:21:{s:4:\"tmpl\";i:1628;s:2:\"id\";i:27187;s:5:\"title\";s:34:\"Marketing Agency &#8211; Gallery 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Gallery-1.jpg\";s:12:\"tmpl_created\";i:1670404403;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/marketing-agency-gallery-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:\"Gallery\";s:4:\"tags\";s:21:\"[\"Flexbox\",\"Gallery\"]\";s:10:\"menu_order\";i:256;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:21:{s:4:\"tmpl\";i:1631;s:2:\"id\";i:27193;s:5:\"title\";s:34:\"Marketing Agency &#8211; Gallery 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Gallery-2.jpg\";s:12:\"tmpl_created\";i:1670404428;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/marketing-agency-gallery-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:\"Gallery\";s:4:\"tags\";s:21:\"[\"Flexbox\",\"Gallery\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:21:{s:4:\"tmpl\";i:1633;s:2:\"id\";i:27199;s:5:\"title\";s:34:\"Marketing Agency &#8211; Gallery 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Gallery-3-1.jpg\";s:12:\"tmpl_created\";i:1670404457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/marketing-agency-gallery-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:\"Gallery\";s:4:\"tags\";s:21:\"[\"Flexbox\",\"Gallery\"]\";s:10:\"menu_order\";i:258;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:21:{s:4:\"tmpl\";i:1634;s:2:\"id\";i:27205;s:5:\"title\";s:34:\"Marketing Agency &#8211; Gallery 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Gallery-4-1.jpg\";s:12:\"tmpl_created\";i:1670404478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/marketing-agency-gallery-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:\"Gallery\";s:4:\"tags\";s:21:\"[\"Flexbox\",\"Gallery\"]\";s:10:\"menu_order\";i:259;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:21:{s:4:\"tmpl\";i:1635;s:2:\"id\";i:27211;s:5:\"title\";s:31:\"Marketing Agency &#8211; Hero 1\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2022/09/Hero-1.jpg\";s:12:\"tmpl_created\";i:1670404499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/marketing-agency-hero-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:\"hero\";s:4:\"tags\";s:18:\"[\"Flexbox\",\"hero\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:21:{s:4:\"tmpl\";i:1636;s:2:\"id\";i:27218;s:5:\"title\";s:31:\"Marketing Agency &#8211; Hero 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2022/09/Hero-2-1.jpg\";s:12:\"tmpl_created\";i:1670404524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/marketing-agency-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:18:\"[\"Flexbox\",\"hero\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:350;a:21:{s:4:\"tmpl\";i:1637;s:2:\"id\";i:27224;s:5:\"title\";s:31:\"Marketing Agency &#8211; Hero 3\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2022/09/Hero-3.jpg\";s:12:\"tmpl_created\";i:1670404559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/marketing-agency-hero-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:4:\"hero\";s:4:\"tags\";s:18:\"[\"Flexbox\",\"hero\"]\";s:10:\"menu_order\";i:262;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:351;a:21:{s:4:\"tmpl\";i:1638;s:2:\"id\";i:27233;s:5:\"title\";s:31:\"Marketing Agency &#8211; Hero 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2022/09/Hero-4-2.jpg\";s:12:\"tmpl_created\";i:1670404581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/marketing-agency-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:18:\"[\"Flexbox\",\"hero\"]\";s:10:\"menu_order\";i:263;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:21:{s:4:\"tmpl\";i:1639;s:2:\"id\";i:27278;s:5:\"title\";s:34:\"Marketing Agency &#8211; Service 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-1.jpg\";s:12:\"tmpl_created\";i:1670404605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/marketing-agency-service-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:15:\"Service Details\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:21:{s:4:\"tmpl\";i:1640;s:2:\"id\";i:27289;s:5:\"title\";s:34:\"Marketing Agency &#8211; Service 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-2-1.jpg\";s:12:\"tmpl_created\";i:1670404628;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/marketing-agency-service-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:8:\"services\";s:4:\"tags\";s:22:\"[\"Flexbox\",\"Services\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:21:{s:4:\"tmpl\";i:1641;s:2:\"id\";i:27301;s:5:\"title\";s:34:\"Marketing Agency &#8211; Service 3\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-3-1.jpg\";s:12:\"tmpl_created\";i:1670404654;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/marketing-agency-service-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:\"services\";s:4:\"tags\";s:22:\"[\"Flexbox\",\"Services\"]\";s:10:\"menu_order\";i:266;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:21:{s:4:\"tmpl\";i:1642;s:2:\"id\";i:27313;s:5:\"title\";s:34:\"Marketing Agency &#8211; Service 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-4-1.jpg\";s:12:\"tmpl_created\";i:1670404674;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/marketing-agency-service-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:8:\"services\";s:4:\"tags\";s:22:\"[\"Flexbox\",\"Services\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:21:{s:4:\"tmpl\";i:1643;s:2:\"id\";i:27239;s:5:\"title\";s:42:\"Marketing Agency &#8211; Service Details 1\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-Details-1.jpg\";s:12:\"tmpl_created\";i:1670404697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/blocks/marketing-agency-service-details-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:15:\"Service Details\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:268;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:21:{s:4:\"tmpl\";i:1644;s:2:\"id\";i:27245;s:5:\"title\";s:42:\"Marketing Agency &#8211; Service Details 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-Details-2.jpg\";s:12:\"tmpl_created\";i:1670404722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/blocks/marketing-agency-service-details-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:15:\"Service Details\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:21:{s:4:\"tmpl\";i:1645;s:2:\"id\";i:27251;s:5:\"title\";s:42:\"Marketing Agency &#8211; Service Details 3\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-Details-3.jpg\";s:12:\"tmpl_created\";i:1670404745;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/blocks/marketing-agency-service-details-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:15:\"Service Details\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:270;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:21:{s:4:\"tmpl\";i:1648;s:2:\"id\";i:27257;s:5:\"title\";s:42:\"Marketing Agency &#8211; Service Details 4\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-Details-4.jpg\";s:12:\"tmpl_created\";i:1670404826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/blocks/marketing-agency-service-details-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:15:\"Service Details\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:21:{s:4:\"tmpl\";i:1651;s:2:\"id\";i:27263;s:5:\"title\";s:42:\"Marketing Agency &#8211; Service Details 5\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-Details-5.jpg\";s:12:\"tmpl_created\";i:1670404847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/blocks/marketing-agency-service-details-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:15:\"Service Details\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:272;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:361;a:21:{s:4:\"tmpl\";i:1652;s:2:\"id\";i:27272;s:5:\"title\";s:42:\"Marketing Agency &#8211; Service Details 6\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-Details-6.jpg\";s:12:\"tmpl_created\";i:1670404955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/blocks/marketing-agency-service-details-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:15:\"Service Details\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:362;a:21:{s:4:\"tmpl\";i:1653;s:2:\"id\";i:27322;s:5:\"title\";s:36:\"Marketing Agency &#8211; Subscribe 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Subscribe-1.jpg\";s:12:\"tmpl_created\";i:1670404976;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/marketing-agency-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:30:\"[\"Flexbox\",\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:363;a:21:{s:4:\"tmpl\";i:1654;s:2:\"id\";i:27328;s:5:\"title\";s:36:\"Marketing Agency &#8211; Subscribe 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2022/09/Subscribe-2-2.jpg\";s:12:\"tmpl_created\";i:1670404998;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/marketing-agency-subscribe-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:30:\"[\"Flexbox\",\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:275;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:364;a:21:{s:4:\"tmpl\";i:1655;s:2:\"id\";i:27334;s:5:\"title\";s:36:\"Marketing Agency &#8211; Subscribe 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2022/09/Subscribe-3-1.jpg\";s:12:\"tmpl_created\";i:1670405020;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/marketing-agency-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:30:\"[\"Flexbox\",\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:21:{s:4:\"tmpl\";i:1656;s:2:\"id\";i:27340;s:5:\"title\";s:31:\"Marketing Agency &#8211; Team 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2022/09/Team-1-1.jpg\";s:12:\"tmpl_created\";i:1670405073;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/marketing-agency-team-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:\"team\";s:4:\"tags\";s:18:\"[\"Flexbox\",\"Team\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:21:{s:4:\"tmpl\";i:1657;s:2:\"id\";i:27349;s:5:\"title\";s:31:\"Marketing Agency &#8211; Team 2\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2022/09/Team-2.jpg\";s:12:\"tmpl_created\";i:1670405098;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/marketing-agency-team-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:18:\"[\"Flexbox\",\"Team\"]\";s:10:\"menu_order\";i:278;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:21:{s:4:\"tmpl\";i:1658;s:2:\"id\";i:27355;s:5:\"title\";s:31:\"Marketing Agency &#8211; Team 3\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2022/09/Team-3.jpg\";s:12:\"tmpl_created\";i:1670405121;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/marketing-agency-team-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:4:\"team\";s:4:\"tags\";s:18:\"[\"Flexbox\",\"Team\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:368;a:21:{s:4:\"tmpl\";i:1659;s:2:\"id\";i:27361;s:5:\"title\";s:39:\"Marketing Agency &#8211; Testimonials 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2022/09/Testimonial-1.jpg\";s:12:\"tmpl_created\";i:1670405143;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/blocks/marketing-agency-testimonials-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:12:\"testimonials\";s:4:\"tags\";s:25:\"[\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:21:{s:4:\"tmpl\";i:1660;s:2:\"id\";i:27367;s:5:\"title\";s:39:\"Marketing Agency &#8211; Testimonials 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2022/09/Testimonial-2.jpg\";s:12:\"tmpl_created\";i:1670405166;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/blocks/marketing-agency-testimonials-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:25:\"[\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:370;a:21:{s:4:\"tmpl\";i:1661;s:2:\"id\";i:27373;s:5:\"title\";s:39:\"Marketing Agency &#8211; Testimonials 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2022/09/Testimonial-6.jpg\";s:12:\"tmpl_created\";i:1670405187;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/blocks/marketing-agency-testimonials-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:12:\"testimonials\";s:4:\"tags\";s:25:\"[\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:371;a:21:{s:4:\"tmpl\";i:1662;s:2:\"id\";i:27379;s:5:\"title\";s:39:\"Marketing Agency &#8211; Testimonials 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2022/09/Testimonial-4.jpg\";s:12:\"tmpl_created\";i:1670405211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/blocks/marketing-agency-testimonials-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:12:\"testimonials\";s:4:\"tags\";s:25:\"[\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:21:{s:4:\"tmpl\";i:1663;s:2:\"id\";i:27385;s:5:\"title\";s:39:\"Marketing Agency &#8211; Testimonials 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2022/09/Testimonial-5.jpg\";s:12:\"tmpl_created\";i:1670405232;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/blocks/marketing-agency-testimonials-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:12:\"testimonials\";s:4:\"tags\";s:25:\"[\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:284;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:373;a:21:{s:4:\"tmpl\";i:1768;s:2:\"id\";i:28364;s:5:\"title\";s:28:\"Marketing Studio &#8211; 404\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/10/Marketing-Studio-404.jpg\";s:12:\"tmpl_created\";i:1670414864;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/marketing-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:38:\"[\"404\",\"Flexbox\",\"Marketing\",\"studio\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:21:{s:4:\"tmpl\";i:1769;s:2:\"id\";i:28345;s:5:\"title\";s:31:\"Marketing Studio &#8211; footer\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/10/Marketing-Studio-footer-350.jpg\";s:12:\"tmpl_created\";i:1670414886;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/marketing-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:20:\"[\"Flexbox\",\"Footer\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:21:{s:4:\"tmpl\";i:1621;s:2:\"id\";i:28533;s:5:\"title\";s:35:\"Portfolio Wireframe 1 &#8211; About\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/10/portfolio-wireframe-1-about.jpg\";s:12:\"tmpl_created\";i:1670404294;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/portfolio-wireframe-1-about/?utm_source=template-library&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:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:21:{s:4:\"tmpl\";i:1622;s:2:\"id\";i:28527;s:5:\"title\";s:37:\"Portfolio Wireframe 1 &#8211; Contact\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/10/portfolio-wireframe-1-contact.jpg\";s:12:\"tmpl_created\";i:1670404312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/portfolio-wireframe-1-contact/?utm_source=template-library&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:28:\"[\"Contact\",\"Flexbox\",\"Form\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:21:{s:4:\"tmpl\";i:1457;s:2:\"id\";i:29101;s:5:\"title\";s:45:\"Law Firm &#8211; Single Post &#8211;  Flexbox\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1670332878;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/law-firm-single-post-flexbox/?utm_source=template-library&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:\"[\"Flexbox\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:378;a:21:{s:4:\"tmpl\";i:1625;s:2:\"id\";i:28620;s:5:\"title\";s:36:\"Restaurant Wireframe 1 &#8211; About\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/10/restaurant-wireframe-1-about.jpg\";s:12:\"tmpl_created\";i:1670404370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/restaurant-wireframe-1-about/?utm_source=template-library&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:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:21:{s:4:\"tmpl\";i:1627;s:2:\"id\";i:28644;s:5:\"title\";s:38:\"Restaurant Wireframe 1 &#8211; About 2\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/10/restaurant-wireframe-1-about2.jpg\";s:12:\"tmpl_created\";i:1670404389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/restaurant-wireframe-1-about-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:5:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:21:{s:4:\"tmpl\";i:1629;s:2:\"id\";i:28650;s:5:\"title\";s:38:\"Restaurant Wireframe 1 &#8211; About 3\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/10/restaurant-wireframe-1-about3.jpg\";s:12:\"tmpl_created\";i:1670404410;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/restaurant-wireframe-1-about-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:5:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:21:{s:4:\"tmpl\";i:1630;s:2:\"id\";i:28611;s:5:\"title\";s:35:\"Restaurant Wireframe 1 &#8211; Hero\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/10/restaurant-wireframe-1-hero.jpg\";s:12:\"tmpl_created\";i:1670404427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/restaurant-wireframe-1-hero/?utm_source=template-library&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:18:\"[\"Flexbox\",\"hero\"]\";s:10:\"menu_order\";i:293;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:21:{s:4:\"tmpl\";i:1632;s:2:\"id\";i:28638;s:5:\"title\";s:37:\"Restaurant Wireframe 1 &#8211; Hero 2\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/10/restaurant-wireframe-1-hero2.jpg\";s:12:\"tmpl_created\";i:1670404451;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/blocks/restaurant-wireframe-1-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:18:\"[\"Flexbox\",\"hero\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:21:{s:4:\"tmpl\";i:1646;s:2:\"id\";i:28656;s:5:\"title\";s:35:\"Restaurant Wireframe 1 &#8211; Menu\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/10/restaurant-wireframe-1-menu.jpg\";s:12:\"tmpl_created\";i:1670404789;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/restaurant-wireframe-1-menu/?utm_source=template-library&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:41:\"[\"Flexbox\",\"menu\",\"Pricing\",\"Restaurant\"]\";s:10:\"menu_order\";i:295;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:21:{s:4:\"tmpl\";i:1647;s:2:\"id\";i:28626;s:5:\"title\";s:38:\"Restaurant Wireframe 1 &#8211; Pricing\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/10/restaurant-wireframe-1-pricing.jpg\";s:12:\"tmpl_created\";i:1670404811;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/restaurant-wireframe-1-pricing/?utm_source=template-library&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:31:\"[\"Flexbox\",\"Pricing\",\"Product\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:21:{s:4:\"tmpl\";i:1649;s:2:\"id\";i:28662;s:5:\"title\";s:46:\"Restaurant Wireframe 1 &#8211; Service details\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/10/restaurant-wireframe-1-servives.jpg\";s:12:\"tmpl_created\";i:1670404828;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/blocks/restaurant-wireframe-1-service-details/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:15:\"Service Details\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:21:{s:4:\"tmpl\";i:1650;s:2:\"id\";i:28632;s:5:\"title\";s:43:\"Restaurant Wireframe 1 &#8211; Testimonials\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/10/restaurant-wireframe-1-Testimonials.jpg\";s:12:\"tmpl_created\";i:1670404846;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/blocks/restaurant-wireframe-1-testimonials/?utm_source=template-library&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:35:\"[\"Clients\",\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:298;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:21:{s:4:\"tmpl\";i:1765;s:2:\"id\";i:28308;s:5:\"title\";s:29:\"Vases Online Shop &#8211; 404\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/09/Vases-Online-Shop-404.jpg\";s:12:\"tmpl_created\";i:1670414097;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/vases-online-shop-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:17:\"[\"404\",\"Flexbox\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:21:{s:4:\"tmpl\";i:1766;s:2:\"id\";i:28299;s:5:\"title\";s:39:\"Vases Online Shop &#8211; Posts Archive\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/09/Vases-Online-Shop-Archive-350.jpg\";s:12:\"tmpl_created\";i:1670414237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/blocks/vases-online-shop-posts-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:36:\"[\"Archive\",\"Blog\",\"Flexbox\",\"posts\"]\";s:10:\"menu_order\";i:300;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:21:{s:4:\"tmpl\";i:1717;s:2:\"id\";i:26157;s:5:\"title\";s:19:\"Workshop Center 404\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/404-2-1.jpg\";s:12:\"tmpl_created\";i:1670410685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/workshop-center-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:17:\"[\"404\",\"Flexbox\"]\";s:10:\"menu_order\";i:301;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:21:{s:4:\"tmpl\";i:1719;s:2:\"id\";i:26163;s:5:\"title\";s:23:\"Workshop Center About 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/About-5-1.jpg\";s:12:\"tmpl_created\";i:1670410717;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/workshop-center-about-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:5:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:21:{s:4:\"tmpl\";i:1720;s:2:\"id\";i:26169;s:5:\"title\";s:23:\"Workshop Center About 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/About-7.jpg\";s:12:\"tmpl_created\";i:1670410808;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/workshop-center-about-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:5:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:21:{s:4:\"tmpl\";i:1721;s:2:\"id\";i:26175;s:5:\"title\";s:23:\"Workshop Center About 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/About-6-1.jpg\";s:12:\"tmpl_created\";i:1670410829;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/workshop-center-about-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:5:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:304;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:21:{s:4:\"tmpl\";i:1722;s:2:\"id\";i:26181;s:5:\"title\";s:23:\"Workshop Center About 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/About-4-1.jpg\";s:12:\"tmpl_created\";i:1670410861;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/workshop-center-about-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:5:\"about\";s:4:\"tags\";s:19:\"[\"About\",\"Flexbox\"]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:21:{s:4:\"tmpl\";i:1723;s:2:\"id\";i:26193;s:5:\"title\";s:27:\"Workshop Center Benefites 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2022/09/Benefites-6-1.jpg\";s:12:\"tmpl_created\";i:1670411089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/workshop-center-benefites-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:8:\"Benefits\";s:4:\"tags\";s:22:\"[\"Benefits\",\"Flexbox\"]\";s:10:\"menu_order\";i:306;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:21:{s:4:\"tmpl\";i:1724;s:2:\"id\";i:26200;s:5:\"title\";s:27:\"Workshop Center Benefites 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Benefites-8.jpg\";s:12:\"tmpl_created\";i:1670411139;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/workshop-center-benefites-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:\"Benefits\";s:4:\"tags\";s:22:\"[\"Benefits\",\"Flexbox\"]\";s:10:\"menu_order\";i:307;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:21:{s:4:\"tmpl\";i:1725;s:2:\"id\";i:26187;s:5:\"title\";s:26:\"Workshop Center Benefits 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2022/09/Benefites-5-1.jpg\";s:12:\"tmpl_created\";i:1670411161;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/workshop-center-benefits-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:8:\"Benefits\";s:4:\"tags\";s:22:\"[\"Benefits\",\"Flexbox\"]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:21:{s:4:\"tmpl\";i:1726;s:2:\"id\";i:26206;s:5:\"title\";s:26:\"Workshop Center Benefits 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Benefites-7.jpg\";s:12:\"tmpl_created\";i:1670411187;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/workshop-center-benefits-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:8:\"Benefits\";s:4:\"tags\";s:22:\"[\"Benefits\",\"Flexbox\"]\";s:10:\"menu_order\";i:309;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:21:{s:4:\"tmpl\";i:1727;s:2:\"id\";i:26212;s:5:\"title\";s:25:\"Workshop Center Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Contact-5-1.jpg\";s:12:\"tmpl_created\";i:1670411217;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/workshop-center-contact-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:\"contact\";s:4:\"tags\";s:21:\"[\"Contact\",\"Flexbox\"]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:21:{s:4:\"tmpl\";i:1728;s:2:\"id\";i:26219;s:5:\"title\";s:25:\"Workshop Center Contact 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Contact-6-1.jpg\";s:12:\"tmpl_created\";i:1670411262;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/workshop-center-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:21:\"[\"Contact\",\"Flexbox\"]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:21:{s:4:\"tmpl\";i:1729;s:2:\"id\";i:26224;s:5:\"title\";s:25:\"Workshop Center Contact 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Contact-7.jpg\";s:12:\"tmpl_created\";i:1670411289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/workshop-center-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:21:\"[\"Contact\",\"Flexbox\"]\";s:10:\"menu_order\";i:312;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:21:{s:4:\"tmpl\";i:1730;s:2:\"id\";i:26230;s:5:\"title\";s:25:\"Workshop Center Contact 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Contact-8.jpg\";s:12:\"tmpl_created\";i:1670411357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/workshop-center-contact-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:\"contact\";s:4:\"tags\";s:21:\"[\"Contact\",\"Flexbox\"]\";s:10:\"menu_order\";i:313;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:21:{s:4:\"tmpl\";i:1731;s:2:\"id\";i:26236;s:5:\"title\";s:21:\"Workshop Center CTA 1\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2022/09/CTA-4.jpg\";s:12:\"tmpl_created\";i:1670411384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/workshop-center-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:17:\"[\"cta\",\"Flexbox\"]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:403;a:21:{s:4:\"tmpl\";i:1732;s:2:\"id\";i:26242;s:5:\"title\";s:21:\"Workshop Center CTA 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/CTA-5-1.jpg\";s:12:\"tmpl_created\";i:1670411403;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/workshop-center-cta-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:14:\"call to action\";s:4:\"tags\";s:17:\"[\"cta\",\"Flexbox\"]\";s:10:\"menu_order\";i:315;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:21:{s:4:\"tmpl\";i:1733;s:2:\"id\";i:26248;s:5:\"title\";s:21:\"Workshop Center CTA 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2022/09/CTA-6-1.jpg\";s:12:\"tmpl_created\";i:1670411431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/workshop-center-cta-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:14:\"call to action\";s:4:\"tags\";s:17:\"[\"cta\",\"Flexbox\"]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:21:{s:4:\"tmpl\";i:1734;s:2:\"id\";i:26254;s:5:\"title\";s:22:\"Workshop Center Data 1\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2022/09/Data1.jpg\";s:12:\"tmpl_created\";i:1670411450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/workshop-center-data-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:\"Data\";s:4:\"tags\";s:26:\"[\"Data\",\"Flexbox\",\"Stats\"]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:21:{s:4:\"tmpl\";i:1735;s:2:\"id\";i:26263;s:5:\"title\";s:22:\"Workshop Center Data 2\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2022/09/Data-3.jpg\";s:12:\"tmpl_created\";i:1670411468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/workshop-center-data-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:\"Data\";s:4:\"tags\";s:26:\"[\"Data\",\"Flexbox\",\"Stats\"]\";s:10:\"menu_order\";i:318;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:21:{s:4:\"tmpl\";i:1736;s:2:\"id\";i:26269;s:5:\"title\";s:25:\"Workshop Center Gallery 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Gallery-6.jpg\";s:12:\"tmpl_created\";i:1670411491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/workshop-center-gallery-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:\"Gallery\";s:4:\"tags\";s:21:\"[\"Flexbox\",\"Gallery\"]\";s:10:\"menu_order\";i:319;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:21:{s:4:\"tmpl\";i:1737;s:2:\"id\";i:26275;s:5:\"title\";s:25:\"Workshop Center Gallery 2\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/09/Gallery-10.jpg\";s:12:\"tmpl_created\";i:1670411522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/workshop-center-gallery-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:\"Gallery\";s:4:\"tags\";s:21:\"[\"Flexbox\",\"Gallery\"]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:21:{s:4:\"tmpl\";i:1738;s:2:\"id\";i:26281;s:5:\"title\";s:25:\"Workshop Center Gallery 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Gallery-7.jpg\";s:12:\"tmpl_created\";i:1670411571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/workshop-center-gallery-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:\"Gallery\";s:4:\"tags\";s:21:\"[\"Flexbox\",\"Gallery\"]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:21:{s:4:\"tmpl\";i:1739;s:2:\"id\";i:26287;s:5:\"title\";s:25:\"Workshop Center Gallery 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Gallery-9.jpg\";s:12:\"tmpl_created\";i:1670411592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/workshop-center-gallery-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:\"Gallery\";s:4:\"tags\";s:21:\"[\"Flexbox\",\"Gallery\"]\";s:10:\"menu_order\";i:322;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:21:{s:4:\"tmpl\";i:1740;s:2:\"id\";i:26297;s:5:\"title\";s:25:\"Workshop Center Gallery 5\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Gallery-8.jpg\";s:12:\"tmpl_created\";i:1670411976;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/workshop-center-gallery-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:\"Gallery\";s:4:\"tags\";s:21:\"[\"Flexbox\",\"Gallery\"]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:21:{s:4:\"tmpl\";i:1741;s:2:\"id\";i:26305;s:5:\"title\";s:22:\"Workshop Center Hero 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2022/09/Hero-4-1.jpg\";s:12:\"tmpl_created\";i:1670411991;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/workshop-center-hero-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:\"hero\";s:4:\"tags\";s:18:\"[\"Flexbox\",\"hero\"]\";s:10:\"menu_order\";i:324;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:21:{s:4:\"tmpl\";i:1742;s:2:\"id\";i:26314;s:5:\"title\";s:22:\"Workshop Center Hero 2\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2022/09/Hero-5.jpg\";s:12:\"tmpl_created\";i:1670412017;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/workshop-center-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:18:\"[\"Flexbox\",\"hero\"]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:21:{s:4:\"tmpl\";i:1743;s:2:\"id\";i:26320;s:5:\"title\";s:22:\"Workshop Center Hero 3\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2022/09/Hero-6.jpg\";s:12:\"tmpl_created\";i:1670412103;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/workshop-center-hero-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:4:\"hero\";s:4:\"tags\";s:18:\"[\"Flexbox\",\"hero\"]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:21:{s:4:\"tmpl\";i:1744;s:2:\"id\";i:26326;s:5:\"title\";s:25:\"Workshop Center Pricing 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Pricing-7-1.jpg\";s:12:\"tmpl_created\";i:1670412149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/workshop-center-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:21:\"[\"Flexbox\",\"Pricing\"]\";s:10:\"menu_order\";i:327;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:21:{s:4:\"tmpl\";i:1779;s:2:\"id\";i:26332;s:5:\"title\";s:25:\"Workshop Center Pricing 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Pricing-8-2.jpg\";s:12:\"tmpl_created\";i:1673876437;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/workshop-center-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:21:\"[\"Flexbox\",\"Pricing\"]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:21:{s:4:\"tmpl\";i:1745;s:2:\"id\";i:26338;s:5:\"title\";s:25:\"Workshop Center Pricing 3\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/09/Pricing-12.jpg\";s:12:\"tmpl_created\";i:1670412538;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/workshop-center-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:21:\"[\"Flexbox\",\"Pricing\"]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:21:{s:4:\"tmpl\";i:1746;s:2:\"id\";i:26344;s:5:\"title\";s:25:\"Workshop Center Pricing 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2022/09/Pricing-9.jpg\";s:12:\"tmpl_created\";i:1670413253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/workshop-center-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:21:\"[\"Flexbox\",\"Pricing\"]\";s:10:\"menu_order\";i:330;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:21:{s:4:\"tmpl\";i:1747;s:2:\"id\";i:26350;s:5:\"title\";s:25:\"Workshop Center Pricing 5\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/09/Pricing-10.jpg\";s:12:\"tmpl_created\";i:1670413294;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/workshop-center-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:21:\"[\"Flexbox\",\"Pricing\"]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:21:{s:4:\"tmpl\";i:1758;s:2:\"id\";i:26366;s:5:\"title\";s:25:\"Workshop Center Pricing 6\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/09/Pricing-11.jpg\";s:12:\"tmpl_created\";i:1670413832;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/workshop-center-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:21:\"[\"Flexbox\",\"Pricing\"]\";s:10:\"menu_order\";i:332;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:21:{s:4:\"tmpl\";i:1759;s:2:\"id\";i:26372;s:5:\"title\";s:33:\"Workshop Center Service Details 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/09/Service-Details-4.jpg\";s:12:\"tmpl_created\";i:1670413855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/blocks/workshop-center-service-details-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:15:\"Service Details\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:333;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:422;a:21:{s:4:\"tmpl\";i:1760;s:2:\"id\";i:26378;s:5:\"title\";s:33:\"Workshop Center Service Details 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/09/Service-Details-5.jpg\";s:12:\"tmpl_created\";i:1670413873;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/blocks/workshop-center-service-details-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:15:\"Service Details\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:334;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:21:{s:4:\"tmpl\";i:1761;s:2:\"id\";i:26384;s:5:\"title\";s:33:\"Workshop Center Service Details 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/09/Service-Details-6.jpg\";s:12:\"tmpl_created\";i:1670413890;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/blocks/workshop-center-service-details-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:15:\"Service Details\";s:4:\"tags\";s:40:\"[\"Flexbox\",\"Service details\",\"Services\"]\";s:10:\"menu_order\";i:335;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:21:{s:4:\"tmpl\";i:1762;s:2:\"id\";i:26394;s:5:\"title\";s:26:\"Workshop Center Services 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-5.jpg\";s:12:\"tmpl_created\";i:1670413924;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/workshop-center-services-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:8:\"services\";s:4:\"tags\";s:22:\"[\"Flexbox\",\"Services\"]\";s:10:\"menu_order\";i:336;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:21:{s:4:\"tmpl\";i:1763;s:2:\"id\";i:26400;s:5:\"title\";s:26:\"Workshop Center Services 2\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-6.jpg\";s:12:\"tmpl_created\";i:1670413942;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/workshop-center-services-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:8:\"services\";s:4:\"tags\";s:22:\"[\"Flexbox\",\"Services\"]\";s:10:\"menu_order\";i:337;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:21:{s:4:\"tmpl\";i:1748;s:2:\"id\";i:26406;s:5:\"title\";s:26:\"Workshop Center Services 3\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-7.jpg\";s:12:\"tmpl_created\";i:1670413329;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/workshop-center-services-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:\"services\";s:4:\"tags\";s:22:\"[\"Flexbox\",\"Services\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:21:{s:4:\"tmpl\";i:1749;s:2:\"id\";i:26415;s:5:\"title\";s:26:\"Workshop Center Services 4\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/09/Services-8.jpg\";s:12:\"tmpl_created\";i:1670413346;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/workshop-center-services-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:8:\"services\";s:4:\"tags\";s:22:\"[\"Flexbox\",\"Services\"]\";s:10:\"menu_order\";i:339;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:428;a:21:{s:4:\"tmpl\";i:1750;s:2:\"id\";i:26421;s:5:\"title\";s:27:\"Workshop Center Subscribe 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Subscribe-4.jpg\";s:12:\"tmpl_created\";i:1670413380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/workshop-center-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:30:\"[\"Flexbox\",\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:21:{s:4:\"tmpl\";i:1751;s:2:\"id\";i:26427;s:5:\"title\";s:27:\"Workshop Center Subscribe 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2022/09/Subscribe-2-1.jpg\";s:12:\"tmpl_created\";i:1670413438;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/workshop-center-subscribe-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:30:\"[\"Flexbox\",\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:341;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:21:{s:4:\"tmpl\";i:1752;s:2:\"id\";i:26433;s:5:\"title\";s:27:\"Workshop Center Subscribe 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/09/Subscribe-3.jpg\";s:12:\"tmpl_created\";i:1670413502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/workshop-center-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:30:\"[\"Flexbox\",\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:21:{s:4:\"tmpl\";i:1753;s:2:\"id\";i:26445;s:5:\"title\";s:22:\"Workshop Center Team 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2022/09/Team-6-1.jpg\";s:12:\"tmpl_created\";i:1670413564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/workshop-center-team-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:18:\"[\"Flexbox\",\"Team\"]\";s:10:\"menu_order\";i:343;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:21:{s:4:\"tmpl\";i:1754;s:2:\"id\";i:26451;s:5:\"title\";s:22:\"Workshop Center Team 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/12/Team3-workshop.jpg\";s:12:\"tmpl_created\";i:1670413681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/workshop-center-team-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:4:\"team\";s:4:\"tags\";s:18:\"[\"Flexbox\",\"Team\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:21:{s:4:\"tmpl\";i:1755;s:2:\"id\";i:26439;s:5:\"title\";s:21:\"Workshop Center Team1\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2022/09/Team-4.jpg\";s:12:\"tmpl_created\";i:1670413698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/workshop-center-team1/?utm_source=template-library&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:18:\"[\"Flexbox\",\"Team\"]\";s:10:\"menu_order\";i:345;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:21:{s:4:\"tmpl\";i:1585;s:2:\"id\";i:26493;s:5:\"title\";s:31:\"Workshop Center Testimonials 06\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/09/Testemonials-11.jpg\";s:12:\"tmpl_created\";i:1670403086;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/blocks/workshop-center-testimonials-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:12:\"testimonials\";s:4:\"tags\";s:25:\"[\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:21:{s:4:\"tmpl\";i:1756;s:2:\"id\";i:26456;s:5:\"title\";s:30:\"Workshop Center Testimonials 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/09/Testemonials-7-1.jpg\";s:12:\"tmpl_created\";i:1670413740;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/workshop-center-testimonials-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:12:\"testimonials\";s:4:\"tags\";s:25:\"[\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:347;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:21:{s:4:\"tmpl\";i:1757;s:2:\"id\";i:26463;s:5:\"title\";s:30:\"Workshop Center Testimonials 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/09/Testemonials-9-1.jpg\";s:12:\"tmpl_created\";i:1670413756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/workshop-center-testimonials-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:25:\"[\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:348;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:21:{s:4:\"tmpl\";i:1594;s:2:\"id\";i:26469;s:5:\"title\";s:30:\"Workshop Center Testimonials 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/09/Testemonials-8-1.jpg\";s:12:\"tmpl_created\";i:1670403314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/workshop-center-testimonials-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:12:\"testimonials\";s:4:\"tags\";s:25:\"[\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:21:{s:4:\"tmpl\";i:1589;s:2:\"id\";i:26475;s:5:\"title\";s:30:\"Workshop Center Testimonials 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/09/Testemonials-12.jpg\";s:12:\"tmpl_created\";i:1670403189;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/workshop-center-testimonials-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:12:\"testimonials\";s:4:\"tags\";s:25:\"[\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:350;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:21:{s:4:\"tmpl\";i:1586;s:2:\"id\";i:26481;s:5:\"title\";s:30:\"Workshop Center Testimonials 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/09/Testemonials-10-1.jpg\";s:12:\"tmpl_created\";i:1670403118;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/workshop-center-testimonials-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:12:\"testimonials\";s:4:\"tags\";s:25:\"[\"Flexbox\",\"Testimonial\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:17:\"container_flexbox\";s:15:\"minimum_version\";s:6:\"3.10.0\";s:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607517','_elementor_home_screen_data','a:2:{s:7:\"timeout\";i:1780828707;s:5:\"value\";s:13520:\"{\"top_with_licences\":[{\"license\":[\"free\"],\"title_small\":\"Hi!\",\"title\":\"Unleash your imagination with Elementor\",\"description\":\"Start building your website with Elementor\'s no code drag & drop editor.\",\"button_create_page_title\":\"Create a Page\",\"button_watch_title\":\"Watch a guide\",\"button_watch_url\":\"https:\\/\\/www.youtube.com\\/watch?v=le72grP_Q6k&t=1s\",\"youtube_embed_id\":\"le72grP_Q6k?si=g2akyWNODL6usu6u\"},{\"license\":[\"pro\"],\"title_small\":\"Hi!\",\"title\":\"Unleash your imagination with Elementor\",\"description\":\"Now you\'ve got all the tools to start creating professional, high-performing websites - and that journey begins by creating your first page.\",\"button_create_page_title\":\"Create a Page\",\"button_watch_title\":\"Watch a guide\",\"button_watch_url\":\"https:\\/\\/www.youtube.com\\/watch?v=QdkDGrS8ZZs\",\"youtube_embed_id\":\"QdkDGrS8ZZs?si=s_VjZCQR6Fh1jgB5\"},{\"license\":[\"one\"],\"title_small\":\"Hi!\",\"title\":\"Unleash your imagination with Elementor\",\"description\":\"Now you\'ve got all the tools to start creating professional, high-performing websites - and that journey begins by creating your first page.\",\"button_create_page_title\":\"Create a Page\",\"button_watch_title\":\"Watch a guide\",\"button_watch_url\":\"https:\\/\\/www.youtube.com\\/watch?v=QdkDGrS8ZZs\",\"youtube_embed_id\":\"QdkDGrS8ZZs?si=s_VjZCQR6Fh1jgB5\"}],\"get_started\":[{\"license\":[\"free\"],\"header\":{\"title\":\"Jumpstart your web-creation\",\"description\":\"These quick actions will get your site airborne with a customized design.\"},\"repeater\":[{\"title\":\"Site Settings\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-settings.svg\"},{\"title\":\"Site Logo\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"tab_id\":\"settings-site-identity\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-logo.svg\"},{\"title\":\"Global Colors\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"tab_id\":\"global-colors\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-colors.svg\"},{\"title\":\"Global Fonts\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"tab_id\":\"global-typography\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-fonts.svg\"},{\"title\":\"Theme Builder\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor-app\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/theme-builder.svg\"},{\"title\":\"Popups\",\"title_small\":\"Customize\",\"url\":\"edit.php?post_type=elementor_library&page=popup_templates\",\"is_relative_url\":true,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/popups.svg\"},{\"title\":\"Custom Icons\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_icons\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-icons.svg\"},{\"title\":\"Custom Fonts\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_fonts\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-fonts.svg\",\"title_small_color\":\"text.tertiary\"}]},{\"license\":[\"pro\"],\"header\":{\"title\":\"Jumpstart your web-creation\",\"description\":\"These quick actions will get your site airborne with a customized design.\"},\"repeater\":[{\"title\":\"Site Settings\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-settings.svg\"},{\"title\":\"Site Logo\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"settings-site-identity\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-logo.svg\"},{\"title\":\"Global Colors\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-colors\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-colors.svg\"},{\"title\":\"Global Fonts\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-typography\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-fonts.svg\"},{\"title\":\"Theme Builder\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor-app\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/theme-builder.svg\"},{\"title\":\"Popups\",\"title_small\":\"Customize\",\"url\":\"edit.php?post_type=elementor_library&tabs_group=popup&elementor_library_type=popup\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/popups.svg\"},{\"title\":\"Custom Icons\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_icons\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-icons.svg\"},{\"title\":\"Custom Fonts\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_fonts\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-fonts.svg\"}]},{\"license\":[\"one\"],\"header\":{\"title\":\"Jumpstart your web-creation\",\"description\":\"These quick actions will get your site airborne with a customized design.\"},\"repeater\":[{\"title\":\"Site Settings\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-settings.svg\"},{\"title\":\"Site Logo\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"settings-site-identity\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-logo.svg\"},{\"title\":\"Global Colors\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-colors\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-colors.svg\"},{\"title\":\"Global Fonts\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-typography\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-fonts.svg\"},{\"title\":\"Theme Builder\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor-app\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/theme-builder.svg\"},{\"title\":\"Popups\",\"title_small\":\"Customize\",\"url\":\"edit.php?post_type=elementor_library&tabs_group=popup&elementor_library_type=popup\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/popups.svg\"},{\"title\":\"Custom Icons\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_icons\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-icons.svg\"},{\"title\":\"Custom Fonts\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_fonts\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-fonts.svg\"}]}],\"add_ons\":{\"hide_section\":[\"free\",\"essential\",\"pro\",\"one\"],\"header\":{\"title\":\"Expand your design toolkit\",\"description\":\"These plugins, add-ons, and tools, have been selected to streamline your workflow and maximize your creativity.\"},\"repeater\":[{\"file_path\":\"pojo-accessibility\\/pojo-accessibility.php\",\"title\":\"Ally - Web Accessibility. Simplified.\",\"url\":\"\",\"description\":\"Make your website more accessible with powerful tools to detect and fix issues, enhance usability, and create a better experience for all visitors.\",\"button_label\":\"Install\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/ally_logo.svg\",\"type\":\"wporg\"},{\"file_path\":\"site-mailer\\/site-mailer.php\",\"title\":\"Site Mailer\",\"url\":\"\",\"description\":\"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\\u2014no need for an SMTP plugin or complicated configurations.\",\"button_label\":\"Install\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-mailer.svg\",\"type\":\"wporg\"},{\"file_path\":\"image-optimization\\/image-optimization.php\",\"title\":\"Image Optimizer\",\"url\":\"https:\\/\\/go.elementor.com\\/wp-dash-apps-author-uri-elementor-io\\/\",\"description\":\"Check out this incredibly useful plugin that will compress and optimize your images, giving you leaner, faster websites.\",\"button_label\":\"Install\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/image-optimizer.svg\",\"type\":\"wporg\"},{\"title\":\"Elementor AI\",\"url\":\"https:\\/\\/go.elementor.com\\/wp-dash-apps-author-uri-elementor-ai\\/\",\"description\":\"Boost creativity with Elementor AI. Craft & enhance copy, create custom CSS & Code, and generate images to elevate your website.\",\"button_label\":\"Let\'s go\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/elementor.svg\",\"type\":\"link\",\"condition\":{\"key\":\"introduction_meta\",\"value\":\"ai_get_started\"}}],\"footer\":{\"label\":\"Explore more add-ons\",\"file_path\":\"wp-admin\\/admin.php?page=elementor-apps\"}},\"sidebar_promotion_variants\":[{\"license\":[\"essential\"],\"is_enabled\":\"true\",\"type\":\"banner\",\"data\":{\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/essential-upgrade.svg\",\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-advanced-home-sidebar-upgrade\\/\"}},{\"license\":[\"free\"],\"is_enabled\":\"true\",\"type\":\"banner\",\"data\":{\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/upgrade-free.svg\",\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\"}},{\"license\":[\"expired\"],\"is_enabled\":\"true\",\"type\":\"banner\",\"data\":{\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/upgrade-free.svg\",\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-expired\\/\"}},{\"license\":[\"free\"],\"is_enabled\":\"false\",\"type\":\"default\",\"data\":{\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\'s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/update-sidebar.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]}},{\"license\":[\"pro\"],\"is_enabled\":\"false\",\"type\":\"default\",\"data\":{\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\'s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/update-sidebar.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]}},{\"license\":[\"one\"],\"is_enabled\":\"false\",\"type\":\"default\",\"data\":{\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\'s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/update-sidebar.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]}}],\"external_links\":[{\"label\":\"Help Center\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-question-mark.svg\",\"url\":\"https:\\/\\/elementor.com\\/help\\/\"},{\"label\":\"Youtube\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-youtube.svg\",\"url\":\"https:\\/\\/www.youtube.com\\/@Elementor\"},{\"label\":\"Facebook Community\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-community.svg\",\"url\":\"https:\\/\\/www.facebook.com\\/groups\\/Elementors\"},{\"label\":\"Blog\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-academic-hat.svg\",\"url\":\"https:\\/\\/elementor.com\\/blog\\/\"}],\"site_builder\":[{\"hasInput\":true,\"title\":\"From idea to website in minutes\",\"placeholder\":\"What site do you want to build?\",\"buttonLabel\":\"Create my site\"},{\"hasInput\":false,\"title\":\"From idea to website in minutes\",\"text\":\"Review your brief and generate your website\",\"buttonLabel\":\"Create site\"},{\"hasInput\":false,\"title\":\"Let\'s turn your sitemap into a design\",\"text\":\"Your sitemap is waiting for you to continue.\",\"buttonLabel\":\"Visit sitemap\"},{\"hasInput\":false,\"title\":\"Your site design is waiting\",\"text\":\"Jump back in to review, edit, and add to Elementor.\",\"buttonLabel\":\"Review design\"},{\"hasInput\":false,\"title\":\"Your site design is ready to go live\",\"text\":\"Review and publish your site to continue editing in Elementor.\",\"buttonLabel\":\"Review & publish\"},{\"hasInput\":true,\"title\":\"Expand your site with Elementor AI\",\"placeholder\":\"Which page do you want to create?\",\"buttonLabel\":\"Create page\"},{\"hasInput\":true,\"title\":\"Expand your site with Elementor AI\",\"placeholder\":\"Which page do you want to create?\",\"buttonLabel\":\"Create page\"}]}\";}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607520','elementor_css_print_method','external','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607541','elementor_safe_mode_allowed_plugins','a:3:{s:9:\"elementor\";s:23:\"elementor/elementor.php\";s:13:\"elementor_pro\";s:31:\"elementor-pro/elementor-pro.php\";s:11:\"woocommerce\";s:27:\"woocommerce/woocommerce.php\";}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607542','_transient_timeout_wc_order_1786_needs_processing','1780891147','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607543','_transient_wc_order_1786_needs_processing','1','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607577','_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1780828560','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607578','_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:9306;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:5037;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2872;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2800;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:2699;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:2267;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2195;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1999;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1818;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1726;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:1668;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1632;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1597;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1572;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1518;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1513;}s:2:\"ai\";a:3:{s:4:\"name\";s:2:\"AI\";s:4:\"slug\";s:2:\"ai\";s:5:\"count\";i:1467;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1423;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1352;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1322;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:1300;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:1282;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:1219;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1197;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:1163;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1158;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:1138;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:1116;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:1100;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:1062;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:1050;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:1044;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:1006;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:985;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:967;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:963;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:949;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:933;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:913;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:887;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:861;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:821;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:804;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:800;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:794;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:783;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:781;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:761;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:755;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:753;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:743;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:727;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:723;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:721;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:710;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:706;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:703;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:687;}s:8:\"checkout\";a:3:{s:4:\"name\";s:8:\"checkout\";s:4:\"slug\";s:8:\"checkout\";s:5:\"count\";i:687;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:679;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:676;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:664;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:662;}s:7:\"chatbot\";a:3:{s:4:\"name\";s:7:\"chatbot\";s:4:\"slug\";s:7:\"chatbot\";s:5:\"count\";i:656;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:652;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:650;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:649;}s:8:\"payments\";a:3:{s:4:\"name\";s:8:\"payments\";s:4:\"slug\";s:8:\"payments\";s:5:\"count\";i:647;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:637;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:625;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:622;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:615;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:612;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:595;}s:10:\"automation\";a:3:{s:4:\"name\";s:10:\"automation\";s:4:\"slug\";s:10:\"automation\";s:5:\"count\";i:592;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:584;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:584;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:576;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:572;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:572;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:565;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:561;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:551;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:549;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:540;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:540;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:540;}s:9:\"live-chat\";a:3:{s:4:\"name\";s:9:\"live chat\";s:4:\"slug\";s:9:\"live-chat\";s:5:\"count\";i:533;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:528;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:527;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:516;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:503;}s:7:\"booking\";a:3:{s:4:\"name\";s:7:\"booking\";s:4:\"slug\";s:7:\"booking\";s:5:\"count\";i:502;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:502;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:499;}s:4:\"gdpr\";a:3:{s:4:\"name\";s:4:\"GDPR\";s:4:\"slug\";s:4:\"gdpr\";s:5:\"count\";i:494;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:476;}s:8:\"products\";a:3:{s:4:\"name\";s:8:\"products\";s:4:\"slug\";s:8:\"products\";s:5:\"count\";i:475;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:467;}s:7:\"reviews\";a:3:{s:4:\"name\";s:7:\"reviews\";s:4:\"slug\";s:7:\"reviews\";s:5:\"count\";i:465;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607589','_site_transient_timeout_wp_remote_block_patterns_046dbb747005338ad8479227b1527caf','1780822530','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607590','_site_transient_wp_remote_block_patterns_046dbb747005338ad8479227b1527caf','a:44:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:514958;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Intro area with heading and image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1726:\"\n<div class=\"wp-block-group alignfull is-content-justification-center is-layout-constrained wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0\">\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-layout-flow wp-block-group-is-layout-flow\">\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top is-layout-flex wp-container-core-columns-is-layout-f40d6e23 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-top is-content-justification-left is-layout-constrained wp-container-core-column-is-layout-b7e24cf4 wp-block-column-is-layout-constrained\">\n<h2 class=\"wp-block-heading\">Uncover a realm of opportunities.</h2>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:40{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<p class=\"wp-block-paragraph\">Exploring life&#8217;s complex tapestry, options reveal routes to the exceptional, requiring innovation, inquisitiveness, and bravery for a deeply satisfying voyage.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://pd.w.org/2023/07/44364b18862589f06.53436652.jpg\" alt=\"\" style=\"aspect-ratio:16/9;object-fit:cover\" /></figure>\n</div>\n\n\n\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:4:\"hero\";s:16:\"wpop_description\";s:93:\"Two columns of text, left with a heading and right with a paragraph, with a wide image below.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.5\";s:25:\"wpop_contains_block_types\";s:111:\"core/button,core/buttons,core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"about\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2422:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"metadata\":{\"name\":\"Contents\"},\"align\":\"wide\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"450px\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Uncover a realm of opportunities.</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"40{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:40{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:paragraph -->\n<p>Exploring life\'s complex tapestry, options reveal routes to the exceptional, requiring innovation, inquisitiveness, and bravery for a deeply satisfying voyage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"aspectRatio\":\"16/9\",\"scale\":\"cover\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2023/07/44364b18862589f06.53436652.jpg\" alt=\"\" style=\"aspect-ratio:16/9;object-fit:cover\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:309935;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Centered image with two-tone background color\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1330:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:66vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(90deg,rgb(35,74,20) 50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05},rgb(225,137,116) 50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05})\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-9cfa9a5a is-layout-constrained wp-container-core-group-is-layout-50c52e0b wp-block-group-is-layout-constrained\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large is-style-default wp-duotone-000000-ffffff-1\"><img decoding=\"async\" src=\"https://pd.w.org/2022/03/3866241b433db4ee2.96648572.jpeg\" alt=\"\" /></figure>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-white-color has-text-color\" style=\"padding-left:32px;font-size:50px;font-style:normal;font-weight:400;letter-spacing:32px;line-height:1;text-transform:uppercase\">Etcetera</h2>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:18:\"Gradient, Two-Tone\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:57:\"core/cover,core/group,core/heading,core/image,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:6:\"banner\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2134:\"<!-- wp:cover {\"minHeight\":66,\"minHeightUnit\":\"vh\",\"customGradient\":\"linear-gradient(90deg,rgb(35,74,20) 50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05},rgb(225,137,116) 50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05})\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(90deg,rgb(35,74,20) 50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05},rgb(225,137,116) 50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05})\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"600px\",\"wideSize\":\"1200px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"color\":{\"duotone\":[\"#000000\",\"#ffffff\"]}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://pd.w.org/2022/03/3866241b433db4ee2.96648572.jpeg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"50px\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"32px\",\"lineHeight\":\"1\"},\"spacing\":{\"padding\":{\"left\":\"32px\"}}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-white-color has-text-color\" style=\"padding-left:32px;font-size:50px;font-style:normal;font-weight:400;letter-spacing:32px;line-height:1;text-transform:uppercase\">Etcetera</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:309925;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:43:\"Fullwidth Dark Banner with Heading Top Left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1103:\"\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-left\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:50vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#141414\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-333\" alt=\"\" src=\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\" style=\"object-position:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\" data-object-fit=\"cover\" data-object-position=\"50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-9cfa9a5a is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-9dc1a525 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left has-text-color has-source-serif-pro-font-family wp-block-paragraph\" style=\"color:#d8a557;font-size:160px;font-style:italic;font-weight:900;letter-spacing:-4px;line-height:0.8;text-transform:none\">bud!</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:16:\"Jazz, Fulllwidth\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1697:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\",\"id\":333,\"dimRatio\":90,\"customOverlayColor\":\"#141414\",\"focalPoint\":{\"x\":0.5,\"y\":0},\"minHeight\":50,\"minHeightUnit\":\"vh\",\"contentPosition\":\"top left\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-left\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#141414\"></span><img class=\"wp-block-cover__image-background wp-image-333\" alt=\"\" src=\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\" style=\"object-position:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\" data-object-fit=\"cover\" data-object-position=\"50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"fontStyle\":\"italic\",\"fontWeight\":\"900\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\",\"textTransform\":\"none\"},\"color\":{\"text\":\"#d8a557\"}},\"fontFamily\":\"source-serif-pro\"} -->\n<p class=\"has-text-align-left has-text-color has-source-serif-pro-font-family\" style=\"color:#d8a557;font-size:160px;font-style:italic;font-weight:900;letter-spacing:-4px;line-height:0.8;text-transform:none\">bud!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:309230;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:44:\"Fullwidth cover with repeating gradient text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1826:\"\n<div class=\"wp-block-cover alignfull is-light wp-duotone-36345d-abaaaa-2\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\" style=\"background-color:#c2b7a4\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\" style=\"object-position:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 5{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\" data-object-fit=\"cover\" data-object-position=\"50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 5{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-e59d9123 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-right has-text-color wp-block-paragraph\" style=\"color:#c8c4d3;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color wp-block-paragraph\" style=\"color:#ac94b2;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color wp-block-paragraph\" style=\"color:#71689c;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color wp-block-paragraph\" style=\"color:#444178;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n</div>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:48:\"Fullwidth, Background Image, Gradient, Uppercase\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:48:\"core/cover,core/group,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3135:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\",\"id\":334,\"dimRatio\":60,\"customOverlayColor\":\"#c2b7a4\",\"focalPoint\":{\"x\":0.5,\"y\":0.05},\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"#36345d\",\"#abaaaa\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\" style=\"background-color:#c2b7a4\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\" style=\"object-position:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 5{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\" data-object-fit=\"cover\" data-object-position=\"50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 5{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#c8c4d3\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#c8c4d3;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#ac94b2\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ac94b2;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#71689c\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#71689c;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#444178\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#444178;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:309224;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:72:\"Fullwidth, vertically aligned headline on right with description on left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2286:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e68b14\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-flex wp-container-core-group-is-layout-bbbc119a wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-8eb0bdf3 is-layout-flow wp-container-core-group-is-layout-bf4059b8 wp-block-group-is-layout-flow\">\n<p class=\"wp-container-content-aeb25491 wp-block-paragraph\" style=\"font-size:17px;font-style:normal;font-weight:300;letter-spacing:0px;line-height:1.4;text-decoration:none;text-transform:none\">Let &#8217;em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:14px;padding-right:36px;padding-bottom:14px;padding-left:36px\">Shop Now</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group wp-container-content-9cfa9a5a is-layout-flow wp-container-core-group-is-layout-a806e4b5 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-right has-black-color has-text-color wp-block-paragraph\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Let<br>&#8216;EM<br>Roll</p>\n\n\n\n<p class=\"has-text-align-right has-white-color has-text-color wp-block-paragraph\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Big<br>John<br>Patton</p>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:60:\"vertically, bold, jazz, shop, store, headline, hero, product\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:61:\"core/button,core/buttons,core/cover,core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3726:\"<!-- wp:cover {\"customOverlayColor\":\"#e68b14\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e68b14\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"320px\"},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"330px\"},\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"1.4\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"}}} -->\n<p style=\"font-size:17px;font-style:normal;font-weight:300;letter-spacing:0px;line-height:1.4;text-decoration:none;text-transform:none\">Let \'em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"black\",\"textColor\":\"white\",\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"14px\",\"bottom\":\"14px\",\"left\":\"36px\",\"right\":\"36px\"}},\"border\":{\"radius\":\"0px\",\"top\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"right\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"bottom\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"left\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"}}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:14px;padding-right:36px;padding-bottom:14px;padding-left:36px\">Shop Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Let<br>\'EM<br>Roll</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"}},\"textColor\":\"white\"} -->\n<p class=\"has-text-align-right has-white-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Big<br>John<br>Patton</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:309236;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:60:\"Fullwidth headline with links and gradient offset background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2127:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:5vw;padding-bottom:48px;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(180deg,rgb(0,0,0) 39{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05},rgb(83,80,123) 39{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05})\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-385e35e4 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-9cfa9a5a is-layout-flow wp-container-core-group-is-layout-a806e4b5 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-left has-white-color has-text-color has-link-color wp-elements-45f800048fc9de7cd05017eb73b2d5ab wp-block-paragraph\" style=\"font-size:172px;font-style:normal;font-weight:700;letter-spacing:-10px;line-height:0.7;text-transform:uppercase\"><strong>MONK</strong>.</p>\n</div>\n\n\n\n<div class=\"wp-block-group wp-container-content-9dbf05af is-layout-flow wp-container-core-group-is-layout-bf4059b8 wp-block-group-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-core-group-is-layout-9d49bf4d wp-block-group-is-layout-flex\">\n<p class=\"has-white-color has-text-color has-link-color wp-elements-fcaed05d2b63cfab14801929208209cc wp-block-paragraph\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">A new collection</p>\n\n\n\n<p class=\"has-white-color has-text-color has-link-color wp-elements-9052d836cb5172aae9b2f2bc27ee61c0 wp-block-paragraph\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">Learn More <span aria-hidden=\"true\" class=\"wp-exclude-emoji\">→</span> </p>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:260px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:41:\"Offset, Gradient, Jazz, Headline, Feature\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:48:\"core/cover,core/group,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3195:\"<!-- wp:cover {\"customGradient\":\"linear-gradient(180deg,rgb(0,0,0) 39{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05},rgb(83,80,123) 39{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05})\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"5vw\",\"bottom\":\"48px\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:5vw;padding-bottom:48px;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(180deg,rgb(0,0,0) 39{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05},rgb(83,80,123) 39{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05})\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"172px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.7\",\"letterSpacing\":\"-10px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-text-align-left has-white-color has-text-color has-link-color\" style=\"font-size:172px;font-style:normal;font-weight:700;letter-spacing:-10px;line-height:0.7;text-transform:uppercase\"><strong>MONK</strong>.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"400px\"},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">A new collection</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">Learn More → </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"260px\"} -->\n<div style=\"height:260px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:308937;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Heading, Paragraph, Button with Two Images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2701:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#eb4c77\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-center is-layout-flex wp-container-core-group-is-layout-7171c4da wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group alignwide wp-container-content-ceb7f5b3 is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-5bff1107 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-contrast-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:500;line-height:0.9;text-transform:none\">Time for an adventure</h2>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-left has-contrast-color has-text-color wp-block-paragraph\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-core-buttons-is-layout-950bf021 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:16px;font-style:normal;font-weight:500;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-base-color has-contrast-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-core-group-is-layout-eeafa4e7 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-0733e5d0 is-layout-flow wp-block-group-is-layout-flow\">\n<div style=\"height:8vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large wp-container-content-0733e5d0 wp-duotone-rgb000-rgb21788120-3\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large wp-container-content-0733e5d0 wp-duotone-rgb000-rgb21788120-4\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></figure>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:97:\"core/button,core/buttons,core/cover,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:4102:\"<!-- wp:cover {\"customOverlayColor\":\"#eb4c77\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"6vw\",\"right\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#eb4c77\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\"}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"600px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"none\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"0.9\"}},\"textColor\":\"contrast\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-contrast-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:500;line-height:0.9;text-transform:none\">Time for an adventure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"60px\"} -->\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"contrast\",\"textColor\":\"base\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:16px;font-style:normal;font-weight:500;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-base-color has-contrast-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"top\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"8vw\"} -->\n<div style=\"height:8vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"color\":{\"duotone\":[\"rgb(0, 0, 0)\",\"rgb(217, 88, 120)\"]}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"color\":{\"duotone\":[\"rgb(0, 0, 0)\",\"rgb(217, 88, 120)\"]}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:308949;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Bold sale banner with geometric background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1776:\"\n<div class=\"wp-block-cover alignfull wp-duotone-rgb4448102-ffb23d-5\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:50vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#2c3066\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-flow wp-container-core-group-is-layout-a806e4b5 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-center has-text-color wp-block-paragraph\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Enjoy</p>\n\n\n\n<p class=\"has-text-align-center has-text-color wp-block-paragraph\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} Off</p>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-36078703 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px;font-style:normal;font-weight:700;letter-spacing:1px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#2c3066;background-color:#ffb23d;padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\">Shop Now</a></div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:43:\"store, shop, coupon, jazz, background image\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:73:\"core/button,core/buttons,core/cover,core/group,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2819:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\",\"id\":334,\"dimRatio\":90,\"customOverlayColor\":\"#2c3066\",\"minHeight\":50,\"minHeightUnit\":\"vh\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"rgb(44, 48, 102)\",\"#ffb23d\"]}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#2c3066\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffb23d\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Enjoy</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffb23d\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} Off</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"background\":\"#ffb23d\",\"text\":\"#2c3066\"},\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"48px\",\"bottom\":\"32px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"20px\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px;font-style:normal;font-weight:700;letter-spacing:1px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#2c3066;background-color:#ffb23d;padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\">Shop Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:308924;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Offset bold paragraph text with varying opacity\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1734:\"\n<div class=\"wp-block-cover alignfull has-white-color has-text-color\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-662885f9 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left has-text-color wp-block-paragraph\" style=\"color:#ffffff61;font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">Embark</p>\n\n\n\n<p class=\"has-text-align-right has-text-color wp-block-paragraph\" style=\"color:#ffffff73;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\"><strong>ON A HIKING</strong></p>\n\n\n\n<p class=\"has-text-align-left has-text-color wp-block-paragraph\" style=\"color:#ffffffad;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">adventure and explore the beauty of nature&#8217;s best…</p>\n\n\n\n<p class=\"has-text-align-right has-text-color wp-block-paragraph\" style=\"color:#ffffffd1;font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">In the</p>\n\n\n\n<p class=\"has-text-align-left has-text-color wp-block-paragraph\" style=\"color:#fffffff5;font-size:162px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">WOODS.</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3052:\"<!-- wp:cover {\"overlayColor\":\"black\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}}},\"textColor\":\"white\"} -->\n<div class=\"wp-block-cover alignfull has-white-color has-text-color\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"700px\",\"contentSize\":\"700px\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"120px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffffff61\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffff61;font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">Embark</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"72px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#ffffff73\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffff73;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\"><strong>ON A HIKING</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"72px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#ffffffad\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffffad;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">adventure and explore the beauty of nature\'s best…</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffffffd1\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffffd1;font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">In the</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"162px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#fffffff5\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#fffffff5;font-size:162px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">WOODS.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:308916;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Offset text with a brutalist design vibe\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1512:\"\n<div class=\"wp-block-cover alignfull is-light has-black-color has-text-color\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffb43c\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-core-group-is-layout-6d71ef12 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left has-black-color has-text-color wp-block-paragraph\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\"><mark style=\"color:#a65a00\" class=\"has-inline-color\">✴︎</mark> Walk</p>\n\n\n\n<p class=\"has-text-align-right has-black-color has-text-color wp-block-paragraph\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">In the</p>\n\n\n\n<p class=\"has-text-align-left has-black-color has-text-color wp-block-paragraph\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Park</p>\n\n\n\n<p class=\"has-text-align-center has-text-color wp-block-paragraph\" style=\"color:#a65a00;font-size:140px;font-style:italic;font-weight:200;letter-spacing:0px;line-height:0.9;text-transform:uppercase\">—01.03</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2631:\"<!-- wp:cover {\"customOverlayColor\":\"#ffb43c\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}}},\"textColor\":\"black\"} -->\n<div class=\"wp-block-cover alignfull is-light has-black-color has-text-color\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffb43c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"1200px\",\"contentSize\":\"800px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\"><mark style=\"color:#a65a00\" class=\"has-inline-color\">✴︎</mark> Walk</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">In the</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Park</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"140px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"italic\",\"fontWeight\":\"200\",\"letterSpacing\":\"0px\",\"lineHeight\":\"0.9\"},\"color\":{\"text\":\"#a65a00\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#a65a00;font-size:140px;font-style:italic;font-weight:200;letter-spacing:0px;line-height:0.9;text-transform:uppercase\">—01.03</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:308901;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Fullscreen image with right content area\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2154:\"\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#376a23\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-flex wp-container-core-group-is-layout-b1a298a6 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-large wp-container-content-0733e5d0\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n\n\n\n<div class=\"wp-block-group alignwide wp-container-content-9cfa9a5a is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-5bff1107 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-black-color has-text-color\" style=\"font-size:80px;font-style:italic;font-weight:700;line-height:1.0;text-transform:uppercase\">wAndering through the woods</h2>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-left has-black-color has-text-color wp-block-paragraph\" style=\"font-size:18px;font-style:italic;font-weight:600\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-core-buttons-is-layout-950bf021 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:18px;font-style:italic;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n</div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:97:\"core/button,core/buttons,core/cover,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3261:\"<!-- wp:cover {\"customOverlayColor\":\"#376a23\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#376a23\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"600px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"80px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"italic\",\"fontWeight\":\"700\",\"lineHeight\":\"1.0\"}},\"textColor\":\"black\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-black-color has-text-color\" style=\"font-size:80px;font-style:italic;font-weight:700;line-height:1.0;text-transform:uppercase\">wAndering through the woods</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"18px\",\"fontStyle\":\"italic\",\"fontWeight\":\"600\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:18px;font-style:italic;font-weight:600\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"60px\"} -->\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"black\",\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"18px\",\"fontStyle\":\"italic\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:18px;font-style:italic;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:308871;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:46:\"Cover Image with Bold Heading and Button, Left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1620:\"\n<div class=\"wp-block-cover alignfull is-light wp-duotone-094850-f9644e-7\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-72694e06 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading has-text-align-left has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Take a hike and wAnder through the woods</h2>\n</div>\n\n\n\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-core-buttons-is-layout-950bf021 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline is-style-outline--6\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:71:\"core/button,core/buttons,core/cover,core/group,core/heading,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2443:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\",\"id\":335,\"dimRatio\":30,\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"#094850\",\"#f9644e\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"75{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"justifyContent\":\"left\",\"wideSize\":\"75{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading has-text-align-left has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Take a hike and wAnder through the woods</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"72px\"} -->\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:cover -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:308868;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Cover Image with Bold Heading and Button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1628:\"\n<div class=\"wp-block-cover alignfull is-light wp-duotone-rgb4247103-rgb21419442-9\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-core-group-is-layout-08424862 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading has-text-align-center has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Embark on a hiking adventure and explore the beauty of the woods.</h2>\n</div>\n\n\n\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-nowrap is-layout-flex wp-container-core-buttons-is-layout-d9d2fa6c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline is-style-outline--8\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:71:\"core/button,core/buttons,core/cover,core/group,core/heading,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2449:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\",\"id\":335,\"dimRatio\":30,\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"rgb(42, 47, 103)\",\"rgb(214, 194, 42)\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"80{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Embark on a hiking adventure and explore the beauty of the woods.</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"72px\"} -->\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:cover -->\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:303828;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:30:\"Fullscreen cover image gallery\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:942:\"\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-73e98c27 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></a></figure>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:43:\"gallery, images, columns, background, cover\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:32:\"core/cover,core/group,core/image\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1259:\"<!-- wp:cover {\"overlayColor\":\"black\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"}}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></a></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:14;O:8:\"stdClass\":7:{s:2:\"id\";i:277265;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Fullwidth posts with uppercase titles\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:498:\"\n<div class=\"wp-block-query alignfull is-layout-flow wp-block-query-is-layout-flow\">\n<div class=\"wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"></div>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--30);padding-right:16px;padding-bottom:var(--wp--preset--spacing--30);padding-left:16px\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:30:\"star, posts, loop, blog, index\";s:16:\"wpop_description\";s:62:\"A fullwidth posts pattern with large titles and start accents.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/query\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:182:\"core/group,core/paragraph,core/post-date,core/post-template,core/post-terms,core/post-title,core/query,core/query-pagination,core/query-pagination-next,core/query-pagination-previous\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"query\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3502:\"<!-- wp:query {\"queryId\":31,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-query alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:post-template {\"style\":{\"typography\":{\"textTransform\":\"none\"}}} -->\n<!-- wp:group {\"style\":{\"border\":{\"bottom\":{\"color\":\"var:preset|color|contrast\",\"width\":\"1px\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"16px\",\"right\":\"16px\",\"bottom\":\"16px\",\"left\":\"16px\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p>✴︎</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"M j, Y\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"textTransform\":\"uppercase\"}},\"textColor\":\"contrast\",\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-terms {\"term\":\"category\",\"prefix\":\"✴︎ \",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"textTransform\":\"uppercase\"}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"16px\",\"bottom\":\"var:preset|spacing|70\",\"right\":\"16px\",\"left\":\"16px\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><!-- wp:post-title {\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"layout\":{\"selfStretch\":\"fit\"},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.1\",\"textTransform\":\"uppercase\",\"fontSize\":\"5.2rem\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n<!-- /wp:post-template --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"right\":\"16px\",\"left\":\"16px\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--30);padding-right:16px;padding-bottom:var(--wp--preset--spacing--30);padding-left:16px\"><!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<!-- wp:query-pagination-previous {\"label\":\"Previous\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:query-pagination-next {\"label\":\"Next\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\"}},\"fontSize\":\"small\"} /-->\n<!-- /wp:query-pagination --></div>\n<!-- /wp:group --></div>\n<!-- /wp:query -->\";}i:15;O:8:\"stdClass\":7:{s:2:\"id\";i:277127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Fullwidth posts titles with dates\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:637:\"\n<div class=\"wp-block-query alignfull is-layout-flow wp-block-query-is-layout-flow\">\n<div class=\"wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:0;padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"></div>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:31:\"Posts, Query, Loop, Blog, Index\";s:16:\"wpop_description\";s:62:\"A fullwidth posts pattern with large titles and numeral dates.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/query\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:151:\"core/group,core/post-date,core/post-template,core/post-title,core/query,core/query-pagination,core/query-pagination-next,core/query-pagination-previous\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"query\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3583:\"<!-- wp:query {\"queryId\":1,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-query alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0;padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:post-template {\"align\":\"full\",\"style\":{\"typography\":{\"textTransform\":\"none\"}}} -->\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\",\"padding\":{\"bottom\":\"var:preset|spacing|50\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"padding-bottom:var(--wp--preset--spacing--50)\"><!-- wp:group {\"style\":{\"border\":{\"bottom\":{\"color\":\"var:preset|color|contrast\",\"width\":\"4px\"}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"m.j\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"letterSpacing\":\"1px\",\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"contrast\"} /-->\n\n<!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"Y\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"letterSpacing\":\"1px\",\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-title {\"isLink\":true,\"style\":{\"layout\":{\"selfStretch\":\"fit\"},\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"4.6rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\"}}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n<!-- /wp:post-template --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<!-- wp:query-pagination-previous {\"style\":{\"typography\":{\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\"}}} /-->\n\n<!-- wp:query-pagination-next {\"style\":{\"typography\":{\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\"}}} /-->\n<!-- /wp:query-pagination --></div>\n<!-- /wp:group --></div>\n<!-- /wp:query -->\";}i:16;O:8:\"stdClass\":7:{s:2:\"id\";i:229092;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Header inside full-width background image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4737:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30);min-height:50px;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\" data-object-fit=\"cover\" data-object-position=\"50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group alignwide has-base-color has-text-color has-link-color wp-elements-a5c55c350363e1349d710a58148fd7b6 is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-8c9d081f wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><div class=\"is-default-size is-style-default wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color wp-elements-8500967d37da86b97bb53ecc0a52ca72 wp-block-site-title has-text-color has-white-color has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1></div>\n\n\n<nav class=\"has-text-color has-white-color is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-f845d360 wp-block-navigation-is-layout-flex\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open\" \n				data-wp-on--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n				<div class=\"wp-block-navigation__responsive-container\"  id=\"modal-10\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-10-content\">\n								<ul class=\"wp-block-navigation__container has-text-color has-white-color is-responsive items-justified-right wp-block-navigation\"><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n								\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n\n\n\n<div style=\"height:33vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:100:\"Simple header with logo, site title, navigation and a full-width background image with dark overlay.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:80:\"core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2554:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\",\"id\":61,\"dimRatio\":50,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"minHeight\":50,\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30);min-height:50px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\" data-object-fit=\"cover\" data-object-position=\"50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"textColor\":\"base\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide has-base-color has-text-color has-link-color\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"className\":\"is-style-default\"} /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"textColor\":\"white\",\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"textColor\":\"white\",\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"33vw\"} -->\n<div style=\"height:33vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:17;O:8:\"stdClass\":7:{s:2:\"id\";i:229097;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Simple header with dark background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3929:\"\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-602186720dd7d9bef283ca8cacce4883 is-layout-constrained wp-container-core-group-is-layout-9f34fe8c wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-eb8a1b9b wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color wp-elements-141496dd038caa4dcf40174bef55cbbe wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1></div>\n\n\n\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><nav class=\"is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-f845d360 wp-block-navigation-is-layout-flex\" aria-label=\" 2\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open\" \n				data-wp-on--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n				<div class=\"wp-block-navigation__responsive-container\"  id=\"modal-11\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-11-content\">\n								<ul class=\"wp-block-navigation__container is-responsive items-justified-right wp-block-navigation\"><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n								\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:76:\"Simple header with logo, site title, navigation links and a dark background.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1497:\"<!-- wp:group {\"metadata\":{\"categories\":[\"header\",\"wireframe\"],\"patternName\":\"core/simple-header-with-dark-background\",\"name\":\"Simple header with dark background\"},\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:18;O:8:\"stdClass\":7:{s:2:\"id\";i:229101;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Text-only header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3608:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-container-core-group-is-layout-9f34fe8c wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-b411fb28 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-elements-74d9c587c704a765f018836daab4c876 wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1>\n\n<p class=\"wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n\n\n<nav class=\"is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-f845d360 wp-block-navigation-is-layout-flex\" aria-label=\" 3\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open\" \n				data-wp-on--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n				<div class=\"wp-block-navigation__responsive-container\"  id=\"modal-12\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-12-content\">\n								<ul class=\"wp-block-navigation__container is-responsive items-justified-right wp-block-navigation\"><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n								\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:53:\"Header with site title, tagline and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:60:\"core/group,core/navigation,core/site-tagline,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:966:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /-->\n\n<!-- wp:site-tagline /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:19;O:8:\"stdClass\":7:{s:2:\"id\";i:229105;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Simple header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4192:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-7479bd1e590756c4aa927894dbdbef4e is-layout-constrained wp-container-core-group-is-layout-9f34fe8c wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-eb8a1b9b wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-container-core-group-is-layout-b56d9725 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-bfed54d0 wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-elements-d6577b4021234b9631cf15d9d1fea330 wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1>\n\n<p class=\"wp-block-site-tagline has-small-font-size\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n</div>\n\n\n<nav class=\"has-small-font-size is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-f845d360 wp-block-navigation-is-layout-flex\" aria-label=\" 4\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open\" \n				data-wp-on--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n				<div class=\"wp-block-navigation__responsive-container\"  id=\"modal-13\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-13-content\">\n								<ul class=\"wp-block-navigation__container has-small-font-size is-responsive items-justified-right wp-block-navigation\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n								\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:92:\"Header with site logo, title and tagline on the left and with navigation links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/navigation,core/site-logo,core/site-tagline,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1389:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /-->\n\n<!-- wp:site-tagline {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:20;O:8:\"stdClass\":7:{s:2:\"id\";i:229111;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:36:\"Fullwidth site title and menu button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3339:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-e0434f7bbe3c9d87e2f1562e19b734da is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-50016974 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><h1 class=\"wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1>\n\n<nav class=\"is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-f845d360 wp-block-navigation-is-layout-flex\" aria-label=\" 5\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open always-shown\" \n				data-wp-on--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n				<div class=\"wp-block-navigation__responsive-container hidden-by-default\"  id=\"modal-14\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-14-content\">\n								<ul class=\"wp-block-navigation__container is-responsive items-justified-right wp-block-navigation\"><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n								\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Header with site title and a hamburger menu button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:794:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:site-title /-->\n\n<!-- wp:navigation {\"overlayMenu\":\"always\",\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\";}i:21;O:8:\"stdClass\":7:{s:2:\"id\";i:229116;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Fullwidth header with hero image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4737:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-1d00eaaa wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group is-layout-flex wp-container-core-group-is-layout-b56d9725 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-bfed54d0 wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-elements-f7ec64f471b5bfcc0be230aa4daa838e wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1></div>\n</div>\n\n\n<nav class=\"is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-f845d360 wp-block-navigation-is-layout-flex\" aria-label=\" 6\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open\" \n				data-wp-on--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n				<div class=\"wp-block-navigation__responsive-container\"  id=\"modal-15\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-15-content\">\n								<ul class=\"wp-block-navigation__container is-responsive items-justified-right wp-block-navigation\"><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n								\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n\n\n\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;min-height:40vw;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-0 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\" data-object-fit=\"cover\" data-object-position=\"50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Header on a white background followed by a full-width hero image.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:80:\"core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2566:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\",\"id\":61,\"dimRatio\":0,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"minHeight\":40,\"minHeightUnit\":\"vw\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;min-height:40vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\" data-object-fit=\"cover\" data-object-position=\"50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:22;O:8:\"stdClass\":7:{s:2:\"id\";i:229088;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Simple header\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3737:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-container-core-group-is-layout-9f34fe8c wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-eb8a1b9b wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-container-core-group-is-layout-b56d9725 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color wp-elements-74d9c587c704a765f018836daab4c876 wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1></div>\n\n\n<nav class=\"is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-f845d360 wp-block-navigation-is-layout-flex\" aria-label=\" 7\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open\" \n				data-wp-on--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n				<div class=\"wp-block-navigation__responsive-container\"  id=\"modal-16\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-16-content\">\n								<ul class=\"wp-block-navigation__container is-responsive items-justified-right wp-block-navigation\"><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n								\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Simple header with logo, site title and navigation.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1021:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:23;O:8:\"stdClass\":7:{s:2:\"id\";i:229080;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:25:\"Centered header with logo\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3675:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-container-core-group-is-layout-da0445ef wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-vertical is-content-justification-center is-layout-flex wp-container-core-group-is-layout-3448b7a1 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color wp-elements-7b215d308770124d58b518591412dff8 wp-block-site-title has-text-color has-contrast-color has-large-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1>\n\n<nav class=\"is-responsive items-justified-center wp-block-navigation is-content-justification-center is-layout-flex wp-container-core-navigation-is-layout-517857a4 wp-block-navigation-is-layout-flex\" aria-label=\" 8\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open\" \n				data-wp-on--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n				<div class=\"wp-block-navigation__responsive-container\"  id=\"modal-17\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-17-content\">\n								<ul class=\"wp-block-navigation__container is-responsive items-justified-center wp-block-navigation\"><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n								\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Center aligned header with logo, site title and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:926:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"center\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:24;O:8:\"stdClass\":7:{s:2:\"id\";i:229084;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Fullwidth header with large font size\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3428:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-4b5a1e7a31f9f44eaeb3ab45e5ae60f1 is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-50016974 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><h1 class=\"wp-block-site-title has-large-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1>\n\n<nav class=\"has-large-font-size is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-f845d360 wp-block-navigation-is-layout-flex\" aria-label=\" 9\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open\" \n				data-wp-on--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n				<div class=\"wp-block-navigation__responsive-container\"  id=\"modal-18\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-18-content\">\n								<ul class=\"wp-block-navigation__container has-large-font-size is-responsive items-justified-right wp-block-navigation\"><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n								\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:80:\"Header with a large site title and navigation links in the same large font size.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:811:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:site-title {\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"large\"} /--></div>\n<!-- /wp:group -->\";}i:25;O:8:\"stdClass\":7:{s:2:\"id\";i:229123;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4266:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color is-vertical is-content-justification-center is-layout-flex wp-container-core-group-is-layout-bd7dfa5a wp-block-group-is-layout-flex\" style=\"min-height:30vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-4dc8b8ac wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center wp-block-paragraph\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n\n\n\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only is-nowrap is-layout-flex wp-container-core-social-links-is-layout-0ed9dbc8 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-twitter wp-block-social-link\"><a href=\"#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram wp-block-social-link\"><a href=\"#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li></ul>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:82:\"Centered footer with the sentence \"Proudly powered by WordPress\" and social links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:25:\"core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1495:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|50\",\"top\":\"var:preset|spacing|60\"},\"blockGap\":\"var:preset|spacing|40\",\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}},\"dimensions\":{\"minHeight\":\"30vh\"}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color\" style=\"min-height:30vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-small-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"8px\",\"left\":\"8px\"}}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:26;O:8:\"stdClass\":7:{s:2:\"id\";i:229127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Footer with search, site title, and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3290:\"\n<div class=\"wp-block-group alignfull has-background is-layout-constrained wp-container-core-group-is-layout-6cf33c04 wp-block-group-is-layout-constrained\" style=\"background-color:#00000008;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-b572c875 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-9cfa9a5a is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-b4f291b5 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left wp-block-paragraph\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Search</p>\n\n\n<form role=\"search\" method=\"get\" action=\"https://wordpress.org/patterns/\" class=\"wp-block-search__button-outside wp-block-search__icon-button wp-block-search\"    ><label class=\"wp-block-search__label screen-reader-text\" for=\"wp-block-search__input-19\" >Search</label><div class=\"wp-block-search__inside-wrapper\"  style=\"width: 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><input class=\"wp-block-search__input\" id=\"wp-block-search__input-19\" placeholder=\"\" value=\"\" type=\"search\" name=\"s\" required  style=\"border-width: 1px\"/><button aria-label=\"Search\" class=\"wp-block-search__button has-icon wp-element-button\" type=\"submit\"  style=\"border-width: 1px\"><svg class=\"search-icon\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\">\n					<path d=\"M13 5c-3.3 0-6 2.7-6 6 0 1.4.5 2.7 1.3 3.7l-3.8 3.8 1.1 1.1 3.8-3.8c1 .8 2.3 1.3 3.7 1.3 3.3 0 6-2.7 6-6S16.3 5 13 5zm0 10.5c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2 4.5-4.5 4.5z\"></path>\n				</svg></button></div></form></div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-core-group-is-layout-8f3b73a3 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-bd946717 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left wp-block-paragraph\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Social</p>\n\n\n\n<div class=\"wp-block-group has-small-font-size is-vertical is-content-justification-left is-layout-flex wp-container-core-group-is-layout-53054535 wp-block-group-is-layout-flex\">\n<p class=\"wp-block-paragraph\"><a href=\"#\">Facebook</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"#\">Instagram</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"#\">Twitter</a></p>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-eb8a1b9b wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1></div>\n\n\n\n<p class=\"has-small-font-size wp-block-paragraph\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:88:\"Footer with search field and site title on the left, and small credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:65:\"core/group,core/paragraph,core/search,core/site-title,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3254:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\"}},\"color\":{\"background\":\"#00000008\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#00000008;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|60\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontSize\":\"0.9rem\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} -->\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Search</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"width\":100,\"widthUnit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"style\":{\"border\":{\"width\":\"1px\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":[]},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontSize\":\"0.9rem\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} -->\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Social</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\"},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-group has-small-font-size\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:27;O:8:\"stdClass\":7:{s:2:\"id\";i:229131;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with site title and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:913:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-constrained wp-container-core-group-is-layout-889d818a wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-eb8a1b9b wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1></div>\n\n\n\n<p class=\"has-small-font-size wp-block-paragraph\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with site title on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/paragraph,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1095:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:28;O:8:\"stdClass\":7:{s:2:\"id\";i:229135;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with navigation and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3612:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-constrained wp-container-core-group-is-layout-889d818a wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-eb8a1b9b wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><nav class=\"has-small-font-size is-responsive items-justified-left wp-block-navigation is-content-justification-left is-layout-flex wp-container-core-navigation-is-layout-e1d7bd4a wp-block-navigation-is-layout-flex\" aria-label=\" 10\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open\" \n				data-wp-on--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M4 7.5h16v1.5H4z\"></path><path d=\"M4 15h16v1.5H4z\"></path></svg></button>\n				<div class=\"wp-block-navigation__responsive-container\"  id=\"modal-20\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-20-content\">\n								<ul class=\"wp-block-navigation__container has-small-font-size is-responsive items-justified-left wp-block-navigation\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n								\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n\n\n\n<p class=\"has-small-font-size wp-block-paragraph\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with navigation on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/navigation,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1174:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"left\"},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:29;O:8:\"stdClass\":7:{s:2:\"id\";i:229139;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:56:\"Fullwidth footer with background color and three columns\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3215:\"\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-8d0170a0199cafe7fbcba6c0b4dac464 is-vertical is-content-justification-stretch is-layout-flex wp-container-core-group-is-layout-8f544b26 wp-block-group-is-layout-flex\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--40)\">\n<div class=\"wp-block-columns alignwide has-small-font-size is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center wp-block-paragraph\">Location</p>\n\n\n\n<p class=\"has-text-align-center wp-block-paragraph\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center wp-block-paragraph\">Pages</p>\n\n\n<nav class=\"has-small-font-size items-justified-center is-vertical no-wrap wp-block-navigation is-content-justification-center is-nowrap is-layout-flex wp-container-core-navigation-is-layout-f78a169d wp-block-navigation-is-layout-flex\" aria-label=\" 11\"><ul class=\"wp-block-navigation__container has-small-font-size items-justified-center is-vertical no-wrap wp-block-navigation\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul></nav>\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center wp-block-paragraph\">Follow us</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-center is-layout-flex wp-container-core-group-is-layout-36971928 wp-block-group-is-layout-flex\">\n<p class=\"wp-block-paragraph\"><a href=\"#\">Facebook</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"#\">Instagram</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-center is-layout-flex wp-container-core-group-is-layout-5bbf7c30 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:57:\"Text-only footer with background color and three columns.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:78:\"core/column,core/columns,core/group,core/navigation,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3225:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|40\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"blockGap\":\"var:preset|spacing|30\"},\"dimensions\":{\"minHeight\":\"40vh\"}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"has-background-color\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:columns {\"align\":\"wide\",\"fontSize\":\"small\"} -->\n<div class=\"wp-block-columns alignwide has-small-font-size\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Location</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Pages</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"flexWrap\":\"nowrap\"},\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Follow us</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:30;O:8:\"stdClass\":7:{s:2:\"id\";i:229143;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4170:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color is-vertical is-content-justification-center is-layout-flex wp-container-core-group-is-layout-bd7dfa5a wp-block-group-is-layout-flex\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><div style=\"margin-bottom:6px\" class=\"is-default-size aligncenter wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<p class=\"has-text-align-center has-medium-font-size wp-block-paragraph\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size is-style-logos-only is-nowrap is-layout-flex wp-container-core-social-links-is-layout-0b9dcabe wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-facebook wp-block-social-link\"><a href=\"#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Facebook</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-twitter wp-block-social-link\"><a href=\"#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-wordpress wp-block-social-link\"><a href=\"#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12.158,12.786L9.46,20.625c0.806,0.237,1.657,0.366,2.54,0.366c1.047,0,2.051-0.181,2.986-0.51 c-0.024-0.038-0.046-0.079-0.065-0.124L12.158,12.786z M3.009,12c0,3.559,2.068,6.634,5.067,8.092L3.788,8.341 C3.289,9.459,3.009,10.696,3.009,12z M18.069,11.546c0-1.112-0.399-1.881-0.741-2.48c-0.456-0.741-0.883-1.368-0.883-2.109 c0-0.826,0.627-1.596,1.51-1.596c0.04,0,0.078,0.005,0.116,0.007C16.472,3.904,14.34,3.009,12,3.009 c-3.141,0-5.904,1.612-7.512,4.052c0.211,0.007,0.41,0.011,0.579,0.011c0.94,0,2.396-0.114,2.396-0.114 C7.947,6.93,8.004,7.642,7.52,7.699c0,0-0.487,0.057-1.029,0.085l3.274,9.739l1.968-5.901l-1.401-3.838 C9.848,7.756,9.389,7.699,9.389,7.699C8.904,7.67,8.961,6.93,9.446,6.958c0,0,1.484,0.114,2.368,0.114 c0.94,0,2.397-0.114,2.397-0.114c0.485-0.028,0.542,0.684,0.057,0.741c0,0-0.488,0.057-1.029,0.085l3.249,9.665l0.897-2.996 C17.841,13.284,18.069,12.316,18.069,11.546z M19.889,7.686c0.039,0.286,0.06,0.593,0.06,0.924c0,0.912-0.171,1.938-0.684,3.22 l-2.746,7.94c2.673-1.558,4.47-4.454,4.47-7.771C20.991,10.436,20.591,8.967,19.889,7.686z M12,22C6.486,22,2,17.514,2,12 C2,6.486,6.486,2,12,2c5.514,0,10,4.486,10,10C22,17.514,17.514,22,12,22z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">WordPress</span></a></li></ul>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:71:\"Footer with centered site title, tagline, social links and credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/paragraph,core/site-logo,core/social-link,core/social-links\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1532:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|50\",\"top\":\"var:preset|spacing|60\"},\"blockGap\":\"var:preset|spacing|40\",\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}},\"dimensions\":{\"minHeight\":\"40vh\"}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:site-logo {\"align\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"6px\"}}}} /-->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"medium\"} -->\n<p class=\"has-text-align-center has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-normal-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"12px\",\"left\":\"12px\"}}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<ul class=\"wp-block-social-links has-normal-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"wordpress\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group -->\";}i:31;O:8:\"stdClass\":7:{s:2:\"id\";i:229147;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:52:\"Fullwidth footer with navigation, credit, and social\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4683:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignfull has-small-font-size is-content-justification-space-between is-nowrap is-layout-flex wp-container-core-group-is-layout-477afd24 wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size wp-container-content-b0223bd5\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1>\n\n\n<div class=\"wp-block-group wp-container-content-9cfa9a5a is-vertical is-content-justification-center is-layout-flex wp-container-core-group-is-layout-7c09a6da wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only wp-container-content-b0223bd5 is-content-justification-right is-nowrap is-layout-flex wp-container-core-social-links-is-layout-31c4c88e wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-twitter wp-block-social-link\"><a href=\"#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram wp-block-social-link\"><a href=\"#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li></ul>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:87:\"Footer with site title on the left, credit in the middle and social links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:76:\"core/group,core/paragraph,core/site-title,core/social-link,core/social-links\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1869:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"nowrap\"},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-group alignfull has-small-font-size\"><!-- wp:site-title {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"25{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:social-links {\"size\":\"has-small-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"12px\"}},\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"25{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:32;O:8:\"stdClass\":7:{s:2:\"id\";i:229151;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:19:\"Left-aligned footer\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3108:\"\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-ea752118 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group wp-container-content-9cfa9a5a is-vertical is-layout-flex wp-container-core-group-is-layout-79ad9e6d wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1>\n\n\n<p class=\"has-text-align-left wp-block-paragraph\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size wp-block-paragraph\">Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-layout-flex wp-container-core-group-is-layout-735f15fc wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-bd946717 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left wp-block-paragraph\">Pages</p>\n\n\n<nav class=\"has-small-font-size items-justified-left is-vertical no-wrap wp-block-navigation is-content-justification-left is-nowrap is-layout-flex wp-container-core-navigation-is-layout-4d6072d6 wp-block-navigation-is-layout-flex\" aria-label=\" 12\"><ul class=\"wp-block-navigation__container has-small-font-size items-justified-left is-vertical no-wrap wp-block-navigation\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul></nav>\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-bd946717 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left wp-block-paragraph\">Social</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-left is-layout-flex wp-container-core-group-is-layout-53054535 wp-block-group-is-layout-flex\">\n<p class=\"wp-block-paragraph\"><a href=\"#\">Facebook</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"#\">Instagram</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:44:\"Left-aligned footer with just a credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:69:\"core/group,core/navigation,core/paragraph,core/site-title,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2939:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"medium\"} /-->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-left has-small-font-size\">Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|50\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"right\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Pages</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"},\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Social</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:33;O:8:\"stdClass\":7:{s:2:\"id\";i:201;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Three columns with offset images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1358:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:45{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n\n\n\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:33:\"Three columns with offset images.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:47:\"core/column,core/columns,core/image,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"gallery\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1753:\"<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:spacer {\"height\":500} -->\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":150} -->\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"45{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:45{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":285} -->\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:34;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3680:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-f19201c6 wp-block-group-is-layout-flex\" style=\"padding-right:0;padding-left:0\">\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n</div>\n\n\n\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-493f451d wp-block-group-is-layout-flex\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-886db315 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.38{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.62{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-90cda669 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:69{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man&#8217;s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:4:{i:0;s:7:\"columns\";i:1;s:7:\"gallery\";i:2;s:6:\"images\";i:3;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:5124:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f5eac1\"},\"spacing\":{\"padding\":{\"top\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\",\"right\":\"6vw\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\" style=\"padding-right:0;padding-left:0\"><!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"16px\"}},\"anchor\":\"ecosystem\"} -->\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"0.9\",\"fontSize\":\"6vw\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"1vw\"} -->\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"3vw\",\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"3vw\",\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"69{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:69{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:35;O:8:\"stdClass\":7:{s:2:\"id\";i:197;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:39:\"Two columns of text with offset heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2353:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f2f0e9\">\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size wp-block-paragraph\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size wp-block-paragraph\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n</div>\n</div>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:43:\"Two columns of text with an offset heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:77:\"core/column,core/columns,core/group,core/paragraph,core/separator,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2837:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f2f0e9\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f2f0e9\"><!-- wp:spacer {\"height\":70} -->\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"width\":\"50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"30px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:separator {\"customColor\":\"#000000\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":40} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:36;O:8:\"stdClass\":7:{s:2:\"id\";i:196;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Media and text in a full height container\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1484:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What&#8217;s the problem?</strong></h2>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div>\n</div>\n</div></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Media and text block with image to the left and text and button to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:79:\"core/button,core/buttons,core/cover,core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2015:\"<!-- wp:cover {\"customOverlayColor\":\"#ffffff\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:media-text {\"mediaLink\":\"https://s.w.org/images/core/5.8/soil.jpg\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"imageFill\":true} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><img src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"32px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What\'s the problem?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:media-text --></div></div>\n<!-- /wp:cover -->\";}i:37;O:8:\"stdClass\":7:{s:2:\"id\";i:195;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Media and text with image on the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:765:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris&nbsp;(American, 1901-1942)</p>\n</div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure></div>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the right and text to the left.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1155:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaLink\":\"#\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"17px\"},\"color\":{\"text\":\"#636363\"}}} -->\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris&nbsp;(American, 1901-1942)</p>\n<!-- /wp:paragraph --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:38;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:630:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size wp-block-paragraph\"><a href=\"#\">See case study <span aria-hidden=\"true\" class=\"wp-exclude-emoji\">↗</span></a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:39;O:8:\"stdClass\":7:{s:2:\"id\";i:186;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with text and a button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1596:\"\n<div class=\"wp-block-cover alignfull has-parallax\" style=\"min-height:100vh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-40 has-background-dim\" style=\"background-color:#000000\"></span><div role=\"img\" class=\"wp-block-cover__image-background has-parallax\" style=\"background-position:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};background-image:url(https://s.w.org/images/core/5.8/art-01.jpg)\"></div><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:60{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline is-style-outline--21\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Visit</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:62:\"Large header with background image and text and button on top.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:88:\"core/button,core/buttons,core/column,core/columns,core/cover,core/heading,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2053:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/art-01.jpg\",\"hasParallax\":true,\"dimRatio\":40,\"customOverlayColor\":\"#000000\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull has-parallax\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-40 has-background-dim\" style=\"background-color:#000000\"></span><div role=\"img\" class=\"wp-block-cover__image-background has-parallax\" style=\"background-position:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} 50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};background-image:url(https://s.w.org/images/core/5.8/art-01.jpg)\"></div><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.2\"}},\"className\":\"alignwide has-white-color has-text-color\"} -->\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"60{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffffff\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"text\":\"#ffffff\",\"background\":\"#000000\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Visit</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:40;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1388:\"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:55{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:spacer {\"height\":\"330px\"} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:41;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We&#8217;re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}i:42;O:8:\"stdClass\":7:{s:2:\"id\";i:29;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Two columns of text and title\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1600:\"\n<h2 class=\"wp-block-heading\" style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"wp-block-paragraph\" style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"wp-block-paragraph\" style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband&#8217;s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:47:\"Two columns of text preceded by a long heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1711:\"<!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":38,\"lineHeight\":\"1.4\"}}} -->\n<h2 style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband\'s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:43;O:8:\"stdClass\":7:{s:2:\"id\";i:19;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:23:\"Two images side by side\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:571:\"\n<figure class=\"wp-block-gallery alignwide has-nested-images columns-default is-cropped wp-block-gallery-22 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" /></figure>\n</figure>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:41:\"An image gallery with two example images.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:23:\"core/gallery,core/image\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:704:\"<!-- wp:gallery {\"linkTo\":\"none\",\"align\":\"wide\"} -->\n<figure class=\"wp-block-gallery alignwide has-nested-images columns-default is-cropped\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" /></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\";}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607591','_site_transient_timeout_wp_remote_block_patterns_ee6d29bddfac9c9fa1e0d24fd937d109','1780822532','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607592','_site_transient_wp_remote_block_patterns_ee6d29bddfac9c9fa1e0d24fd937d109','a:13:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:207567;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:11:\"Link in Bio\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6659:\"\n<div class=\"wp-block-group has-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><h1 style=\"font-style:normal;font-weight:700\" class=\"has-text-align-center wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1>\n\n<p class=\"has-text-align-center wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-36078703 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color is-content-justification-center is-layout-flex wp-container-core-social-links-is-layout-dd89b5f3 wp-block-social-links-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><li style=\"color:#000000;background-color:#ffffff\" class=\"wp-social-link wp-social-link-instagram has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li>\n\n<li style=\"color:#000000;background-color:#ffffff\" class=\"wp-social-link wp-social-link-bandcamp has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M15.27 17.289 3 17.289 8.73 6.711 21 6.711 15.27 17.289\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Bandcamp</span></a></li>\n\n<li style=\"color:#000000;background-color:#ffffff\" class=\"wp-social-link wp-social-link-twitter has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li style=\"color:#000000;background-color:#ffffff\" class=\"wp-social-link wp-social-link-twitch has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M16.499,8.089h-1.636v4.91h1.636V8.089z M12,8.089h-1.637v4.91H12V8.089z M4.228,3.178L3,6.451v13.092h4.499V22h2.456 l2.454-2.456h3.681L21,14.636V3.178H4.228z M19.364,13.816l-2.864,2.865H12l-2.453,2.453V16.68H5.863V4.814h13.501V13.816z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitch</span></a></li></ul>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:116:\"core/button,core/buttons,core/group,core/site-tagline,core/site-title,core/social-link,core/social-links,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2665:\"<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|80\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|80\",\"left\":\"0\"}}},\"backgroundColor\":\"white\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group has-white-background-color has-background\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><!-- wp:site-title {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"textAlign\":\"center\"} /-->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100,\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:social-links {\"iconColor\":\"black\",\"iconColorValue\":\"#000000\",\"iconBackgroundColor\":\"white\",\"iconBackgroundColorValue\":\"#ffffff\",\"size\":\"has-normal-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|60\",\"bottom\":\"var:preset|spacing|60\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"bandcamp\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitch\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:732;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Simple call to action\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1010:\"\n<div class=\"wp-block-group alignfull has-text-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#ffffff;color:#000000\">\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n\n\n\n<h2 class=\"has-text-align-center wp-block-heading\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-f68c927c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n</div>\n\n\n\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:89:\"A container with a white background. Inside is a centered paragraph, heading, and button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/group,core/heading,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"buttons\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1506:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-group alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"lineHeight\":\".9\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":59,\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"has-text-align-center\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":50,\"style\":{\"color\":{\"background\":\"#000000\",\"text\":\"#ffffff\"},\"border\":{\"radius\":\"50px\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:678;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Three column pricing table\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3934:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-2966e5ee wp-block-columns-is-layout-flex\" style=\"margin-bottom:0\">\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-2ae1b943d87d6b5cbc827b8e7de5c343 is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#ffe97d;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n\n\n\n<p class=\"has-normal-font-size wp-block-paragraph\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-css-opacity has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n\n\n\n<ul class=\"has-normal-font-size wp-block-list\">\n<li>General admission and member discounts for one adult</li>\n\n\n\n<li>One free ticket per special exhibition</li>\n\n\n\n<li>Two single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-f68c927c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$110 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-c860b6260b3b3b7bae640a65db9c9aec is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#d1d1e1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n\n\n\n<p class=\"has-normal-font-size wp-block-paragraph\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size wp-block-list\">\n<li>General admission and member discounts for two adults</li>\n\n\n\n<li>Four free tickets per special exhibition</li>\n\n\n\n<li>Four single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-f68c927c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$200 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-4a86cd4fa1de9230a73a90c7ad305893 is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#c0ebf1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n\n\n\n<p class=\"has-normal-font-size wp-block-paragraph\"><strong>Take support to the next level.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size wp-block-list\">\n<li>General admission and member discounts for two adults</li>\n\n\n\n<li>Five free tickets per special exhibition</li>\n\n\n\n<li>Six single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-f68c927c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$400 / year</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:272:\"Three equal-width columns set up as a pricing table. The left column has a yellow background, the middle column has a light purple background, and the right column has a light blue background. Each column contains a heading, subheading, separator, list, and then a button.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:117:\"core/button,core/buttons,core/column,core/columns,core/heading,core/list,core/list-item,core/paragraph,core/separator\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:6125:\"<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns alignwide\" style=\"margin-bottom:0\"><!-- wp:column {\"style\":{\"color\":{\"background\":\"#ffe97d\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#ffe97d;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"single\"} -->\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"style\":{\"color\":{\"background\":\"#000000\"}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-css-opacity has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for one adult</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>One free ticket per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Two single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$110 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#d1d1e1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#d1d1e1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"family\"} -->\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for two adults</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Four free tickets per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Four single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$200 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#c0ebf1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#c0ebf1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"patron\"} -->\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for two adults</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Five free tickets per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Six single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$400 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:669;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Image and quote on a background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2385:\"\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-1-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-1-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-1-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-1.png 1300w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p class=\"wp-block-paragraph\" style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size wp-block-paragraph\">– Terry a O&#8217;Neal</p>\n</div>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-half-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-half-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-half-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-half.png 1300w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p class=\"wp-block-paragraph\" style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size wp-block-paragraph\">– Molière</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:221:\"Two media and text blocks. The top one has a pale green background. The text is on the left and contains a quote, and the image is on the right. The next block underneath has the image on the left, and quote on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"images\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2404:\"<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":5263,\"mediaLink\":\"https://wordpress.org/patterns/pattern/image-and-quote-on-a-background/pear-3/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#f1f5c7\"}}} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Terry a O\'Neal</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:media-text {\"mediaId\":673,\"mediaLink\":\"https://wordpress.org/patterns/pear-half/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#fffdea\"}}} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Molière</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:591;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:5:\"Event\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1769:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color wp-elements-5fce4e677a9b9d7d0cae0196c9d74d97\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group has-link-color wp-elements-71b4a847bbd96313422a1303e9ba41f3 is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n\n\n\n<p class=\"has-text-color has-link-color wp-elements-0860918d5b16b9e1778b1966b333b980 wp-block-paragraph\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP <span aria-hidden=\"true\" class=\"wp-exclude-emoji\">→</span></a></strong></p>\n</div>\n</div><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1536x1536.jpg 1536w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1.jpg 1572w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" /></figure></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:54:\"core/group,core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1617:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaId\":590,\"mediaLink\":\"https://wordpress.org/patterns/image-from-rawpixel-id-430289-jpeg-1/\",\"mediaType\":\"image\",\"mediaWidth\":60,\"verticalAlignment\":\"top\",\"style\":{\"color\":{\"background\":\"#121c1c\",\"text\":\"#fffdc7\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-group has-link-color\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontWeight\":\"700\",\"fontSize\":\"48px\",\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}},\"color\":{\"text\":\"#fffdc7\"}}} -->\n<p class=\"has-text-color has-link-color\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" /></figure></div>\n<!-- /wp:media-text -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:573;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Image on solid color with description\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1952:\"\n<div class=\"wp-block-columns alignfull is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px;aspect-ratio:unset;\"><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img loading=\"lazy\" decoding=\"async\" width=\"263\" height=\"300\" src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" srcset=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg 263w, https://s.w.org/patterns/files/2021/06/wire-sculpture-898x1024.jpg 898w, https://s.w.org/patterns/files/2021/06/wire-sculpture-768x875.jpg 768w, https://s.w.org/patterns/files/2021/06/wire-sculpture-1347x1536.jpg 1347w, https://s.w.org/patterns/files/2021/06/wire-sculpture.jpg 1658w\" sizes=\"auto, (max-width: 263px) 100vw, 263px\" /></figure></div>\n</div></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\">\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:320px\">\n<p class=\"has-small-font-size wp-block-paragraph\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n\n\n\n<p class=\"has-small-font-size wp-block-paragraph\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:38:\"Image on solid color with description.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:61:\"core/column,core/columns,core/cover,core/image,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"images\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1826:\"<!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column {\"width\":\"50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:cover {\"customOverlayColor\":\"#f6f6f6\",\"minHeight\":600} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"align\":\"center\",\"id\":571,\"sizeSlug\":\"medium\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" /></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"1em\",\"right\":\"1em\",\"bottom\":\"1em\",\"left\":\"1em\"}}}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"320px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:320px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:526;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Offset images with descriptions\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3150:\"\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top is-layout-flex wp-container-core-columns-is-layout-6cb89fa2 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-231d8afb is-vertical is-content-justification-left is-nowrap is-layout-flex wp-container-core-group-is-layout-bd8ca46f wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<figure class=\"wp-block-image size-large wp-container-content-0733e5d0\"><img loading=\"lazy\" decoding=\"async\" width=\"793\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"Beautiful photomechanical prints of White Irises (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-525\" srcset=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg 793w, https://s.w.org/patterns/files/2021/06/Iris-232x300.jpg 232w, https://s.w.org/patterns/files/2021/06/Iris-768x992.jpg 768w, https://s.w.org/patterns/files/2021/06/Iris-1189x1536.jpg 1189w, https://s.w.org/patterns/files/2021/06/Iris-1586x2048.jpg 1586w, https://s.w.org/patterns/files/2021/06/Iris.jpg 1920w\" sizes=\"auto, (max-width: 793px) 100vw, 793px\" /></figure>\n\n\n\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-dc6934dc wp-block-group-is-layout-flex\">\n<p class=\"has-medium-font-size wp-block-paragraph\"><strong>White Irises</strong></p>\n\n\n\n<p class=\"has-small-font-size wp-block-paragraph\">Ogawa Kazumasa</p>\n</div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-231d8afb is-vertical is-layout-flex wp-container-core-group-is-layout-522a621f wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-dc6934dc wp-block-group-is-layout-flex\">\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\"><strong>Cherry Blossom</strong></p>\n\n\n\n<p class=\"has-small-font-size wp-block-paragraph\">Ogawa Kazumasa</p>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large\" style=\"font-size:14px\"><img loading=\"lazy\" decoding=\"async\" width=\"707\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"Beautiful photomechanical prints of Cherry Blossom (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-524\" srcset=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg 707w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-207x300.jpg 207w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-768x1112.jpg 768w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1061x1536.jpg 1061w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1414x2048.jpg 1414w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-scaled.jpg 1768w\" sizes=\"auto, (max-width: 707px) 100vw, 707px\" /></figure>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:58:\"Two offset columns with images and titles within each one.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:73:\"core/column,core/columns,core/group,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"gallery\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2930:\"<!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"480px\"},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:image {\"id\":525,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"Beautiful photomechanical prints of White Irises (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-525\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\"><strong>White Irises</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"480px\"},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\"><strong>Cherry Blossom</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"id\":524,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<figure class=\"wp-block-image size-large\" style=\"font-size:14px\"><img src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"Beautiful photomechanical prints of Cherry Blossom (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-524\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:521;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Image with description below and to the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1783:\"\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:10{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1.jpg 1510w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:10{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"></div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"wp-block-paragraph\" style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:46:\"Image with description below and to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:50:\"core/column,core/columns,core/image,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1241:\"<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"10{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":522,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"10{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:502;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Event details\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1773:\"\n<figure class=\"wp-block-image alignwide size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1227\" src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" srcset=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg 2560w, https://s.w.org/patterns/files/2021/06/Group-17-300x144.jpg 300w, https://s.w.org/patterns/files/2021/06/Group-17-1024x491.jpg 1024w, https://s.w.org/patterns/files/2021/06/Group-17-768x368.jpg 768w, https://s.w.org/patterns/files/2021/06/Group-17-1536x736.jpg 1536w, https://s.w.org/patterns/files/2021/06/Group-17-2048x981.jpg 2048w\" sizes=\"auto, (max-width: 2560px) 100vw, 2560px\" /></figure>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"wp-block-paragraph\" style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"wp-block-paragraph\" style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#efefef;background-color:#262626\">Purchase Tickets</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:14:\"Event details.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/column,core/columns,core/image,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1642:\"<!-- wp:image {\"align\":\"wide\",\"id\":501,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image alignwide size-full\"><img src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"style\":{\"color\":{\"background\":\"#262626\",\"text\":\"#efefef\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#efefef;background-color:#262626\">Purchase Tickets</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3680:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-f19201c6 wp-block-group-is-layout-flex\" style=\"padding-right:0;padding-left:0\">\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n</div>\n\n\n\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-493f451d wp-block-group-is-layout-flex\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-886db315 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.38{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.62{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-90cda669 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:69{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man&#8217;s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:4:{i:0;s:7:\"columns\";i:1;s:7:\"gallery\";i:2;s:6:\"images\";i:3;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:5124:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f5eac1\"},\"spacing\":{\"padding\":{\"top\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\",\"right\":\"6vw\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\" style=\"padding-right:0;padding-left:0\"><!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"16px\"}},\"anchor\":\"ecosystem\"} -->\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"0.9\",\"fontSize\":\"6vw\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"1vw\"} -->\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"3vw\",\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"3vw\",\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"69{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:69{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:630:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size wp-block-paragraph\"><a href=\"#\">See case study <span aria-hidden=\"true\" class=\"wp-exclude-emoji\">↗</span></a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1388:\"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-0e47273b wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:55{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color wp-block-paragraph\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"><!-- wp:spacer {\"height\":\"330px\"} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We&#8217;re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607611','pys_woo_stat_order_imported_page','1','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607612','pys_sync_statistic_db','START','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607613','pys_edd_stat_order_imported_page','1','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607614','pys_edd_sync_statistic_db','START','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607615','pys_db_version','1.0.6.4','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607616','pys_core','a:70:{s:13:\"debug_enabled\";b:0;s:24:\"google_retargeting_logic\";N;s:14:\"license_status\";s:5:\"valid\";s:31:\"woo_enabled_save_data_to_orders\";b:1;s:31:\"edd_enabled_save_data_to_orders\";b:1;s:11:\"wcf_enabled\";b:1;s:11:\"logs_enable\";b:0;s:29:\"woo_add_enrich_to_admin_email\";b:1;s:23:\"do_not_track_user_roles\";a:1:{i:0;s:0:\"\";}s:31:\"woo_add_to_cart_on_button_click\";b:1;s:11:\"license_key\";s:27:\"123456-123456-123456-123456\";s:15:\"license_expires\";s:13:\"1500000000000\";s:17:\"gdpr_ajax_enabled\";b:0;s:24:\"automatic_events_enabled\";b:0;s:37:\"automatic_event_internal_link_enabled\";b:1;s:37:\"automatic_event_outbound_link_enabled\";b:1;s:29:\"automatic_event_video_enabled\";b:1;s:37:\"automatic_event_video_youtube_enabled\";b:1;s:35:\"automatic_event_video_vimeo_enabled\";b:1;s:32:\"automatic_event_tel_link_enabled\";b:1;s:34:\"automatic_event_email_link_enabled\";b:1;s:28:\"automatic_event_form_enabled\";b:1;s:24:\"enable_success_send_form\";b:0;s:30:\"automatic_event_signup_enabled\";b:1;s:29:\"automatic_event_login_enabled\";b:1;s:32:\"automatic_event_download_enabled\";b:1;s:35:\"automatic_event_download_extensions\";a:9:{i:0;s:0:\"\";i:1;s:3:\"doc\";i:2;s:3:\"exe\";i:3;s:2:\"js\";i:4;s:3:\"pdf\";i:5;s:3:\"ppt\";i:6;s:3:\"tgz\";i:7;s:3:\"zip\";i:8;s:3:\"xls\";}s:31:\"automatic_event_comment_enabled\";b:1;s:31:\"automatic_event_adsense_enabled\";b:1;s:30:\"automatic_event_scroll_enabled\";b:1;s:28:\"automatic_event_scroll_value\";d:30;s:36:\"automatic_event_time_on_page_enabled\";b:1;s:34:\"automatic_event_time_on_page_value\";d:30;s:30:\"automatic_event_search_enabled\";b:1;s:11:\"fdp_enabled\";b:0;s:23:\"enable_page_title_param\";b:1;s:22:\"enable_post_type_param\";b:1;s:26:\"enable_post_category_param\";b:1;s:20:\"enable_post_id_param\";b:1;s:25:\"enable_content_name_param\";b:1;s:22:\"enable_event_url_param\";b:1;s:22:\"enable_user_role_param\";b:1;s:16:\"send_external_id\";b:1;s:18:\"external_id_expire\";d:180;s:24:\"enable_lading_page_param\";b:1;s:23:\"enable_event_time_param\";b:1;s:22:\"enable_event_day_param\";b:1;s:24:\"enable_event_month_param\";b:1;s:20:\"track_traffic_source\";b:1;s:10:\"track_utms\";b:1;s:17:\"enable_tags_param\";b:1;s:23:\"enable_categories_param\";b:1;s:21:\"server_event_use_ajax\";b:1;s:31:\"enable_remove_source_url_params\";b:1;s:30:\"enable_remove_target_url_param\";b:1;s:32:\"enable_remove_download_url_param\";b:1;s:17:\"compress_front_js\";b:0;s:30:\"hide_version_plugin_in_console\";b:0;s:33:\"enable_auto_save_advance_matching\";b:1;s:25:\"advance_matching_fn_names\";a:6:{i:0;s:0:\"\";i:1;s:10:\"first_name\";i:2;s:10:\"first-name\";i:3;s:10:\"first name\";i:4;s:4:\"name\";i:5;s:17:\"names[first_name]\";}s:25:\"advance_matching_ln_names\";a:5:{i:0;s:0:\"\";i:1;s:9:\"last_name\";i:2;s:9:\"last-name\";i:3;s:9:\"last name\";i:4;s:16:\"names[last_name]\";}s:26:\"advance_matching_tel_names\";a:3:{i:0;s:0:\"\";i:1;s:5:\"phone\";i:2;s:3:\"tel\";}s:15:\"cookie_duration\";d:7;s:19:\"last_visit_duration\";d:60;s:16:\"visit_data_model\";s:11:\"first_visit\";s:19:\"block_robot_enabled\";b:0;s:16:\"block_ip_enabled\";b:0;s:11:\"blocked_ips\";a:1:{i:0;s:0:\"\";}s:17:\"admin_permissions\";a:2:{i:0;s:0:\"\";i:1;s:13:\"administrator\";}s:28:\"woo_add_to_cart_catch_method\";s:13:\"add_cart_hook\";}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607643','elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:43:\"Introducing Angie: Agentic AI for WordPress\";s:7:\"excerpt\";s:365:\"Meet Angie, agentic AI purpose-built for WordPress. Angie understands your site, connects to your tools, and takes real actions on your behalf. Its first capability, Angie Code, lets you describe any WordPress feature you can imagine and have it built for you in minutes. Production-ready, fully integrated with your site, and safe to test before it ever goes live.\";s:7:\"created\";i:1774270910;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:142:\"https://elementor.com/blog/introducing-angie-agentic-ai-for-wordpress/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:59:\"The atomic foundation of version 4 is ready for real sites!\";s:7:\"excerpt\";s:296:\"The alpha phase is complete. Version 4 is now in beta, and the atomic foundation is ready to be used on real sites! This is the final step before the official release of version 4.0, activating the new features automatically on new sites, and becoming the default editing experience in Elementor.\";s:7:\"created\";i:1770651621;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:113:\"https://elementor.com/blog/editor-4-beta/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:79:\"Introducing Elementor 3.33: Variables Manager, Custom CSS, Blend Modes, & more!\";s:7:\"excerpt\";s:340:\"Elementor 3.33 builds on the foundation of Editor V4, continuing our mission to create a faster, more scalable, and more intuitive design experience for Web Creators. With the addition of the Variables Manager, element-level Custom CSS, Background Clipping, and Blend Modes, designers have more creative precision and consistency than ever.\";s:7:\"created\";i:1762944115;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:145:\"https://elementor.com/blog/elementor-333-v4-variables-manager-custom-css/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607652','_transient_timeout_wc_onboarding_themes','1780997013','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607653','_transient_wc_onboarding_themes','a:63:{s:7:\"kadence\";a:6:{s:4:\"slug\";s:7:\"kadence\";s:5:\"title\";s:7:\"Kadence\";s:5:\"price\";s:4:\"0.00\";s:12:\"is_installed\";b:1;s:5:\"image\";s:74:\"https://hypergrowth.fishgrowth.xyz/wp-content/themes/kadence/screenshot.png\";s:23:\"has_woocommerce_support\";b:1;}s:6:\"sitora\";a:24:{s:5:\"title\";s:6:\"Sitora\";s:5:\"image\";s:80:\"https://woocommerce.com/wp-content/uploads/2026/04/sitora-thumb.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:178:\"Sitora is a modern minimal WooCommerce theme for furniture, home decor, and lifestyle stores, built with Full-Site Editing for fast, stylish, and fully customizable online shops.\";s:4:\"link\";s:109:\"https://woocommerce.com/products/sitora/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;79\";s:9:\"raw_price\";i:79;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"02bb3c99-52a8-45c9-8ddb-e310a33b18d7\";s:4:\"slug\";s:6:\"sitora\";s:2:\"id\";i:18734006537438;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:79;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"Spade Themes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/spade-themes/\";s:4:\"icon\";s:75:\"https://woocommerce.com/wp-content/uploads/2026/04/sitora-product-icon.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:11:\"hypermarket\";a:24:{s:5:\"title\";s:11:\"Hypermarket\";s:5:\"image\";s:96:\"https://woocommerce.com/wp-content/uploads/2026/04/Hypermarket-Theme-Thumbnail-1.jpg?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:56:\"Clean design. Complete control. Built for modern stores.\";s:4:\"link\";s:114:\"https://woocommerce.com/products/hypermarket/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;59\";s:9:\"raw_price\";i:59;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"0b37259e-39a9-4cea-b30e-702cefe54330\";s:4:\"slug\";s:11:\"hypermarket\";s:2:\"id\";i:18734006516925;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:59;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"MyPreview\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/mypreview/\";s:4:\"icon\";s:79:\"https://woocommerce.com/wp-content/uploads/2026/04/Hypermarket-Theme-Icon-1.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:4:\"meow\";a:24:{s:5:\"title\";s:4:\"Meow\";s:5:\"image\";s:80:\"https://woocommerce.com/wp-content/uploads/2026/04/product-thumb.png?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:144:\"A modern WooCommerce theme for pet stores with full design control, flexible layouts, and fast performance, built for the WordPress Site Editor.\";s:4:\"link\";s:107:\"https://woocommerce.com/products/meow/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;79\";s:9:\"raw_price\";i:79;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"cba4ce42-55ee-4008-92d4-fe56745a842b\";s:4:\"slug\";s:4:\"meow\";s:2:\"id\";i:18734006516758;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:79;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"Nouthemes\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/nouthemes/\";s:4:\"icon\";s:67:\"https://woocommerce.com/wp-content/uploads/2026/04/product-icon.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:7:\"capsule\";a:24:{s:5:\"title\";s:7:\"Capsule\";s:5:\"image\";s:89:\"https://woocommerce.com/wp-content/uploads/2026/03/capsule-theme-thumb-1.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:252:\"Built for stores that don’t chase trends — they define them. Capsule is a block-first WordPress theme, built for the Full Site Editor. Design every page your way, sell effortlessly, and give your urban fashion brand the online presence it deserves.\";s:4:\"link\";s:110:\"https://woocommerce.com/products/capsule/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;59\";s:9:\"raw_price\";i:59;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"9ab2d52c-ddd7-44d4-9074-341229e9e8f0\";s:4:\"slug\";s:7:\"capsule\";s:2:\"id\";i:18734006437583;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:59;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:23:\"Merchants\' Best Friends\";s:10:\"vendor_url\";s:54:\"https://woocommerce.com/vendor/merchants-best-friends/\";s:4:\"icon\";s:73:\"https://woocommerce.com/wp-content/uploads/2026/03/capsule-theme-icon.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:6:\"bakeri\";a:24:{s:5:\"title\";s:6:\"Bakeri\";s:5:\"image\";s:80:\"https://woocommerce.com/wp-content/uploads/2026/03/bakeri-thumb.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:97:\"Showcase Your Bakery with Bakeri – A Delicious WooCommerce Theme for Bakeries and Dessert Shops\";s:4:\"link\";s:109:\"https://woocommerce.com/products/bakeri/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"518c4b47-3540-4c88-b209-db7b20e5e8ed\";s:4:\"slug\";s:6:\"bakeri\";s:2:\"id\";i:18734006397340;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"ArtifyWeb\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/artifyweb/\";s:4:\"icon\";s:67:\"https://woocommerce.com/wp-content/uploads/2026/03/bakeri-icon.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:6:\"shopzy\";a:24:{s:5:\"title\";s:6:\"Shopzy\";s:5:\"image\";s:96:\"https://woocommerce.com/wp-content/uploads/2026/03/product-thumbnail-555px-416px.jpg?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:340:\"Shopzy is a modern multi-category WooCommerce theme built for fashion, electronics, furniture, beauty, and general online stores. With responsive layouts, fast performance, advanced product filtering, and easy customization, Shopzy helps you create a powerful, SEO-friendly eCommerce website that drives conversions and scales effortlessly.\";s:4:\"link\";s:109:\"https://woocommerce.com/products/shopzy/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;59\";s:9:\"raw_price\";i:59;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"b5d8c789-2614-4024-bdd1-24ddfa6f7357\";s:4:\"slug\";s:6:\"shopzy\";s:2:\"id\";i:18734006373680;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:59;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"MadrasThemes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/madrasthemes/\";s:4:\"icon\";s:67:\"https://woocommerce.com/wp-content/uploads/2026/03/product-icon.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:7:\"allmart\";a:24:{s:5:\"title\";s:7:\"Allmart\";s:5:\"image\";s:90:\"https://woocommerce.com/wp-content/uploads/2026/02/all-mart-product-thumb.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:292:\"All Mart is a fast, modern WooCommerce theme built for multi-category online stores and marketplaces. With clean design, flexible customization, and seamless WooCommerce integration, it helps you create a professional, mobile-friendly eCommerce website focused on performance and conversions.\";s:4:\"link\";s:110:\"https://woocommerce.com/products/allmart/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;69\";s:9:\"raw_price\";i:69;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"2515a7c3-d81c-4c65-87e9-099719d1f732\";s:4:\"slug\";s:7:\"allmart\";s:2:\"id\";i:18734006333450;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:69;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:13:\"EverestThemes\";s:10:\"vendor_url\";s:45:\"https://woocommerce.com/vendor/everestthemes/\";s:4:\"icon\";s:76:\"https://woocommerce.com/wp-content/uploads/2026/02/allmart-product-icon.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:6:\"kidora\";a:24:{s:5:\"title\";s:6:\"Kidora\";s:5:\"image\";s:88:\"https://woocommerce.com/wp-content/uploads/2026/02/kidora-product-thumb.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:144:\"Kidora is a playful, modern WooCommerce theme for toy shops, game stores, and gift boutiques—fast, flexible, and built with Full-Site Editing.\";s:4:\"link\";s:109:\"https://woocommerce.com/products/kidora/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"e0316517-b60b-4016-8633-f89f9cf1974b\";s:4:\"slug\";s:6:\"kidora\";s:2:\"id\";i:18734006286690;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"Spade Themes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/spade-themes/\";s:4:\"icon\";s:75:\"https://woocommerce.com/wp-content/uploads/2026/02/kidora-product-icon.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:14:\"book-store-pro\";a:24:{s:5:\"title\";s:14:\"Book Store Pro\";s:5:\"image\";s:92:\"https://woocommerce.com/wp-content/uploads/2026/01/thumbnail-book-store-pro.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:241:\"Book Store Pro is a powerful WooCommerce-ready WordPress theme designed specifically for online bookstores. It offers a clean layout, fast performance, and seamless product browsing to help you sell books, eBooks, and publications with ease.\";s:4:\"link\";s:117:\"https://woocommerce.com/products/book-store-pro/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"50e3c1aa-2524-416c-b9d2-0ed652675cbe\";s:4:\"slug\";s:14:\"book-store-pro\";s:2:\"id\";i:18734006266145;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:13:\"DesignOrbital\";s:10:\"vendor_url\";s:45:\"https://woocommerce.com/vendor/designorbital/\";s:4:\"icon\";s:75:\"https://woocommerce.com/wp-content/uploads/2026/01/icon-book-store-pro.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:4:\"mizu\";a:24:{s:5:\"title\";s:4:\"Mizu\";s:5:\"image\";s:114:\"https://woocommerce.com/wp-content/uploads/2026/01/mizu_woo_marketplace_featured_image_scaled_down.png?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:296:\"Mizu Theme for Luxury Fashion is a fast, minimal, and modern WooCommerce theme designed to easily adapt to any type of store, such as fashion, jewelry, beauty, and more. Its elegant design is perfect for anyone looking for an all-around beautiful theme with a clean and high-end luxury aesthetic.\";s:4:\"link\";s:107:\"https://woocommerce.com/products/mizu/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:8:\"&#36;129\";s:9:\"raw_price\";i:129;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"89b0e947-dda7-44e6-a3c4-54b51f76a4f1\";s:4:\"slug\";s:4:\"mizu\";s:2:\"id\";i:18734006255610;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:129;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:13:\"modstar.co.uk\";s:10:\"vendor_url\";s:45:\"https://woocommerce.com/vendor/modstar-co-uk/\";s:4:\"icon\";s:88:\"https://woocommerce.com/wp-content/uploads/2026/01/woo_mizu_profile_pic_black_bg_2-1.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:17:\"green-power-store\";a:24:{s:5:\"title\";s:17:\"Green Power Store\";s:5:\"image\";s:99:\"https://woocommerce.com/wp-content/uploads/2026/01/Green-Power-Store-Product-Card-1.jpg?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:343:\"Green Power Store is a modern Full Site Editing (FSE) WooCommerce WordPress theme specifically designed for businesses in the solar energy, smart home technology, and green energy sectors. Built with sustainability and innovation in mind, this theme provides everything you need to create a professional online store for eco-friendly products.\";s:4:\"link\";s:120:\"https://woocommerce.com/products/green-power-store/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;59\";s:9:\"raw_price\";i:59;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"f9299363-d6bf-4aa0-bb2a-5b89ca3711c8\";s:4:\"slug\";s:17:\"green-power-store\";s:2:\"id\";i:18734006239541;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:59;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:18:\"Aleksandr Samokhin\";s:10:\"vendor_url\";s:50:\"https://woocommerce.com/vendor/aleksandr-samokhin/\";s:4:\"icon\";s:82:\"https://woocommerce.com/wp-content/uploads/2026/01/green-power-store-thumb-160.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:7:\"atelier\";a:24:{s:5:\"title\";s:7:\"Atelier\";s:5:\"image\";s:89:\"https://woocommerce.com/wp-content/uploads/2026/01/atelier-theme-thumb-1.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:182:\"Atelier is a block-based WooCommerce theme for fashion and apparel brands, built for Full Site Editing with refined layouts, flexible templates, and a considered shopping experience.\";s:4:\"link\";s:110:\"https://woocommerce.com/products/atelier/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;59\";s:9:\"raw_price\";i:59;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"8e8ee746-c121-4e76-bebe-18dc587e86e1\";s:4:\"slug\";s:7:\"atelier\";s:2:\"id\";i:18734006224394;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:59;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:23:\"Merchants\' Best Friends\";s:10:\"vendor_url\";s:54:\"https://woocommerce.com/vendor/merchants-best-friends/\";s:4:\"icon\";s:73:\"https://woocommerce.com/wp-content/uploads/2026/01/atelier-theme-icon.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:8:\"storelio\";a:24:{s:5:\"title\";s:8:\"Storelio\";s:5:\"image\";s:93:\"https://woocommerce.com/wp-content/uploads/2026/01/storelio-product-thumb-v2.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:190:\"A feature-rich, professional WooCommerce theme built for retailer brands, featuring 40+ templates, 160+ patterns, multilingual support, and a clean, premium design that builds instant trust.\";s:4:\"link\";s:111:\"https://woocommerce.com/products/storelio/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;79\";s:9:\"raw_price\";i:79;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"9aa7f92d-bf33-40a4-8c7a-12f8371d2a95\";s:4:\"slug\";s:8:\"storelio\";s:2:\"id\";i:18734006217731;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:79;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"Gutenmate\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/gutenmate/\";s:4:\"icon\";s:80:\"https://woocommerce.com/wp-content/uploads/2026/01/storelio-product-icon-v1.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:7:\"pawluxe\";a:24:{s:5:\"title\";s:7:\"Pawluxe\";s:5:\"image\";s:84:\"https://woocommerce.com/wp-content/uploads/2026/01/product-thumbnail.jpg?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:419:\"Pawluxe is the modern WordPress block theme designed specifically for pet businesses. Perfect for pet shops, grooming salons, veterinary clinics, and pet service providers, it combines playful aesthetics with professional functionality. Built with Full Site Editing and seamless WooCommerce integration, Pawluxe enables you to create a beautiful, fully functional pet store in minutes - no technical expertise required.\";s:4:\"link\";s:110:\"https://woocommerce.com/products/pawluxe/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;59\";s:9:\"raw_price\";i:59;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"fa2267c3-4f02-4520-9e8f-f11d94a4953f\";s:4:\"slug\";s:7:\"pawluxe\";s:2:\"id\";i:18734006217709;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:59;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:15:\"Zluck Solutions\";s:10:\"vendor_url\";s:47:\"https://woocommerce.com/vendor/zluck-solutions/\";s:4:\"icon\";s:67:\"https://woocommerce.com/wp-content/uploads/2026/01/product-icon.jpg\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:7:\"pawsome\";a:24:{s:5:\"title\";s:7:\"Pawsome\";s:5:\"image\";s:96:\"https://woocommerce.com/wp-content/uploads/2026/01/product-thumbnail-555px-416px.jpg?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:189:\"Pawsome is a modern WooCommerce theme designed for online pet food and accessories stores, offering responsive layouts, easy customization, and seamless shopping experiences for pet lovers.\";s:4:\"link\";s:110:\"https://woocommerce.com/products/pawsome/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;59\";s:9:\"raw_price\";i:59;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"625288c7-9a14-4b9f-af1c-22c7b8d6f0b2\";s:4:\"slug\";s:7:\"pawsome\";s:2:\"id\";i:18734006190834;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:59;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"MadrasThemes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/madrasthemes/\";s:4:\"icon\";s:67:\"https://woocommerce.com/wp-content/uploads/2026/01/product-icon.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:5:\"vault\";a:24:{s:5:\"title\";s:5:\"Vault\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/uploads/2025/12/vault-theme-thumb.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:146:\"Create a modern electronics or gadget store with the Vault theme, a fully block-based WooCommerce theme crafted for use with the Full Site Editor.\";s:4:\"link\";s:108:\"https://woocommerce.com/products/vault/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;59\";s:9:\"raw_price\";i:59;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"fc9b6712-0d32-4447-a3b9-d61fdbb4b4d0\";s:4:\"slug\";s:5:\"vault\";s:2:\"id\";i:18734006066946;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:59;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:23:\"Merchants\' Best Friends\";s:10:\"vendor_url\";s:54:\"https://woocommerce.com/vendor/merchants-best-friends/\";s:4:\"icon\";s:79:\"https://woocommerce.com/wp-content/uploads/2025/12/vault-theme-product-icon.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:5:\"axels\";a:24:{s:5:\"title\";s:5:\"Axels\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/uploads/2025/12/Product-Thumbnail-555px-X-416px-2.jpg?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:300:\"Axels is a WooCommerce theme designed for luxury jewellery and accessory stores. With refined layouts, flawless product showcases, and a modern aesthetic, it turns your store into an elegant shopping experience. Fast, flexible, and fully FSE-optimized, Axels helps high-end brands shine effortlessly.\";s:4:\"link\";s:108:\"https://woocommerce.com/products/axels/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;59\";s:9:\"raw_price\";i:59;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"6a2635cb-f61c-4b74-9f03-4a6c07997598\";s:4:\"slug\";s:5:\"axels\";s:2:\"id\";i:18734006065088;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:59;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"MadrasThemes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/madrasthemes/\";s:4:\"icon\";s:67:\"https://woocommerce.com/wp-content/uploads/2025/12/Product-Icon.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:10:\"sophia-pro\";a:24:{s:5:\"title\";s:10:\"Sophia Pro\";s:5:\"image\";s:86:\"https://woocommerce.com/wp-content/uploads/2025/11/newv_sophia_pimage.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:7:\"primary\";s:7:\"excerpt\";s:120:\"A clean, modern, and minimal multipurpose theme for all types of businesses; focused on speed, SEO, and user experience.\";s:4:\"link\";s:113:\"https://woocommerce.com/products/sophia-pro/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"ad004569-acff-4b33-b88e-33323d8b0afb\";s:4:\"slug\";s:10:\"sophia-pro\";s:2:\"id\";i:18734006024325;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:16:\"WP Custom Themes\";s:10:\"vendor_url\";s:48:\"https://woocommerce.com/vendor/wp-custom-themes/\";s:4:\"icon\";s:68:\"https://woocommerce.com/wp-content/uploads/2025/11/logo_sophia_n.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:17:\"perfume-store-pro\";a:24:{s:5:\"title\";s:17:\"Perfume Store Pro\";s:5:\"image\";s:91:\"https://woocommerce.com/wp-content/uploads/2025/11/perfume-store-thumbnail.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:172:\"Perfume Store Pro is a modern, elegant WooCommerce theme designed for fragrance shops, offering stylish layouts, fast performance, and seamless online shopping experiences.\";s:4:\"link\";s:120:\"https://woocommerce.com/products/perfume-store-pro/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"95928932-fdfb-491e-96e3-9e0f01d7c629\";s:4:\"slug\";s:17:\"perfume-store-pro\";s:2:\"id\";i:18734005995603;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:13:\"DesignOrbital\";s:10:\"vendor_url\";s:45:\"https://woocommerce.com/vendor/designorbital/\";s:4:\"icon\";s:80:\"https://woocommerce.com/wp-content/uploads/2025/11/perfume-store-icon-round.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:8:\"skinelle\";a:24:{s:5:\"title\";s:8:\"Skinelle\";s:5:\"image\";s:91:\"https://woocommerce.com/wp-content/uploads/2025/11/product-thumbnail_96d89d.jpg?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:88:\"A sleek and elegant WooCommerce theme crafted for skincare, beauty, and wellness brands.\";s:4:\"link\";s:111:\"https://woocommerce.com/products/skinelle/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;59\";s:9:\"raw_price\";i:59;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"f61d015e-67ca-42bb-b54d-1415e71878ff\";s:4:\"slug\";s:8:\"skinelle\";s:2:\"id\";i:18734005990308;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:59;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"MadrasThemes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/madrasthemes/\";s:4:\"icon\";s:74:\"https://woocommerce.com/wp-content/uploads/2025/11/product-icon_d43388.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:6:\"fasino\";a:24:{s:5:\"title\";s:6:\"Fasino\";s:5:\"image\";s:78:\"https://woocommerce.com/wp-content/uploads/2025/10/demo-thumb.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:155:\"Bring your brand to life with Fasino — a lightning-fast, fashion-forward WooCommerce theme crafted to showcase your products beautifully and boost sales.\";s:4:\"link\";s:109:\"https://woocommerce.com/products/fasino/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"9bb05a06-96d9-42e3-8df7-1664e9800dcb\";s:4:\"slug\";s:6:\"fasino\";s:2:\"id\";i:18734005905811;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"Spade Themes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/spade-themes/\";s:4:\"icon\";s:67:\"https://woocommerce.com/wp-content/uploads/2025/10/fasino-logo.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:8:\"groceria\";a:24:{s:5:\"title\";s:8:\"Groceria\";s:5:\"image\";s:84:\"https://woocommerce.com/wp-content/uploads/2025/10/product-thumbnail.jpg?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:347:\"Groceria – A modern and vibrant WooCommerce theme designed for grocery, supermarket, and organic food stores. With clean layouts, easy navigation, and full mobile responsiveness, Groceria helps you showcase fresh products beautifully and boost online sales effortlessly. Perfect for everyday essentials, organic produce, and gourmet collections.\";s:4:\"link\";s:111:\"https://woocommerce.com/products/groceria/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;59\";s:9:\"raw_price\";i:59;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"3afd6c4e-d966-4eab-b5ae-185b796a456c\";s:4:\"slug\";s:8:\"groceria\";s:2:\"id\";i:18734005874287;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:59;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"MadrasThemes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/madrasthemes/\";s:4:\"icon\";s:67:\"https://woocommerce.com/wp-content/uploads/2025/10/product-icon.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:5:\"tecky\";a:24:{s:5:\"title\";s:5:\"Tecky\";s:5:\"image\";s:79:\"https://woocommerce.com/wp-content/uploads/2025/09/tecky-thumb.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:135:\"Tecky is a modern WooCommerce theme for electronics and gadget stores—responsive, fast, and easy to customize with Full-Site Editing.\";s:4:\"link\";s:108:\"https://woocommerce.com/products/tecky/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"24e1c3e5-140a-4175-be6d-b4944e10a8f1\";s:4:\"slug\";s:5:\"tecky\";s:2:\"id\";i:18734005747357;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"Spade Themes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/spade-themes/\";s:4:\"icon\";s:66:\"https://woocommerce.com/wp-content/uploads/2025/09/tecky-icon.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:6:\"kanvas\";a:24:{s:5:\"title\";s:6:\"Kanvas\";s:5:\"image\";s:86:\"https://woocommerce.com/wp-content/uploads/2025/08/kanvas-theme-thumb.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:85:\"Showcase Your Art with Kanvas – A Sleek WooCommerce Theme for Artists and Creatives\";s:4:\"link\";s:109:\"https://woocommerce.com/products/kanvas/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"49662a2d-6806-4ecb-8531-1bbf89827bdc\";s:4:\"slug\";s:6:\"kanvas\";s:2:\"id\";i:18734005663438;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"ArtifyWeb\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/artifyweb/\";s:4:\"icon\";s:67:\"https://woocommerce.com/wp-content/uploads/2025/08/kanvas-icon.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:9:\"quickmart\";a:24:{s:5:\"title\";s:9:\"QuickMart\";s:5:\"image\";s:83:\"https://woocommerce.com/wp-content/uploads/2025/08/quickmart-thumb.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:120:\"QuickMart – Fresh, Fast & Flexible WooCommerce Supermarket Theme for Grocery, Fresh Food, Drinks & Everyday Essentials\";s:4:\"link\";s:112:\"https://woocommerce.com/products/quickmart/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"4e70b4ec-2954-400a-a8ad-f6cb7846c8ee\";s:4:\"slug\";s:9:\"quickmart\";s:2:\"id\";i:18734005661305;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"Spade Themes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/spade-themes/\";s:4:\"icon\";s:70:\"https://woocommerce.com/wp-content/uploads/2025/08/quickmart-icon.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:8:\"medikart\";a:24:{s:5:\"title\";s:8:\"MediKart\";s:5:\"image\";s:82:\"https://woocommerce.com/wp-content/uploads/2025/08/medikart-thumb.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:82:\"A complete WooCommerce theme for pharmacies, health stores, and wellness products.\";s:4:\"link\";s:111:\"https://woocommerce.com/products/medikart/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"a98ac54a-166d-4b23-8776-b8aff939617f\";s:4:\"slug\";s:8:\"medikart\";s:2:\"id\";i:18734005635263;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"Spade Themes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/spade-themes/\";s:4:\"icon\";s:69:\"https://woocommerce.com/wp-content/uploads/2025/08/medikart-logo.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:4:\"orna\";a:24:{s:5:\"title\";s:4:\"ORNA\";s:5:\"image\";s:78:\"https://woocommerce.com/wp-content/uploads/2025/08/orna-thumb.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:80:\"An Elegant WooCommerce Theme for Fine Jewelry, Watches, and Fashion Accessories.\";s:4:\"link\";s:107:\"https://woocommerce.com/products/orna/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"9fefb6e9-6721-4854-8c10-9b9ea04be4a6\";s:4:\"slug\";s:4:\"orna\";s:2:\"id\";i:18734005635259;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"Spade Themes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/spade-themes/\";s:4:\"icon\";s:65:\"https://woocommerce.com/wp-content/uploads/2025/08/orna-icon.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:7:\"eyewear\";a:24:{s:5:\"title\";s:7:\"Eyewear\";s:5:\"image\";s:81:\"https://woocommerce.com/wp-content/uploads/2025/07/eyewear-thumb.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:77:\"A High-Converting WooCommerce Theme for Eyewear Brands and Optical Businesses\";s:4:\"link\";s:110:\"https://woocommerce.com/products/eyewear/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"4fbf0a9a-b24e-44b2-a10b-514bf6ea6c45\";s:4:\"slug\";s:7:\"eyewear\";s:2:\"id\";i:18734005511145;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"Spade Themes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/spade-themes/\";s:4:\"icon\";s:68:\"https://woocommerce.com/wp-content/uploads/2025/07/eyewear-icon.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:16:\"outdoor-commerce\";a:24:{s:5:\"title\";s:7:\"Outdoor\";s:5:\"image\";s:92:\"https://woocommerce.com/wp-content/uploads/2025/07/outdoor-product-thumb-v2.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:163:\"Start selling online with a WooCommerce WordPress theme featuring 120+ patterns and full Gutenberg Editor integration with Site Editor support. No coding required.\";s:4:\"link\";s:119:\"https://woocommerce.com/products/outdoor-commerce/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;79\";s:9:\"raw_price\";i:79;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"d3d3b51b-a8d8-49a7-a278-3fac00c29fcd\";s:4:\"slug\";s:16:\"outdoor-commerce\";s:2:\"id\";i:18734005474724;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:79;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"Gutenmate\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/gutenmate/\";s:4:\"icon\";s:83:\"https://woocommerce.com/wp-content/uploads/2025/07/outdoor-product-icon-v1.png.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:6:\"bonsai\";a:24:{s:5:\"title\";s:6:\"Bonsai\";s:5:\"image\";s:80:\"https://woocommerce.com/wp-content/uploads/2025/07/bonsai-thumb.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:87:\"Boost your green sales with the best WooCommerce theme for plant and home decor stores.\";s:4:\"link\";s:109:\"https://woocommerce.com/products/bonsai/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"4ed342a6-1074-49de-926d-c555f0ca5141\";s:4:\"slug\";s:6:\"bonsai\";s:2:\"id\";i:18734005467511;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"Spade Themes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/spade-themes/\";s:4:\"icon\";s:67:\"https://woocommerce.com/wp-content/uploads/2025/07/bonsai-icon.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:6:\"auto-x\";a:24:{s:5:\"title\";s:6:\"Auto-X\";s:5:\"image\";s:90:\"https://woocommerce.com/wp-content/uploads/2025/06/auto-x-product-thumbs-1.png?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:94:\"A clean, fast WooCommerce theme built for selling car parts, tools, and accessories with ease.\";s:4:\"link\";s:109:\"https://woocommerce.com/products/auto-x/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;79\";s:9:\"raw_price\";i:79;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"1451a6d3-c1c9-4115-a3e3-1dd725a5b456\";s:4:\"slug\";s:6:\"auto-x\";s:2:\"id\";i:18734005464894;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:79;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"Nouthemes\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/nouthemes/\";s:4:\"icon\";s:74:\"https://woocommerce.com/wp-content/uploads/2025/06/auto-x-product-icon.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:8:\"dekorify\";a:24:{s:5:\"title\";s:8:\"Dekorify\";s:5:\"image\";s:87:\"https://woocommerce.com/wp-content/uploads/2025/05/dekorify-screenshot.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:57:\"Elevate Your Furniture & Home Decor Brand for More Sales.\";s:4:\"link\";s:111:\"https://woocommerce.com/products/dekorify/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"dca1012a-f81b-4bb4-b96c-8fb9a446b8e1\";s:4:\"slug\";s:8:\"dekorify\";s:2:\"id\";i:18734005338375;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"ArtifyWeb\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/artifyweb/\";s:4:\"icon\";s:69:\"https://woocommerce.com/wp-content/uploads/2025/05/dekorify-icon.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:6:\"petpal\";a:24:{s:5:\"title\";s:6:\"PetPal\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/uploads/2025/05/petpal-screenshot.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:166:\"Create a Pawsome Online Pet Store with PetPal – A WooCommerce Theme Packed with 65+ Pre-Built Block Patterns to Help You Design Your Store Exactly the Way You Want!\";s:4:\"link\";s:109:\"https://woocommerce.com/products/petpal/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"9d0f7325-fc26-4175-b0d5-bcd66296369c\";s:4:\"slug\";s:6:\"petpal\";s:2:\"id\";i:18734005338184;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"ArtifyWeb\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/artifyweb/\";s:4:\"icon\";s:67:\"https://woocommerce.com/wp-content/uploads/2025/05/petpal-icon.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:7:\"petgrub\";a:24:{s:5:\"title\";s:7:\"Petgrub\";s:5:\"image\";s:92:\"https://woocommerce.com/wp-content/uploads/2025/05/petgrub-product-thumb-2-1.png?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:257:\"The Ultimate WooCommerce Theme for Pet Food Businesses. Create beautiful, fast, and fully customizable websites for pet shops, groomers, breeders, shelters, and more. PetGrub is WooCommerce-ready and built with Full Site Editing for complete design freedom.\";s:4:\"link\";s:110:\"https://woocommerce.com/products/petgrub/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"ce42e96f-b06a-440c-a033-f895ccb32efa\";s:4:\"slug\";s:7:\"petgrub\";s:2:\"id\";i:18734005290444;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:13:\"EverestThemes\";s:10:\"vendor_url\";s:45:\"https://woocommerce.com/vendor/everestthemes/\";s:4:\"icon\";s:75:\"https://woocommerce.com/wp-content/uploads/2025/05/petgrub-product-icon.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:8:\"furnique\";a:24:{s:5:\"title\";s:8:\"Furnique\";s:5:\"image\";s:74:\"https://woocommerce.com/wp-content/uploads/2025/05/preview.jpg?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:287:\"Furnique is a sleek and modern WooCommerce theme tailored for furniture and home décor stores. It offers flexible layouts, a clean design, and intuitive customization options—perfect for showcasing your collections with style while providing a smooth and engaging shopping experience.\";s:4:\"link\";s:111:\"https://woocommerce.com/products/furnique/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;59\";s:9:\"raw_price\";i:59;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"6b18765e-7cd4-4985-918d-24e415adf2e1\";s:4:\"slug\";s:8:\"furnique\";s:2:\"id\";i:18734005290201;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:59;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"MadrasThemes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/madrasthemes/\";s:4:\"icon\";s:67:\"https://woocommerce.com/wp-content/uploads/2025/05/product-icon.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:6:\"glowzy\";a:24:{s:5:\"title\";s:6:\"Glowzy\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/uploads/2025/04/glowzy-screenshot.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:62:\"Elevate Your Skincare, Beauty & Wellness Brand for More Sales.\";s:4:\"link\";s:109:\"https://woocommerce.com/products/glowzy/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"fc0620ab-a5dd-48c4-a0f8-94013c64944d\";s:4:\"slug\";s:6:\"glowzy\";s:2:\"id\";i:18734005121032;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"ArtifyWeb\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/artifyweb/\";s:4:\"icon\";s:67:\"https://woocommerce.com/wp-content/uploads/2025/04/glowzy-icon.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:4:\"runx\";a:24:{s:5:\"title\";s:4:\"RunX\";s:5:\"image\";s:82:\"https://woocommerce.com/wp-content/uploads/2025/03/runx-home-page.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:95:\"The Perfect Fusion of Speed and Style – The Definitive Footwear & Fashion eCommerce Solution.\";s:4:\"link\";s:107:\"https://woocommerce.com/products/runx/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"066c1a23-d50c-458d-9547-d490af714f25\";s:4:\"slug\";s:4:\"runx\";s:2:\"id\";i:18734005007955;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"ArtifyWeb\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/artifyweb/\";s:4:\"icon\";s:65:\"https://woocommerce.com/wp-content/uploads/2025/03/runx-icon.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:5:\"xnova\";a:24:{s:5:\"title\";s:5:\"Xnova\";s:5:\"image\";s:76:\"https://woocommerce.com/wp-content/uploads/2025/03/xnova-woo.jpg?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:58:\"The Ultimate WordPress Theme for DJs & Music Professionals\";s:4:\"link\";s:108:\"https://woocommerce.com/products/xnova/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;69\";s:9:\"raw_price\";i:69;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"90b2fa90-b13c-4197-b52c-1909f51a14fb\";s:4:\"slug\";s:5:\"xnova\";s:2:\"id\";i:18734005007473;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:69;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"Themetick\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/themetick/\";s:4:\"icon\";s:64:\"https://woocommerce.com/wp-content/uploads/2025/03/Frame-4-3.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:9:\"freshhome\";a:24:{s:5:\"title\";s:9:\"FreshHome\";s:5:\"image\";s:74:\"https://woocommerce.com/wp-content/uploads/2025/02/preview.jpg?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:85:\"Redefining online furniture shopping with modern design and effortless functionality!\";s:4:\"link\";s:112:\"https://woocommerce.com/products/freshhome/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;59\";s:9:\"raw_price\";i:59;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"dcfa6e4d-b881-4c73-bdab-53a26d2ac737\";s:4:\"slug\";s:9:\"freshhome\";s:2:\"id\";i:18734004966856;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:59;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"MadrasThemes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/madrasthemes/\";s:4:\"icon\";s:87:\"https://woocommerce.com/wp-content/uploads/2025/02/freshhome-woocommerce-theme-icon.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:8:\"harmonix\";a:24:{s:5:\"title\";s:8:\"Harmonix\";s:5:\"image\";s:82:\"https://woocommerce.com/wp-content/uploads/2025/02/harmonix-arhive.png?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:184:\"With a bold design and powerful features, Harmonix empowers event organizers, musicians, and venues to build dynamic and engaging websites that capture the energy of live performances.\";s:4:\"link\";s:111:\"https://woocommerce.com/products/harmonix/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;69\";s:9:\"raw_price\";i:69;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"acef144e-7c74-4a57-9d66-4d654d7af4c4\";s:4:\"slug\";s:8:\"harmonix\";s:2:\"id\";i:18734004889737;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:69;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"Themetick\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/themetick/\";s:4:\"icon\";s:66:\"https://woocommerce.com/wp-content/uploads/2025/02/harmonix-th.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:6:\"fundio\";a:24:{s:5:\"title\";s:6:\"Fundio\";s:5:\"image\";s:80:\"https://woocommerce.com/wp-content/uploads/2025/02/fundio-arhive.png?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:239:\"The perfect WordPress theme for nonprofits, NGOs, and community-driven projects. Fundio helps you build a professional, engaging, and conversion-focused website—whether you\'re hosting a fundraiser, charity auction, or awareness campaign.\";s:4:\"link\";s:109:\"https://woocommerce.com/products/fundio/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;69\";s:9:\"raw_price\";i:69;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"7955dea7-a96d-47b9-8f8b-413621d5eb05\";s:4:\"slug\";s:6:\"fundio\";s:2:\"id\";i:18734004879016;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:69;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"Themetick\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/themetick/\";s:4:\"icon\";s:64:\"https://woocommerce.com/wp-content/uploads/2025/02/fundio-th.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:8:\"bagaicha\";a:24:{s:5:\"title\";s:8:\"Bagaicha\";s:5:\"image\";s:86:\"https://woocommerce.com/wp-content/uploads/2025/02/bagaicha-thumbnail.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:44:\" The Ultimate Plant Store WooCommerce Theme\";s:4:\"link\";s:111:\"https://woocommerce.com/products/bagaicha/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"a05a5bf8-1d3a-426f-b8a2-6639fac9168c\";s:4:\"slug\";s:8:\"bagaicha\";s:2:\"id\";i:18734004875916;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"ArtifyWeb\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/artifyweb/\";s:4:\"icon\";s:68:\"https://woocommerce.com/wp-content/uploads/2025/02/bagaicha-icon.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:5:\"wosha\";a:24:{s:5:\"title\";s:5:\"Wosha\";s:5:\"image\";s:87:\"https://woocommerce.com/wp-content/uploads/2025/01/wosha-wc-screenshot.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:70:\"Elevate Your Online Store with Wosha – Where Style Meets Simplicity!\";s:4:\"link\";s:108:\"https://woocommerce.com/products/wosha/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"ea3220e8-c986-4a3b-9630-c67203ae2685\";s:4:\"slug\";s:5:\"wosha\";s:2:\"id\";i:18734004734998;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"ArtifyWeb\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/artifyweb/\";s:4:\"icon\";s:65:\"https://woocommerce.com/wp-content/uploads/2025/01/wosha-logo.jpg\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:18:\"wporg-theme-kiosko\";a:24:{s:5:\"title\";s:6:\"Kiosko\";s:5:\"image\";s:79:\"https://woocommerce.com/wp-content/uploads/2024/12/kiosko-thumb.png?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:116:\"Kiosko is a sleek and modern WooCommerce theme tailored for online stores specializing in art prints and homewares.\";s:4:\"link\";s:109:\"https://woocommerce.com/products/kiosko/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:6:\"&#36;0\";s:9:\"raw_price\";i:0;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"925e5bb8-e868-4ffd-8243-353a0beba968\";s:4:\"slug\";s:18:\"wporg-theme-kiosko\";s:2:\"id\";i:18734004653441;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:0;s:6:\"rating\";d:4.5;s:13:\"reviews_count\";i:84;s:11:\"vendor_name\";s:10:\"Automattic\";s:10:\"vendor_url\";s:42:\"https://woocommerce.com/vendor/automattic/\";s:4:\"icon\";s:66:\"https://woocommerce.com/wp-content/uploads/2024/12/kiosko-logo.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:8:\"gadgetry\";a:24:{s:5:\"title\";s:8:\"Gadgetry\";s:5:\"image\";s:86:\"https://woocommerce.com/wp-content/uploads/2024/12/gadgetry-screenshot.png?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:142:\"Build a sleek, modern, and user-friendly WooCommerce store with Gadgetry—perfect for showcasing tech, gadgets, and a wide range of products.\";s:4:\"link\";s:111:\"https://woocommerce.com/products/gadgetry/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"c872f5c7-415d-4c74-8fb1-122cd1fc3e00\";s:4:\"slug\";s:8:\"gadgetry\";s:2:\"id\";i:18734004606507;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"ArtifyWeb\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/artifyweb/\";s:4:\"icon\";s:68:\"https://woocommerce.com/wp-content/uploads/2024/12/gadgetry-icon.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:7:\"puplaza\";a:24:{s:5:\"title\";s:7:\"Puplaza\";s:5:\"image\";s:81:\"https://woocommerce.com/wp-content/uploads/2024/12/puplaza-arhive.jpg?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:277:\"Puplaza is your all-in-one WordPress theme for creating captivating websites tailored to pet communities and events. Whether you\'re organizing adoption fairs, pet meet-ups, or fundraisers, Puplaza equips you with the tools to highlight the love and joy pets bring to our lives.\";s:4:\"link\";s:110:\"https://woocommerce.com/products/puplaza/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;69\";s:9:\"raw_price\";i:69;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"f00471c7-59c3-4a5b-b828-88c9c586e95a\";s:4:\"slug\";s:7:\"puplaza\";s:2:\"id\";i:18734004589922;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:69;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"Themetick\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/themetick/\";s:4:\"icon\";s:65:\"https://woocommerce.com/wp-content/uploads/2024/12/puplaza-pi.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:7:\"decorix\";a:24:{s:5:\"title\";s:7:\"Decorix\";s:5:\"image\";s:81:\"https://woocommerce.com/wp-content/uploads/2024/11/decorix-arhive.jpg?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:180:\"Decorix is designed to enhance your event’s digital presence, delivering an elegant solution for trade shows, exhibitions, and events centered on furniture design and artistry. \";s:4:\"link\";s:110:\"https://woocommerce.com/products/decorix/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;69\";s:9:\"raw_price\";i:69;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"649eff34-708c-4b32-8535-116fe1fff478\";s:4:\"slug\";s:7:\"decorix\";s:2:\"id\";i:18734004478960;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:69;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"Themetick\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/themetick/\";s:4:\"icon\";s:87:\"https://woocommerce.com/wp-content/uploads/2024/11/decorix-woocommerce-theme_8bfd8a.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:8:\"easysell\";a:24:{s:5:\"title\";s:8:\"EasySell\";s:5:\"image\";s:96:\"https://woocommerce.com/wp-content/uploads/2024/12/easysell-theme-website-banner.png?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:116:\"Easy Sell, Easy Profits!\r\n\r\nMultipurpose WooCommerce Theme for selling Gadgets, Fashion, Foods, Beauty & Gifts, etc.\";s:4:\"link\";s:111:\"https://woocommerce.com/products/easysell/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;69\";s:9:\"raw_price\";i:69;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"2cc34985-3aa5-4211-8d8b-3b758f8b35ea\";s:4:\"slug\";s:8:\"easysell\";s:2:\"id\";i:18734004424510;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:69;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"ArtifyWeb\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/artifyweb/\";s:4:\"icon\";s:73:\"https://woocommerce.com/wp-content/uploads/2024/11/easysell-160x160-1.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:9:\"glamorama\";a:24:{s:5:\"title\";s:9:\"Glamorama\";s:5:\"image\";s:78:\"https://woocommerce.com/wp-content/uploads/2024/11/glamoram-fi.jpg?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:390:\"Discover Glamorama: The Ultimate WordPress Block Theme for Fashion and Lifestyle Experiences. Take center stage with Glamorama—a WordPress theme crafted for high-profile events, from fashion showcases to beauty expos and exclusive gatherings. Designed to elevate your online presence, Glamorama provides an elegant, easy-to-build platform that captures the essence of your stylish events.\";s:4:\"link\";s:112:\"https://woocommerce.com/products/glamorama/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;69\";s:9:\"raw_price\";i:69;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"9be415f4-2a6f-42fe-b9e9-0a61239064b2\";s:4:\"slug\";s:9:\"glamorama\";s:2:\"id\";i:18734004416717;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:69;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"Themetick\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/themetick/\";s:4:\"icon\";s:82:\"https://woocommerce.com/wp-content/uploads/2024/11/glamorama-woocommerce-theme.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:5:\"eveny\";a:24:{s:5:\"title\";s:5:\"Eveny\";s:5:\"image\";s:74:\"https://woocommerce.com/wp-content/uploads/2024/10/Eveny-f.jpg?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:335:\"Introducing Eveny: The Go-To WordPress Block Theme for Nightclubs and Events. Step into the world of events with Eveny, the ultimate WordPress theme tailored for nightclubs, DJ performances, and high-energy parties. Crafted to spotlight your events and nightlife ventures, Eveny helps you build a captivating online presence with ease.\";s:4:\"link\";s:108:\"https://woocommerce.com/products/eveny/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;69\";s:9:\"raw_price\";i:69;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"da90d6a1-29da-4c48-b5dc-6081dd2a5dcb\";s:4:\"slug\";s:5:\"eveny\";s:2:\"id\";i:18734004274082;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:69;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"Themetick\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/themetick/\";s:4:\"icon\";s:66:\"https://woocommerce.com/wp-content/uploads/2024/10/eveny-theme.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:5:\"cusio\";a:24:{s:5:\"title\";s:5:\"Cusio\";s:5:\"image\";s:90:\"https://woocommerce.com/wp-content/uploads/2024/09/cusio-product-thumb-v1.webp?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:174:\"Boost your online store with our powerful WooCommerce-ready WordPress theme. 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} Full-Site Gutenberg Editor integration, 70+ patterns, and easy setup – no coding required!\";s:4:\"link\";s:108:\"https://woocommerce.com/products/cusio/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;79\";s:9:\"raw_price\";i:79;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"66b823a5-ff54-4f85-91e7-1234013b8343\";s:4:\"slug\";s:5:\"cusio\";s:2:\"id\";i:18734004235907;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:79;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"Gutenmate\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/gutenmate/\";s:4:\"icon\";s:77:\"https://woocommerce.com/wp-content/uploads/2024/09/cusio-product-icon-v1.webp\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:7:\"glowess\";a:24:{s:5:\"title\";s:7:\"Glowess\";s:5:\"image\";s:74:\"https://woocommerce.com/wp-content/uploads/2024/08/preview.jpg?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:129:\"Unveil the essence of beauty with Glowess, a glamorous theme designed to elevate your brand with unparalleled elegance and shine.\";s:4:\"link\";s:110:\"https://woocommerce.com/products/glowess/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;59\";s:9:\"raw_price\";i:59;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"e7bc71b6-9373-4082-b577-87ee38317786\";s:4:\"slug\";s:7:\"glowess\";s:2:\"id\";i:18734004128847;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:59;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"MadrasThemes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/madrasthemes/\";s:4:\"icon\";s:74:\"https://woocommerce.com/wp-content/uploads/2024/08/product-icon_025992.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:49:\"electronics-and-gadget-shop-theme-for-woocommerce\";a:24:{s:5:\"title\";s:6:\"Gravia\";s:5:\"image\";s:87:\"https://woocommerce.com/wp-content/uploads/2024/09/gravia-theme-preview.png?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:181:\"Sleek & Lightweight WooCommerce-ready WordPress theme for Electronics and Gadgets. 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} Full-Site Gutenberg Editor integration, 70+ patterns, and easy setup – no coding required!\";s:4:\"link\";s:109:\"https://woocommerce.com/products/gravia/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;79\";s:9:\"raw_price\";i:79;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"73ba1eb7-4d83-4d3f-a57c-cf06e3cb123b\";s:4:\"slug\";s:49:\"electronics-and-gadget-shop-theme-for-woocommerce\";s:2:\"id\";i:18734004127809;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:79;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"Gutenmate\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/gutenmate/\";s:4:\"icon\";s:76:\"https://woocommerce.com/wp-content/uploads/2024/08/product-icon-gravia-1.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:6:\"gotrek\";a:24:{s:5:\"title\";s:6:\"GoTrek\";s:5:\"image\";s:74:\"https://woocommerce.com/wp-content/uploads/2024/07/preview.jpg?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:96:\"Explore the World with GoTrek! The ultimate WordPress theme for travel agencies and adventurers!\";s:4:\"link\";s:109:\"https://woocommerce.com/products/gotrek/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;59\";s:9:\"raw_price\";i:59;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"f69eb33e-6f32-43b2-8f55-2d171996099d\";s:4:\"slug\";s:6:\"gotrek\";s:2:\"id\";i:18734004020547;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:59;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"MadrasThemes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/madrasthemes/\";s:4:\"icon\";s:67:\"https://woocommerce.com/wp-content/uploads/2024/07/product-icon.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:6:\"tishaa\";a:24:{s:5:\"title\";s:6:\"Tishaa\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/uploads/2024/06/tishaa-hero-banner.png?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:62:\"Sparkle and Shine with Tishaa Theme as Your Online Store Grows\";s:4:\"link\";s:109:\"https://woocommerce.com/products/tishaa/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;49\";s:9:\"raw_price\";i:49;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"96e1930a-07ad-41a0-aee3-2e243d8b3e9b\";s:4:\"slug\";s:6:\"tishaa\";s:2:\"id\";i:18734003794705;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:49;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"ArtifyWeb\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/artifyweb/\";s:4:\"icon\";s:76:\"https://woocommerce.com/wp-content/uploads/2024/06/tishaa-icon-160x160-1.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:5:\"narzo\";a:24:{s:5:\"title\";s:5:\"Narzo\";s:5:\"image\";s:91:\"https://woocommerce.com/wp-content/uploads/2024/07/narzo-featured-image-1-3.png?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:138:\"Lightweight Full Site Editing theme with lots of customization possibilities. Create your dream e-commerce site with no hassle and coding.\";s:4:\"link\";s:108:\"https://woocommerce.com/products/narzo/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;79\";s:9:\"raw_price\";i:79;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"8eaeed37-1a34-43fa-9858-1db9a716953a\";s:4:\"slug\";s:5:\"narzo\";s:2:\"id\";i:18734003599696;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:79;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:9:\"CodeYatri\";s:10:\"vendor_url\";s:41:\"https://woocommerce.com/vendor/codeyatri/\";s:4:\"icon\";s:65:\"https://woocommerce.com/wp-content/uploads/2024/04/theme-logo.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:10:\"kiddiemart\";a:24:{s:5:\"title\";s:10:\"Kiddiemart\";s:5:\"image\";s:91:\"https://woocommerce.com/wp-content/uploads/2024/08/kiddiemart-theme-preview.png?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:86:\"Use the Kiddiemart block theme to set up an online store to sell merchandise for kids.\";s:4:\"link\";s:113:\"https://woocommerce.com/products/kiddiemart/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;79\";s:9:\"raw_price\";i:79;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"e08820cb-bad9-42c5-9f06-53699a92f122\";s:4:\"slug\";s:10:\"kiddiemart\";s:2:\"id\";i:18734002990960;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:79;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"Catch Themes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/catch-themes/\";s:4:\"icon\";s:72:\"https://woocommerce.com/wp-content/uploads/2023/12/kiddiemart-icon-1.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:8:\"skincues\";a:24:{s:5:\"title\";s:8:\"Skincues\";s:5:\"image\";s:89:\"https://woocommerce.com/wp-content/uploads/2024/08/skincues-theme-preview.png?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:140:\"Launch your online cosmetics store or a beauty product blog and promote your cosmetics brand using the Skincues Block Theme for WooCommerce.\";s:4:\"link\";s:111:\"https://woocommerce.com/products/skincues/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;79\";s:9:\"raw_price\";i:79;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"f651e789-7511-44fb-83d4-a37ba845fdbb\";s:4:\"slug\";s:8:\"skincues\";s:2:\"id\";i:18734002990939;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:79;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"Catch Themes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/catch-themes/\";s:4:\"icon\";s:68:\"https://woocommerce.com/wp-content/uploads/2023/12/skincues-icon.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:8:\"drinkify\";a:24:{s:5:\"title\";s:8:\"Drinkify\";s:5:\"image\";s:89:\"https://woocommerce.com/wp-content/uploads/2024/08/drinkify-theme-preview.png?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:5:\"unset\";s:7:\"excerpt\";s:100:\"Drinkify is a Premium eCommerce WordPress Block Theme for Crafting the Perfect Liquor Store Website.\";s:4:\"link\";s:111:\"https://woocommerce.com/products/drinkify/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;79\";s:9:\"raw_price\";i:79;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"7ba6790c-cea3-4a08-b2d4-e30b39259647\";s:4:\"slug\";s:8:\"drinkify\";s:2:\"id\";i:18734002990756;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:79;s:6:\"rating\";N;s:13:\"reviews_count\";N;s:11:\"vendor_name\";s:12:\"Catch Themes\";s:10:\"vendor_url\";s:44:\"https://woocommerce.com/vendor/catch-themes/\";s:4:\"icon\";s:68:\"https://woocommerce.com/wp-content/uploads/2023/12/drinkify-icon.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:9:\"astra-pro\";a:24:{s:5:\"title\";s:9:\"Astra Pro\";s:5:\"image\";s:83:\"https://woocommerce.com/wp-content/uploads/2023/12/Astra-Woo-Banner.png?fit=764,573\";s:4:\"type\";s:5:\"theme\";s:13:\"freemium_type\";s:7:\"primary\";s:7:\"excerpt\";s:90:\"Create stunning websites with one of the most powerful and user-friendly WordPress themes.\";s:4:\"link\";s:112:\"https://woocommerce.com/products/astra-pro/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\";s:5:\"price\";s:7:\"&#36;47\";s:9:\"raw_price\";i:47;s:8:\"currency\";s:3:\"USD\";s:4:\"hash\";s:36:\"9fc32c06-1fae-4744-8aca-f5259ddfcb3e\";s:4:\"slug\";s:9:\"astra-pro\";s:2:\"id\";i:18734001206339;s:10:\"is_on_sale\";b:0;s:13:\"regular_price\";i:47;s:6:\"rating\";i:3;s:13:\"reviews_count\";i:5;s:11:\"vendor_name\";s:23:\"Brainstorm Force US LLC\";s:10:\"vendor_url\";s:55:\"https://woocommerce.com/vendor/brainstorm-force-us-llc/\";s:4:\"icon\";s:68:\"https://woocommerce.com/wp-content/uploads/2022/10/Astra_160x160.png\";s:14:\"is_installable\";b:0;s:14:\"billing_period\";s:0:\"\";s:23:\"billing_period_interval\";s:0:\"\";s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:21:\"hello-elementor-child\";a:6:{s:4:\"slug\";s:21:\"hello-elementor-child\";s:5:\"title\";s:21:\"Hello Elementor Child\";s:5:\"price\";s:4:\"0.00\";s:12:\"is_installed\";b:1;s:5:\"image\";s:88:\"https://hypergrowth.fishgrowth.xyz/wp-content/themes/hello-elementor-child/screenshot.png\";s:23:\"has_woocommerce_support\";b:1;}s:15:\"hello-elementor\";a:6:{s:4:\"slug\";s:15:\"hello-elementor\";s:5:\"title\";s:15:\"Hello Elementor\";s:5:\"price\";s:4:\"0.00\";s:12:\"is_installed\";b:1;s:5:\"image\";s:82:\"https://hypergrowth.fishgrowth.xyz/wp-content/themes/hello-elementor/screenshot.png\";s:23:\"has_woocommerce_support\";b:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607654','_transient_timeout_wc_report_orders_stats_35a4dd2def216121d056e925531c3dca','1781515416','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607655','_transient_wc_report_orders_stats_35a4dd2def216121d056e925531c3dca','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-24\";s:10:\"date_start\";s:19:\"2026-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-07 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-08 15:23:33\";s:12:\"date_end_gmt\";s:19:\"2026-06-08 09:23:33\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607656','_transient_timeout_wc_report_orders_stats_51da1058bf51c1f9eefabaab79297ab4','1781515416','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607657','_transient_wc_report_orders_stats_51da1058bf51c1f9eefabaab79297ab4','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-24\";s:10:\"date_start\";s:19:\"2026-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-07 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-08 15:23:33\";s:12:\"date_end_gmt\";s:19:\"2026-06-08 09:23:33\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607658','_transient_timeout_wc_report_orders_stats_b098ef852bdcf4b5613d4de071be526c','1781515416','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607659','_transient_wc_report_orders_stats_b098ef852bdcf4b5613d4de071be526c','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-06 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-07 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607660','_transient_timeout_wc_report_orders_stats_6e662f5213d209f015837c7c1151f91e','1781515417','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607661','_transient_wc_report_orders_stats_6e662f5213d209f015837c7c1151f91e','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-06 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-07 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607732','_transient_timeout_cartflows_data_2091_55db1a0c63a318afe9c7a54fa61403f2','1780937097','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607733','_transient_cartflows_data_2091_55db1a0c63a318afe9c7a54fa61403f2','a:2:{s:7:\"flow_id\";s:4:\"2091\";s:5:\"steps\";a:2:{i:0;a:3:{s:2:\"id\";i:2092;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:2100;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607736','_transient_timeout_cartflows_data_2089_27d91bccf4a775f120d9148a995d4aa6','1780937080','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607737','_transient_cartflows_data_2089_27d91bccf4a775f120d9148a995d4aa6','a:2:{s:7:\"flow_id\";s:4:\"2089\";s:5:\"steps\";a:2:{i:0;a:3:{s:2:\"id\";i:2090;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:2102;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607738','_transient_timeout_cartflows_data_2081_bb5974f9eb9df58fe6a46f062f54358e','1780937082','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607739','_transient_cartflows_data_2081_bb5974f9eb9df58fe6a46f062f54358e','a:2:{s:7:\"flow_id\";s:4:\"2081\";s:5:\"steps\";a:2:{i:0;a:3:{s:2:\"id\";i:2082;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2084;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607740','_transient_timeout_cartflows_data_2069_66f4ad105850c1d6b400243a7d811a1b','1780937085','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607741','_transient_cartflows_data_2069_66f4ad105850c1d6b400243a7d811a1b','a:2:{s:7:\"flow_id\";s:4:\"2069\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2070;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2072;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2074;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607742','_transient_timeout_cartflows_data_2063_f19b3f9eaebdbfb6259a1249d01f1880','1780937087','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607743','_transient_cartflows_data_2063_f19b3f9eaebdbfb6259a1249d01f1880','a:2:{s:7:\"flow_id\";s:4:\"2063\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2064;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2066;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2104;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607744','_transient_timeout_cartflows_data_2056_0c03c9486fbc5d3adbe054ab93d2e721','1780937055','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607745','_transient_cartflows_data_2056_0c03c9486fbc5d3adbe054ab93d2e721','a:2:{s:7:\"flow_id\";s:4:\"2056\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2057;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2059;s:5:\"title\";s:39:\"Ibaby toddler rocker baby rocking chair\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2097;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607746','_transient_timeout_cartflows_data_2040_b9544040ce7f68b310cce38d5645f83e','1780937091','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607747','_transient_cartflows_data_2040_b9544040ce7f68b310cce38d5645f83e','a:2:{s:7:\"flow_id\";s:4:\"2040\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2041;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2043;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2046;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607748','_transient_timeout_cartflows_data_2050_34038397b74da72d319bf6d0c7c63fa5','1780937089','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607749','_transient_cartflows_data_2050_34038397b74da72d319bf6d0c7c63fa5','a:2:{s:7:\"flow_id\";s:4:\"2050\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2051;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2053;s:5:\"title\";s:22:\"Rice Skin Beauty Serum\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2067;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607762','_site_transient_timeout_wp_plugin_dependencies_plugin_timeout_woocommerce','1781006233','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607763','_site_transient_wp_plugin_dependencies_plugin_timeout_woocommerce','1','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607770','_transient_timeout_cartflows_data_2091_a283afdead602cb789868cc343038aa8','1780980935','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607771','_transient_cartflows_data_2091_a283afdead602cb789868cc343038aa8','a:2:{s:7:\"flow_id\";s:4:\"2091\";s:5:\"steps\";a:2:{i:0;a:3:{s:2:\"id\";i:2092;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:2100;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607774','_transient_timeout_wc_report_orders_stats_da56f938aaae74bac831dbe1a9c62f3b','1781583634','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607775','_transient_timeout_wc_report_orders_stats_007e114517ec4eaa74073e6930f85eca','1781583634','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607776','_transient_wc_report_orders_stats_da56f938aaae74bac831dbe1a9c62f3b','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:3:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-09 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:3;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607777','_transient_wc_report_orders_stats_007e114517ec4eaa74073e6930f85eca','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"products\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:2:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-24\";s:10:\"date_start\";s:19:\"2026-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-07 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-09 10:20:31\";s:12:\"date_end_gmt\";s:19:\"2026-06-09 04:20:31\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-07 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:2;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607778','_transient_timeout_wc_report_orders_stats_3c69521c0b4f6c0dcb0b637e16753b78','1781583634','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607779','_transient_wc_report_orders_stats_3c69521c0b4f6c0dcb0b637e16753b78','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:3:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-09 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:3;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607780','_transient_timeout_wc_report_orders_stats_6ce74144d2d8fa6cf23dccc2fd2a064d','1781583634','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607781','_transient_wc_report_orders_stats_6ce74144d2d8fa6cf23dccc2fd2a064d','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"products\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:2:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-24\";s:10:\"date_start\";s:19:\"2026-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-07 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-09 10:20:31\";s:12:\"date_end_gmt\";s:19:\"2026-06-09 04:20:31\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-07 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:2;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607782','_transient_timeout_wc_report_products_stats_f4033edbc2b7dd08d3f11352da9a390d','1781583634','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607783','_transient_wc_report_products_stats_f4033edbc2b7dd08d3f11352da9a390d','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:3:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-09 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:3;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607784','_transient_timeout_wc_report_products_stats_0a0f8f2a218e968779b718b9d00ed71e','1781583634','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607785','_transient_wc_report_products_stats_0a0f8f2a218e968779b718b9d00ed71e','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:9;s:11:\"net_revenue\";d:7200;s:12:\"orders_count\";i:8;s:14:\"products_count\";i:4;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:2:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-24\";s:10:\"date_start\";s:19:\"2026-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-07 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-09 10:20:31\";s:12:\"date_end_gmt\";s:19:\"2026-06-09 04:20:31\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-07 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:9;s:11:\"net_revenue\";d:7200;s:12:\"orders_count\";i:8;s:14:\"products_count\";i:4;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:2;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607786','_transient_timeout_wc_report_variations_stats_90c7e94ba745964d3908fc3cfcbe6459','1781583634','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607787','_transient_timeout_wc_report_variations_stats_674eafed3e2cb94661c454b50bb693e3','1781583634','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607788','_transient_wc_report_variations_stats_90c7e94ba745964d3908fc3cfcbe6459','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:3:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-09 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:3;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607789','_transient_wc_report_variations_stats_674eafed3e2cb94661c454b50bb693e3','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:2:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-24\";s:10:\"date_start\";s:19:\"2026-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-07 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-09 10:20:31\";s:12:\"date_end_gmt\";s:19:\"2026-06-09 04:20:31\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-07 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:2;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607790','_transient_timeout_wc_report_orders_stats_9c976ac17d731e8658cde20c2495ae4a','1781583634','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607791','_transient_wc_report_orders_stats_9c976ac17d731e8658cde20c2495ae4a','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":7:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:8:\"products\";i:1;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:9:{i:0;a:6:{s:8:\"interval\";s:10:\"2026-06-01\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-01 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2026-06-02\";s:10:\"date_start\";s:19:\"2026-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-01 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-02 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2026-06-03\";s:10:\"date_start\";s:19:\"2026-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-02 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-03 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2026-06-04\";s:10:\"date_start\";s:19:\"2026-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-03 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-04 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2026-06-05\";s:10:\"date_start\";s:19:\"2026-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-04 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-05 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2026-06-06\";s:10:\"date_start\";s:19:\"2026-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-05 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-06 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2026-06-07\";s:10:\"date_start\";s:19:\"2026-06-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-06 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-07 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2026-06-08\";s:10:\"date_start\";s:19:\"2026-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-07 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-08 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2026-06-09\";s:10:\"date_start\";s:19:\"2026-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-08 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-09 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:9;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607792','_transient_timeout_wc_report_orders_stats_6595cce642ac59506a9071151209f10c','1781583634','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607793','_transient_wc_report_orders_stats_6595cce642ac59506a9071151209f10c','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":7:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:8:\"products\";i:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:9:{i:0;a:6:{s:8:\"interval\";s:10:\"2025-06-01\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2025-06-02\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-02 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2025-06-03\";s:10:\"date_start\";s:19:\"2025-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-02 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-03 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2025-06-04\";s:10:\"date_start\";s:19:\"2025-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-03 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-04 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2025-06-05\";s:10:\"date_start\";s:19:\"2025-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-04 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-05 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2025-06-06\";s:10:\"date_start\";s:19:\"2025-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-05 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2025-06-07\";s:10:\"date_start\";s:19:\"2025-06-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-06 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-07 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2025-06-08\";s:10:\"date_start\";s:19:\"2025-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-07 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2025-06-09\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-09 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:11:\"total_sales\";d:0;s:11:\"net_revenue\";d:0;s:7:\"refunds\";d:0;s:8:\"shipping\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:9;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607794','_transient_timeout_wc_report_orders_stats_a23e678582c6f83deb78fca481c64bc9','1781583636','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607795','_transient_wc_report_orders_stats_a23e678582c6f83deb78fca481c64bc9','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:12:\"orders_count\";i:1;s:15:\"avg_order_value\";d:0;s:8:\"products\";i:1;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:9:{i:0;a:6:{s:8:\"interval\";s:10:\"2026-06-01\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-01 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2026-06-02\";s:10:\"date_start\";s:19:\"2026-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-01 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-02 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2026-06-03\";s:10:\"date_start\";s:19:\"2026-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-02 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-03 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2026-06-04\";s:10:\"date_start\";s:19:\"2026-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-03 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-04 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2026-06-05\";s:10:\"date_start\";s:19:\"2026-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-04 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-05 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:1;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2026-06-06\";s:10:\"date_start\";s:19:\"2026-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-05 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-06 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2026-06-07\";s:10:\"date_start\";s:19:\"2026-06-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-06 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-07 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2026-06-08\";s:10:\"date_start\";s:19:\"2026-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-07 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-08 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2026-06-09\";s:10:\"date_start\";s:19:\"2026-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-08 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-09 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:9;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607796','_transient_timeout_wc_report_orders_stats_bd04a06ef8ee92203f88fa280f35e4f3','1781583636','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607797','_transient_wc_report_orders_stats_bd04a06ef8ee92203f88fa280f35e4f3','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:8:\"products\";i:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:9:{i:0;a:6:{s:8:\"interval\";s:10:\"2025-06-01\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2025-06-02\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-02 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2025-06-03\";s:10:\"date_start\";s:19:\"2025-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-02 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-03 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2025-06-04\";s:10:\"date_start\";s:19:\"2025-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-03 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-04 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2025-06-05\";s:10:\"date_start\";s:19:\"2025-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-04 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-05 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2025-06-06\";s:10:\"date_start\";s:19:\"2025-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-05 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2025-06-07\";s:10:\"date_start\";s:19:\"2025-06-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-06 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-07 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2025-06-08\";s:10:\"date_start\";s:19:\"2025-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-07 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2025-06-09\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 18:00:00\";s:8:\"date_end\";s:19:\"2025-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-09 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":4:{s:12:\"orders_count\";i:0;s:15:\"avg_order_value\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:9;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607798','_transient_timeout_wc_report_customers_1e1ebafd227d7d958be0b9853a1ea856','1781583636','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607799','_transient_wc_report_customers_1e1ebafd227d7d958be0b9853a1ea856','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":4:{s:4:\"data\";a:5:{i:0;a:15:{s:2:\"id\";i:1;s:7:\"user_id\";i:17;s:8:\"username\";s:11:\"admin_codex\";s:4:\"name\";s:16:\"Md.Asadul Islam \";s:5:\"email\";s:25:\"admin_codex@example.local\";s:7:\"country\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:15:\"date_registered\";s:19:\"2026-06-05 08:09:34\";s:16:\"date_last_active\";s:19:\"2026-06-07 09:59:07\";s:15:\"date_last_order\";s:19:\"2026-06-07 09:59:07\";s:12:\"orders_count\";i:3;s:11:\"total_spend\";d:3300;s:15:\"avg_order_value\";d:1100;}i:1;a:15:{s:2:\"id\";i:6;s:7:\"user_id\";i:0;s:8:\"username\";s:0:\"\";s:4:\"name\";s:15:\"asadulyyyy rter\";s:5:\"email\";s:16:\"mansur@gmail.com\";s:7:\"country\";s:2:\"BD\";s:4:\"city\";s:2:\"er\";s:5:\"state\";s:5:\"BD-06\";s:8:\"postcode\";s:3:\"455\";s:15:\"date_registered\";N;s:16:\"date_last_active\";s:19:\"2026-06-06 08:45:04\";s:15:\"date_last_order\";s:19:\"2026-06-06 08:45:04\";s:12:\"orders_count\";i:2;s:11:\"total_spend\";d:1650;s:15:\"avg_order_value\";d:825;}i:2;a:15:{s:2:\"id\";i:4;s:7:\"user_id\";i:0;s:8:\"username\";s:0:\"\";s:4:\"name\";s:7:\"asadul \";s:5:\"email\";s:0:\"\";s:7:\"country\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:15:\"date_registered\";N;s:16:\"date_last_active\";s:19:\"2026-06-05 10:47:53\";s:15:\"date_last_order\";s:19:\"2026-06-05 10:47:53\";s:12:\"orders_count\";i:1;s:11:\"total_spend\";d:750;s:15:\"avg_order_value\";d:750;}i:3;a:15:{s:2:\"id\";i:5;s:7:\"user_id\";i:0;s:8:\"username\";s:0:\"\";s:4:\"name\";s:11:\"asadulyyyy \";s:5:\"email\";s:0:\"\";s:7:\"country\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:15:\"date_registered\";N;s:16:\"date_last_active\";s:19:\"2026-06-05 16:50:38\";s:15:\"date_last_order\";s:19:\"2026-06-05 16:50:38\";s:12:\"orders_count\";i:1;s:11:\"total_spend\";d:750;s:15:\"avg_order_value\";d:750;}i:4;a:15:{s:2:\"id\";i:2;s:7:\"user_id\";i:0;s:8:\"username\";s:0:\"\";s:4:\"name\";s:1:\" \";s:5:\"email\";s:0:\"\";s:7:\"country\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:15:\"date_registered\";N;s:16:\"date_last_active\";s:19:\"2026-06-05 09:44:05\";s:15:\"date_last_order\";s:19:\"2026-06-05 09:44:05\";s:12:\"orders_count\";i:1;s:11:\"total_spend\";d:0;s:15:\"avg_order_value\";d:0;}}s:5:\"total\";i:5;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607800','_transient_timeout_wc_report_orders_stats_5a66ab45d1e388b04c0b8f131f67f9e3','1781583636','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607801','_transient_wc_report_orders_stats_5a66ab45d1e388b04c0b8f131f67f9e3','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"products\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:2:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-24\";s:10:\"date_start\";s:19:\"2026-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-07 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-09 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-07 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:2;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607802','_transient_timeout_wc_report_categories_a22258147a7b33339ca879b22dba0f29','1781583636','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607803','_transient_wc_report_categories_a22258147a7b33339ca879b22dba0f29','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":4:{s:4:\"data\";a:1:{i:0;a:6:{s:11:\"category_id\";i:25;s:10:\"items_sold\";i:2;s:11:\"net_revenue\";d:1800;s:12:\"orders_count\";i:1;s:14:\"products_count\";i:2;s:13:\"extended_info\";O:11:\"ArrayObject\":4:{i:0;i:0;i:1;a:1:{s:4:\"name\";s:13:\"Uncategorized\";}i:2;a:0:{}i:3;N;}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607804','_transient_timeout_wc_report_products_5e9cc3e25680ab19bdde081113c796be','1781583636','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607805','_transient_timeout_wc_report_orders_stats_283519f57cda6d79a5fc7e248c4a7dfd','1781583636','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607806','_transient_wc_report_products_5e9cc3e25680ab19bdde081113c796be','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":4:{s:4:\"data\";a:4:{i:0;a:4:{s:10:\"product_id\";i:51;s:10:\"items_sold\";i:6;s:11:\"net_revenue\";d:4500;s:12:\"orders_count\";i:6;}i:1;a:4:{s:10:\"product_id\";i:1775;s:10:\"items_sold\";i:1;s:11:\"net_revenue\";d:900;s:12:\"orders_count\";i:1;}i:2;a:4:{s:10:\"product_id\";i:1783;s:10:\"items_sold\";i:1;s:11:\"net_revenue\";d:900;s:12:\"orders_count\";i:1;}i:3;a:4:{s:10:\"product_id\";i:155;s:10:\"items_sold\";i:1;s:11:\"net_revenue\";d:900;s:12:\"orders_count\";i:1;}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607807','_transient_wc_report_orders_stats_283519f57cda6d79a5fc7e248c4a7dfd','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"products\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:2:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-24\";s:10:\"date_start\";s:19:\"2026-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-07 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-09 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-07 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:1;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:1;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:2;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607808','_transient_timeout_wc_report_products_stats_b08f83422ca7b84a62aeab977ed6fa45','1781583636','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607809','_transient_wc_report_products_stats_b08f83422ca7b84a62aeab977ed6fa45','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:9;s:11:\"net_revenue\";d:7200;s:12:\"orders_count\";i:8;s:14:\"products_count\";i:4;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:2:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-24\";s:10:\"date_start\";s:19:\"2026-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-07 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-09 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-07 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:9;s:11:\"net_revenue\";d:7200;s:12:\"orders_count\";i:8;s:14:\"products_count\";i:4;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:2;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607810','_transient_timeout_wc_report_variations_stats_994a5fad0563b59cd87e01bdb5d01806','1781583636','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607811','_transient_wc_report_variations_stats_994a5fad0563b59cd87e01bdb5d01806','a:2:{s:7:\"version\";s:10:\"1780804757\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:2:{i:0;a:6:{s:8:\"interval\";s:7:\"2026-24\";s:10:\"date_start\";s:19:\"2026-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-06-07 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-09 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2026-23\";s:10:\"date_start\";s:19:\"2026-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2026-05-31 18:00:00\";s:8:\"date_end\";s:19:\"2026-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2026-06-07 17:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:2;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607814','_transient_timeout_cartflows_data_2089_aa5eff73efc6c019927b9d425d6b545e','1780980979','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607815','_transient_cartflows_data_2089_aa5eff73efc6c019927b9d425d6b545e','a:2:{s:7:\"flow_id\";s:4:\"2089\";s:5:\"steps\";a:2:{i:0;a:3:{s:2:\"id\";i:2090;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:2102;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607820','_transient_timeout_wc_related_1775','1781066062','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607821','_transient_wc_related_1775','a:1:{s:52:\"limit=4&exclude_ids{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5B0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5D=0&exclude_ids{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5B1{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5D=1775\";a:3:{i:0;s:4:\"1783\";i:1;s:4:\"1784\";i:2;s:4:\"1785\";}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607826','_transient_timeout_wcf_user_t_8b28a255997773a02b9e274fafeb1e_checkout_2084','1780981871','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607827','_transient_wcf_user_t_8b28a255997773a02b9e274fafeb1e_checkout_2084','a:1:{s:32:\"63da2a8e70803c7e132e1fec157276fc\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"ghgws3lh\";}s:3:\"key\";s:32:\"63da2a8e70803c7e132e1fec157276fc\";s:10:\"product_id\";i:1775;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:1775;}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:900;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:900;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607828','_transient_timeout_cartflows_data_2081_13260484d0751a51cfe7f56682f2c5ee','1780981871','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607829','_transient_cartflows_data_2081_13260484d0751a51cfe7f56682f2c5ee','a:2:{s:7:\"flow_id\";s:4:\"2081\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2082;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2084;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2111;s:5:\"title\";s:6:\"Thanks\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607830','_transient_timeout_wcf_user_t_4682ff91e183e72eaf9acfc51fbcfd_checkout_2084','1780981935','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607831','_transient_wcf_user_t_4682ff91e183e72eaf9acfc51fbcfd_checkout_2084','a:1:{s:32:\"63da2a8e70803c7e132e1fec157276fc\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"ghgws3lh\";}s:3:\"key\";s:32:\"63da2a8e70803c7e132e1fec157276fc\";s:10:\"product_id\";i:1775;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:1775;}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:900;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:900;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607832','_transient_timeout_cartflows_data_2081_c0d0f362b22db90812300bbfbd481bce','1780981935','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607833','_transient_cartflows_data_2081_c0d0f362b22db90812300bbfbd481bce','a:2:{s:7:\"flow_id\";s:4:\"2081\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2082;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2084;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2111;s:5:\"title\";s:6:\"Thanks\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607834','_transient_timeout_wc_order_2112_needs_processing','1781067032','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607835','_transient_wc_order_2112_needs_processing','1','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607836','_transient_timeout_order_id_wc_order_yy9faridfnrav','1780984238','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607837','_transient_order_id_wc_order_yy9faridfnrav','2112','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607845','jeepno_checkout_field_controller_settings','a:2:{s:6:\"fields\";a:21:{s:18:\"billing_first_name\";a:5:{s:7:\"enabled\";i:1;s:8:\"required\";i:1;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:7:\"enabled\";i:0;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:7:\"enabled\";i:0;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:30;}s:15:\"billing_country\";a:5:{s:7:\"enabled\";i:0;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:5:{s:7:\"enabled\";i:1;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:5:{s:7:\"enabled\";i:0;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:60;}s:12:\"billing_city\";a:5:{s:7:\"enabled\";i:0;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:5:{s:7:\"enabled\";i:0;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:80;}s:16:\"billing_postcode\";a:5:{s:7:\"enabled\";i:0;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:5:{s:7:\"enabled\";i:1;s:8:\"required\";i:1;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:5:{s:7:\"enabled\";i:0;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:110;}s:19:\"shipping_first_name\";a:5:{s:7:\"enabled\";i:0;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:120;}s:18:\"shipping_last_name\";a:5:{s:7:\"enabled\";i:0;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:130;}s:16:\"shipping_company\";a:5:{s:7:\"enabled\";i:0;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:140;}s:16:\"shipping_country\";a:5:{s:7:\"enabled\";i:0;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:150;}s:18:\"shipping_address_1\";a:5:{s:7:\"enabled\";i:0;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:160;}s:18:\"shipping_address_2\";a:5:{s:7:\"enabled\";i:0;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:170;}s:13:\"shipping_city\";a:5:{s:7:\"enabled\";i:0;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:180;}s:14:\"shipping_state\";a:5:{s:7:\"enabled\";i:0;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:190;}s:17:\"shipping_postcode\";a:5:{s:7:\"enabled\";i:0;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:200;}s:14:\"order_comments\";a:5:{s:7:\"enabled\";i:0;s:8:\"required\";i:0;s:5:\"label\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:8:\"priority\";i:210;}}s:13:\"custom_fields\";a:0:{}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607846','_transient_timeout_wc_related_1783','1781102698','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607847','_transient_wc_related_1783','a:1:{s:52:\"limit=4&exclude_ids{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5B0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5D=0&exclude_ids{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5B1{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5D=1783\";a:4:{i:0;s:4:\"1775\";i:1;s:4:\"1784\";i:2;s:4:\"1785\";i:3;s:4:\"2123\";}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607848','_transient_timeout_wcf_user_t_ee16a8ddb8dc076e9dc855e1c02864_checkout_2084','1780982786','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607849','_transient_wcf_user_t_ee16a8ddb8dc076e9dc855e1c02864_checkout_2084','a:1:{s:32:\"63da2a8e70803c7e132e1fec157276fc\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"ghgws3lh\";}s:3:\"key\";s:32:\"63da2a8e70803c7e132e1fec157276fc\";s:10:\"product_id\";i:1775;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:1775;}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:900;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:900;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607850','_transient_timeout_cartflows_data_2081_1f5f0e3bda5ed4797abe2baabdc84d3f','1780982786','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607851','_transient_cartflows_data_2081_1f5f0e3bda5ed4797abe2baabdc84d3f','a:2:{s:7:\"flow_id\";s:4:\"2081\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2082;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2084;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2111;s:5:\"title\";s:6:\"Thanks\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607856','_transient_timeout_wcf_user_t_e64d8ad51cb8fcbb472b2ce0131e34_checkout_2084','1780983279','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607857','_transient_wcf_user_t_e64d8ad51cb8fcbb472b2ce0131e34_checkout_2084','a:1:{s:32:\"63da2a8e70803c7e132e1fec157276fc\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"ghgws3lh\";}s:3:\"key\";s:32:\"63da2a8e70803c7e132e1fec157276fc\";s:10:\"product_id\";i:1775;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:1775;}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:900;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:900;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607858','_transient_timeout_cartflows_data_2081_1668310f6e7d626f992e402d59008c36','1780983279','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607859','_transient_cartflows_data_2081_1668310f6e7d626f992e402d59008c36','a:2:{s:7:\"flow_id\";s:4:\"2081\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2082;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2084;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2111;s:5:\"title\";s:6:\"Thanks\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607860','_transient_timeout_wc_order_2113_needs_processing','1781067939','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607861','_transient_wc_order_2113_needs_processing','1','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607862','_transient_timeout_order_id_wc_order_pxrtzdvsccx90','1780985145','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607863','_transient_order_id_wc_order_pxrtzdvsccx90','2113','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607869','_transient_timeout_wc_order_2115_needs_processing','1781068073','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607870','_transient_wc_order_2115_needs_processing','1','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607871','_transient_timeout_order_id_wc_order_hf8gafq6dq8a6','1780985278','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607872','_transient_order_id_wc_order_hf8gafq6dq8a6','2115','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607874','_transient_timeout_wcf_user_t_6f8b3a340ec626d7096d810af88501_checkout_2084','1780983736','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607875','_transient_wcf_user_t_6f8b3a340ec626d7096d810af88501_checkout_2084','a:1:{s:32:\"63da2a8e70803c7e132e1fec157276fc\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"ghgws3lh\";}s:3:\"key\";s:32:\"63da2a8e70803c7e132e1fec157276fc\";s:10:\"product_id\";i:1775;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:1775;}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:900;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:900;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607876','_transient_timeout_cartflows_data_2081_eec206f697e01097d266b3b09579dcb5','1780983736','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607877','_transient_cartflows_data_2081_eec206f697e01097d266b3b09579dcb5','a:2:{s:7:\"flow_id\";s:4:\"2081\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2082;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2084;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2111;s:5:\"title\";s:6:\"Thanks\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607878','_transient_timeout_wc_order_2116_needs_processing','1781068499','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607879','_transient_wc_order_2116_needs_processing','1','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607880','_transient_timeout_order_id_wc_order_5cd2rsizxo6tf','1780985704','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607881','_transient_order_id_wc_order_5cd2rsizxo6tf','2116','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607887','_transient_timeout_wc_order_2117_needs_processing','1781068534','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607888','_transient_wc_order_2117_needs_processing','1','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607889','_transient_timeout_order_id_wc_order_as3ncbuy6osuy','1780985739','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607890','_transient_order_id_wc_order_as3ncbuy6osuy','2117','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607900','_transient_timeout_cartflows_data_2081_2e490bc8faa35f353a3e268994b556c1','1780984215','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607901','_transient_cartflows_data_2081_2e490bc8faa35f353a3e268994b556c1','a:2:{s:7:\"flow_id\";s:4:\"2081\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2082;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2084;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2111;s:5:\"title\";s:6:\"Thanks\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607902','_transient_timeout_cartflows_data_2076_87e12ca45712119a27685b138ea737ae','1780984506','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607903','_transient_cartflows_data_2076_87e12ca45712119a27685b138ea737ae','a:2:{s:7:\"flow_id\";s:4:\"2076\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2077;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2079;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2085;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607904','_transient_timeout_cartflows_data_2069_cad9f6f06ee23615feefd09c5d65812d','1780984560','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607905','_transient_cartflows_data_2069_cad9f6f06ee23615feefd09c5d65812d','a:2:{s:7:\"flow_id\";s:4:\"2069\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2070;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2072;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2074;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607906','_transient_timeout_cartflows_data_2063_106e95777f9c681c5bef9477404cd8c6','1780984354','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607907','_transient_cartflows_data_2063_106e95777f9c681c5bef9477404cd8c6','a:2:{s:7:\"flow_id\";s:4:\"2063\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2064;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2066;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2104;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607914','_transient_timeout_wcf_user_17_checkout_2079','1780984504','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607915','_transient_wcf_user_17_checkout_2079','a:1:{s:32:\"53130da0631aecba23a0a1d0ffc16fc8\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"d51pmq3f\";}s:3:\"key\";s:32:\"53130da0631aecba23a0a1d0ffc16fc8\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:900;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:900;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607917','_transient_timeout_cartflows_data_2056_2635423773c490d91733c81f6ca76fde','1780984596','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607918','_transient_cartflows_data_2056_2635423773c490d91733c81f6ca76fde','a:2:{s:7:\"flow_id\";s:4:\"2056\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2057;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2059;s:5:\"title\";s:39:\"Ibaby toddler rocker baby rocking chair\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2097;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607919','_transient_timeout_cartflows_data_2050_ce3c75a8b375883356f4d5242e8cb521','1780987491','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607920','_transient_cartflows_data_2050_ce3c75a8b375883356f4d5242e8cb521','a:2:{s:7:\"flow_id\";s:4:\"2050\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2051;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2053;s:5:\"title\";s:22:\"Rice Skin Beauty Serum\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2067;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607921','_transient_timeout_cartflows_data_2040_acb32b51384f38b61d512e7557a95bea','1780986751','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607922','_transient_cartflows_data_2040_acb32b51384f38b61d512e7557a95bea','a:2:{s:7:\"flow_id\";s:4:\"2040\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2041;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2043;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2046;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607923','_transient_timeout_cartflows_data_2035_5a6cd9cb8953027f5b4b5618fed201ad','1780986785','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607924','_transient_cartflows_data_2035_5a6cd9cb8953027f5b4b5618fed201ad','a:2:{s:7:\"flow_id\";s:4:\"2035\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2036;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2038;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2106;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607925','_transient_timeout_cartflows_data_2026_18f67b90c1cf50a9277ab652d8693a00','1780986756','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607926','_transient_cartflows_data_2026_18f67b90c1cf50a9277ab652d8693a00','a:2:{s:7:\"flow_id\";s:4:\"2026\";s:5:\"steps\";a:2:{i:0;a:3:{s:2:\"id\";i:2027;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:2033;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607927','_transient_timeout_cartflows_data_2020_98c20000e53b68497aac83af74a061dd','1780986758','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607928','_transient_cartflows_data_2020_98c20000e53b68497aac83af74a061dd','a:2:{s:7:\"flow_id\";s:4:\"2020\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2021;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2023;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2054;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607931','_transient_timeout_cartflows_data_2056_9673359db434a1d2bcbbd82939698b45','1780986780','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607932','_transient_cartflows_data_2056_9673359db434a1d2bcbbd82939698b45','a:2:{s:7:\"flow_id\";s:4:\"2056\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2057;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2059;s:5:\"title\";s:39:\"Ibaby toddler rocker baby rocking chair\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2097;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607940','_transient_timeout_wc_order_2131_needs_processing','1781072048','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607941','_transient_wc_order_2131_needs_processing','1','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607942','_transient_timeout_order_id_wc_order_yfmxdtafonari','1780989254','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607943','_transient_order_id_wc_order_yfmxdtafonari','2131','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607945','_transient_timeout_cartflows_data_1996_05a9a383605431ca9dd0ac7fc1290edf','1780988319','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607946','_transient_cartflows_data_1996_05a9a383605431ca9dd0ac7fc1290edf','a:2:{s:7:\"flow_id\";s:4:\"1996\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:1997;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1999;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2002;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607949','_transient_timeout_cartflows_data_1992_05f1c204cd7651fc09a2fa2293e541a5','1780988691','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607950','_transient_cartflows_data_1992_05f1c204cd7651fc09a2fa2293e541a5','a:2:{s:7:\"flow_id\";s:4:\"1992\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:1993;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1995;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2007;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607951','_transient_timeout_wcf_user_17_checkout_1999','1780988317','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607952','_transient_wcf_user_17_checkout_1999','a:1:{s:32:\"e984e90573796658ac014fb3785a22cd\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"duikanho\";}s:3:\"key\";s:32:\"e984e90573796658ac014fb3785a22cd\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:900;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:900;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607953','_transient_timeout_cartflows_data_1984_60ebf0c722636ea362ac264a8312050c','1780988722','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607954','_transient_cartflows_data_1984_60ebf0c722636ea362ac264a8312050c','a:2:{s:7:\"flow_id\";s:4:\"1984\";s:5:\"steps\";a:4:{i:0;a:3:{s:2:\"id\";i:1985;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1987;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2004;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}i:3;a:3:{s:2:\"id\";i:2006;s:5:\"title\";s:21:\"হিমসাগর\";s:4:\"type\";s:8:\"checkout\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607955','_transient_timeout_wcf_user_17_checkout_1995','1780988689','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607956','_transient_wcf_user_17_checkout_1995','a:1:{s:32:\"5c595f5c857bfba8071a8fca28851443\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"y5v2zjzt\";}s:3:\"key\";s:32:\"5c595f5c857bfba8071a8fca28851443\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:900;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:900;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607957','_transient_timeout_cartflows_data_1977_ba14bd9b573790e6f909f65973a97604','1780989184','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607958','_transient_cartflows_data_1977_ba14bd9b573790e6f909f65973a97604','a:2:{s:7:\"flow_id\";s:4:\"1977\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:1978;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1980;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2087;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607959','_transient_timeout_cartflows_data_1963_4ca62201afe8432a95ae47c88d189cec','1780989353','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607960','_transient_cartflows_data_1963_4ca62201afe8432a95ae47c88d189cec','a:2:{s:7:\"flow_id\";s:4:\"1963\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:1964;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1966;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2060;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607961','_transient_timeout_cartflows_data_1955_7e1544434ed7df0d6974c787ba5b6371','1780988852','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607962','_transient_cartflows_data_1955_7e1544434ed7df0d6974c787ba5b6371','a:2:{s:7:\"flow_id\";s:4:\"1955\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:1956;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1958;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1989;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607963','_transient_timeout_cartflows_data_1951_b43e05541e6bd925804dc13e03d82437','1780989381','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607964','_transient_cartflows_data_1951_b43e05541e6bd925804dc13e03d82437','a:2:{s:7:\"flow_id\";s:4:\"1951\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:1952;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1954;s:5:\"title\";s:12:\"Khejurer Gur\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1970;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607965','_transient_timeout_cartflows_data_1947_0e15fed8e20a87a62b416975a40b00e8','1780989403','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607966','_transient_cartflows_data_1947_0e15fed8e20a87a62b416975a40b00e8','a:2:{s:7:\"flow_id\";s:4:\"1947\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:1948;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1950;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1968;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607967','_transient_timeout_cartflows_data_1935_9a3fc56c0e148f3a82b5ae9d6c0d83e8','1780989437','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607968','_transient_cartflows_data_1935_9a3fc56c0e148f3a82b5ae9d6c0d83e8','a:2:{s:7:\"flow_id\";s:4:\"1935\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:1936;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1938;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1960;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607969','_transient_timeout_cartflows_data_1929_8ea5cc276df59f98bb1fc09c9e0bfed1','1780988898','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607970','_transient_cartflows_data_1929_8ea5cc276df59f98bb1fc09c9e0bfed1','a:2:{s:7:\"flow_id\";s:4:\"1929\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:1930;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1932;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1981;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607971','_transient_timeout_cartflows_data_1924_02dce98455b85342a609ccbbb054eae1','1780989461','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607972','_transient_cartflows_data_1924_02dce98455b85342a609ccbbb054eae1','a:2:{s:7:\"flow_id\";s:4:\"1924\";s:5:\"steps\";a:2:{i:0;a:3:{s:2:\"id\";i:1925;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:1983;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607973','_transient_timeout_cartflows_data_1919_4796a43153c317642574ba4fc09f1fab','1780988921','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607974','_transient_cartflows_data_1919_4796a43153c317642574ba4fc09f1fab','a:2:{s:7:\"flow_id\";s:4:\"1919\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:1920;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1922;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1942;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607975','_transient_timeout_cartflows_data_1910_dcc7b7e651b2ee7242c4aac15f24fc35','1780988929','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607976','_transient_cartflows_data_1910_dcc7b7e651b2ee7242c4aac15f24fc35','a:2:{s:7:\"flow_id\";s:4:\"1910\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:1911;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1913;s:5:\"title\";s:15:\"Shirts Checkout\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1915;s:5:\"title\";s:16:\"Thanks For Order\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607977','_transient_timeout_cartflows_data_1894_f6e7894177deec65218dbf2f8453eb85','1780989531','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607978','_transient_cartflows_data_1894_f6e7894177deec65218dbf2f8453eb85','a:2:{s:7:\"flow_id\";s:4:\"1894\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:1895;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1897;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1927;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607979','_transient_timeout_cartflows_data_1889_bb5ac4ddb822419fbf13463c1e6ea2bf','1780988938','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607980','_transient_cartflows_data_1889_bb5ac4ddb822419fbf13463c1e6ea2bf','a:2:{s:7:\"flow_id\";s:4:\"1889\";s:5:\"steps\";a:2:{i:0;a:3:{s:2:\"id\";i:1890;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:1917;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607986','_transient_timeout_cartflows_data_1973_e0c00750c6a189c4aad8f2549c25b012','1780989324','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607987','_transient_cartflows_data_1973_e0c00750c6a189c4aad8f2549c25b012','a:2:{s:7:\"flow_id\";s:4:\"1973\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:1974;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1976;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2048;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607995','_transient_timeout_cartflows_data_1834_356e37032c46bb9fbf78e34125f397e0','1780989771','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607996','_transient_cartflows_data_1834_356e37032c46bb9fbf78e34125f397e0','a:2:{s:7:\"flow_id\";s:4:\"1834\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:1835;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1837;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1863;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607998','_transient_timeout_cartflows_data_1826_202eb283f31ecd8fd1963eb164406f6b','1780989779','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1607999','_transient_cartflows_data_1826_202eb283f31ecd8fd1963eb164406f6b','a:2:{s:7:\"flow_id\";s:4:\"1826\";s:5:\"steps\";a:2:{i:0;a:3:{s:2:\"id\";i:1827;s:5:\"title\";s:17:\"Store Checkout 02\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:1933;s:5:\"title\";s:27:\"Store Checkout Thank You 02\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608001','_site_transient_timeout_available_translations','1780998873','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608002','_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:6:\"6.0.11\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.0.11/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.4.8\";s:7:\"updated\";s:19:\"2024-02-13 12:49:38\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.8/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.27\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.27/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-04-17 04:58:23\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.3/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"6.4.8\";s:7:\"updated\";s:19:\"2024-01-19 08:58:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.8/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.28\";s:7:\"updated\";s:19:\"2026-06-07 19:51:04\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.28/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-09 09:17:56\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-03-20 07:52:10\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.9\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.9/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-31 05:08:14\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.3/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-04-24 08:56:53\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-09 11:05:05\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.3/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-28 12:45:26\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-03-26 13:44:37\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.5.3/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-03-26 13:47:17\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-17 14:48:34\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-03 13:12:29\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-13 14:21:47\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.5.3/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.9\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.9/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-29 13:45:43\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.3/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-03-24 17:26:23\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-10 06:30:17\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-02 19:22:48\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-06 03:31:15\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-06 03:31:51\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-23 14:33:39\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.3/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-08 03:22:25\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-21 15:08:30\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-21 17:55:40\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-27 01:40:49\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-27 13:30:32\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.4.8\";s:7:\"updated\";s:19:\"2023-11-08 20:42:04\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.8/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.4.8\";s:7:\"updated\";s:19:\"2023-10-16 16:00:04\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.8/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.9\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.9/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:6:\"6.1.10\";s:7:\"updated\";s:19:\"2024-10-17 17:16:56\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.1.10/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:6:\"5.8.13\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.8.13/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.19\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.19/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.23\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.23/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-26 19:16:27\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.3/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"6.4.8\";s:7:\"updated\";s:19:\"2024-10-10 00:21:34\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.8/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-04-24 18:38:28\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-16 17:07:01\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-06-05 14:33:45\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.3/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-02-01 23:56:53\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-27 10:52:27\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-06 13:13:32\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.27\";s:7:\"updated\";s:19:\"2025-12-20 19:08:53\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.27/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.9\";s:7:\"updated\";s:19:\"2025-10-21 16:35:04\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.9/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-19 23:22:01\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"6.4.8\";s:7:\"updated\";s:19:\"2026-01-05 09:24:10\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.8/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.34\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.34/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.2.9\";s:7:\"updated\";s:19:\"2024-05-04 18:39:24\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.9/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"6.4.8\";s:7:\"updated\";s:19:\"2025-02-06 05:17:11\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.8/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-04-16 07:24:01\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.3/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.9\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.9/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-09 11:52:45\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-22 14:20:40\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.28\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.28/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-31 12:01:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-04 16:29:29\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.3/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.28\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.28/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-04-24 07:16:04\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.9\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.9/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.28\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.28/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.23\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.23/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:6:\"6.1.10\";s:7:\"updated\";s:19:\"2022-10-20 17:15:28\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.1.10/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-13 16:06:43\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-20 01:03:51\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.5.3/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-04-26 16:49:07\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.5.3/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"6.4.8\";s:7:\"updated\";s:19:\"2026-04-25 14:14:43\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.8/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-03-09 18:37:05\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-28 13:16:04\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.3/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:6:\"6.0.11\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.0.11/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"6.4.8\";s:7:\"updated\";s:19:\"2024-02-23 19:36:11\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.8/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-16 08:56:54\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.3/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-06-03 15:18:38\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.3/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.18\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.18/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.39\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.39/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-09 17:40:16\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-14 08:49:16\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-02 21:12:05\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-06-04 11:51:45\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-06-05 14:40:25\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.5.3/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.27\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.27/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-21 13:57:21\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.35\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.35/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-04-29 14:17:50\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.5.3/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-17 10:39:37\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-28 12:52:40\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.4.8\";s:7:\"updated\";s:19:\"2023-08-21 12:15:00\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.8/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-06 19:04:40\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-29 19:01:12\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.19\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.19/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-28 08:42:13\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-12 10:29:16\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.2/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-02-14 12:47:33\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-06-03 08:22:16\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.3/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-04-03 15:29:12\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-18 11:29:39\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-14 05:23:13\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.3/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.39\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.39/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:6:\"5.8.13\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.13/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"6.3.8\";s:7:\"updated\";s:19:\"2025-07-16 04:10:07\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.8/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-18 15:04:07\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-06-01 01:02:38\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.4.8\";s:7:\"updated\";s:19:\"2026-05-09 18:34:48\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.8/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.19\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.19/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-04-21 03:44:55\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.3/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-05-19 09:07:33\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.5.3\";s:7:\"updated\";s:19:\"2024-06-03 15:01:22\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.3/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.9\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.9/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608019','_transient_timeout_wc_related_1785','1781146533','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608020','_transient_wc_related_1785','a:1:{s:52:\"limit=4&exclude_ids{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5B0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5D=0&exclude_ids{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5B1{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5D=1785\";a:4:{i:0;s:4:\"1775\";i:1;s:4:\"1783\";i:2;s:4:\"1784\";i:3;s:4:\"2123\";}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608031','_transient_timeout_wcf_user_t_817a35c5de1dc341f1fe683348bb03_checkout_2084','1781070184','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608032','_transient_wcf_user_t_817a35c5de1dc341f1fe683348bb03_checkout_2084','a:1:{s:32:\"63da2a8e70803c7e132e1fec157276fc\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"ghgws3lh\";}s:3:\"key\";s:32:\"63da2a8e70803c7e132e1fec157276fc\";s:10:\"product_id\";i:1775;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:1775;}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:900;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:900;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608033','_transient_timeout_cartflows_data_2081_2c393c675224c61bcbb3c332057b2228','1781070184','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608034','_transient_cartflows_data_2081_2c393c675224c61bcbb3c332057b2228','a:2:{s:7:\"flow_id\";s:4:\"2081\";s:5:\"steps\";a:3:{i:0;a:3:{s:2:\"id\";i:2082;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2084;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2111;s:5:\"title\";s:6:\"Thanks\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608047','_transient_timeout_last_fetch_patterns_request','1781109229','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608048','_transient_last_fetch_patterns_request','1781105629','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608049','_transient_timeout_woocommerce_blocks_asset_api_script_data_ssl','1783833222','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608050','_transient_woocommerce_blocks_asset_api_script_data_ssl','{\"script_data\":{\"assets\\/client\\/blocks\\/wc-settings.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-settings.js\",\"version\":\"eb5ac71a827c4c81fed8\",\"dependencies\":[\"wp-hooks\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-types.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-types.js\",\"version\":\"bda84b1be3361607d04a\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-middleware.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-middleware.js\",\"version\":\"ca04183222edaf8a26be\",\"dependencies\":[\"wp-api-fetch\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-data.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-data.js\",\"version\":\"0e434c6572b93f79dc50\",\"dependencies\":[\"wc-blocks-registry\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/wc-blocks-vendors.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-vendors.js\",\"version\":\"d9d7fcceb0c5bebdd22e\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-registry.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-registry.js\",\"version\":\"e3cff70739d4f4ef0a13\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-hooks\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks.js\",\"version\":\"00ce86264fca4977b16a\",\"dependencies\":[\"react\",\"wc-types\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-dom-ready\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-context.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-context.js\",\"version\":\"6eb6865831aa5a75475d\",\"dependencies\":[\"react\",\"wp-element\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\",\"version\":\"4f21a9f43ea5bfa7f02e\",\"dependencies\":[\"react\",\"wc-blocks-data-store\",\"wc-blocks-shared-context\",\"wc-types\",\"wp-data\",\"wp-element\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/price-format.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-format.js\",\"version\":\"483d2180eda1f53dc60d\",\"dependencies\":[\"wc-settings\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-frontend-vendors-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-frontend-vendors-frontend.js\",\"version\":\"14a323ef57eb3ed7e6d7\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-cart-checkout-vendors-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-cart-checkout-vendors-frontend.js\",\"version\":\"2ac95ec54eaf9af5414f\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-cart-checkout-base-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-cart-checkout-base-frontend.js\",\"version\":\"06f242f4287f114435ce\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/blocks-checkout.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-checkout.js\",\"version\":\"b17cecfe19e23a3899e0\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"react-dom\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/blocks-components.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-components.js\",\"version\":\"da0f5cdfc687e857c2c8\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"react-dom\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/wc-interactivity-dropdown.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-interactivity-dropdown.js\",\"version\":\"8997b5406dcf18064a4e\",\"dependencies\":[\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-interactivity-checkbox-list.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-interactivity-checkbox-list.js\",\"version\":\"91e00bc6d68f5554d45f\",\"dependencies\":[\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/active-filters.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/active-filters.js\",\"version\":\"07254c2f32c26d21c0ef\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/active-filters-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/active-filters-frontend.js\",\"version\":\"6c48702f58c24bb97f66\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-data\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/all-products.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-products.js\",\"version\":\"ade530385a5847b8e2f1\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"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-wordcount\"]},\"assets\\/client\\/blocks\\/all-products-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-products-frontend.js\",\"version\":\"d3b2da0916f9d8584854\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-autop\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/all-reviews.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/all-reviews.js\",\"version\":\"4421b2ba149150ba3a80\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-escape-html\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/reviews-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-frontend.js\",\"version\":\"403abda05b51a9c06a58\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"react\",\"wc-blocks-components\",\"wc-settings\",\"wp-a11y\",\"wp-api-fetch\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/attribute-filter.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/attribute-filter.js\",\"version\":\"be80c8f5f8fcb0ad5075\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/attribute-filter-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/attribute-filter-frontend.js\",\"version\":\"61292cafbcfbb0d769e5\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/breadcrumbs.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/breadcrumbs.js\",\"version\":\"c78bceea82834e964257\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/catalog-sorting.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/catalog-sorting.js\",\"version\":\"6c2e6a0a2cd09107cf04\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/legacy-template.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/legacy-template.js\",\"version\":\"29c54d60b87e558b319b\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/classic-shortcode.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/classic-shortcode.js\",\"version\":\"77bba6e2f771a40e1cec\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/coming-soon.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/coming-soon.js\",\"version\":\"eda5aa7c09bf71414023\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-i18n\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/customer-account.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/customer-account.js\",\"version\":\"7b218585a46958b8a170\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/featured-category.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/featured-category.js\",\"version\":\"c7075e8fffe37d9ad21d\",\"dependencies\":[\"react\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/featured-product.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/featured-product.js\",\"version\":\"d3af59655b446a53100c\",\"dependencies\":[\"react\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/filter-wrapper.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filter-wrapper.js\",\"version\":\"7f2269e03957a553e47c\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/filter-wrapper-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filter-wrapper-frontend.js\",\"version\":\"be90313602d88db405f9\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"lodash\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/handpicked-products.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/handpicked-products.js\",\"version\":\"acf80e15b27dca063f23\",\"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\"]},\"assets\\/client\\/blocks\\/mini-cart.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart.js\",\"version\":\"bf3254a6e47fc6d85fc6\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/mini-cart-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-frontend.js\",\"version\":\"de93ee7eb69dd39340fa\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-i18n\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/store-notices.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/store-notices.js\",\"version\":\"2e8dc38e57382d79fce0\",\"dependencies\":[\"react\",\"wp-a11y\",\"wp-block-editor\",\"wp-blocks\",\"wp-deprecated\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/price-filter.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-filter.js\",\"version\":\"67ddaae590e2c2e1d5ff\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/price-filter-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-filter-frontend.js\",\"version\":\"9b60270349d493bd0f8b\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-best-sellers.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-best-sellers.js\",\"version\":\"421922b42cf4c6de6a74\",\"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\"]},\"assets\\/client\\/blocks\\/product-button.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-button.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-button-interactivity-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-button-interactivity-frontend.js\",\"version\":\"cb28f5957f4ece0c48e5\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"react\",\"wc-blocks-data-store\",\"wc-interactivity\",\"wp-a11y\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-categories.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-categories.js\",\"version\":\"19dfea34dec3553590a0\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-server-side-render\"]},\"assets\\/client\\/blocks\\/product-category.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-category.js\",\"version\":\"2cb7ddb399fe6f29c932\",\"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\"]},\"assets\\/client\\/blocks\\/product-collection.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-collection.js\",\"version\":\"3630c621d2a0481ab5b9\",\"dependencies\":[\"react\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-editor\",\"wp-element\",\"wp-escape-html\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-collection-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-collection-frontend.js\",\"version\":\"37b3a37d0211278e6a0c\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/product-collection-no-results.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-collection-no-results.js\",\"version\":\"d1c4e65a98c9f79e8930\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-gallery.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-gallery.js\",\"version\":\"c7b111b60716451682e0\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-gallery-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-gallery-frontend.js\",\"version\":\"c340254c6c31444370fb\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/product-gallery-large-image.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-gallery-large-image.js\",\"version\":\"32b186af1c3d64a75d46\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/product-gallery-large-image-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-gallery-large-image-frontend.js\",\"version\":\"dd8201c48d0f0223ee5a\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"wc-interactivity\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/product-new.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-new.js\",\"version\":\"8af7bb3cd67cd0e42b9a\",\"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\"]},\"assets\\/client\\/blocks\\/product-on-sale.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-on-sale.js\",\"version\":\"a056ece38962718de3a1\",\"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\"]},\"assets\\/client\\/blocks\\/product-template.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-template.js\",\"version\":\"eca1e74855f51d321260\",\"dependencies\":[\"react\",\"wc-blocks-shared-context\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-core-data\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/product-query.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-query.js\",\"version\":\"a7d5f3d226515cbdae09\",\"dependencies\":[\"react\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/product-query-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-query-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-results-count.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-results-count.js\",\"version\":\"f5e7da47100ae9363279\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-search.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-search.js\",\"version\":\"1a4b65a4e4891b2f8194\",\"dependencies\":[\"react\",\"wc-settings\",\"wc-types\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/product-summary.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-summary.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-tag.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-tag.js\",\"version\":\"342af558ffb7a1357f15\",\"dependencies\":[\"react\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/product-title.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-title.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-title-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-title-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/product-top-rated.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/product-top-rated.js\",\"version\":\"6fb347850bc724a274ea\",\"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\"]},\"assets\\/client\\/blocks\\/products-by-attribute.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/products-by-attribute.js\",\"version\":\"d543c49700a68f5c6c79\",\"dependencies\":[\"react\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/rating-filter.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/rating-filter.js\",\"version\":\"3636cb77f3b3dfd04265\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/reviews-by-category.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-by-category.js\",\"version\":\"4cb7066b850f401e4c1b\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"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\"]},\"assets\\/client\\/blocks\\/reviews-by-product.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/reviews-by-product.js\",\"version\":\"e8a05f6b98cd05f62626\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/single-product.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/single-product.js\",\"version\":\"0e8dba50189e03650508\",\"dependencies\":[\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-store-data\",\"wc-types\",\"wp-api-fetch\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-compose\",\"wp-data\",\"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-wordcount\"]},\"assets\\/client\\/blocks\\/stock-filter.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/stock-filter.js\",\"version\":\"e8e06c19a750590aefee\",\"dependencies\":[\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/stock-filter-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/stock-filter-frontend.js\",\"version\":\"61da2cb317321e6acc8f\",\"dependencies\":[\"wc-blocks-frontend-vendors\",\"lodash\",\"react\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"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\"]},\"assets\\/client\\/blocks\\/page-content-wrapper.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/page-content-wrapper.js\",\"version\":\"b17d813006ab6721c0bf\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-status.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-status.js\",\"version\":\"40afdaffd6a6bd8365ec\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-summary.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-summary.js\",\"version\":\"bce30c87f99abc744d6b\",\"dependencies\":[\"react\",\"wc-price-format\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-date\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-totals.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-totals.js\",\"version\":\"3578f6bba1fdfa8f4584\",\"dependencies\":[\"react\",\"wc-price-format\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-totals-wrapper.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-totals-wrapper.js\",\"version\":\"186984378635e6e08423\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-downloads.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-downloads.js\",\"version\":\"1d9816820e49da031b6c\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-downloads-wrapper.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-downloads-wrapper.js\",\"version\":\"7d7efbae89a188570068\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-billing-address.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-billing-address.js\",\"version\":\"129b99c02e2f0bbd408a\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-shipping-address.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-shipping-address.js\",\"version\":\"0371dc375c63dd728238\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-billing-wrapper.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-billing-wrapper.js\",\"version\":\"fce4c23d911cc8526506\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-shipping-wrapper.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-shipping-wrapper.js\",\"version\":\"b923bf1dbf6392c32509\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-additional-information.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-additional-information.js\",\"version\":\"f4a1c3f8c632681e85dd\",\"dependencies\":[\"react\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-additional-fields-wrapper.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-additional-fields-wrapper.js\",\"version\":\"4b25a3e20f302075ad71\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/order-confirmation-additional-fields.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/order-confirmation-additional-fields.js\",\"version\":\"da73c5eb34820cd26854\",\"dependencies\":[\"react\",\"wc-settings\",\"wp-block-editor\",\"wp-blocks\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/cart.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart.js\",\"version\":\"f7f6d7c941de52ee8da2\",\"dependencies\":[\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"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-notices\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/wc-payment-method-cod.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-payment-method-cod.js\",\"version\":\"5f402826b33bac8f9e43\",\"dependencies\":[\"react\",\"wc-blocks-registry\",\"wc-settings\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/cart-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-frontend.js\",\"version\":\"0c8c5e9e37d57f42a825\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-context\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-api-fetch\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"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-wordcount\"]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-accepted-payment-methods-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-products-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-cross-sells-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-items-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-items-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-items-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-items-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-order-summary-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-totals-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/empty-cart-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/filled-cart-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-discount-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-fee-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-heading-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-shipping-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-subtotal-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-taxes-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-totals-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-totals-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/order-summary-totals-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/order-summary-totals-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/proceed-to-checkout-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-taxes-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-taxes-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-subtotal-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-subtotal-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-totals-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-totals-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/filled-cart-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filled-cart-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/empty-cart-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/empty-cart-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-totals-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-totals-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-items-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-items-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-line-items-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-line-items-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-express-payment-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-express-payment-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/proceed-to-checkout-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/proceed-to-checkout-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-accepted-payment-methods-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-accepted-payment-methods-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-coupon-form-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-coupon-form-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-discount-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-discount-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-fee-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-fee-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-heading-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-heading-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-order-summary-shipping-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-order-summary-shipping-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-cross-sells-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-cross-sells-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-cross-sells-products-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-cross-sells-products-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout.js\",\"version\":\"51872d6fb59f4108070e\",\"dependencies\":[\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"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-notices\",\"wp-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/checkout-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-frontend.js\",\"version\":\"01ca023b099c8689df96\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-blocks-shared-hocs\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"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-plugins\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/checkout-blocks\\/actions-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/actions-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/actions-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/actions-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/additional-information-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/additional-information-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/additional-information-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/additional-information-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/billing-address-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/contact-information-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/express-payment-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/fields-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/fields-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/fields-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/fields-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-note-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-note-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-cart-items-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-coupon-form-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-discount-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-fee-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-shipping-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-subtotal-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/order-summary-taxes-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/payment-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/payment-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/payment-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/payment-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/pickup-options-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-address-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-method-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/shipping-methods-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/terms-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/terms-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/terms-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/terms-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/totals-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/totals-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-blocks\\/totals-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-blocks\\/totals-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-express-payment--checkout-blocks\\/express-payment-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-actions-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-actions-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-additional-information-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-additional-information-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-billing-address-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-billing-address-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-contact-information-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-contact-information-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-express-payment-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-express-payment-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-fields-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-fields-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-note-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-note-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-cart-items-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-cart-items-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-coupon-form-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-coupon-form-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-discount-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-discount-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-fee-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-fee-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-shipping-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-shipping-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-subtotal-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-subtotal-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-taxes-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-taxes-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-order-summary-totals-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-order-summary-totals-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-payment-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-payment-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-address-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-address-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-methods-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-methods-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-shipping-method-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-shipping-method-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-pickup-options-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-pickup-options-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-terms-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-terms-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/checkout-totals-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/checkout-totals-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents.js\",\"version\":\"14e25599dbb3d905d529\",\"dependencies\":[\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-autop\",\"wp-block-editor\",\"wp-blocks\",\"wp-components\",\"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-wordcount\"]},\"assets\\/client\\/blocks\\/empty-mini-cart-contents-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/empty-mini-cart-contents-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/filled-mini-cart-contents-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/filled-mini-cart-contents-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-footer-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-footer-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-items-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-items-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-products-table-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-products-table-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-shopping-button-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-shopping-button-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-cart-button-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-cart-button-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-checkout-button-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-checkout-button-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-items-counter-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-items-counter-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-title-label-block.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-title-label-block.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-component-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-component-frontend.js\",\"version\":\"a16b6f8290305eec2716\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"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-wordcount\"]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-style.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-style.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"wc-9.2.3\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/wc-shipping-method-pickup-location.js\":{\"src\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-shipping-method-pickup-location.js\",\"version\":\"447ce0aa15c86b3fb36e\",\"dependencies\":[\"react\",\"react-dom\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]}},\"version\":\"wc-9.2.3\",\"hash\":\"f7521ad80cfc7fe946248478b81b2db2\"}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608051','rewrite_rules','a:256:{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:21:\"^wc/file/transient/?$\";s:33:\"index.php?wc-transient-file-name=\";s:24:\"^wc/file/transient/(.+)$\";s:44:\"index.php?wc-transient-file-name=$matches[1]\";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:12:\"^a/msba/(.*)\";s:54:\"index.php?brandagent_api=1&brandagent_path=$matches[1]\";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:43:\"category/(.+?)/wc/file/transient(/(.*))?/?$\";s:65:\"index.php?category_name=$matches[1]&wc/file/transient=$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:40:\"tag/([^/]+)/wc/file/transient(/(.*))?/?$\";s:55:\"index.php?tag=$matches[1]&wc/file/transient=$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:46:\"e-floating-buttons/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"e-floating-buttons/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"e-floating-buttons/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"e-floating-buttons/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"e-floating-buttons/([^/]+)/embed/?$\";s:51:\"index.php?e-floating-buttons=$matches[1]&embed=true\";s:39:\"e-floating-buttons/([^/]+)/trackback/?$\";s:45:\"index.php?e-floating-buttons=$matches[1]&tb=1\";s:47:\"e-floating-buttons/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&paged=$matches[2]\";s:54:\"e-floating-buttons/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&cpage=$matches[2]\";s:44:\"e-floating-buttons/([^/]+)/wc-api(/(.*))?/?$\";s:59:\"index.php?e-floating-buttons=$matches[1]&wc-api=$matches[3]\";s:55:\"e-floating-buttons/([^/]+)/wc/file/transient(/(.*))?/?$\";s:70:\"index.php?e-floating-buttons=$matches[1]&wc/file/transient=$matches[3]\";s:50:\"e-floating-buttons/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:61:\"e-floating-buttons/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:61:\"e-floating-buttons/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:72:\"e-floating-buttons/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:43:\"e-floating-buttons/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?e-floating-buttons=$matches[1]&page=$matches[2]\";s:35:\"e-floating-buttons/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"e-floating-buttons/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"e-floating-buttons/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"e-floating-buttons/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"kadence-form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"kadence-form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"kadence-form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"kadence-form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"kadence-form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"kadence-form/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"kadence-form/([^/]+)/embed/?$\";s:45:\"index.php?kadence_form=$matches[1]&embed=true\";s:33:\"kadence-form/([^/]+)/trackback/?$\";s:39:\"index.php?kadence_form=$matches[1]&tb=1\";s:41:\"kadence-form/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?kadence_form=$matches[1]&paged=$matches[2]\";s:48:\"kadence-form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?kadence_form=$matches[1]&cpage=$matches[2]\";s:38:\"kadence-form/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?kadence_form=$matches[1]&wc-api=$matches[3]\";s:49:\"kadence-form/([^/]+)/wc/file/transient(/(.*))?/?$\";s:64:\"index.php?kadence_form=$matches[1]&wc/file/transient=$matches[3]\";s:44:\"kadence-form/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"kadence-form/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"kadence-form/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:66:\"kadence-form/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:37:\"kadence-form/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?kadence_form=$matches[1]&page=$matches[2]\";s:29:\"kadence-form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"kadence-form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"kadence-form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"kadence-form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"kadence-form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"kadence-form/[^/]+/([^/]+)/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:44:\"product/([^/]+)/wc/file/transient(/(.*))?/?$\";s:59:\"index.php?product=$matches[1]&wc/file/transient=$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:50:\"product/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:61:\"product/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$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:37:\"pys_event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"pys_event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"pys_event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"pys_event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"pys_event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"pys_event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"pys_event/([^/]+)/embed/?$\";s:42:\"index.php?pys_event=$matches[1]&embed=true\";s:30:\"pys_event/([^/]+)/trackback/?$\";s:36:\"index.php?pys_event=$matches[1]&tb=1\";s:38:\"pys_event/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?pys_event=$matches[1]&paged=$matches[2]\";s:45:\"pys_event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?pys_event=$matches[1]&cpage=$matches[2]\";s:35:\"pys_event/([^/]+)/wc-api(/(.*))?/?$\";s:50:\"index.php?pys_event=$matches[1]&wc-api=$matches[3]\";s:46:\"pys_event/([^/]+)/wc/file/transient(/(.*))?/?$\";s:61:\"index.php?pys_event=$matches[1]&wc/file/transient=$matches[3]\";s:41:\"pys_event/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:52:\"pys_event/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:52:\"pys_event/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:63:\"pys_event/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:34:\"pys_event/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?pys_event=$matches[1]&page=$matches[2]\";s:26:\"pys_event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"pys_event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"pys_event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"pys_event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"pys_event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"pys_event/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"step/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"step/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"step/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"step/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"step/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"step/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"step/([^/]+)/embed/?$\";s:47:\"index.php?cartflows_step=$matches[1]&embed=true\";s:25:\"step/([^/]+)/trackback/?$\";s:41:\"index.php?cartflows_step=$matches[1]&tb=1\";s:33:\"step/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?cartflows_step=$matches[1]&paged=$matches[2]\";s:40:\"step/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?cartflows_step=$matches[1]&cpage=$matches[2]\";s:30:\"step/([^/]+)/wc-api(/(.*))?/?$\";s:55:\"index.php?cartflows_step=$matches[1]&wc-api=$matches[3]\";s:41:\"step/([^/]+)/wc/file/transient(/(.*))?/?$\";s:66:\"index.php?cartflows_step=$matches[1]&wc/file/transient=$matches[3]\";s:36:\"step/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:47:\"step/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:47:\"step/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:58:\"step/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:29:\"step/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?cartflows_step=$matches[1]&page=$matches[2]\";s:21:\"step/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:31:\"step/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:51:\"step/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"step/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"step/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:27:\"step/[^/]+/([^/]+)/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=15&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:28:\"wc/file/transient(/(.*))?/?$\";s:40:\"index.php?&wc/file/transient=$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:37:\"comments/wc/file/transient(/(.*))?/?$\";s:40:\"index.php?&wc/file/transient=$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:40:\"search/(.+)/wc/file/transient(/(.*))?/?$\";s:53:\"index.php?s=$matches[1]&wc/file/transient=$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:43:\"author/([^/]+)/wc/file/transient(/(.*))?/?$\";s:63:\"index.php?author_name=$matches[1]&wc/file/transient=$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:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc/file/transient(/(.*))?/?$\";s:93:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc/file/transient=$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:52:\"([0-9]{4})/([0-9]{1,2})/wc/file/transient(/(.*))?/?$\";s:77:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc/file/transient=$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:39:\"([0-9]{4})/wc/file/transient(/(.*))?/?$\";s:56:\"index.php?year=$matches[1]&wc/file/transient=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:173:\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}postname{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}/feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:168:\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}postname{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:149:\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}postname{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}/embed/?$\";s:21:\"index.php?&embed=true\";s:161:\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}postname{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}/page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:168:\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}postname{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}/comment-page-([0-9]{1,})/?$\";s:28:\"index.php?&cpage=$matches[1]\";s:158:\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}postname{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:169:\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}postname{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}/wc/file/transient(/(.*))?/?$\";s:40:\"index.php?&wc/file/transient=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:36:\"(.?.+?)/wc/file/transient(/(.*))?/?$\";s:60:\"index.php?pagename=$matches[1]&wc/file/transient=$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: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:42:\".?.+?/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:53:\".?.+?/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608059','_site_transient_timeout_php_check_38979a08dcd71638878b7b4419751271','1781710445','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608060','_site_transient_php_check_38979a08dcd71638878b7b4419751271','a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:3:\"7.4\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608065','_transient_ptk_patterns','a:99:{i:0;a:20:{s:2:\"ID\";i:450;s:7:\"site_id\";i:231214916;s:5:\"title\";s:47:\"Intro: Heading with image and two columns above\";s:4:\"name\";s:51:\"intro-heading-with-image-and-two-columns-above-copy\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4005:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"480px\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Stay dry in style</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph -->\n<p>Designed for both fashion and function, our rain jackets offers sleek styles and waterproof protection to keep you dry in any downpour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Discover collection</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":75,\"aspectRatio\":\"16/9\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/06/man-person-winter-photography-statue-coat.png\" alt=\"\" class=\"wp-image-75\" style=\"aspect-ratio:16/9;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:105:\"https://wooblockpatterns.wpcomstaging.com/2024/07/10/intro-heading-with-image-and-two-columns-above-copy/\";s:13:\"modified_date\";s:19:\"2025-05-06 14:29:32\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:1;a:20:{s:2:\"ID\";i:448;s:7:\"site_id\";i:231214916;s:5:\"title\";s:40:\"Intro: Two column with content and image\";s:4:\"name\";s:39:\"intro-two-column-with-content-and-image\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3489:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"className\":\"alignfull\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading {\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading has-xx-large-font-size\">Sounds like<br>no other</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Experience your music like never before with our latest generation of hi-fidelity headphones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Shop now</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":79,\"aspectRatio\":\"3/4\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/man-person-music-black-and-white-white-photography.jpg\" alt=\"\" class=\"wp-image-79\" style=\"aspect-ratio:3/4;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:93:\"https://wooblockpatterns.wpcomstaging.com/2024/07/10/intro-two-column-with-content-and-image/\";s:13:\"modified_date\";s:19:\"2024-07-18 12:14:17\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:2;a:20:{s:2:\"ID\";i:410;s:7:\"site_id\";i:231214916;s:5:\"title\";s:28:\"Review: Centered testimonial\";s:4:\"name\";s:27:\"review-centered-testimonial\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4632:\"<!-- wp:group {\"metadata\":{\"name\":\"Review\",\"categories\":[\"featured\",\"reviews\"],\"patternName\":\"review-centered-testimonial\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\",\"fontSize\":\"large\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-large-font-size\">What people are saying</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">\"I recently attended a pottery workshop at this shop, and it was such a wonderful experience. The instructor was patient and encouraging, and I had a blast getting creative with clay.”</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":107,\"width\":\"64px\",\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"100px\"}}} -->\n<figure class=\"wp-block-image size-full is-resized has-custom-border\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/06/portrait.png\" alt=\"\" class=\"wp-image-107\" style=\"border-radius:100px;aspect-ratio:1;object-fit:cover;width:64px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-text-align-center has-medium-font-size\">Liz S.</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\">Painter</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:24:\"_dotcom_imported_reviews\";a:3:{s:4:\"slug\";s:24:\"_dotcom_imported_reviews\";s:5:\"title\";s:24:\"_dotcom_imported_reviews\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:81:\"https://wooblockpatterns.wpcomstaging.com/2024/07/04/review-centered-testimonial/\";s:13:\"modified_date\";s:19:\"2024-07-04 12:03:45\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:3;a:20:{s:2:\"ID\";i:404;s:7:\"site_id\";i:231214916;s:5:\"title\";s:37:\"Review: A quote with scattered images\";s:4:\"name\";s:36:\"review-a-quote-with-scattered-images\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4579:\"<!-- wp:group {\"metadata\":{\"categories\":[\"reviews\"],\"patternName\":\"review-a-quote-with-scattered-images\",\"name\":\"Review: A quote with scattered images\"},\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-right:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:spacer {\"height\":\"var:preset|spacing|40\"} -->\n<div style=\"height:var(--wp--preset--spacing--40)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":405,\"width\":\"200px\",\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"left\",\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image alignleft size-full is-resized has-custom-border is-style-default\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/07/table-food-dessert-cake-circle-painting-23295-pxhere-2.png\" alt=\"\" class=\"wp-image-405\" style=\"border-style:none;border-width:0px;aspect-ratio:1;object-fit:cover;width:200px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":408,\"width\":\"95px\",\"height\":\"auto\",\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"right\",\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image alignright size-full is-resized has-custom-border is-style-default\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/07/formation-cave-food-autumn-darkness-still-life-790116-pxhere-2.png\" alt=\"\" class=\"wp-image-408\" style=\"border-style:none;border-width:0px;aspect-ratio:1;object-fit:cover;width:95px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"blockGap\":\"var:preset|spacing|20\",\"padding\":{\"right\":\"var:preset|spacing|20\",\"left\":\"var:preset|spacing|20\",\"top\":\"var:preset|spacing|60\",\"bottom\":\"var:preset|spacing|60\"}},\"dimensions\":{\"minHeight\":\"\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--20)\"><!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":107,\"width\":\"62px\",\"height\":\"62px\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"center\",\"className\":\"is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized is-style-rounded\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/06/portrait.png\" alt=\"\" class=\"wp-image-107\" style=\"object-fit:cover;width:62px;height:62px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"wp-block-heading has-text-align-center\">\"The only limit is the extent of your imagination.\"</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Jayla H.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"id\":406,\"width\":\"200px\",\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"right\",\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image alignright size-full is-resized has-custom-border is-style-default\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/07/plant-fruit-dish-meal-food-cooking-88153-pxhere-2.png\" alt=\"\" class=\"wp-image-406\" style=\"border-style:none;border-width:0px;aspect-ratio:1;object-fit:cover;width:200px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":407,\"width\":\"112px\",\"height\":\"auto\",\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"left\",\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image alignleft size-full is-resized has-custom-border is-style-default\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/07/tree-nature-branch-plant-fruit-flower-104610-pxhere.png\" alt=\"\" class=\"wp-image-407\" style=\"border-style:none;border-width:0px;aspect-ratio:1;object-fit:cover;width:112px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|40\"} -->\n<div style=\"height:var(--wp--preset--spacing--40)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:24:\"_dotcom_imported_reviews\";a:3:{s:4:\"slug\";s:24:\"_dotcom_imported_reviews\";s:5:\"title\";s:24:\"_dotcom_imported_reviews\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:90:\"https://wooblockpatterns.wpcomstaging.com/2024/07/04/review-a-quote-with-scattered-images/\";s:13:\"modified_date\";s:19:\"2024-07-04 12:00:48\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:4;a:20:{s:2:\"ID\";i:401;s:7:\"site_id\";i:231214916;s:5:\"title\";s:35:\"Review: Two column centered reviews\";s:4:\"name\";s:2:\"ff\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:7029:\"<!-- wp:group {\"metadata\":{\"name\":\"Reviews\",\"categories\":[\"featured\",\"reviews\"],\"patternName\":\"review-two-column-centered-reviews\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\",\"wideSize\":\"900px\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center\">Reviews</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|10\",\"bottom\":\"var:preset|spacing|10\",\"left\":\"var:preset|spacing|10\",\"right\":\"var:preset|spacing|10\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)\"><!-- wp:group {\"layout\":{\"type\":\"constrained\",\"contentSize\":\"380px\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"12px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":107,\"width\":\"48px\",\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"100px\"}}} -->\n<figure class=\"wp-block-image size-full is-resized has-custom-border\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/06/portrait.png\" alt=\"\" class=\"wp-image-107\" style=\"border-radius:100px;aspect-ratio:1;object-fit:cover;width:48px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"6px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"typography\":{\"lineHeight\":\"1\"}},\"className\":\"is-testimonial-name\",\"fontSize\":\"small\"} -->\n<h3 class=\"wp-block-heading has-text-align-center is-testimonial-name has-small-font-size\" style=\"line-height:1\">Jayla H.</h3>\n<!-- /wp:heading --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"0\"} -->\n<div style=\"height:0\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"className\":\"is-testimonial-review\"} -->\n<p class=\"has-text-align-center is-testimonial-review\">\"I\'ve been a loyal customer for years, and for good reason. The customer service is top-notch, and the products are always reliable.\"</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|10\",\"bottom\":\"var:preset|spacing|10\",\"left\":\"var:preset|spacing|10\",\"right\":\"var:preset|spacing|10\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)\"><!-- wp:group {\"layout\":{\"type\":\"constrained\",\"contentSize\":\"380px\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"12px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":325,\"width\":\"48px\",\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"100px\"}}} -->\n<figure class=\"wp-block-image size-full is-resized has-custom-border\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/07/cf19a5d21c3eeb7afa7c346b32af3ece-1.jpeg\" alt=\"\" class=\"wp-image-325\" style=\"border-radius:100px;aspect-ratio:1;object-fit:cover;width:48px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"6px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":4,\"style\":{\"typography\":{\"lineHeight\":\"1\"}},\"className\":\"is-testimonial-name\",\"fontSize\":\"small\"} -->\n<h4 class=\"wp-block-heading has-text-align-center is-testimonial-name has-small-font-size\" style=\"line-height:1\">Scott F.</h4>\n<!-- /wp:heading --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"0\"} -->\n<div style=\"height:0\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"className\":\"is-testimonial-review\"} -->\n<p class=\"has-text-align-center is-testimonial-review\">“I recently purchased a smart TV, and I couldn\'t be happier with my purchase. The staff was friendly and helpful, answering all of my questions.\"</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:24:\"_dotcom_imported_reviews\";a:3:{s:4:\"slug\";s:24:\"_dotcom_imported_reviews\";s:5:\"title\";s:24:\"_dotcom_imported_reviews\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:56:\"https://wooblockpatterns.wpcomstaging.com/2024/07/04/ff/\";s:13:\"modified_date\";s:19:\"2024-07-04 12:00:56\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:5;a:20:{s:2:\"ID\";i:397;s:7:\"site_id\";i:231214916;s:5:\"title\";s:26:\"Three column pricing table\";s:4:\"name\";s:28:\"three-column-pricing-table-2\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:15916:\"<!-- wp:group {\"metadata\":{\"name\":\"Pricing table\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"wp-block-heading has-text-align-center\">Elevate your learning</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|30\",\"width\":\"0px\"} -->\n<div style=\"height:var(--wp--preset--spacing--30);width:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"metadata\":{\"name\":\"Tiers\"},\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"metadata\":{\"name\":\"Tier Item\"},\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\"},\"blockGap\":\"var:preset|spacing|40\"},\"border\":{\"width\":\"1px\"}},\"borderColor\":\"primary\",\"backgroundColor\":\"base-2\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-column has-border-color has-primary-border-color has-base-2-background-color has-background\" style=\"border-width:1px;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Free</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"is-style-default\"} -->\n<h2 class=\"wp-block-heading is-style-default\">$0</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Video lectures</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Interactive quizzes</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Downloadable resources</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Certificates of completion</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"16px\"} -->\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"className\":\"is-style-outline\"} --><div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-outline\"><a class=\"wp-block-button__link wp-element-button\">Subscribe</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"metadata\":{\"name\":\"Tier Item (highlighted)\"},\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\"},\"blockGap\":\"var:preset|spacing|40\"},\"border\":{\"width\":\"2px\"}},\"borderColor\":\"primary\",\"backgroundColor\":\"base-2\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-column has-border-color has-primary-border-color has-base-2-background-color has-background\" style=\"border-width:2px;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Basic</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"is-style-default\"} -->\n<h2 class=\"wp-block-heading is-style-default\">$39</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Everything included in Free</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Personalized feedback</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Live Q&amp;A sessions</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Community forums</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"16px\"} -->\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"className\":\"is-style-fill\"} --><div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Subscribe</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"metadata\":{\"name\":\"Tier Item\"},\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\"},\"blockGap\":\"var:preset|spacing|40\"},\"border\":{\"width\":\"1px\"}},\"borderColor\":\"primary\",\"backgroundColor\":\"base-2\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-column has-border-color has-primary-border-color has-base-2-background-color has-background\" style=\"border-width:1px;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Premium</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"className\":\"is-style-default\"} -->\n<h2 class=\"wp-block-heading is-style-default\">$99</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\"><s><span></span></s>Everything included in Basic</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Premium support</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Coaching sessions</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast-2\"}}}},\"textColor\":\"contrast-2\"} -->\n<p class=\"has-text-align-left has-contrast-2-color has-text-color has-link-color\"><strong>✦</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color has-link-color\">Priority access to new content</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"16px\"} -->\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"className\":\"is-style-outline\"} --><div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-outline\"><a class=\"wp-block-button__link wp-element-button\">Subscribe</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:82:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/three-column-pricing-table-2/\";s:13:\"modified_date\";s:19:\"2024-07-05 10:59:28\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:6;a:20:{s:2:\"ID\";i:395;s:7:\"site_id\";i:231214916;s:5:\"title\";s:30:\"Two column boxed pricing table\";s:4:\"name\";s:30:\"two-column-boxed-pricing-table\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:7641:\"<!-- wp:group {\"metadata\":{\"name\":\"Pricing Table\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"textColor\":\"ast-global-color-2\",\"className\":\"is-pricing-title\"} -->\n<h2 class=\"wp-block-heading has-text-align-center is-pricing-title has-ast-global-color-2-color has-text-color\">Pricing</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"className\":\"is-pricing-description\"} -->\n<p class=\"has-text-align-center is-pricing-description\">Whether you\'re a self-paced learner looking for flexibility or someone who thrives with additional support and guidance, we have a plan for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"constrained\",\"contentSize\":\"800px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"style\":{\"color\":{\"background\":\"#00000012\"},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-column has-background\" style=\"background-color:#00000012;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"className\":\"is-pricing-tier-name\",\"fontSize\":\"large\"} -->\n<h3 class=\"wp-block-heading is-pricing-tier-name has-large-font-size\">Free</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-price\",\"fontSize\":\"small\"} -->\n<p class=\"is-pricing-tier-price has-small-font-size\">$0.00/month</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"className\":\"is-style-fill\"} --><div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Video lectures</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Interactive quizzes</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Downloadable resources</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Downloadable resources</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#00000012\"},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-column has-background\" style=\"background-color:#00000012;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"metadata\":{\"name\":\"Pricing Title\"},\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"className\":\"is-pricing-tier-name\",\"fontSize\":\"large\"} -->\n<h3 class=\"wp-block-heading is-pricing-tier-name has-large-font-size\">Basic</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-price\",\"fontSize\":\"small\"} -->\n<p class=\"is-pricing-tier-price has-small-font-size\">$69.00</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"className\":\"is-style-fill\"} --><div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Everything included in Free</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Personalized feedback</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Live Q&amp;A sessions</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Online community forums</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:84:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/two-column-boxed-pricing-table/\";s:13:\"modified_date\";s:19:\"2024-07-02 11:49:48\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:7;a:20:{s:2:\"ID\";i:392;s:7:\"site_id\";i:231214916;s:5:\"title\";s:24:\"Two column pricing table\";s:4:\"name\";s:24:\"two-column-pricing-table\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:7002:\"<!-- wp:group {\"metadata\":{\"name\":\"Pricing\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\",\"contentSize\":\"960px\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\",\"className\":\"is-pricing-title\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center is-pricing-title\">Pricing</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|40\",\"left\":\"0\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|10\",\"bottom\":\"var:preset|spacing|10\",\"left\":\"var:preset|spacing|10\",\"right\":\"var:preset|spacing|10\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)\"><!-- wp:group {\"layout\":{\"type\":\"constrained\",\"contentSize\":\"380px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"className\":\"is-pricing-tier-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-text-align-center is-pricing-tier-name has-medium-font-size\">Basic</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":4,\"className\":\"is-pricing-tier-price\",\"fontSize\":\"xx-large\"} -->\n<h4 class=\"wp-block-heading has-text-align-center is-pricing-tier-price has-xx-large-font-size\">$99</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"className\":\"is-pricing-tier-service\"} -->\n<p class=\"has-text-align-center is-pricing-tier-service\">It offers comprehensive access to all course materials, including video lectures, interactive quizzes, and downloadable resources.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":50} --><div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|10\",\"bottom\":\"var:preset|spacing|10\",\"left\":\"var:preset|spacing|10\",\"right\":\"var:preset|spacing|10\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)\"><!-- wp:group {\"layout\":{\"type\":\"constrained\",\"contentSize\":\"380px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"className\":\"is-pricing-tier-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-text-align-center is-pricing-tier-name has-medium-font-size\">Premium</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":4,\"className\":\"is-pricing-tier-price\",\"fontSize\":\"xx-large\"} -->\n<h4 class=\"wp-block-heading has-text-align-center is-pricing-tier-price has-xx-large-font-size\">$199</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"className\":\"is-pricing-tier-service\"} -->\n<p class=\"has-text-align-center is-pricing-tier-service\">Everything in the Basic plan plus exclusive perks and additional support. Enjoy live Q&amp;A, coaching sessions, and priority access to new content.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":50} --><div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"0px\"} -->\n<div style=\"height:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:78:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/two-column-pricing-table/\";s:13:\"modified_date\";s:19:\"2024-07-02 11:48:37\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:8;a:20:{s:2:\"ID\";i:384;s:7:\"site_id\";i:231214916;s:5:\"title\";s:28:\"Two column service offerings\";s:4:\"name\";s:28:\"two-column-service-offerings\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4331:\"<!-- wp:group {\"metadata\":{\"name\":\"Services\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"fontSize\":\"large\"} -->\n<h3 class=\"wp-block-heading has-text-align-center has-large-font-size\">Basic</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">$99/month</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":250,\"aspectRatio\":\"4/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/07/0ad9cb5f991125c89fc952521795a1e6-1.jpeg\" alt=\"\" class=\"wp-image-250\" style=\"aspect-ratio:4/3;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"fontSize\":\"large\"} -->\n<h3 class=\"wp-block-heading has-text-align-center has-large-font-size\">Premium</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">$199/month</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":237,\"aspectRatio\":\"4/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/06/8d8416beec2ca80653d3b811bf6b1f77.jpeg\" alt=\"\" class=\"wp-image-237\" style=\"aspect-ratio:4/3;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:82:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/two-column-service-offerings/\";s:13:\"modified_date\";s:19:\"2024-07-02 11:21:24\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:9;a:20:{s:2:\"ID\";i:382;s:7:\"site_id\";i:231214916;s:5:\"title\";s:43:\"Three columns of headings, images and links\";s:4:\"name\";s:42:\"three-columns-of-headings-images-and-links\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:5801:\"<!-- wp:group {\"metadata\":{\"name\":\"Services\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Furniture customization</h3>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"4px\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-bottom:4px\"><!-- wp:image {\"id\":63,\"aspectRatio\":\"3/2\",\"scale\":\"cover\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/06/table-wood-house-chair-floor-window-1-1024x683.jpg\" alt=\"\" class=\"wp-image-63\" style=\"aspect-ratio:3/2;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Create bespoke pieces that perfectly fit your space and style with our customization services. From fabric selection to dimensions, we\'ll bring your vision to life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Get started</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Interior design</h3>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"4px\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-bottom:4px\"><!-- wp:image {\"id\":304,\"aspectRatio\":\"3/2\",\"scale\":\"cover\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/07/54f708281f82831c082a1cf9d7b7faa9-1-683x1024.jpeg\" alt=\"\" class=\"wp-image-304\" style=\"aspect-ratio:3/2;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Our expert designers will work with you to transform your space into a stylish and functional haven that reflects your personal taste and lifestyle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Get started</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Delivery and assembly</h3>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"4px\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-bottom:4px\"><!-- wp:image {\"id\":354,\"aspectRatio\":\"3/2\",\"scale\":\"cover\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/07/ade23ce2024ccbbb42f7f7d6dfe5f2e0-1-684x1024.jpeg\" alt=\"\" class=\"wp-image-354\" style=\"aspect-ratio:3/2;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Enjoy hassle-free shopping with our delivery and assembly services. Let our team handle the heavy lifting and installation, so you can relax in your newly furnished home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Get started</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:96:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/three-columns-of-headings-images-and-links/\";s:13:\"modified_date\";s:19:\"2024-07-04 13:40:28\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:10;a:20:{s:2:\"ID\";i:380;s:7:\"site_id\";i:231214916;s:5:\"title\";s:21:\"Grid of text features\";s:4:\"name\";s:21:\"grid-of-text-features\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:5163:\"<!-- wp:group {\"metadata\":{\"name\":\"Services\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"className\":\"is-service-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading is-service-name has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Personal styling</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-service-description\"} -->\n<p class=\"is-service-description\">Work one-on-one with our expert stylists to curate outfits that align with your unique taste, body type, and lifestyle.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"className\":\"is-service-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading is-service-name has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Alterations and tailoring</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-service-description\"} -->\n<p class=\"is-service-description\">Ensure the perfect fit. From hemming to resizing, our skilled tailors will tailor your garments<br>to perfection.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"className\":\"is-service-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading is-service-name has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Wardrobe refresh</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-service-description\"} -->\n<p class=\"is-service-description\">Revamp your wardrobe. Our stylists will help you declutter, organize, and update your closet with fresh new pieces.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"className\":\"is-service-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading is-service-name has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Virtual Shopping</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-service-description\"} -->\n<p class=\"is-service-description\">Can\'t make it to our store? Our virtual shopping assistance service allows you to shop from the comfort of your home.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:75:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/grid-of-text-features/\";s:13:\"modified_date\";s:19:\"2024-07-04 13:41:09\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:11;a:20:{s:2:\"ID\";i:378;s:7:\"site_id\";i:231214916;s:5:\"title\";s:28:\"Headings left, content right\";s:4:\"name\";s:27:\"headings-left-content-right\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:6543:\"<!-- wp:group {\"metadata\":{\"name\":\"Services\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"metadata\":{\"name\":\"Content\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|40\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"fontSize\":\"large\"} -->\n<h2 class=\"wp-block-heading has-large-font-size\">Installation</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Enjoy peace of mind with our professional installation and setup services. From home theater systems to smart home devices, we\'ll ensure everything is installed and configured correctly for optimal performance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Discover more</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator {\"align\":\"wide\",\"style\":{\"color\":{\"background\":\"#4747471a\"}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator alignwide has-text-color has-alpha-channel-opacity has-background is-style-wide\" style=\"background-color:#4747471a;color:#4747471a\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"fontSize\":\"large\"} -->\n<h2 class=\"wp-block-heading has-large-font-size\">Maintenance</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Extend the lifespan of your electronics with our repair and maintenance services. Our skilled technicians will diagnose and fix any issues to keep your devices running smoothly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Discover more</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator {\"align\":\"wide\",\"style\":{\"color\":{\"background\":\"#4747471a\"}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator alignwide has-text-color has-alpha-channel-opacity has-background is-style-wide\" style=\"background-color:#4747471a;color:#4747471a\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"fontSize\":\"large\"} -->\n<h2 class=\"wp-block-heading has-large-font-size\">Trade-in</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Upgrade to the latest technology while being environmentally conscious with our trade-in and recycling programs. Trade in your old devices for credit towards new purchases or recycle them responsibly with us.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Discover more</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator {\"align\":\"wide\",\"style\":{\"color\":{\"background\":\"#4747471a\"}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator alignwide has-text-color has-alpha-channel-opacity has-background is-style-wide\" style=\"background-color:#4747471a;color:#4747471a\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"fontSize\":\"large\"} -->\n<h2 class=\"wp-block-heading has-large-font-size\">Support</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Get the most out of your electronics with our tech support and training services. Our experts will help troubleshoot any issues and provide guidance on using your devices effectively.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Discover more</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator {\"align\":\"wide\",\"style\":{\"color\":{\"background\":\"#4747471a\"}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator alignwide has-text-color has-alpha-channel-opacity has-background is-style-wide\" style=\"background-color:#4747471a;color:#4747471a\"/>\n<!-- /wp:separator --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:81:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/headings-left-content-right/\";s:13:\"modified_date\";s:19:\"2024-07-02 11:17:53\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:12;a:20:{s:2:\"ID\";i:376;s:7:\"site_id\";i:231214916;s:5:\"title\";s:30:\"Heading with six text sections\";s:4:\"name\";s:30:\"heading-with-six-text-sections\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:6956:\"<!-- wp:group {\"metadata\":{\"name\":\"Services\"},\"align\":\"full\",\"className\":\"alignfull\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"}},\"fontSize\":\"large\"} -->\n<h2 class=\"wp-block-heading has-large-font-size\">Our services</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|10\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}}} -->\n<div style=\"margin-top:0;margin-bottom:0;height:var(--wp--preset--spacing--10)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"0\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Furniture customization</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Create bespoke pieces that perfectly fit your space and style with our customization services. We\'ll bring your vision to life.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"56px\"} -->\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Home staging</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Planning to sell your home? Our home staging service will help maximize its appeal to potential buyers, showcasing its full potential.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"56px\"} -->\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Interior design consultation</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our expert designers will work with you to transform your space into a stylish and functional haven that reflects your personal taste and lifestyle.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"0\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Furniture restoration</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Restore the beauty of your beloved furniture pieces. From refinishing to repairs, we\'ll breathe new life into your cherished items.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"56px\"} -->\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Delivery and assembly</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Enjoy hassle-free shopping with our delivery and assembly services. Let our team handle the heavy lifting and installation, so you can relax.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"56px\"} -->\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Virtual design consultation</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Can\'t make it to our showroom? No problem! Our virtual design consultation service allows you to get expert advice from the comfort of your home.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:84:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/heading-with-six-text-sections/\";s:13:\"modified_date\";s:19:\"2024-07-24 14:34:50\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:13;a:20:{s:2:\"ID\";i:371;s:7:\"site_id\";i:231214916;s:5:\"title\";s:32:\"Three column boxed pricing table\";s:4:\"name\";s:26:\"three-column-pricing-table\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:9435:\"<!-- wp:group {\"metadata\":{\"name\":\"Pricing Table\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"className\":\"is-pricing-title\"} -->\n<h2 class=\"wp-block-heading has-text-align-center is-pricing-title\">Pricing</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|30\"} -->\n<div style=\"height:var(--wp--preset--spacing--30)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"style\":{\"color\":{\"background\":\"#00000012\"},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-column has-background\" style=\"background-color:#00000012;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"className\":\"is-pricing-tier-name\",\"fontSize\":\"large\"} -->\n<h3 class=\"wp-block-heading is-pricing-tier-name has-large-font-size\">Free</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-price\",\"fontSize\":\"small\"} -->\n<p class=\"is-pricing-tier-price has-small-font-size\">$0.00/month</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"className\":\"is-style-outline\"} --><div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-outline\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Video lectures</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Interactive quizzes</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Downloadable resources</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Certificate of completion</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#00000012\"},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-column has-background\" style=\"background-color:#00000012;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"metadata\":{\"name\":\"Pricing Title\"},\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"className\":\"is-pricing-tier-name\",\"fontSize\":\"large\"} -->\n<h3 class=\"wp-block-heading is-pricing-tier-name has-large-font-size\">Basic</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-price\",\"fontSize\":\"small\"} -->\n<p class=\"is-pricing-tier-price has-small-font-size\">$39.00/month</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"className\":\"is-style-fill\"} --><div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Everything included in Free</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Personalized feedback</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Live Q&amp;A sessions</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Online community forums</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#00000012\"},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-column has-background\" style=\"background-color:#00000012;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"className\":\"is-pricing-tier-name\",\"fontSize\":\"large\"} -->\n<h3 class=\"wp-block-heading is-pricing-tier-name has-large-font-size\">Premium</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-price\",\"fontSize\":\"small\"} -->\n<p class=\"is-pricing-tier-price has-small-font-size\">$99.00/month</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"className\":\"is-style-outline\"} --><div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-outline\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Everything included in Basic</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Premium support</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Coaching sessions</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"className\":\"is-pricing-tier-service-checked\"} -->\n<p class=\"is-pricing-tier-service-checked\"><strong>✓</strong> Priority access to new content</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:80:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/three-column-pricing-table/\";s:13:\"modified_date\";s:19:\"2024-07-02 11:47:39\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:14;a:20:{s:2:\"ID\";i:359;s:7:\"site_id\";i:231214916;s:5:\"title\";s:23:\"Two columns with images\";s:4:\"name\";s:23:\"two-columns-with-images\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:5251:\"<!-- wp:group {\"metadata\":{\"name\":\"Services\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":368,\"aspectRatio\":\"4/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/07/56b4ef6554bcb138de65c66f1ec092b9-2.jpeg\" alt=\"\" class=\"wp-image-368\" style=\"aspect-ratio:4/3;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Trade-in and recycling</h3>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Upgrade to the latest technology while being environmentally conscious with our trade-in and recycling programs. Trade in your old devices for credit towards new purchases or recycle them responsibly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":222,\"aspectRatio\":\"4/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/06/772d1d20f57861f0aa71dccda165b03e.jpeg\" alt=\"\" class=\"wp-image-222\" style=\"aspect-ratio:4/3;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Extended warranty</h3>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Protect your investment with our extended warranty and protection plans. Get peace of mind knowing your electronics are covered against unexpected damage and defects.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:77:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/two-columns-with-images/\";s:13:\"modified_date\";s:19:\"2024-07-04 13:21:17\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:15;a:20:{s:2:\"ID\";i:357;s:7:\"site_id\";i:231214916;s:5:\"title\";s:31:\"Heading with four text sections\";s:4:\"name\";s:31:\"heading-with-four-text-sections\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:5530:\"<!-- wp:group {\"metadata\":{\"name\":\"Services\"},\"align\":\"full\",\"className\":\"alignfull\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"}},\"fontSize\":\"large\"} -->\n<h2 class=\"wp-block-heading has-large-font-size\">Services</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|10\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}}} -->\n<div style=\"margin-top:0;margin-bottom:0;height:var(--wp--preset--spacing--10)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"0\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Personal styling</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Work one-on-one with our expert stylists to curate outfits that align with your unique taste, body type, and lifestyle.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"56px\"} -->\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Wardrobe refresh</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Revamp your wardrobe. Our stylists will help you declutter, organize, and update your closet with fresh new pieces.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"0\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Alterations and tailoring</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ensure the perfect fit. From hemming to resizing, our skilled tailors will tailor your garments to perfection.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"56px\"} -->\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Virtual Shopping</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Can\'t make it to our store? Our virtual shopping assistance service allows you to shop from the comfort of your home.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:25:\"_dotcom_imported_services\";a:3:{s:4:\"slug\";s:25:\"_dotcom_imported_services\";s:5:\"title\";s:25:\"_dotcom_imported_services\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:85:\"https://wooblockpatterns.wpcomstaging.com/2024/07/02/heading-with-four-text-sections/\";s:13:\"modified_date\";s:19:\"2024-07-24 14:35:12\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:16;a:20:{s:2:\"ID\";i:348;s:7:\"site_id\";i:231214916;s:5:\"title\";s:34:\"Personal bio with a contact button\";s:4:\"name\";s:34:\"personal-bio-with-a-contact-button\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3746:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":107,\"width\":\"175px\",\"height\":\"auto\",\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"center\",\"style\":{\"border\":{\"radius\":\"100em\"}}} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/06/portrait.png\" alt=\"\" class=\"wp-image-107\" style=\"border-radius:100em;aspect-ratio:1;object-fit:cover;width:175px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"constrained\",\"wideSize\":\"460px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"center\",\"textColor\":\"ast-global-color-2\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-ast-global-color-2-color has-text-color\">Marianne R.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">“My journey into fashion began with a passion for sustainability and a love for artisanal crafts. Since childhood, I’ve been captivated by the intricate handiwork of global artisans and the stories behind their creations.” </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">About me</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:88:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/personal-bio-with-a-contact-button/\";s:13:\"modified_date\";s:19:\"2024-07-01 18:33:10\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:17;a:20:{s:2:\"ID\";i:345;s:7:\"site_id\";i:231214916;s:5:\"title\";s:66:\"Circular avatar on left header on right with sub-header and button\";s:4:\"name\";s:66:\"circular-avatar-on-left-header-on-right-with-sub-header-and-button\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3620:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":346,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"100em\"}}} -->\n<figure class=\"wp-block-image size-full has-custom-border\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/07/8d605dc291be9f49e7e9afe9b8d0f5c7-1.png\" alt=\"\" class=\"wp-image-346\" style=\"border-radius:100em;aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading {\"align\":\"wide\"} -->\n<h2 class=\"wp-block-heading alignwide\">Sustainable fashion</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We believe that fashion should be as kind to the planet as it is to your wardrobe. With a commitment to sustainability and environmental responsibility, we curate a collection of chic and eco-friendly clothing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get in touch</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:120:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/circular-avatar-on-left-header-on-right-with-sub-header-and-button/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:53:07\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:18;a:20:{s:2:\"ID\";i:343;s:7:\"site_id\";i:231214916;s:5:\"title\";s:57:\"Circular image on right with large border header on right\";s:4:\"name\";s:57:\"circular-image-on-right-with-large-border-header-on-right\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3565:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading {\"fontSize\":\"small\"} -->\n<h2 class=\"wp-block-heading has-small-font-size\">About us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"align\":\"wide\"} -->\n<h2 class=\"wp-block-heading alignwide\">Sustainable fashion</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We believe that fashion should be as kind to the planet as it is to your wardrobe. With a commitment to sustainability and environmental responsibility, we curate a collection of chic and eco-friendly clothing.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":262,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"100em\",\"width\":\"0px\",\"style\":\"none\"}}} -->\n<figure class=\"wp-block-image size-full has-custom-border\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/07/96bbcf9839d875a42e9aaaada8132a33.jpeg\" alt=\"\" class=\"wp-image-262\" style=\"border-style:none;border-width:0px;border-radius:100em;aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:111:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/circular-image-on-right-with-large-border-header-on-right/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:46:29\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:19;a:20:{s:2:\"ID\";i:341;s:7:\"site_id\";i:231214916;s:5:\"title\";s:33:\"Header with a paragraph and stats\";s:4:\"name\";s:33:\"header-with-a-paragraph-and-stats\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4298:\"<!-- wp:group {\"metadata\":{\"name\":\"Numbers\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-xx-large-font-size\">Create anything</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-right:0;padding-left:0\"><!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"75{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:75{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\">Welcome to a world of limitless possibilities, where the journey is as exhilarating as the destination, and where every moment is an opportunity to make your mark on the canvas of existence.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|30\"} -->\n<div style=\"height:var(--wp--preset--spacing--30)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"fontSize\":\"x-large\"} -->\n<h3 class=\"wp-block-heading has-x-large-font-size\">14M</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Satisfied clients</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"fontSize\":\"x-large\"} -->\n<h3 class=\"wp-block-heading has-x-large-font-size\">Eco</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are thinking about the planet</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"fontSize\":\"x-large\"} -->\n<h3 class=\"wp-block-heading has-x-large-font-size\">120</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:87:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/header-with-a-paragraph-and-stats/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:49:56\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:20;a:20:{s:2:\"ID\";i:338;s:7:\"site_id\";i:231214916;s:5:\"title\";s:12:\"Team members\";s:4:\"name\";s:12:\"team-members\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:11352:\"<!-- wp:group {\"metadata\":{\"name\":\"Team\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"wp-block-heading has-text-align-center\">Our Team</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"metadata\":{\"name\":\"Team members\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":336,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/07/fab46ce87d847342cbe7410cdaa90732.jpeg\" alt=\"\" class=\"wp-image-336\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Emily Hayes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Interior designer</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Emily brings over a decade of experience in interior design, specializing in creating unique and personalized spaces that reflect each client\'s personality and lifestyle.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":335,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/07/f53d7341f90e86c42ed293bb386b5db4.jpeg\" alt=\"\" class=\"wp-image-335\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Mark Johnson</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Furniture designer</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>With a keen eye for detail and craftsmanship, Mark designs furniture pieces that blend style with functionality, ensuring every piece enhances the beauty of any space.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":331,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/07/885b26a44a4ca21844c169eca79dcf8c.jpeg\" alt=\"\" class=\"wp-image-331\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Alex Parker</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Customer support specialist</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Alex is committed to ensuring our customers have a seamless experience, providing attentive support and assistance with any inquiries or concerns they may have.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"metadata\":{\"name\":\"Team members\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":330,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/07/44df767ec48f3788eb836df942c12ca5.jpeg\" alt=\"\" class=\"wp-image-330\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">David Carter</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Project manager</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>David oversees every project with precision and efficiency, ensuring that timelines are met and that every detail is executed flawlessly from concept to completion.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":332,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/07/b804be09af895837548af933fdea519f.jpeg\" alt=\"\" class=\"wp-image-332\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Sophia Lee</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Sales manager</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Sophia is dedicated to providing exceptional service to our customers, offering guidance to help them find the perfect furniture and décor pieces for their homes.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":339,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/07/05414bb38f179cc7c6969cbaf1b152e1-1.jpeg\" alt=\"\" class=\"wp-image-339\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Emma Reynolds</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Marketing coordinator</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Emma\'s creative flair and passion for design shine through in her work, as she curates captivating content and engaging campaigns to showcase our products and services.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:66:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/team-members/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:42:27\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:21;a:20:{s:2:\"ID\";i:334;s:7:\"site_id\";i:231214916;s:5:\"title\";s:8:\"Our team\";s:4:\"name\";s:8:\"our-team\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:10105:\"<!-- wp:group {\"metadata\":{\"name\":\"Team\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"textAlign\":\"left\"} -->\n<h2 class=\"wp-block-heading has-text-align-left\">Our Team</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:image {\"id\":336,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/07/fab46ce87d847342cbe7410cdaa90732.jpeg\" alt=\"\" class=\"wp-image-336\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Emily Hayes</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Interior designer</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Emily brings over a decade of experience in interior design, specializing in creating unique and personalized spaces that reflect each client\'s personality and lifestyle. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"iconColor\":\"theme-4\",\"iconColorValue\":\"#242b2d\",\"size\":\"has-small-icon-size\",\"className\":\"is-style-logos-only\"} -->\n<ul class=\"wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"x\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"linkedin\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:image {\"id\":335,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/07/f53d7341f90e86c42ed293bb386b5db4.jpeg\" alt=\"\" class=\"wp-image-335\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Mark Johnson</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Furniture designer</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>With a keen eye for detail and craftsmanship, Mark designs furniture pieces that blend style with functionality, ensuring every piece enhances the beauty of any space.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"iconColor\":\"theme-4\",\"iconColorValue\":\"#242b2d\",\"size\":\"has-small-icon-size\",\"className\":\"is-style-logos-only\"} -->\n<ul class=\"wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"x\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"linkedin\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:image {\"id\":331,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/07/885b26a44a4ca21844c169eca79dcf8c.jpeg\" alt=\"\" class=\"wp-image-331\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Alex Parker</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Customer support specialist</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Alex is committed to ensuring our customers have a seamless experience, providing attentive support and assistance with any inquiries or concerns they may have.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"iconColor\":\"theme-4\",\"iconColorValue\":\"#242b2d\",\"size\":\"has-small-icon-size\",\"className\":\"is-style-logos-only\"} -->\n<ul class=\"wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"x\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"linkedin\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:image {\"id\":332,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/07/b804be09af895837548af933fdea519f.jpeg\" alt=\"\" class=\"wp-image-332\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"4px\"} -->\n<div style=\"height:4px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"9px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Sophia Lee</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Sales manager</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Sophia is dedicated to providing exceptional service to our customers, offering guidance to help them find the perfect furniture and décor pieces for their homes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"iconColor\":\"theme-4\",\"iconColorValue\":\"#242b2d\",\"size\":\"has-small-icon-size\",\"className\":\"is-style-logos-only\"} -->\n<ul class=\"wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"x\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"linkedin\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:62:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/our-team/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:43:04\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:22;a:20:{s:2:\"ID\";i:329;s:7:\"site_id\";i:231214916;s:5:\"title\";s:4:\"Team\";s:4:\"name\";s:4:\"team\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4779:\"<!-- wp:group {\"metadata\":{\"name\":\"Team\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|20\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"textAlign\":\"left\"} -->\n<h2 class=\"wp-block-heading has-text-align-left\">Meet the passionate team behind our brand</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:image {\"id\":332,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-style-default\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/07/b804be09af895837548af933fdea519f.jpeg\" alt=\"\" class=\"wp-image-332\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:image {\"id\":331,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/07/885b26a44a4ca21844c169eca79dcf8c.jpeg\" alt=\"\" class=\"wp-image-331\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|20\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:image {\"id\":330,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/07/44df767ec48f3788eb836df942c12ca5.jpeg\" alt=\"\" class=\"wp-image-330\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:image {\"id\":325,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/07/cf19a5d21c3eeb7afa7c346b32af3ece-1.jpeg\" alt=\"\" class=\"wp-image-325\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:58:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/team/\";s:13:\"modified_date\";s:19:\"2024-07-01 16:45:42\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:23;a:20:{s:2:\"ID\";i:327;s:7:\"site_id\";i:231214916;s:5:\"title\";s:5:\"About\";s:4:\"name\";s:5:\"about\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:6587:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:image {\"id\":462,\"aspectRatio\":\"3/4\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/07/girls-in-the-hills-3.jpg\" alt=\"\" class=\"wp-image-462\" style=\"aspect-ratio:3/4;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"80{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:80{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Embrace<br>sustainable fashion</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We believe that fashion should be as kind to the planet as it is to your wardrobe. With a commitment to sustainability and environmental responsibility, we curate a collection of chic and eco-friendly clothing.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"stretch\"} -->\n<div class=\"wp-block-column is-vertically-aligned-stretch\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"isStackedOnMobile\":false,\"fontSize\":\"medium\"} -->\n<div class=\"wp-block-columns is-not-stacked-on-mobile has-medium-font-size\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"var:preset|spacing|20\",\"right\":\"var:preset|spacing|20\"},\"blockGap\":\"4px\"},\"border\":{\"left\":{\"color\":\"#1e1e1e40\",\"width\":\"1px\"},\"top\":[],\"right\":[],\"bottom\":[]}}} -->\n<div class=\"wp-block-column\" style=\"border-left-color:#1e1e1e40;border-left-width:1px;padding-top:0;padding-right:var(--wp--preset--spacing--20);padding-bottom:0;padding-left:var(--wp--preset--spacing--20)\"><!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Eco-friendly packaging</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"var:preset|spacing|20\",\"right\":\"var:preset|spacing|20\"},\"blockGap\":\"4px\"},\"border\":{\"left\":{\"color\":\"#1e1e1e40\",\"width\":\"1px\"},\"top\":[],\"right\":[],\"bottom\":[]}}} -->\n<div class=\"wp-block-column\" style=\"border-left-color:#1e1e1e40;border-left-width:1px;padding-top:0;padding-right:var(--wp--preset--spacing--20);padding-bottom:0;padding-left:var(--wp--preset--spacing--20)\"><!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">75{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Recycled materials</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"isStackedOnMobile\":false,\"fontSize\":\"medium\"} -->\n<div class=\"wp-block-columns is-not-stacked-on-mobile has-medium-font-size\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"var:preset|spacing|20\",\"right\":\"var:preset|spacing|20\"},\"blockGap\":\"4px\"},\"border\":{\"left\":{\"color\":\"#1e1e1e40\",\"width\":\"1px\"},\"top\":[],\"right\":[],\"bottom\":[]}}} -->\n<div class=\"wp-block-column\" style=\"border-left-color:#1e1e1e40;border-left-width:1px;padding-top:0;padding-right:var(--wp--preset--spacing--20);padding-bottom:0;padding-left:var(--wp--preset--spacing--20)\"><!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">80{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Less water usage</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"var:preset|spacing|20\",\"right\":\"var:preset|spacing|20\"},\"blockGap\":\"4px\"},\"border\":{\"left\":{\"color\":\"#1e1e1e40\",\"width\":\"1px\"},\"top\":[],\"right\":[],\"bottom\":[]}}} -->\n<div class=\"wp-block-column\" style=\"border-left-color:#1e1e1e40;border-left-width:1px;padding-top:0;padding-right:var(--wp--preset--spacing--20);padding-bottom:0;padding-left:var(--wp--preset--spacing--20)\"><!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Organic cotton</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"9px\"} -->\n<div style=\"height:9px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:59:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/about/\";s:13:\"modified_date\";s:19:\"2024-07-18 12:31:42\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:24;a:20:{s:2:\"ID\";i:322;s:7:\"site_id\";i:231214916;s:5:\"title\";s:29:\"About with heading and images\";s:4:\"name\";s:29:\"about-with-heading-and-images\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4808:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"align\":\"wide\"} -->\n<h2 class=\"wp-block-heading alignwide\">Chic and eco-friendly fashion, thoughtfully crafted with organic fabrics and recycled materials.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|30\"} -->\n<div style=\"height:var(--wp--preset--spacing--30)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|20\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:image {\"id\":323,\"aspectRatio\":\"3/4\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/07/f3b0161d47e4ada886ef5f69d0637ddd.jpeg\" alt=\"\" class=\"wp-image-323\" style=\"aspect-ratio:3/4;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"0px\",\"style\":{\"layout\":{\"flexSize\":\"5vw\",\"selfStretch\":\"fixed\"}}} -->\n<div style=\"height:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":75,\"aspectRatio\":\"3/4\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/06/man-person-winter-photography-statue-coat.png\" alt=\"\" class=\"wp-image-75\" style=\"aspect-ratio:3/4;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"id\":325,\"aspectRatio\":\"3/4\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/07/cf19a5d21c3eeb7afa7c346b32af3ece-1.jpeg\" alt=\"\" class=\"wp-image-325\" style=\"aspect-ratio:3/4;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"0px\",\"style\":{\"layout\":{\"flexSize\":\"5vw\",\"selfStretch\":\"fixed\"}}} -->\n<div style=\"height:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":324,\"aspectRatio\":\"3/4\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/07/f554dfb297c4824916eb82ee70a3d942.jpeg\" alt=\"\" class=\"wp-image-324\" style=\"aspect-ratio:3/4;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:83:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/about-with-heading-and-images/\";s:13:\"modified_date\";s:19:\"2024-07-01 16:38:19\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:25;a:20:{s:2:\"ID\";i:319;s:7:\"site_id\";i:231214916;s:5:\"title\";s:22:\"List with descriptions\";s:4:\"name\";s:4:\"data\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:10266:\"<!-- wp:group {\"metadata\":{\"name\":\"Data list\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"metadata\":{\"name\":\"Data entry\"},\"align\":\"wide\",\"style\":{\"border\":{\"top\":{\"color\":\"var:preset|color|theme-4\",\"width\":\"1px\"},\"right\":[],\"bottom\":[],\"left\":[]},\"spacing\":{\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"border-top-color:var(--wp--preset--color--theme-4);border-top-width:1px;padding-right:0;padding-left:0\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|theme-4\"}}}},\"textColor\":\"theme-4\"} -->\n<h2 class=\"wp-block-heading has-theme-4-color has-text-color has-link-color\">18 years</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">We have been in the market for 18 years and proved our customers our experience matters.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"metadata\":{\"name\":\"Data entry\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|20\",\"left\":\"var:preset|spacing|20\"}},\"border\":{\"top\":{\"width\":\"1px\"}}}} -->\n<div class=\"wp-block-group alignwide\" style=\"border-top-width:1px\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|theme-4\"}}}},\"textColor\":\"theme-4\"} -->\n<h2 class=\"wp-block-heading has-theme-4-color has-text-color has-link-color\">54 countries</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">We are worldwide with market participation in more than 54 countries in 5 continents.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"metadata\":{\"name\":\"Data entry\"},\"align\":\"wide\",\"style\":{\"border\":{\"top\":{\"width\":\"1px\"}},\"spacing\":{\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"border-top-width:1px;padding-right:0;padding-left:0\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|theme-4\"}}}},\"textColor\":\"theme-4\"} -->\n<h2 class=\"wp-block-heading has-theme-4-color has-text-color has-link-color\">98K users</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">We have almost 100k active users with a high level of engagement and adoption.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"metadata\":{\"name\":\"Data entry\"},\"align\":\"wide\",\"style\":{\"border\":{\"top\":{\"width\":\"1px\"}}}} -->\n<div class=\"wp-block-group alignwide\" style=\"border-top-width:1px\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"color\":[],\"border\":{\"radius\":\"0px\"}}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"border-radius:0px\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|theme-4\"}}}},\"textColor\":\"theme-4\"} -->\n<h2 class=\"wp-block-heading has-theme-4-color has-text-color has-link-color\">$12M revenue</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">We closed 2023 over $12M dollars in revenue which position us as leader in our industry</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:58:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/data/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:33:26\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:26;a:20:{s:2:\"ID\";i:317;s:7:\"site_id\";i:231214916;s:5:\"title\";s:28:\"Tall content with image left\";s:4:\"name\";s:28:\"tall-content-with-image-left\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4051:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":273,\"aspectRatio\":\"3/4\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/07/44024b9b9c88dd50f5cf11f5c31311c5-1.jpeg\" alt=\"\" class=\"wp-image-273\" style=\"aspect-ratio:3/4;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"},\"blockGap\":\"var:preset|spacing|30\"},\"dimensions\":{\"minHeight\":\"100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"verticalAlignment\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"min-height:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-x-large-font-size\">Committed to a greener lifestyle</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\",\"contentSize\":\"400px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p>Our passion is crafting mindful moments with locally sourced, organic, and sustainable products. We\'re more than a store; we\'re your path to a community-driven, eco-friendly lifestyle that embraces premium quality.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Meet us</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:82:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/tall-content-with-image-left/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:06:24\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:27;a:20:{s:2:\"ID\";i:315;s:7:\"site_id\";i:231214916;s:5:\"title\";s:24:\"Two column text sections\";s:4:\"name\";s:24:\"two-column-text-sections\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3953:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"className\":\"is-service-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading is-service-name has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Commitment to sustainability</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-service-description\"} -->\n<p class=\"is-service-description\">Ethical sourcing is at the forefront of everything we do. We\'re proud to champion sustainable fashion by prioritizing the use of organic and recycled materials in our clothing and accessories. By supporting fair trade initiatives and maintaining transparent supply chains, we ensure that every piece upholds our commitment to ethical practices.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"className\":\"is-service-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading is-service-name has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Quality and Craftsmanship</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-service-description\"} -->\n<p class=\"is-service-description\">We are dedicated to crafting timeless pieces that stand the test of time. Each garment and accessory in our collection is a testament to our unwavering commitment to quality and craftsmanship. We take pride in using only the finest materials and employing meticulous attention to detail in every step of the creation process.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:78:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/two-column-text-sections/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:16:22\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:28;a:20:{s:2:\"ID\";i:313;s:7:\"site_id\";i:231214916;s:5:\"title\";s:36:\"Content with grid of images on right\";s:4:\"name\";s:36:\"content-with-grid-of-images-on-right\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:5365:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:spacer {\"height\":\"var:preset|spacing|10\"} -->\n<div style=\"height:var(--wp--preset--spacing--10)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"fontSize\":\"large\"} -->\n<h2 class=\"wp-block-heading has-large-font-size\">Crafting beauty</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are dedicated to the art of craftsmanship, where each vase is meticulously crafted to perfection. Our passion for detail and commitment to quality shines through in every piece, resulting in vases that are not just functional, but true works of art.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">More about us</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"16px\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"18px\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"lightbox\":{\"enabled\":true},\"id\":266,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/07/a0c4b80dc701de6a1143de003da3ef95-1-768x1024.jpeg\" alt=\"\" class=\"wp-image-266\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"lightbox\":{\"enabled\":true},\"id\":88,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-style-default\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/06/white-vase-decoration-pattern-ceramic-lamp.jpg\" alt=\"\" class=\"wp-image-88\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"18px\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"lightbox\":{\"enabled\":true},\"id\":62,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-style-default\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/06/plant-white-leaf-flower-vase-green.jpg\" alt=\"\" class=\"wp-image-62\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"lightbox\":{\"enabled\":true},\"id\":69,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-style-default\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/tree-branch-plant-wood-leaf-flower.jpg\" alt=\"\" class=\"wp-image-69\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:90:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/content-with-grid-of-images-on-right/\";s:13:\"modified_date\";s:19:\"2024-07-18 12:15:00\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:29;a:20:{s:2:\"ID\";i:311;s:7:\"site_id\";i:231214916;s:5:\"title\";s:26:\"Pull left, fullwidth image\";s:4:\"name\";s:25:\"pull-left-fullwidth-image\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3473:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph -->\n<p>We believe that your home should be a reflection of your unique style and personality. Our curated collection of home essentials and decor pieces is designed to help you create a space that feels truly like you. From cozy furnishings to stylish accents, we offer everything you need to turn your house into a home.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"60{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":63,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"full\"} -->\n<figure class=\"wp-block-image alignfull size-full\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/table-wood-house-chair-floor-window-1.jpg\" alt=\"\" class=\"wp-image-63\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:79:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/pull-left-fullwidth-image/\";s:13:\"modified_date\";s:19:\"2024-07-01 16:24:14\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:30;a:20:{s:2:\"ID\";i:309;s:7:\"site_id\";i:231214916;s:5:\"title\";s:21:\"Right-aligned content\";s:4:\"name\";s:21:\"right-aligned-content\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3470:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"\"} -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>We are dedicated to crafting timeless pieces that stand the test of time. Each garment and accessory in our collection is a testament to our unwavering commitment to quality and craftsmanship. We take pride in using only the finest materials and employing meticulous attention to detail in every step of the creation process. From the stitching to the finishing touches, our products are thoughtfully designed to exude durability, longevity, and timeless elegance. When you shop with us, you can trust that you\'re investing in items that are not only stylish but also built to last, ensuring years of enjoyment and wear. We believe in fashion that not only looks good but also does good for the planet and its people. That\'s why we\'re dedicated to reducing the environmental and social impact of the clothing and accessories industry. When you shop with us, you can feel confident knowing that your purchase supports a more sustainable and ethical approach to fashion, making a positive difference in the world.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:75:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/right-aligned-content/\";s:13:\"modified_date\";s:19:\"2024-07-01 16:23:24\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:31;a:20:{s:2:\"ID\";i:306;s:7:\"site_id\";i:231214916;s:5:\"title\";s:35:\"Large heading with content on right\";s:4:\"name\";s:39:\"large-heading-with-content-on-the-right\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3440:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading has-xx-large-font-size\">Create anything</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph -->\n<p>Welcome to a world of limitless possibilities, where the journey is as exhilarating as the destination, and where every moment is an opportunity to make your mark on the canvas of existence. The only limit is the extent of your imagination.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|10\"} -->\n<div style=\"height:var(--wp--preset--spacing--10)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:93:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/large-heading-with-content-on-the-right/\";s:13:\"modified_date\";s:19:\"2024-07-01 16:22:38\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:32;a:20:{s:2:\"ID\";i:303;s:7:\"site_id\";i:231214916;s:5:\"title\";s:29:\"Tall content with image right\";s:4:\"name\";s:29:\"tall-content-with-image-right\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3981:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"},\"blockGap\":\"var:preset|spacing|30\"},\"dimensions\":{\"minHeight\":\"100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"verticalAlignment\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"min-height:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:heading {\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-x-large-font-size\">Discover a world of possibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\",\"contentSize\":\"400px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p>We believe that your home should be a reflection of your unique style and personality. Our curated collection of home essentials and decor pieces is designed to help you create a space that feels truly like you. From cozy furnishings to stylish accents, we offer everything you need to turn your house into a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Meet us</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":304,\"aspectRatio\":\"3/4\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/07/54f708281f82831c082a1cf9d7b7faa9-1.jpeg\" alt=\"\" class=\"wp-image-304\" style=\"aspect-ratio:3/4;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:83:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/tall-content-with-image-right/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:58:41\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:33;a:20:{s:2:\"ID\";i:301;s:7:\"site_id\";i:231214916;s:5:\"title\";s:24:\"Spread right, heavy text\";s:4:\"name\";s:23:\"spread-right-heavy-text\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3950:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:image {\"id\":69,\"aspectRatio\":\"2/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/tree-branch-plant-wood-leaf-flower.jpg\" alt=\"\" class=\"wp-image-69\" style=\"aspect-ratio:2/3;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">About us</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Step into a world of botanical beauty</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p>With a passion for all things leafy, we offer a diverse collection of plants, from lush foliage to exotic blooms, to bring the beauty of nature into your home. Whether you\'re a seasoned plant parent or just beginning your green journey, our friendly team is here to help you find the perfect plant companion.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">More about us</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:77:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/spread-right-heavy-text/\";s:13:\"modified_date\";s:19:\"2024-07-18 12:07:51\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:34;a:20:{s:2:\"ID\";i:299;s:7:\"site_id\";i:231214916;s:5:\"title\";s:28:\"Heading with button and text\";s:4:\"name\";s:28:\"heading-with-button-and-text\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3802:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"width\":\"50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"textAlign\":\"left\",\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-text-align-left has-x-large-font-size\">Discover a world of possibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"70{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"}}} -->\n<p>We believe that your home should be a reflection of your unique style and personality. Our curated collection of home essentials and decor pieces is designed to help you create a space that feels truly like you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"70{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"}}} -->\n<p>Our expert designers will work closely with you to bring your vision to life. From furniture selection to color schemes, we\'ll provide professional advice and guidance every step of the way to help you achieve the perfect balance of comfort, functionality, and aesthetic appeal.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:82:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/heading-with-button-and-text/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:56:19\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:35;a:20:{s:2:\"ID\";i:297;s:7:\"site_id\";i:231214916;s:5:\"title\";s:20:\"Left-aligned content\";s:4:\"name\";s:22:\"left-aligned-content-2\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2881:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"\"} -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>As we navigate the intricate tapestry of existence, we are constantly presented with choices, each a potential pathway to something extraordinary. This is a world where creativity knows no bounds, where the curious mind finds solace, and where the fearless heart discovers uncharted territories. It is a place where the pursuit of knowledge, the embrace of change, and the willingness to take risks are not mere options but essential ingredients for a life well-lived.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Welcome to a world of limitless possibilities, where the journey is as exhilarating as the destination, and where every moment is an opportunity to make your mark on the canvas of existence. The only limit is the extent of your imagination.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:76:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/left-aligned-content-2/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:54:34\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:36;a:20:{s:2:\"ID\";i:294;s:7:\"site_id\";i:231214916;s:5:\"title\";s:35:\"Fullwidth image, content pull right\";s:4:\"name\";s:34:\"fullwidth-image-content-pull-right\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3046:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:image {\"id\":295,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"full\"} -->\n<figure class=\"wp-block-image alignfull size-full\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/07/90731e071ce29177b55e394f139c6400.jpeg\" alt=\"\" class=\"wp-image-295\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|10\"} -->\n<div style=\"height:var(--wp--preset--spacing--10)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|10\",\"bottom\":\"var:preset|spacing|10\"}}}} -->\n<div class=\"wp-block-columns alignwide\" style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:column {\"width\":\"60{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph -->\n<p>Welcome to your premier destination for premium headphones and audio accessories. Dive into our curated collection, where cutting-edge technology meets sleek design to deliver an unparalleled listening experience. From wireless wonders to noise-canceling marvels, we have the perfect pair to suit every lifestyle and preference.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|10\"} -->\n<div style=\"height:var(--wp--preset--spacing--10)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:88:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/fullwidth-image-content-pull-right/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:53:49\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:37;a:20:{s:2:\"ID\";i:291;s:7:\"site_id\";i:231214916;s:5:\"title\";s:25:\"Content left, image right\";s:4:\"name\";s:24:\"content-left-image-right\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3389:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"level\":4,\"fontSize\":\"small\"} -->\n<h4 class=\"wp-block-heading has-small-font-size\">About us</h4>\n<!-- /wp:heading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Elevate your space</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We specialize in curating exquisite home decor pieces that add an element of elegance to every space. With a keen eye for detail and a commitment to quality, we strive to bring sophistication and charm into your home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">More about us</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:image {\"id\":292,\"width\":\"521px\",\"height\":\"auto\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/07/b7754a09d649f4fe4ae390a60df7b556.jpeg\" alt=\"\" class=\"wp-image-292\" style=\"object-fit:cover;width:521px;height:auto\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:78:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/content-left-image-right/\";s:13:\"modified_date\";s:19:\"2024-07-18 12:15:40\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:38;a:20:{s:2:\"ID\";i:289;s:7:\"site_id\";i:231214916;s:5:\"title\";s:27:\"Centered heading and button\";s:4:\"name\";s:27:\"centered-heading-and-button\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2670:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-x-large-font-size\">Discover a world of possibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:81:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/centered-heading-and-button/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:49:09\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:39;a:20:{s:2:\"ID\";i:287;s:7:\"site_id\";i:231214916;s:5:\"title\";s:42:\"Heading with content and large image below\";s:4:\"name\";s:42:\"heading-with-content-and-large-image-below\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4054:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|60\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"width\":\"50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"textAlign\":\"left\",\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-text-align-left has-x-large-font-size\">Embrace<br>sustainable fashion</h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Discover more</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"70{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"}}} -->\n<p>We believe that fashion should be as kind to the planet as it is to your wardrobe. With a commitment to sustainability and environmental responsibility, we curate a collection of chic and eco-friendly clothing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"70{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"}}} -->\n<p>From organic fabrics to recycled materials, every piece in our collection is thoughtfully crafted with the planet in mind.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|30\"} -->\n<div style=\"height:var(--wp--preset--spacing--30)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":75,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"wide\"} -->\n<figure class=\"wp-block-image alignwide size-full\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/06/man-person-winter-photography-statue-coat.png\" alt=\"\" class=\"wp-image-75\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:96:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/heading-with-content-and-large-image-below/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:48:30\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:40;a:20:{s:2:\"ID\";i:284;s:7:\"site_id\";i:231214916;s:5:\"title\";s:30:\"Heading with two media columns\";s:4:\"name\";s:30:\"heading-with-two-media-columns\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4356:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"10px\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-bottom:10px\"><!-- wp:image {\"id\":285,\"aspectRatio\":\"4/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/07/e7e21c3e64f977311b55a59d66aec660.jpeg\" alt=\"\" class=\"wp-image-285\" style=\"aspect-ratio:4/3;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:heading {\"level\":3,\"fontSize\":\"large\"} -->\n<h3 class=\"wp-block-heading has-large-font-size\">Commitment to sustainability</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the heart of our mission is a commitment to sustainability. We prioritize environmentally friendly practices by sourcing locally grown produce, minimizing packaging waste, and championing sustainable farming methods.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"10px\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-bottom:10px\"><!-- wp:image {\"id\":273,\"aspectRatio\":\"4/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":[]}} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/07/44024b9b9c88dd50f5cf11f5c31311c5-1.jpeg\" alt=\"\" class=\"wp-image-273\" style=\"aspect-ratio:4/3;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:heading {\"level\":3,\"fontSize\":\"large\"} -->\n<h3 class=\"wp-block-heading has-large-font-size\">Quality and freshness</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Every step of our process, from meticulous ingredient selection to adhering to stringent standards, reflects our dedication to quality. From the initial harvest to the finished product, we uphold uncompromising standards of freshness and flavor.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:84:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/heading-with-two-media-columns/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:47:28\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:41;a:20:{s:2:\"ID\";i:282;s:7:\"site_id\";i:231214916;s:5:\"title\";s:27:\"Three columns with features\";s:4:\"name\";s:27:\"three-columns-with-features\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4409:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|50\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"className\":\"is-service-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading is-service-name has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Commitment to sustainability</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-service-description\"} -->\n<p class=\"is-service-description\">At the heart of our mission is a commitment to sustainability. We prioritize environmentally friendly practices by sourcing locally grown produce, minimizing packaging waste, and championing sustainable farming methods.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"className\":\"is-service-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading is-service-name has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Quality and freshness</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-service-description\"} -->\n<p class=\"is-service-description\">At our core, we\'re dedicated to delivering excellence. We take great care in selecting only the finest organic fruits and vegetables, adhering to stringent standards to guarantee optimal freshness and flavor.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"className\":\"is-service-name\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading is-service-name has-medium-font-size\" style=\"font-style:normal;font-weight:700\">Community engagement</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"is-service-description\"} -->\n<p class=\"is-service-description\">From fostering partnerships with local farmers to active participation in community events, we\'re deeply committed to supporting initiatives focused on food security, nutrition, and overall well-being.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:81:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/three-columns-with-features/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:17:24\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:42;a:20:{s:2:\"ID\";i:279;s:7:\"site_id\";i:231214916;s:5:\"title\";s:36:\"Four image grid, content on the left\";s:4:\"name\";s:35:\"four-image-grid-content-on-the-left\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:5194:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"className\":\"alignfull\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"8px\",\"left\":\"8px\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":266,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-style-default\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/07/a0c4b80dc701de6a1143de003da3ef95-1.jpeg\" alt=\"\" class=\"wp-image-266\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":88,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-style-default\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/06/white-vase-decoration-pattern-ceramic-lamp.jpg\" alt=\"\" class=\"wp-image-88\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":62,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-style-default\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/06/plant-white-leaf-flower-vase-green.jpg\" alt=\"\" class=\"wp-image-62\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":69,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-style-default\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/tree-branch-plant-wood-leaf-flower.jpg\" alt=\"\" class=\"wp-image-69\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"400px\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Crafting beauty</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We are dedicated to the art of craftsmanship, where each vase is meticulously crafted to perfection. Our passion for detail and commitment to quality shines through in every piece, resulting in vases that are not just functional, but true works of art.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">More about us</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:89:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/four-image-grid-content-on-the-left/\";s:13:\"modified_date\";s:19:\"2024-07-18 12:07:14\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:43;a:20:{s:2:\"ID\";i:277;s:7:\"site_id\";i:231214916;s:5:\"title\";s:30:\"Heading left and content right\";s:4:\"name\";s:30:\"heading-left-and-content-right\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3526:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"45{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|20\"}}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:45{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"fontSize\":\"small\"} -->\n<h2 class=\"wp-block-heading has-small-font-size\">Create anything</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Discover a world of possibilities</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"55{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>We believe that your home should be a reflection of your unique style and personality. Our curated collection of home essentials and decor pieces is designed to help you create a space that feels truly like you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our expert designers will work closely with you to bring your vision to life. From furniture selection to color schemes, we\'ll provide professional advice and guidance every step of the way to help you achieve the perfect balance of comfort, functionality, and aesthetic appeal.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:84:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/heading-left-and-content-right/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:41:54\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:44;a:20:{s:2:\"ID\";i:275;s:7:\"site_id\";i:231214916;s:5:\"title\";s:29:\"Content left with image right\";s:4:\"name\";s:29:\"content-left-with-image-right\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3420:\"<!-- wp:group {\"metadata\":{\"name\":\"About\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Where cycling dreams take flight</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Founded by avid cyclists with a passion for pedal-powered adventures, we\'re dedicated to providing top-quality bikes, accessories, and expert advice to riders of all levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Discover more</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:image {\"lightbox\":{\"enabled\":false},\"id\":70,\"aspectRatio\":\"1\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/road-sport-vintage-wheel-retro-old.jpg\" alt=\"\" class=\"wp-image-70\" style=\"aspect-ratio:1;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_about\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_about\";s:5:\"title\";s:22:\"_dotcom_imported_about\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:83:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/content-left-with-image-right/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:40:59\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:45;a:20:{s:2:\"ID\";i:269;s:7:\"site_id\";i:231214916;s:5:\"title\";s:40:\"Heading with image and two columns below\";s:4:\"name\";s:40:\"heading-with-image-and-two-columns-below\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4851:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:columns {\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:column {\"width\":\"45{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:45{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"align\":\"wide\"} -->\n<h2 class=\"wp-block-heading alignwide\">Create anything</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"60{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":270,\"aspectRatio\":\"16/9\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/07/bc60cf21a37262b760535f0448a60acf-1.jpeg\" alt=\"\" class=\"wp-image-270\" style=\"aspect-ratio:16/9;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"420px\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Unleash your creativity at our pottery workshop</h3>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph -->\n<p>Join us for an immersive pottery workshop where you can explore the art of shaping clay. Learn techniques from experienced artisans, unleash your creativity, and create your own unique pieces to take home. Perfect for all skill levels!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Book now</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:94:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/heading-with-image-and-two-columns-below/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:35:10\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:46;a:20:{s:2:\"ID\";i:264;s:7:\"site_id\";i:231214916;s:5:\"title\";s:31:\"Heading with three images below\";s:4:\"name\";s:31:\"heading-with-three-images-below\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4705:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|60\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"66.66{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:66.66{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"align\":\"wide\"} -->\n<h2 class=\"wp-block-heading alignwide\">Beyond function: vases as works of art</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"70{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"}}} -->\n<p class=\"has-text-align-left\">We are dedicated to the art of craftsmanship, where each vase is meticulously crafted to perfection. Our passion for detail and commitment to quality shines through in every piece, resulting in vases that are not just functional, but true works of art.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|30\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:image {\"id\":266,\"aspectRatio\":\"2/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/07/a0c4b80dc701de6a1143de003da3ef95-1.jpeg\" alt=\"\" class=\"wp-image-266\" style=\"aspect-ratio:2/3;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":62,\"aspectRatio\":\"2/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/06/plant-white-leaf-flower-vase-green.jpg\" alt=\"\" class=\"wp-image-62\" style=\"aspect-ratio:2/3;object-fit:cover\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":69,\"aspectRatio\":\"2/3\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/tree-branch-plant-wood-leaf-flower.jpg\" alt=\"\" class=\"wp-image-69\" style=\"aspect-ratio:2/3;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:85:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/heading-with-three-images-below/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:26:33\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:47;a:20:{s:2:\"ID\";i:261;s:7:\"site_id\";i:231214916;s:5:\"title\";s:52:\"Full-width cover with heading, paragraph, and button\";s:4:\"name\";s:50:\"full-width-cover-with-heading-paragraph-and-button\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4040:\"<!-- wp:cover {\"url\":\"https://s0.wp.com/i/woo-block-patterns/2024/07/96bbcf9839d875a42e9aaaada8132a33.jpeg\",\"id\":262,\"dimRatio\":50,\"overlayColor\":\"theme-5\",\"isUserOverlayColor\":true,\"minHeight\":558,\"minHeightUnit\":\"px\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|40\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40);min-height:558px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-theme-5-background-color has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-262\" alt=\"\" src=\"https://s0.wp.com/i/woo-block-patterns/2024/07/96bbcf9839d875a42e9aaaada8132a33.jpeg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"metadata\":{\"name\":\"Content\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"margin-top:0;margin-bottom:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"stretch\",\"width\":\"66.67{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-stretch\" style=\"flex-basis:66.67{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}},\"className\":\"text-balance\",\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center text-balance has-xx-large-font-size\" style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0\">Find your shade</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"300px\"} -->\n<div style=\"height:300px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Explore our exclusive collection of sunglasses, crafted to elevate your look and safeguard your eyes. Find your perfect pair and see the world through a new lens.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"left\",\"orientation\":\"horizontal\"},\"style\":{\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"theme-1\",\"textColor\":\"theme-5\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|theme-5\"}}}}} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link has-theme-5-color has-theme-1-background-color has-text-color has-background has-link-color wp-element-button\">Shop now</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-bottom\"><!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:104:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/full-width-cover-with-heading-paragraph-and-button/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:23:05\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:48;a:20:{s:2:\"ID\";i:259;s:7:\"site_id\";i:231214916;s:5:\"title\";s:30:\"Left-aligned header and button\";s:4:\"name\";s:30:\"left-aligned-header-and-button\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2621:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Welcome to a world of limitless possibilities, where the journey is as exhilarating as the destination.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Learn More</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:84:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/left-aligned-header-and-button/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:20:39\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:49;a:20:{s:2:\"ID\";i:254;s:7:\"site_id\";i:231214916;s:5:\"title\";s:20:\"Left-aligned content\";s:4:\"name\";s:20:\"left-aligned-content\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3792:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"className\":\"alignfull\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|30\"}}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading {\"textAlign\":\"left\",\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading has-text-align-left has-xx-large-font-size\">A world of possibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"0\"}}}} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"80{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|30\"}}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:80{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"70{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"}}} -->\n<p class=\"has-text-align-left\">Welcome to a world of limitless possibilities, where the journey is as exhilarating as the destination, and where every moment is an opportunity to make your mark on the canvas of existence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div><!-- /wp:button -->\n\n<!-- wp:button {\"className\":\"is-style-outline\"} --><div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:74:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/left-aligned-content/\";s:13:\"modified_date\";s:19:\"2024-07-23 14:32:19\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:50;a:20:{s:2:\"ID\";i:252;s:7:\"site_id\";i:231214916;s:5:\"title\";s:32:\"Pull right with wide image below\";s:4:\"name\";s:32:\"pull-right-with-wide-image-below\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3885:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-x-large-font-size\">Ride into adventure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Zoom through the streets on this premium 3-speed bike. Manufactured and assembled in Germany in the 80s.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Shop now</a></div><!-- /wp:button -->\n\n<!-- wp:button {\"className\":\"is-style-outline\"} --><div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\">Discover collection</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"wide\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image alignwide size-full is-style-default\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/road-sport-vintage-wheel-retro-old.jpg\" alt=\"\" class=\"wp-image-70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:86:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/pull-right-with-wide-image-below/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:17:04\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:51;a:20:{s:2:\"ID\";i:249;s:7:\"site_id\";i:231214916;s:5:\"title\";s:39:\"Fullwidth image with content and button\";s:4:\"name\";s:39:\"fullwidth-image-with-content-and-button\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3735:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\",\"categories\":[\"intro\"],\"patternName\":\"a8c/intro-fullwidth-image-with-content-and-button-2\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:0;padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:cover {\"url\":\"https://s1.wp.com/i/woo-block-patterns/2024/07/0ad9cb5f991125c89fc952521795a1e6-1.jpeg\",\"id\":250,\"dimRatio\":0,\"customOverlayColor\":\"#FFF\",\"isUserOverlayColor\":true,\"minHeight\":550,\"minHeightUnit\":\"px\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:550px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\" style=\"background-color:#FFF\"></span><img class=\"wp-block-cover__image-background wp-image-250\" alt=\"\" src=\"https://s1.wp.com/i/woo-block-patterns/2024/07/0ad9cb5f991125c89fc952521795a1e6-1.jpeg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"center\",\"textColor\":\"ast-global-color-2\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-ast-global-color-2-color has-text-color\">Vintage vinyl treasures</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Step back in time and groove to the melodies of vinyl records. Dive into our eclectic collection, where each record spins tales of nostalgia and magic.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Shop vinyl records</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:93:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/fullwidth-image-with-content-and-button/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:15:23\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:52;a:20:{s:2:\"ID\";i:247;s:7:\"site_id\";i:231214916;s:5:\"title\";s:26:\"Large left-aligned heading\";s:4:\"name\";s:26:\"large-left-aligned-heading\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2447:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\",\"categories\":[\"intro\"],\"patternName\":\"a8c/intro-left-aligned-header-and-button\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">A world filled with boundless opportunities and endless potential</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:80:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/large-left-aligned-heading/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:11:33\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:53;a:20:{s:2:\"ID\";i:244;s:7:\"site_id\";i:231214916;s:5:\"title\";s:37:\"Centered heading with two column text\";s:4:\"name\";s:37:\"centered-heading-with-two-column-text\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4449:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\",\"categories\":[\"intro\"],\"patternName\":\"a8c/centered-heading-with-two-column-text\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"15{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:15{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"70{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:70{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"textAlign\":\"center\",\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xx-large-font-size\">Welcome home</h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textAlign\":\"center\"} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\">Get Started</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"15{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:15{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>We believe that your home should be a reflection of your unique style and personality. Our curated collection of home essentials and decor pieces is designed to help you create a space that feels truly like you. From cozy furnishings to stylish accents, we offer everything you need to turn your house into a home.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>Our expert designers will work closely with you to bring your vision to life. From furniture selection to color schemes, we\'ll provide professional advice and guidance every step of the way to help you achieve the perfect balance of comfort, functionality, and aesthetic appeal.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:91:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/centered-heading-with-two-column-text/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:08:38\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:54;a:20:{s:2:\"ID\";i:243;s:7:\"site_id\";i:231214916;s:5:\"title\";s:33:\"Two column with image and content\";s:4:\"name\";s:35:\"two-column-with-image-and-content-2\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3498:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":69,\"aspectRatio\":\"3/4\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/tree-branch-plant-wood-leaf-flower.jpg\" alt=\"\" class=\"wp-image-69\" style=\"aspect-ratio:3/4;object-fit:cover\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:heading {\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading has-xx-large-font-size\">Elevate your greenery</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Spruce up your plants with our delightful ceramic pots, lovingly crafted to bring joy to your indoor and outdoor spaces.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Shop now</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:89:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/two-column-with-image-and-content-2/\";s:13:\"modified_date\";s:19:\"2024-07-04 14:02:00\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:55;a:20:{s:2:\"ID\";i:242;s:7:\"site_id\";i:231214916;s:5:\"title\";s:16:\"Centered content\";s:4:\"name\";s:18:\"centered-content-2\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3583:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"60{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"textAlign\":\"center\",\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-xx-large-font-size\">Ride into adventure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"70{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"}}} -->\n<p class=\"has-text-align-center\">Welcome to your ultimate destination for high-quality bikes that fuel your passion for adventure. Whether you\'re a casual rider, a mountain biking enthusiast, or a road cycling pro, our diverse range of bikes promises to elevate your riding experience. Each bike is crafted with precision, combining cutting-edge technology and superior craftsmanship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Explore our collection</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:72:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/centered-content-2/\";s:13:\"modified_date\";s:19:\"2024-07-01 15:06:53\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:56;a:20:{s:2:\"ID\";i:241;s:7:\"site_id\";i:231214916;s:5:\"title\";s:39:\"Content with button and fullwidth image\";s:4:\"name\";s:41:\"content-with-button-and-fullwidth-image-3\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3540:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"0\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:0;padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"center\",\"textColor\":\"ast-global-color-2\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-ast-global-color-2-color has-text-color\">Sit back and relax</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">With a wide range of designer chairs to elevate your living space.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Shop now</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:cover {\"url\":\"https://s1.wp.com/i/woo-block-patterns/2024/06/fa0e410e907dc5ba65806d0a9e45c89c.jpeg\",\"id\":231,\"dimRatio\":0,\"customOverlayColor\":\"#FFF\",\"isUserOverlayColor\":true,\"minHeight\":550,\"minHeightUnit\":\"px\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:550px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\" style=\"background-color:#FFF\"></span><img class=\"wp-block-cover__image-background wp-image-231\" alt=\"\" src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/fa0e410e907dc5ba65806d0a9e45c89c.jpeg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:95:\"https://wooblockpatterns.wpcomstaging.com/2024/07/01/content-with-button-and-fullwidth-image-3/\";s:13:\"modified_date\";s:19:\"2024-07-05 09:58:45\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:57;a:20:{s:2:\"ID\";i:239;s:7:\"site_id\";i:231214916;s:5:\"title\";s:41:\"Left-aligned content overlaid on an image\";s:4:\"name\";s:43:\"left-aligned-content-overlaid-on-an-image-2\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3486:\"<!-- wp:cover {\"url\":\"https://s1.wp.com/i/woo-block-patterns/2024/06/man-person-music-black-and-white-white-photography.jpg\",\"id\":79,\"dimRatio\":30,\"customOverlayColor\":\"#010101\",\"isUserOverlayColor\":true,\"focalPoint\":{\"x\":0.45,\"y\":0.19},\"contentPosition\":\"bottom left\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-cover has-custom-content-position is-position-bottom-left alignfull\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\" style=\"background-color:#010101\"></span><img class=\"wp-block-cover__image-background wp-image-79\" alt=\"\" src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/man-person-music-black-and-white-white-photography.jpg\" style=\"object-position:45{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} 19{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\" data-object-fit=\"cover\" data-object-position=\"45{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} 19{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"metadata\":{\"name\":\"Content\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"margin-top:0;margin-bottom:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:spacer {\"height\":\"var:preset|spacing|80\"} -->\n<div style=\"height:var(--wp--preset--spacing--80)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|20\"}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"700px\",\"wideSize\":\"960px\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"#fefefe\"}}},\"color\":{\"text\":\"#fefefe\"}},\"className\":\"text-balance\",\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left text-balance has-text-color has-link-color has-xx-large-font-size\" style=\"color:#fefefe;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0\">Sounds like no other</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"#fefefe\"}}},\"color\":{\"text\":\"#fefefe\"},\"spacing\":{\"margin\":{\"bottom\":\"var:preset|spacing|30\"}}}} -->\n<p class=\"has-text-align-left has-text-color has-link-color\" style=\"color:#fefefe;margin-bottom:var(--wp--preset--spacing--30)\">Experience your music like never before with our latest generation of hi-fidelity headphones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"theme-1\",\"textColor\":\"theme-5\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|theme-5\"}}}}} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link has-theme-5-color has-theme-1-background-color has-text-color has-background has-link-color wp-element-button\">Shop now</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:97:\"https://wooblockpatterns.wpcomstaging.com/2024/06/28/left-aligned-content-overlaid-on-an-image-2/\";s:13:\"modified_date\";s:19:\"2024-07-05 10:42:03\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:58;a:20:{s:2:\"ID\";i:235;s:7:\"site_id\";i:231214916;s:5:\"title\";s:43:\"Center-aligned content overlaid on an image\";s:4:\"name\";s:44:\"fullwidth-image-with-call-to-action-overlaid\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3467:\"<!-- wp:cover {\"url\":\"https://s0.wp.com/i/woo-block-patterns/2024/06/8d8416beec2ca80653d3b811bf6b1f77.jpeg\",\"id\":237,\"dimRatio\":20,\"customOverlayColor\":\"#010101\",\"isUserOverlayColor\":true,\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\"}},\"color\":{\"text\":\"#ffffff\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#ffffff\"}}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-cover alignfull has-text-color has-link-color\" style=\"color:#ffffff;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-20 has-background-dim\" style=\"background-color:#010101\"></span><img class=\"wp-block-cover__image-background wp-image-237\" alt=\"\" src=\"https://s0.wp.com/i/woo-block-patterns/2024/06/8d8416beec2ca80653d3b811bf6b1f77.jpeg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"metadata\":{\"name\":\"Content\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"margin-top:0;margin-bottom:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:spacer {\"height\":\"var:preset|spacing|70\"} -->\n<div style=\"height:var(--wp--preset--spacing--70)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\",\"contentSize\":\"\",\"wideSize\":\"580px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"#fefefe\"}}},\"color\":{\"text\":\"#fefefe\"}},\"className\":\"text-balance\",\"fontSize\":\"xx-large\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center text-balance has-text-color has-link-color has-xx-large-font-size\" style=\"color:#fefefe;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0\">Find your groove</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"#fefefe\"}}},\"color\":{\"text\":\"#fefefe\"}}} -->\n<p class=\"has-text-align-center has-text-color has-link-color\" style=\"color:#fefefe\">Embark on a musical adventure, where every chord is a step towards harmony. Discover guitars of all shapes, sizes, and melodies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"},\"style\":{\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null}}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"theme-1\",\"textColor\":\"theme-5\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|theme-5\"}}}}} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link has-theme-5-color has-theme-1-background-color has-text-color has-background has-link-color wp-element-button\">Discover collection</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|70\"} -->\n<div style=\"height:var(--wp--preset--spacing--70)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:98:\"https://wooblockpatterns.wpcomstaging.com/2024/06/28/fullwidth-image-with-call-to-action-overlaid/\";s:13:\"modified_date\";s:19:\"2024-07-05 09:24:31\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:59;a:20:{s:2:\"ID\";i:224;s:7:\"site_id\";i:231214916;s:5:\"title\";s:39:\"Fullwidth content with background image\";s:4:\"name\";s:39:\"fullwidth-content-with-background-image\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2606:\"<!-- wp:cover {\"url\":\"https://s0.wp.com/i/woo-block-patterns/2024/06/772d1d20f57861f0aa71dccda165b03e.jpeg\",\"id\":222,\"dimRatio\":0,\"overlayColor\":\"theme-5\",\"isUserOverlayColor\":true,\"minHeightUnit\":\"vh\",\"isDark\":false,\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"className\":\"alignfull\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|20\",\"bottom\":\"var:preset|spacing|20\",\"left\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|40\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--20);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--40)\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-theme-5-background-color has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-222\" alt=\"\" src=\"https://s0.wp.com/i/woo-block-patterns/2024/06/772d1d20f57861f0aa71dccda165b03e.jpeg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"var:preset|spacing|50\"} -->\n<div style=\"height:var(--wp--preset--spacing--50)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"metadata\":{\"name\":\"Content\"},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"xx-large\"} -->\n<p class=\"has-text-align-center has-xx-large-font-size\">Craft your Story</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Welcome to the place where the journey of a thousand stories begins. Embrace the transformative power of writing, and let your voice echo through the pages of time. Join us, and turn your imagination into reality.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|10\",\"style\":{\"layout\":[]}} -->\n<div style=\"height:var(--wp--preset--spacing--10)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Discover more</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|50\"} -->\n<div style=\"height:var(--wp--preset--spacing--50)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:22:\"_dotcom_imported_intro\";a:3:{s:4:\"slug\";s:22:\"_dotcom_imported_intro\";s:5:\"title\";s:22:\"_dotcom_imported_intro\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:93:\"https://wooblockpatterns.wpcomstaging.com/2024/06/28/fullwidth-content-with-background-image/\";s:13:\"modified_date\";s:19:\"2024-07-24 11:18:13\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:60;a:20:{s:2:\"ID\";i:208;s:7:\"site_id\";i:231214916;s:5:\"title\";s:32:\"Small Discount Banner with Image\";s:4:\"name\";s:32:\"small-discount-banner-with-image\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2269:\"<!-- wp:columns {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/small-discount-banner-with-image\",\"name\":\"Small Discount Banner with Image\"},\"style\":{\"color\":{\"background\":\"#fcf8e1\"},\"spacing\":{\"padding\":{\"top\":\"20px\",\"right\":\"20px\",\"bottom\":\"20px\",\"left\":\"20px\"}}}} -->\n<div class=\"wp-block-columns has-background\" style=\"background-color:#fcf8e1;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px\"><!-- wp:column {\"width\":\"45{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:45{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:group {\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\"},\"padding\":{\"left\":\"25px\",\"top\":\"25px\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;padding-top:25px;padding-left:25px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"1\",\"fontSize\":\"30px\"}}} -->\n<p style=\"font-size:30px;font-style:normal;font-weight:300;line-height:1\"><em>Chairs</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0\",\"fontSize\":\"30px\"},\"color\":{\"text\":\"#74227b\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#74227b\"}}}}} -->\n<p class=\"has-text-color has-link-color\" style=\"color:#74227b;font-size:30px;font-style:normal;font-weight:300;line-height:0\"><em>from</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#74227b\"},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"900\",\"fontSize\":\"52px\",\"lineHeight\":\"1.2\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#74227b\"}}}}} -->\n<p class=\"has-text-color has-link-color\" style=\"color:#74227b;font-size:52px;font-style:normal;font-weight:900;line-height:1.2\"><a href=\"https://wooblockpatterns.wpcomstaging.com/shop/\">$149</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":117,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-full\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/06/table-floor-interior-atmosphere-living-room-furniture-square-lg.png\" alt=\"\" class=\"wp-image-117\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:86:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/small-discount-banner-with-image/\";s:13:\"modified_date\";s:19:\"2024-11-06 17:35:31\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:61;a:20:{s:2:\"ID\";i:206;s:7:\"site_id\";i:231214916;s:5:\"title\";s:13:\"Shop by Price\";s:4:\"name\";s:13:\"shop-by-price\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:11069:\"<!-- wp:columns {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/shop-by-price\",\"name\":\"Shop by Price\"},\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":\"10px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;flex-basis:25{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:cover {\"customOverlayColor\":\"#e09300\",\"isUserOverlayColor\":true,\"minHeight\":130,\"minHeightUnit\":\"px\",\"contentPosition\":\"top left\",\"isDark\":false,\"style\":{\"spacing\":{\"blockGap\":\"0em\",\"padding\":{\"top\":\"0.8em\"}}},\"className\":\"is-light has-background-color has-text-color\"} -->\n<div class=\"wp-block-cover is-light has-custom-content-position is-position-top-left has-background-color has-text-color\" style=\"padding-top:0.8em;min-height:130px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e09300\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"left\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"0.7em\",\"lineHeight\":\"1\"},\"spacing\":{\"margin\":{\"top\":\"0px\",\"bottom\":\"5px\"}},\"color\":{\"text\":\"#ffffff\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}}} -->\n<p class=\"has-text-align-left has-text-color has-link-color\" style=\"color:#ffffff;margin-top:0px;margin-bottom:5px;font-size:0.7em;line-height:1\"><a style=\"text-decoration:none\" href=\"/shop/?rating_filter=5\">Highest</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.7em\",\"lineHeight\":\"1\"},\"spacing\":{\"margin\":{\"top\":\"0px\",\"bottom\":\"5px\"}},\"color\":{\"text\":\"#ffffff\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-link-color has-large-font-size\" style=\"color:#ffffff;margin-top:0px;margin-bottom:5px;font-size:0.7em;line-height:1\"><strong><a style=\"text-decoration:none\" href=\"/shop/?rating_filter=5\">rated</a></strong></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"contrast\",\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"},\"spacing\":{\"padding\":{\"left\":\"0\",\"right\":\"0\",\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"is-style-outline\",\"fontSize\":\"small\"} --><div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-contrast-color has-text-color wp-element-button\" href=\"/shop/?rating_filter=5\" style=\"border-style:none;border-width:0px;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><strong>Outdoor Furniture &amp; Accessories</strong></a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":\"10px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;flex-basis:25{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:cover {\"customOverlayColor\":\"#6f64f1\",\"isUserOverlayColor\":true,\"minHeight\":130,\"minHeightUnit\":\"px\",\"contentPosition\":\"top left\",\"style\":{\"spacing\":{\"blockGap\":\"0.8em\",\"padding\":{\"top\":\"0.8em\"}}},\"className\":\"has-background-color has-text-color\"} -->\n<div class=\"wp-block-cover has-custom-content-position is-position-top-left has-background-color has-text-color\" style=\"padding-top:0.8em;min-height:130px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#6f64f1\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"left\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"0.7em\",\"lineHeight\":\"1\"},\"spacing\":{\"margin\":{\"top\":\"0px\",\"bottom\":\"5px\"}},\"color\":{\"text\":\"#ffffff\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}}} -->\n<p class=\"has-text-align-left has-text-color has-link-color\" style=\"color:#ffffff;margin-top:0px;margin-bottom:5px;font-size:0.7em;line-height:1\"><a style=\"text-decoration:none\" href=\"/shop/?max_price=15\">Under</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.7em\",\"lineHeight\":\"1\"},\"spacing\":{\"margin\":{\"top\":\"0px\",\"bottom\":\"5px\"}},\"color\":{\"text\":\"#ffffff\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-link-color has-large-font-size\" style=\"color:#ffffff;margin-top:0px;margin-bottom:5px;font-size:0.7em;line-height:1\"><strong><a style=\"text-decoration:none\" href=\"/shop/?max_price=15\">$15</a></strong></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"contrast\",\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"},\"spacing\":{\"padding\":{\"left\":\"0\",\"right\":\"0\",\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"is-style-outline\",\"fontSize\":\"small\"} --><div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-contrast-color has-text-color wp-element-button\" href=\"/shop/?max_price=15\" style=\"border-style:none;border-width:0px;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n					<strong>Summer Dinning</strong>\n				</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":\"10px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;flex-basis:25{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:cover {\"customOverlayColor\":\"#c1d21c\",\"isUserOverlayColor\":true,\"minHeight\":130,\"minHeightUnit\":\"px\",\"contentPosition\":\"top left\",\"style\":{\"spacing\":{\"blockGap\":\"0.8em\",\"padding\":{\"top\":\"0.8em\"}}},\"className\":\"has-background-color has-text-color\"} -->\n<div class=\"wp-block-cover has-custom-content-position is-position-top-left has-background-color has-text-color\" style=\"padding-top:0.8em;min-height:130px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#c1d21c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"left\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"0.7em\",\"lineHeight\":\"1\"},\"spacing\":{\"margin\":{\"top\":\"0px\",\"bottom\":\"5px\"}},\"color\":{\"text\":\"#ffffff\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}}} -->\n<p class=\"has-text-align-left has-text-color has-link-color\" style=\"color:#ffffff;margin-top:0px;margin-bottom:5px;font-size:0.7em;line-height:1\"><a style=\"text-decoration:none\" href=\"/shop/?max_price=25\">Under</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.7em\",\"lineHeight\":\"1\"},\"spacing\":{\"margin\":{\"top\":\"0px\",\"bottom\":\"5px\"}},\"color\":{\"text\":\"#ffffff\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-link-color has-large-font-size\" style=\"color:#ffffff;margin-top:0px;margin-bottom:5px;font-size:0.7em;line-height:1\"><strong><a style=\"text-decoration:none\" href=\"/shop/?max_price=25\">$25</a></strong></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"contrast\",\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"},\"spacing\":{\"padding\":{\"left\":\"0\",\"right\":\"0\",\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"is-style-outline\",\"fontSize\":\"small\"} --><div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-contrast-color has-text-color wp-element-button\" href=\"/shop/?max_price=25\" style=\"border-style:none;border-width:0px;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n					<strong>Women\'s Styles</strong>\n				</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":\"10px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;flex-basis:25{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:cover {\"customOverlayColor\":\"#10ca99\",\"isUserOverlayColor\":true,\"minHeight\":130,\"minHeightUnit\":\"px\",\"contentPosition\":\"top left\",\"style\":{\"spacing\":{\"blockGap\":\"0.8em\",\"padding\":{\"top\":\"0.8em\"}}},\"className\":\"has-background-color has-text-color\"} -->\n<div class=\"wp-block-cover has-custom-content-position is-position-top-left has-background-color has-text-color\" style=\"padding-top:0.8em;min-height:130px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#10ca99\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"left\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"0.7em\",\"lineHeight\":\"1\"},\"spacing\":{\"margin\":{\"top\":\"0px\",\"bottom\":\"5px\"}},\"color\":{\"text\":\"#ffffff\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}}} -->\n<p class=\"has-text-align-left has-text-color has-link-color\" style=\"color:#ffffff;margin-top:0px;margin-bottom:5px;font-size:0.7em;line-height:1\"><a style=\"text-decoration:none\" href=\"/shop/?max_price=20\">Under</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.7em\",\"lineHeight\":\"1\"},\"spacing\":{\"margin\":{\"top\":\"0px\",\"bottom\":\"5px\"}},\"color\":{\"text\":\"#ffffff\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-link-color has-large-font-size\" style=\"color:#ffffff;margin-top:0px;margin-bottom:5px;font-size:0.7em;line-height:1\"><strong><a style=\"text-decoration:none\" href=\"/shop/?max_price=20\">$20</a></strong></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"contrast\",\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"},\"spacing\":{\"padding\":{\"left\":\"0\",\"right\":\"0\",\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"is-style-outline\",\"fontSize\":\"small\"} --><div class=\"wp-block-button has-custom-font-size is-style-outline has-small-font-size\"><a class=\"wp-block-button__link has-contrast-color has-text-color wp-element-button\" href=\"/shop/?max_price=20\" style=\"border-style:none;border-width:0px;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n					<strong>Kids\' Styles</strong>\n				</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:67:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/shop-by-price/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:41:33\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:62;a:20:{s:2:\"ID\";i:204;s:7:\"site_id\";i:231214916;s:5:\"title\";s:42:\"Product List with Full Product Description\";s:4:\"name\";s:42:\"product-list-with-full-product-description\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3309:\"<!-- wp:query {\"queryId\":18,\"query\":{\"perPage\":\"5\",\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false,\"__woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"]},\"namespace\":\"woocommerce/product-query\",\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-query-product-list-with-full-product-description\",\"name\":\"Product List with Full Product Description\"}} -->\n<div class=\"wp-block-query\"><!-- wp:post-template {\"layout\":{\"type\":\"default\",\"columnCount\":2},\"__woocommerceNamespace\":\"woocommerce/product-query/product-template\"} -->\n<!-- wp:columns {\"isStackedOnMobile\":false} -->\n<div class=\"wp-block-columns is-not-stacked-on-mobile\"><!-- wp:column {\"width\":\"33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:woocommerce/product-image {\"saleBadgeAlign\":\"left\",\"isDescendentOfQueryLoop\":true} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:woocommerce/product-rating {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\"}}}} /-->\n\n<!-- wp:post-terms {\"term\":\"product_cat\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}}} /-->\n\n<!-- wp:post-title {\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}},\"fontSize\":\"large\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /-->\n\n<!-- wp:post-excerpt {\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}},\"fontSize\":\"small\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-summary\"} /-->\n\n<!-- wp:woocommerce/product-sku {\"isDescendentOfQueryLoop\":true} /-->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\"}}}} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:woocommerce/product-button {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\"}}}} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n<!-- /wp:post-template -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<!-- wp:query-pagination-previous /-->\n\n<!-- wp:query-pagination-numbers /-->\n\n<!-- wp:query-pagination-next /-->\n<!-- /wp:query-pagination -->\n\n<!-- wp:query-no-results -->\n<!-- wp:paragraph {\"placeholder\":\"Add text or blocks that will display when a query returns no results.\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:query-no-results --></div>\n<!-- /wp:query -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:96:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-list-with-full-product-description/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:35:59\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:63;a:20:{s:2:\"ID\";i:202;s:7:\"site_id\";i:231214916;s:5:\"title\";s:28:\"Product List with 1:1 Images\";s:4:\"name\";s:27:\"product-list-with-11-images\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2434:\"<!-- wp:query {\"queryId\":16,\"query\":{\"perPage\":\"5\",\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false,\"__woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"]},\"namespace\":\"woocommerce/product-query\",\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-query-product-list-with-1-1-images\",\"name\":\"Product List with 1:1 Images\"}} -->\n<div class=\"wp-block-query\"><!-- wp:post-template {\"layout\":{\"type\":\"default\",\"columnCount\":2},\"__woocommerceNamespace\":\"woocommerce/product-query/product-template\"} -->\n<!-- wp:columns {\"isStackedOnMobile\":false} -->\n<div class=\"wp-block-columns is-not-stacked-on-mobile\"><!-- wp:column {\"width\":\"33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:woocommerce/product-image {\"saleBadgeAlign\":\"left\",\"isDescendentOfQueryLoop\":true} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:woocommerce/product-rating {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\"}}}} /-->\n\n<!-- wp:post-title {\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}},\"fontSize\":\"large\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /-->\n\n<!-- wp:post-excerpt {\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}},\"fontSize\":\"small\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-summary\"} /-->\n\n<!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}}} /-->\n\n<!-- wp:woocommerce/product-button {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}}} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n<!-- /wp:post-template -->\n\n<!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<!-- wp:query-pagination-previous /-->\n\n<!-- wp:query-pagination-numbers /-->\n\n<!-- wp:query-pagination-next /-->\n<!-- /wp:query-pagination -->\n\n<!-- wp:query-no-results -->\n<!-- wp:paragraph {\"placeholder\":\"Add text or blocks that will display when a query returns no results.\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:query-no-results --></div>\n<!-- /wp:query -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:81:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-list-with-11-images/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:35:29\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:64;a:20:{s:2:\"ID\";i:200;s:7:\"site_id\";i:231214916;s:5:\"title\";s:20:\"Minimal Product List\";s:4:\"name\";s:20:\"minimal-product-list\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2060:\"<!-- wp:query {\"queryId\":14,\"query\":{\"perPage\":\"5\",\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false,\"__woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"]},\"namespace\":\"woocommerce/product-query\",\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-query-minimal-product-list\",\"name\":\"Minimal Product List\"}} -->\n<div class=\"wp-block-query\"><!-- wp:post-template {\"layout\":{\"type\":\"default\",\"columnCount\":2},\"__woocommerceNamespace\":\"woocommerce/product-query/product-template\"} -->\n<!-- wp:columns {\"isStackedOnMobile\":false} -->\n<div class=\"wp-block-columns is-not-stacked-on-mobile\"><!-- wp:column {\"width\":\"33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:woocommerce/product-image {\"isDescendentOfQueryLoop\":true} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:woocommerce/product-rating {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\"}}}} /-->\n\n<!-- wp:post-title {\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}},\"fontSize\":\"large\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /-->\n\n<!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}}} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n<!-- /wp:post-template -->\n\n<!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<!-- wp:query-pagination-previous /-->\n\n<!-- wp:query-pagination-numbers /-->\n\n<!-- wp:query-pagination-next /-->\n<!-- /wp:query-pagination -->\n\n<!-- wp:query-no-results -->\n<!-- wp:paragraph {\"placeholder\":\"Add text or blocks that will display when a query returns no results.\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:query-no-results --></div>\n<!-- /wp:query -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:74:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/minimal-product-list/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:34:48\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:65;a:20:{s:2:\"ID\";i:198;s:7:\"site_id\";i:231214916;s:5:\"title\";s:20:\"4-Column Product Row\";s:4:\"name\";s:20:\"4-column-product-row\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2017:\"<!-- wp:query {\"queryId\":10,\"query\":{\"perPage\":\"4\",\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false,\"__woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"]},\"namespace\":\"woocommerce/product-query\",\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-query-4-column-product-row\",\"name\":\"4-Column Product Row\"},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-query\"><!-- wp:post-template {\"layout\":{\"type\":\"grid\",\"columnCount\":4},\"__woocommerceNamespace\":\"woocommerce/product-query/product-template\"} -->\n<!-- wp:woocommerce/product-image {\"isDescendentOfQueryLoop\":true} /-->\n\n<!-- wp:post-title {\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}},\"fontSize\":\"medium\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /-->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\",\"justifyContent\":\"space-between\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-group\"><!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\"}}}} /-->\n\n<!-- wp:woocommerce/product-rating {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\"}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:woocommerce/product-button {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\"}}}} /-->\n<!-- /wp:post-template -->\n\n<!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<!-- wp:query-pagination-previous /-->\n\n<!-- wp:query-pagination-numbers /-->\n\n<!-- wp:query-pagination-next /-->\n<!-- /wp:query-pagination -->\n\n<!-- wp:query-no-results -->\n<!-- wp:paragraph {\"placeholder\":\"Add text or blocks that will display when a query returns no results.\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:query-no-results --></div>\n<!-- /wp:query -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:74:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/4-column-product-row/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:34:06\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:66;a:20:{s:2:\"ID\";i:192;s:7:\"site_id\";i:231214916;s:5:\"title\";s:44:\"Product Listing with Gallery and Description\";s:4:\"name\";s:44:\"product-listing-with-gallery-and-description\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:7230:\"<!-- wp:columns {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-listing-with-gallery-and-description\",\"name\":\"Product Listing with Gallery and Description\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":{\"top\":\"60px\",\"left\":\"60px\"}}}} -->\n<div class=\"wp-block-columns alignwide\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:columns {\"isStackedOnMobile\":false,\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"blockGap\":{\"top\":\"1.5rem\",\"left\":\"1.5rem\"}}}} -->\n<div class=\"wp-block-columns is-not-stacked-on-mobile\" style=\"margin-top:0;margin-bottom:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:column {\"width\":\"15{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"var:preset|spacing|20\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":\"0\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"80px\"}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0;padding-right:var(--wp--preset--spacing--20);padding-bottom:0;padding-left:0;flex-basis:15{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"1rem\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"verticalAlignment\":\"center\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":193,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"color\":\"#dddddd\",\"width\":\"1px\",\"radius\":\"5px\"}},\"className\":\"is-resized\"} -->\n<figure class=\"wp-block-image size-full has-custom-border is-resized\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/desk-table-wood-chair-floor-home-square.png\" alt=\"\" class=\"has-border-color wp-image-193\" style=\"border-color:#dddddd;border-width:1px;border-radius:5px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":194,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"color\":\"#dddddd\",\"width\":\"1px\",\"radius\":\"5px\"}},\"className\":\"is-resized\"} -->\n<figure class=\"wp-block-image size-full has-custom-border is-resized\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/table-floor-interior-atmosphere-living-room-furniture-square-1.png\" alt=\"\" class=\"has-border-color wp-image-194\" style=\"border-color:#dddddd;border-width:1px;border-radius:5px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":195,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"color\":\"#dddddd\",\"width\":\"1px\",\"radius\":\"5px\"}},\"className\":\"is-resized\"} -->\n<figure class=\"wp-block-image size-full has-custom-border is-resized\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/06/table-floor-home-living-room-furniture-room-square.png\" alt=\"\" class=\"has-border-color wp-image-195\" style=\"border-color:#dddddd;border-width:1px;border-radius:5px\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"85{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"blockGap\":\"0\"}}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:85{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:image {\"id\":196,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/06/table-wood-chair-floor-living-room-furniture-vertical.png\" alt=\"\" class=\"wp-image-196\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"48px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"textColor\":\"foreground\"} -->\n<h2 class=\"wp-block-heading has-foreground-color has-text-color\" style=\"font-size:48px;font-style:normal;font-weight:700\">Patterned Upright, Orange and White, Wood Legs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"blockGap\":\"0px\",\"margin\":{\"top\":\"10px\",\"bottom\":\"0px\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:10px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:paragraph {\"textColor\":\"luminous-vivid-amber\"} -->\n<p class=\"has-luminous-vivid-amber-color has-text-color\">★★★★</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe8a4\"},\"spacing\":{\"margin\":{\"right\":\"5px\"}}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe8a4;margin-right:5px\">★</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.7em\"}},\"textColor\":\"foreground\"} -->\n<p class=\"has-foreground-color has-text-color\" style=\"font-size:0.7em\">\n				<strong>4.2</strong>(1,079 reviews)\n			</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\",\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"margin\":{\"top\":\"2px\",\"bottom\":\"0px\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:2px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"1.2em\"}},\"textColor\":\"foreground\"} -->\n<p class=\"has-foreground-color has-text-color\" style=\"font-size:1.2em\">\n				<strong><sup><sub>$</sub></sup>37.49</strong>\n			</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.7em\"},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null},\"color\":{\"text\":\"#7c0a99\"}}} -->\n<p class=\"has-text-color\" style=\"color:#7c0a99;font-size:0.7em\">Save $10 <s>was $47.49</s></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"18px\"}},\"textColor\":\"foreground\"} -->\n<p class=\"has-foreground-color has-text-color\" style=\"font-size:18px\">Designed with your well-being in mind, this chair features a contoured backrest that provides exceptional lumbar support, helping to reduce strain on your back during long hours of sitting. The adjustable height and tilt mechanisms allow you to customize the chair to your preferred sitting position, ensuring a comfortable and productive workday. Upholstered in premium fabric and available in a variety of colors, the Harmony Ergonomic Chair adds a touch of elegance to any room.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"left\":\"80px\",\"right\":\"80px\"}},\"color\":{\"text\":\"#ffffff\",\"background\":\"#000000\"}}} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000;padding-right:80px;padding-left:80px\">Add to cart</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"16px\"}}} -->\n<p style=\"font-size:16px\">SKU 6355793</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:98:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-listing-with-gallery-and-description/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:33:29\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:67;a:20:{s:2:\"ID\";i:188;s:7:\"site_id\";i:231214916;s:5:\"title\";s:12:\"Product Hero\";s:4:\"name\";s:12:\"product-hero\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1616:\"\n<!-- wp:woocommerce/single-product {\"isPreview\":true,\"align\":\"wide\"} -->\n<div class=\"wp-block-woocommerce-single-product alignwide\">\n	<!-- wp:columns -->\n	<div class=\"wp-block-columns\">\n		<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n		<div class=\"wp-block-column is-vertically-aligned-center\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;flex-basis:40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\">\n			<!-- wp:woocommerce/product-image {\"showSaleBadge\":false,\"isDescendentOfSingleProductBlock\":true,\"height\":\"300px\"} /-->\n		</div>\n		<!-- /wp:column -->\n\n		<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"60{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"650px\"}} -->\n		<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:60{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\">\n			<!-- wp:post-title {\"textAlign\":\"\",\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /-->\n\n			<!-- wp:woocommerce/product-price {\"isDescendentOfSingleProductBlock\":true} /-->\n\n			<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n			<div class=\"wp-block-group\">\n				<!-- wp:woocommerce/product-button {\"isDescendentOfSingleProductBlock\":true} /-->\n			</div>\n			<!-- /wp:group -->\n\n			<!-- wp:post-excerpt {\"__woocommerceNamespace\":\"woocommerce/product-query/product-summary\"} /-->\n		</div>\n		<!-- /wp:column -->\n	</div>\n	<!-- /wp:columns -->\n</div>\n<!-- /wp:woocommerce/single-product -->\n\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:66:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-hero/\";s:13:\"modified_date\";s:19:\"2025-02-14 15:20:35\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:68;a:20:{s:2:\"ID\";i:186;s:7:\"site_id\";i:231214916;s:5:\"title\";s:27:\"Featured Products 2 Columns\";s:4:\"name\";s:27:\"featured-products-2-columns\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2625:\"<!-- wp:columns {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/featured-products-2-cols\",\"name\":\"Featured Products 2 Columns\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"66.66{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:query {\"queryId\":8,\"query\":{\"perPage\":\"4\",\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"asc\",\"orderBy\":\"title\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false,\"__woocommerceAttributes\":[],\"__woocommerceStockStatus\":[\"instock\",\"onbackorder\"]},\"namespace\":\"woocommerce/product-query\"} -->\n<div class=\"wp-block-query\"><!-- wp:post-template {\"layout\":{\"type\":\"grid\",\"columnCount\":2},\"__woocommerceNamespace\":\"woocommerce/product-query/product-template\"} -->\n<!-- wp:woocommerce/product-image {\"isDescendentOfQueryLoop\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"24px\",\"top\":\"0\"}}}} /-->\n\n<!-- wp:columns {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-bottom\"><!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:post-title {\"textAlign\":\"left\",\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0rem\",\"top\":\"0\"}}},\"fontSize\":\"medium\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"textAlign\":\"right\",\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0rem\",\"top\":\"0\"}}}} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n<!-- /wp:post-template --></div>\n<!-- /wp:query --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>Fan favorites</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get ready to start the season right. All the fan favorites in one place at the best price.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":50} --><div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wooblockpatterns.wpcomstaging.com/shop/\">Shop All</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:81:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/featured-products-2-columns/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:30:24\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:69;a:20:{s:2:\"ID\";i:182;s:7:\"site_id\";i:231214916;s:5:\"title\";s:23:\"Product Details Pattern\";s:4:\"name\";s:23:\"product-details-pattern\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:8559:\"<!-- wp:columns {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-details-pattern\",\"name\":\"Product Details Pattern\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"0\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"40px\",\"bottom\":\"0\",\"left\":\"0px\"},\"blockGap\":\"0px\"}}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0;padding-right:40px;padding-bottom:0;padding-left:0px\"><!-- wp:image {\"id\":183,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/table-floor-home-living-room-furniture-room.png\" alt=\"\" class=\"wp-image-183\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"0\"},\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"margin\":{\"top\":\"0.2em\",\"bottom\":\"0.2em\"}}}} -->\n<div class=\"wp-block-columns\" style=\"margin-top:0.2em;margin-bottom:0.2em;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"5px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"blockGap\":\"0\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0px;padding-right:5px;padding-bottom:0px;padding-left:0px\"><!-- wp:image {\"id\":184,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/06/table-white-chair-floor-shelf-lamp-square-lg.png\" alt=\"\" class=\"wp-image-184\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:image {\"id\":117,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/06/table-floor-interior-atmosphere-living-room-furniture-square-lg.png\" alt=\"\" class=\"wp-image-117\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-text-color has-x-large-font-size\" style=\"color:#000000\">Luxurious Charcoal Grey Upholstered Sofa</h2>\n<!-- /wp:heading -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"blockGap\":\"0px\",\"margin\":{\"top\":\"10px\",\"bottom\":\"0px\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:10px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#fcb900\"}}} -->\n<p class=\"has-text-color\" style=\"color:#fcb900\">★★★★</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe8a4\"},\"spacing\":{\"margin\":{\"right\":\"5px\"}}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe8a4;margin-right:5px\">★</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.7em\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:0.7em\">  <strong>4.2</strong>(1,079 reviews)</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\",\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"margin\":{\"top\":\"2px\",\"bottom\":\"0px\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:2px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"1.2em\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:1.2em\"><strong><sup><sub>$</sub></sup>158.99</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.7em\"},\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:0.7em\"><s>was $173.99</s></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.7em\"},\"color\":{\"text\":\"#C51313\"}}} -->\n<p class=\"has-text-color\" style=\"color:#C51313;font-size:0.7em\"><strong>9{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} off</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\",\"margin\":{\"top\":\"5px\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:5px\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#00A510\"},\"typography\":{\"fontSize\":\"0.7em\"},\"spacing\":{\"margin\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"}}}} -->\n<p class=\"has-text-color\" style=\"color:#00A510;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;font-size:0.7em\"><strong>Free 2-Day Shipping</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.8em\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:0.8em\">The \"Modern Elegance: Luxurious Charcoal Grey Upholstered Sofa\" harmonizes style and comfort to redefine your living space. This stunning piece is crafted with plush, high-density foam cushions, enveloped in a rich, charcoal grey fabric that is invitingly soft to the touch. Its clean lines and contemporary silhouette are complemented by the sturdy wooden frame, making it a durable yet stylish addition to any home decor. Whether you\'re lounging or entertaining, this sofa promises unrivaled comfort and a look that\'s seamlessly chic.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"text\":\"#ffffff\",\"background\":\"#000000\"}}} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Add to cart</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.8em\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:0.8em\"><strong>Features</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"style\":{\"spacing\":{\"margin\":{\"top\":\"10px\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"color\":{\"text\":\"#000000\"}},\"className\":\"has-foreground-color\"} -->\n<ul style=\"color:#000000;margin-top:10px;margin-right:0;margin-bottom:0;margin-left:0\" class=\"wp-block-list has-foreground-color has-text-color\"><!-- wp:list-item {\"style\":{\"typography\":{\"fontSize\":\"0.8em\"}}} -->\n<li style=\"font-size:0.8em\">Top shelf weight capacity of 100 lbs</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item {\"style\":{\"typography\":{\"fontSize\":\"0.8em\"}}} -->\n<li style=\"font-size:0.8em\">Drawer weight capacity of 50 lbs</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"0.8em\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:0.8em\"><strong>Weight and Dimensions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table {\"hasFixedLayout\":false,\"style\":{\"typography\":{\"fontSize\":\"0.7em\"},\"color\":{\"text\":\"#000000\"}},\"backgroundColor\":\"background\",\"className\":\"is-style-stripes\"} -->\n<figure class=\"wp-block-table is-style-stripes\" style=\"font-size:0.7em\"><table class=\"has-background-background-color has-text-color has-background\" style=\"color:#000000\"><tbody><tr><td>Overall</td><td>36.5\'\' H X 40\'\' W X 20\'\' D</td></tr><tr><td>Drawer Interior</td><td>2\'\' H X 29.25\'\' W X 12.5\'\' D</td></tr><tr><td>Countertop</td><td>40\'\' W X 20\'\' D</td></tr><tr><td>Countertop Thickness</td><td>0.7\'\' H</td></tr><tr><td>Overall Product Weight</td><td>39.6 lb.</td></tr></tbody></table></figure>\n<!-- /wp:table --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:77:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-details-pattern/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:29:31\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:70;a:20:{s:2:\"ID\";i:180;s:7:\"site_id\";i:231214916;s:5:\"title\";s:31:\"Product Details Product Listing\";s:4:\"name\";s:31:\"product-details-product-listing\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1582:\"\n<!-- wp:woocommerce/single-product {\"isPreview\":true} -->\n<div class=\"wp-block-woocommerce-single-product\">\n	<!-- wp:columns -->\n	<div class=\"wp-block-columns\">\n		<!-- wp:column -->\n		<div class=\"wp-block-column\">\n			<!-- wp:post-featured-image {\"height\":\"490px\"} /-->\n\n			<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n			<div class=\"wp-block-group\">\n				<!-- wp:woocommerce/product-rating-stars {\"isDescendentOfSingleProductBlock\":true,\"textColor\":\"luminous-vivid-amber\",\"style\":{\"spacing\":{\"margin\":{\"right\":\"5px\"}}}} /-->\n				<!-- wp:woocommerce/product-average-rating {\"style\":{\"typography\":{\"fontWeight\":\"600\",\"fontSize\":\"14px\"}}} /-->\n				<!-- wp:woocommerce/product-rating-counter {\"isDescendentOfSingleProductBlock\":true,\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"fontSize\":\"14px\"}}} /-->\n			</div>\n			<!-- /wp:group -->\n\n			<!-- wp:post-title {\"textAlign\":\"center\",\"isLink\":true,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"x-large\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /-->\n			<!-- wp:woocommerce/product-price {\"textAlign\":\"center\",\"isDescendentOfSingleProductBlock\":true,\"style\":{\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} /-->\n			<!-- wp:woocommerce/product-button {\"textAlign\":\"center\",\"isDescendentOfSingleProductBlock\":true} /-->\n		</div>\n		<!-- /wp:column -->\n	</div>\n	<!-- /wp:columns -->\n</div>\n<!-- /wp:woocommerce/single-product -->\n\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:85:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-details-product-listing/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:28:16\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:71;a:20:{s:2:\"ID\";i:178;s:7:\"site_id\";i:231214916;s:5:\"title\";s:35:\"Product Collections Newest Arrivals\";s:4:\"name\";s:35:\"product-collections-newest-arrivals\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1993:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-collections-newest-arrivals\",\"name\":\"Product Collections Newest Arrivals\"},\"align\":\"wide\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Our newest arrivals</h3>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wooblockpatterns.wpcomstaging.com/shop/\">More new products</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:query {\"queryId\":6,\"query\":{\"perPage\":\"4\",\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false,\"__woocommerceAttributes\":[],\"__woocommerceStockStatus\":[\"instock\",\"onbackorder\"]},\"namespace\":\"woocommerce/product-query\"} -->\n<div class=\"wp-block-query\"><!-- wp:post-template {\"className\":\"products-block-post-template\",\"layout\":{\"type\":\"grid\",\"columnCount\":4},\"__woocommerceNamespace\":\"woocommerce/product-query/product-template\"} -->\n<!-- wp:woocommerce/product-image {\"isDescendentOfQueryLoop\":true} /-->\n\n<!-- wp:post-title {\"textAlign\":\"center\",\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}},\"fontSize\":\"medium\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /-->\n<!-- /wp:post-template --></div>\n<!-- /wp:query --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:89:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-collections-newest-arrivals/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:26:37\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:72;a:20:{s:2:\"ID\";i:172;s:7:\"site_id\";i:231214916;s:5:\"title\";s:40:\"Product Collections Featured Collections\";s:4:\"name\";s:40:\"product-collections-featured-collections\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4771:\"<!-- wp:columns {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-collections-featured-collections\",\"name\":\"Product Collections Featured Collections\"},\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":{\"top\":\"0\",\"left\":\"0\"}}}} -->\n<div class=\"wp-block-columns alignwide\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:column {\"width\":\"50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"30px\",\"right\":\"30px\",\"bottom\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#f3edd8\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-column has-background\" style=\"background-color:#f3edd8;padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px;flex-basis:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"},\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-text-color has-x-large-font-size\" style=\"color:#000000;font-style:normal;font-weight:700\">Tech gifts under $100</h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"left\":\"18px\",\"right\":\"18px\",\"top\":\"9px\",\"bottom\":\"9px\"}},\"typography\":{\"fontSize\":\"16px\"},\"color\":{\"background\":\"#000000\",\"text\":\"#ffffff\"}}} --><div class=\"wp-block-button has-custom-font-size\" style=\"font-size:16px\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" href=\"https://wooblockpatterns.wpcomstaging.com/shop/\" style=\"color:#ffffff;background-color:#000000;padding-top:9px;padding-right:18px;padding-bottom:9px;padding-left:18px\">Shop tech</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":173,\"width\":\"140px\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/technology-white-camera-photography-vintage-photographer.png\" alt=\"\" class=\"wp-image-173\" style=\"width:140px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":174,\"width\":\"140px\",\"height\":\"100px\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/leather-guitar-typewriter-red-gadget-sofa.png\" alt=\"\" class=\"wp-image-174\" style=\"width:140px;height:100px\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"30px\",\"right\":\"30px\",\"bottom\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#d8f2f3\"}}} -->\n<div class=\"wp-block-column has-background\" style=\"background-color:#d8f2f3;padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px;flex-basis:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"},\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-text-color has-x-large-font-size\" style=\"color:#000000;font-style:normal;font-weight:700\">For the gamers</h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"left\":\"18px\",\"right\":\"18px\",\"top\":\"9px\",\"bottom\":\"9px\"}},\"typography\":{\"fontSize\":\"16px\"},\"color\":{\"background\":\"#000000\",\"text\":\"#ffffff\"}}} --><div class=\"wp-block-button has-custom-font-size\" style=\"font-size:16px\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" href=\"https://wooblockpatterns.wpcomstaging.com/shop/\" style=\"color:#ffffff;background-color:#000000;padding-top:9px;padding-right:18px;padding-bottom:9px;padding-left:18px\">Shop games</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":175,\"width\":\"140px\",\"height\":\"100px\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/06/music-technology-play-equipment-studio-gadget.png\" alt=\"\" class=\"wp-image-175\" style=\"width:140px;height:100px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":176,\"width\":\"140px\",\"height\":\"100px\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/technology-joystick-gadget-console-games-playstation.png\" alt=\"\" class=\"wp-image-176\" style=\"width:140px;height:100px\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:94:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-collections-featured-collections/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:25:38\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:73;a:20:{s:2:\"ID\";i:169;s:7:\"site_id\";i:231214916;s:5:\"title\";s:39:\"Product Collections Featured Collection\";s:4:\"name\";s:39:\"product-collections-featured-collection\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4254:\"<!-- wp:columns {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-collections-featured-collection\",\"name\":\"Product Collections Featured Collection\"},\"align\":\"wide\",\"style\":{\"color\":{\"background\":\"#333333\"},\"spacing\":{\"padding\":{\"top\":\"1.3rem\",\"right\":\"1.3rem\",\"bottom\":\"1.3rem\",\"left\":\"1.3rem\"}}},\"textColor\":\"white\"} -->\n<div class=\"wp-block-columns alignwide has-white-color has-text-color has-background\" style=\"background-color:#333333;padding-top:1.3rem;padding-right:1.3rem;padding-bottom:1.3rem;padding-left:1.3rem\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"padding-right:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40);flex-basis:33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"},\"color\":{\"text\":\"#ffffff\"}},\"fontSize\":\"x-large\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-text-color has-x-large-font-size\" style=\"color:#ffffff;font-style:normal;font-weight:700\">\n			This week\'s popular products		</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"66.66{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:66.66{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:query {\"queryId\":3,\"query\":{\"perPage\":\"3\",\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false,\"__woocommerceAttributes\":[],\"__woocommerceStockStatus\":[\"instock\",\"onbackorder\"]},\"namespace\":\"woocommerce/product-query\"} -->\n<div class=\"wp-block-query\"><!-- wp:post-template {\"layout\":{\"type\":\"grid\",\"columnCount\":3},\"__woocommerceNamespace\":\"woocommerce/product-query/product-template\"} -->\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":\"0\"},\"color\":{\"background\":\"#484848\"},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"4px\",\"bottomRight\":\"4px\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\n<div class=\"wp-block-group has-background\" style=\"border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;background-color:#484848;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:group {\"style\":{\"border\":{\"radius\":{\"topLeft\":\"4px\",\"topRight\":\"4px\"},\"color\":\"#ffffff\",\"style\":\"solid\",\"width\":\"3px\"},\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"},\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group has-border-color\" style=\"border-color:#ffffff;border-style:solid;border-width:3px;border-top-left-radius:4px;border-top-right-radius:4px;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:woocommerce/product-image {\"isDescendentOfQueryLoop\":true,\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\",\"padding\":{\"top\":\"20px\",\"right\":\"20px\",\"left\":\"20px\",\"bottom\":\"10px\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group has-link-color\" style=\"padding-top:20px;padding-right:20px;padding-bottom:10px;padding-left:20px\"><!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"fontFamily\":\"system-font\",\"style\":{\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\"},\"color\":{\"text\":\"#ffffff\"}}} /-->\n\n<!-- wp:post-title {\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"fontSize\":\"16px\",\"textDecoration\":\"none\"},\"color\":{\"text\":\"#ffffff\"}},\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n<!-- /wp:post-template --></div>\n<!-- /wp:query --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:93:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-collections-featured-collection/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:23:59\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:74;a:20:{s:2:\"ID\";i:167;s:7:\"site_id\";i:231214916;s:5:\"title\";s:30:\"Product Collection Simple Grid\";s:4:\"name\";s:30:\"product-collection-simple-grid\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1707:\"<!-- wp:woocommerce/product-collection {\"queryId\":22,\"query\":{\"perPage\":5,\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"asc\",\"orderBy\":\"title\",\"search\":\"\",\"exclude\":[],\"inherit\":false,\"taxQuery\":[],\"isProductCollectionBlock\":true,\"woocommerceOnSale\":false,\"woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"],\"woocommerceAttributes\":[],\"woocommerceHandPickedProducts\":[]},\"tagName\":\"div\",\"displayLayout\":{\"type\":\"flex\",\"columns\":5,\"shrinkColumns\":true},\"queryContextIncludes\":[\"collection\"],\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-collection-simple-grid\",\"name\":\"Product Collection Simple Grid\"}} -->\n<div class=\"wp-block-woocommerce-product-collection\"><!-- wp:woocommerce/product-template -->\n<!-- wp:woocommerce/product-image {\"saleBadgeAlign\":\"left\",\"imageSizing\":\"thumbnail\",\"isDescendentOfQueryLoop\":true,\"style\":{\"typography\":{\"fontSize\":\"0.8rem\"}}} /-->\n\n<!-- wp:post-title {\"textAlign\":\"center\",\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}},\"typography\":{\"fontSize\":\"1rem\"}},\"__woocommerceNamespace\":\"woocommerce/product-collection/product-title\"} /-->\n<!-- /wp:woocommerce/product-template -->\n\n<!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<!-- wp:query-pagination-previous /-->\n\n<!-- wp:query-pagination-numbers /-->\n\n<!-- wp:query-pagination-next /-->\n<!-- /wp:query-pagination -->\n\n<!-- wp:query-no-results -->\n<!-- wp:paragraph {\"placeholder\":\"Add text or blocks that will display when a query returns no results.\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:query-no-results --></div>\n<!-- /wp:woocommerce/product-collection -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:84:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-collection-simple-grid/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:23:15\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:75;a:20:{s:2:\"ID\";i:165;s:7:\"site_id\";i:231214916;s:5:\"title\";s:23:\"Product Collection Rows\";s:4:\"name\";s:23:\"product-collection-rows\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2506:\"<!-- wp:woocommerce/product-collection {\"queryId\":21,\"query\":{\"perPage\":9,\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"asc\",\"orderBy\":\"title\",\"search\":\"\",\"exclude\":[],\"inherit\":false,\"taxQuery\":[],\"isProductCollectionBlock\":true,\"woocommerceOnSale\":false,\"woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"],\"woocommerceAttributes\":[],\"woocommerceHandPickedProducts\":[]},\"tagName\":\"div\",\"displayLayout\":{\"type\":\"list\",\"columns\":3,\"shrinkColumns\":true},\"queryContextIncludes\":[\"collection\"],\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-collection-rows\",\"name\":\"Product Collection Rows\"}} -->\n<div class=\"wp-block-woocommerce-product-collection\"><!-- wp:woocommerce/product-template -->\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:woocommerce/product-image {\"isDescendentOfQueryLoop\":true} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:post-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\"},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"},\"padding\":{\"right\":\"0\",\"left\":\"0\",\"top\":\"0\",\"bottom\":\"0\"}}},\"fontSize\":\"large\",\"__woocommerceNamespace\":\"woocommerce/product-collection/product-title\"} /-->\n\n<!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"fontSize\":\"medium\",\"style\":{\"typography\":{\"lineHeight\":\"1\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} /-->\n\n<!-- wp:woocommerce/product-rating {\"isDescendentOfQueryLoop\":true,\"textColor\":\"luminous-vivid-amber\",\"fontSize\":\"medium\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"0px\"}}}} /-->\n\n<!-- wp:post-excerpt {\"showMoreOnNewLine\":false,\"excerptLength\":23,\"fontSize\":\"small\",\"__woocommerceNamespace\":\"woocommerce/product-collection/product-summary\"} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n<!-- /wp:woocommerce/product-template -->\n\n<!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<!-- wp:query-pagination-previous /-->\n\n<!-- wp:query-pagination-numbers /-->\n\n<!-- wp:query-pagination-next /-->\n<!-- /wp:query-pagination -->\n\n<!-- wp:query-no-results -->\n<!-- wp:paragraph {\"placeholder\":\"Add text or blocks that will display when a query returns no results.\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:query-no-results --></div>\n<!-- /wp:woocommerce/product-collection -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:77:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-collection-rows/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:22:29\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:76;a:20:{s:2:\"ID\";i:163;s:7:\"site_id\";i:231214916;s:5:\"title\";s:23:\"Product Collection Grid\";s:4:\"name\";s:23:\"product-collection-grid\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1807:\"<!-- wp:woocommerce/product-collection {\"queryId\":20,\"query\":{\"perPage\":4,\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"asc\",\"orderBy\":\"title\",\"search\":\"\",\"exclude\":[],\"inherit\":false,\"taxQuery\":[],\"isProductCollectionBlock\":true,\"woocommerceOnSale\":false,\"woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"],\"woocommerceAttributes\":[],\"woocommerceHandPickedProducts\":[]},\"tagName\":\"div\",\"displayLayout\":{\"type\":\"flex\",\"columns\":4,\"shrinkColumns\":true},\"queryContextIncludes\":[\"collection\"],\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-collection-grid\",\"name\":\"Product Collection Grid\"}} -->\n<div class=\"wp-block-woocommerce-product-collection\"><!-- wp:woocommerce/product-template -->\n<!-- wp:woocommerce/product-image {\"imageSizing\":\"thumbnail\",\"isDescendentOfQueryLoop\":true} /-->\n\n<!-- wp:post-title {\"textAlign\":\"left\",\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}},\"typography\":{\"lineHeight\":\"1\"}},\"fontSize\":\"small\",\"__woocommerceNamespace\":\"woocommerce/product-collection/product-title\"} /-->\n\n<!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"0.8rem\",\"lineHeight\":\"1\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} /-->\n<!-- /wp:woocommerce/product-template -->\n\n<!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<!-- wp:query-pagination-previous /-->\n\n<!-- wp:query-pagination-numbers /-->\n\n<!-- wp:query-pagination-next /-->\n<!-- /wp:query-pagination -->\n\n<!-- wp:query-no-results -->\n<!-- wp:paragraph {\"placeholder\":\"Add text or blocks that will display when a query returns no results.\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:query-no-results --></div>\n<!-- /wp:woocommerce/product-collection -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:77:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-collection-grid/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:21:55\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:77;a:20:{s:2:\"ID\";i:161;s:7:\"site_id\";i:231214916;s:5:\"title\";s:28:\"Product Collection Full Grid\";s:4:\"name\";s:28:\"product-collection-full-grid\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1966:\"<!-- wp:woocommerce/product-collection {\"queryId\":19,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"asc\",\"orderBy\":\"title\",\"search\":\"\",\"exclude\":[],\"inherit\":false,\"taxQuery\":[],\"isProductCollectionBlock\":true,\"woocommerceOnSale\":false,\"woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"],\"woocommerceAttributes\":[],\"woocommerceHandPickedProducts\":[]},\"tagName\":\"div\",\"displayLayout\":{\"type\":\"flex\",\"columns\":3,\"shrinkColumns\":true},\"queryContextIncludes\":[\"collection\"],\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-collection-full-grid\",\"name\":\"Product Collection Full Grid\"}} -->\n<div class=\"wp-block-woocommerce-product-collection\"><!-- wp:woocommerce/product-template -->\n<!-- wp:woocommerce/product-image {\"imageSizing\":\"thumbnail\",\"isDescendentOfQueryLoop\":true} /-->\n\n<!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"textAlign\":\"left\",\"fontSize\":\"medium\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"lineHeight\":\"1\"}}} /-->\n\n<!-- wp:post-title {\"textAlign\":\"left\",\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}},\"typography\":{\"lineHeight\":\"1\"}},\"fontSize\":\"small\",\"__woocommerceNamespace\":\"woocommerce/product-collection/product-title\"} /-->\n\n<!-- wp:woocommerce/product-button {\"textAlign\":\"left\",\"width\":50,\"isDescendentOfQueryLoop\":true,\"style\":{\"typography\":{\"fontSize\":\"0.8rem\"}}} /-->\n<!-- /wp:woocommerce/product-template -->\n\n<!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<!-- wp:query-pagination-previous /-->\n\n<!-- wp:query-pagination-numbers /-->\n\n<!-- wp:query-pagination-next /-->\n<!-- /wp:query-pagination -->\n\n<!-- wp:query-no-results -->\n<!-- wp:paragraph {\"placeholder\":\"Add text or blocks that will display when a query returns no results.\"} -->\n<p></p>\n<!-- /wp:paragraph -->\n<!-- /wp:query-no-results --></div>\n<!-- /wp:woocommerce/product-collection -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:82:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-collection-full-grid/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:21:05\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:78;a:20:{s:2:\"ID\";i:158;s:7:\"site_id\";i:231214916;s:5:\"title\";s:25:\"Product Collection Banner\";s:4:\"name\";s:25:\"product-collection-banner\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3025:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/product-collection-banner\",\"name\":\"Product Collection Banner\"},\"align\":\"wide\",\"layout\":{\"type\":\"constrained\",\"contentSize\":\"1000px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"color\":{\"background\":\"#ffedf5\"}}} -->\n<div class=\"wp-block-columns alignwide has-background\" style=\"background-color:#ffedf5\"><!-- wp:column {\"width\":\"58{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:58{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:cover {\"url\":\"https://s0.wp.com/i/woo-block-patterns/2024/06/beach-landscape-sea-coast-nature-person.jpg\",\"id\":159,\"dimRatio\":20,\"customOverlayColor\":\"#9aacbd\",\"minHeight\":430,\"minHeightUnit\":\"px\",\"isDark\":false,\"style\":{\"spacing\":{\"padding\":{\"top\":\"80px\",\"right\":\"80px\",\"bottom\":\"80px\",\"left\":\"80px\"}}}} -->\n<div class=\"wp-block-cover is-light\" style=\"padding-top:80px;padding-right:80px;padding-bottom:80px;padding-left:80px;min-height:430px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-20 has-background-dim\" style=\"background-color:#9aacbd\"></span><img class=\"wp-block-cover__image-background wp-image-159\" alt=\"\" src=\"https://s0.wp.com/i/woo-block-patterns/2024/06/beach-landscape-sea-coast-nature-person.jpg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"40px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1.3\"},\"color\":{\"text\":\"#ffffff\"}},\"fontFamily\":\"inter\"} -->\n<p class=\"has-text-align-center has-text-color has-inter-font-family\" style=\"color:#ffffff;font-size:40px;font-style:normal;font-weight:700;line-height:1.3;text-transform:uppercase\">Brand New for the Holidays</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"22px\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"1.3\"},\"color\":{\"text\":\"#000000\"}},\"fontFamily\":\"inter\"} -->\n<p class=\"has-text-color has-inter-font-family\" style=\"color:#000000;font-size:22px;font-style:normal;font-weight:300;line-height:1.3\">Check out our brand new collection of holiday products and find the right gift for anyone.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"background\":\"#ff7179\",\"text\":\"#000000\"},\"border\":{\"radius\":\"100px\",\"width\":\"0px\",\"style\":\"none\"}}} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" href=\"https://wooblockpatterns.wpcomstaging.com/shop/\" style=\"border-style:none;border-width:0px;border-radius:100px;color:#000000;background-color:#ff7179\">Shop now</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:79:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/product-collection-banner/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:19:42\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:79;a:20:{s:2:\"ID\";i:153;s:7:\"site_id\";i:231214916;s:5:\"title\";s:14:\"Minimal Header\";s:4:\"name\";s:14:\"minimal-header\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1538:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/header-minimal\",\"name\":\"Minimal Header\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"40px\",\"bottom\":\"24px\",\"left\":\"40px\",\"top\":\"24px\"},\"margin\":{\"top\":\"0px\",\"bottom\":\"0px\"}}},\"className\":\"wc-blocks-pattern-header-minimal wc-blocks-header-pattern sticky-header\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull wc-blocks-pattern-header-minimal wc-blocks-header-pattern sticky-header\" style=\"margin-top:0px;margin-bottom:0px;padding-top:24px;padding-right:40px;padding-bottom:24px;padding-left:40px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"20px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"shouldSyncIcon\":false,\"className\":\"is-style-default\"} /-->\n\n<!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:woocommerce/mini-cart /-->\n\n<!-- wp:navigation {\"ref\":24,\"overlayMenu\":\"always\",\"metadata\":{\"ignoredHookedBlocks\":[\"woocommerce/customer-account\"]},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\"}} /-->\n\n<!-- wp:woocommerce/customer-account {\"displayStyle\":\"icon_only\",\"style\":{\"spacing\":{\"margin\":{\"left\":\"0.5em\"}}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:68:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/minimal-header/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:14:02\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:80;a:20:{s:2:\"ID\";i:151;s:7:\"site_id\";i:231214916;s:5:\"title\";s:17:\"Large Header Dark\";s:4:\"name\";s:17:\"large-header-dark\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2045:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/header-large-dark\",\"name\":\"Large Header Dark\"},\"align\":\"full\",\"style\":{\"spacing\":{\"blockGap\":\"0px\",\"padding\":{\"top\":\"1rem\",\"right\":\"1rem\",\"bottom\":\"1rem\",\"left\":\"1rem\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"wc-blocks-header-pattern has-background-color\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull wc-blocks-header-pattern has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"padding-top:1rem;padding-right:1rem;padding-bottom:1rem;padding-left:1rem\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"1rem\"}},\"className\":\"has-small-font-size\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group has-small-font-size\"><!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"placeholder\":\"Search\",\"width\":100,\"widthUnit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"query\":{\"post_type\":\"product\"},\"style\":{\"border\":{\"radius\":\"0px\"}}} /-->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:woocommerce/customer-account {\"displayStyle\":\"icon_only\",\"iconClass\":\"wc-block-customer-account__account-icon\",\"fontSize\":\"small\"} /-->\n\n<!-- wp:woocommerce/mini-cart {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"top\":\"1rem\",\"left\":\"0px\",\"bottom\":\"2rem\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:1rem;padding-bottom:2rem;padding-left:0px\"><!-- wp:site-logo {\"shouldSyncIcon\":false} /-->\n\n<!-- wp:site-title /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"ref\":24,\"textColor\":\"background\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} /--></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:71:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/large-header-dark/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:13:31\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:81;a:20:{s:2:\"ID\";i:149;s:7:\"site_id\";i:231214916;s:5:\"title\";s:12:\"Large Header\";s:4:\"name\";s:12:\"large-header\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2444:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/header-large\",\"name\":\"Large Header\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"40px\",\"left\":\"40px\",\"top\":\"24px\",\"bottom\":\"24px\"}}},\"className\":\"wc-blocks-pattern-header-large wc-blocks-header-pattern\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull wc-blocks-pattern-header-large wc-blocks-header-pattern\" style=\"padding-top:24px;padding-right:40px;padding-bottom:24px;padding-left:40px\"><!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:columns {\"verticalAlignment\":\"center\",\"isStackedOnMobile\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull are-vertically-aligned-center is-not-stacked-on-mobile\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"70{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:70{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"shouldSyncIcon\":false} /-->\n\n<!-- wp:site-title {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"200px\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:woocommerce/customer-account {\"displayStyle\":\"icon_only\",\"iconClass\":\"wc-block-customer-account__account-icon\"} /-->\n\n<!-- wp:woocommerce/mini-cart /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:navigation {\"ref\":24} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-right:0;padding-left:0\"><!-- wp:search {\"label\":\"\",\"showLabel\":false,\"placeholder\":\"Search\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"query\":{\"post_type\":\"product\"},\"style\":{\"border\":{\"radius\":\"0px\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:66:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/large-header/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:13:05\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:82;a:20:{s:2:\"ID\";i:147;s:7:\"site_id\";i:231214916;s:5:\"title\";s:21:\"Essential Header Dark\";s:4:\"name\";s:21:\"essential-header-dark\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1885:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/header-essential-dark\",\"name\":\"Essential Header Dark\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"2{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"bottom\":\"32px\",\"left\":\"2{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"32px\"},\"margin\":{\"top\":\"0px\",\"bottom\":\"0px\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"wc-blocks-header-pattern sticky-header has-background-color\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull wc-blocks-header-pattern sticky-header has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"margin-top:0px;margin-bottom:0px;padding-top:32px;padding-right:2{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};padding-bottom:32px;padding-left:2{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"40px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"shouldSyncIcon\":false} /-->\n\n<!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"placeholder\":\"Search\",\"width\":100,\"widthUnit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"query\":{\"post_type\":\"product\"},\"style\":{\"border\":{\"radius\":\"0px\"}},\"backgroundColor\":\"contrast-2\"} /-->\n\n<!-- wp:navigation {\"ref\":24,\"textColor\":\"background\",\"overlayTextColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:woocommerce/customer-account {\"displayStyle\":\"icon_only\",\"iconStyle\":\"alt\",\"iconClass\":\"wc-block-customer-account__account-icon\"} /-->\n\n<!-- wp:woocommerce/mini-cart /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:75:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/essential-header-dark/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:12:34\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:83;a:20:{s:2:\"ID\";i:145;s:7:\"site_id\";i:231214916;s:5:\"title\";s:16:\"Essential Header\";s:4:\"name\";s:16:\"essential-header\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1298:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/header-essential\",\"name\":\"Essential Header\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"bottom\":\"40px\",\"left\":\"40px\",\"right\":\"40px\"}}},\"className\":\"wc-blocks-pattern-header-essential wc-blocks-header-pattern\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull wc-blocks-pattern-header-essential wc-blocks-header-pattern\" style=\"padding-top:40px;padding-right:40px;padding-bottom:40px;padding-left:40px\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"10px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:woocommerce/mini-cart /-->\n\n<!-- wp:woocommerce/customer-account {\"displayStyle\":\"icon_only\",\"iconClass\":\"wc-block-customer-account__account-icon\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"ref\":24,\"style\":{\"spacing\":{\"blockGap\":\"24px\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:70:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/essential-header/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:12:09\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:84;a:20:{s:2:\"ID\";i:143;s:7:\"site_id\";i:231214916;s:5:\"title\";s:20:\"Centered Header Menu\";s:4:\"name\";s:20:\"centered-header-menu\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2534:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/header-centered-menu\",\"name\":\"Centered Header Menu\"},\"align\":\"full\",\"className\":\"wc-blocks-pattern-header-centered-menu wc-blocks-header-pattern\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull wc-blocks-pattern-header-centered-menu wc-blocks-header-pattern\"><!-- wp:columns {\"verticalAlignment\":\"center\",\"isStackedOnMobile\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"bottom\":\"24px\",\"left\":\"40px\",\"right\":\"40px\"}}}} -->\n<div class=\"wp-block-columns alignfull are-vertically-aligned-center is-not-stacked-on-mobile\" style=\"padding-top:24px;padding-right:40px;padding-bottom:24px;padding-left:40px\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"70{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:70{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"shouldSyncIcon\":false} /-->\n\n<!-- wp:site-title {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"200px\"},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:woocommerce/customer-account {\"displayStyle\":\"icon_only\",\"iconClass\":\"wc-block-customer-account__account-icon\"} /-->\n\n<!-- wp:woocommerce/mini-cart /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator {\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0px\",\"bottom\":\"0px\"}}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator alignfull has-alpha-channel-opacity is-style-wide\" style=\"margin-top:0px;margin-bottom:0px\"/>\n<!-- /wp:separator -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"ref\":24,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\"},\"spacing\":{\"blockGap\":\"30px\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:separator {\"align\":\"full\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator alignfull has-alpha-channel-opacity is-style-wide\"/>\n<!-- /wp:separator --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:74:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/centered-header-menu/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:11:37\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:85;a:20:{s:2:\"ID\";i:141;s:7:\"site_id\";i:231214916;s:5:\"title\";s:17:\"Footer with menus\";s:4:\"name\";s:17:\"footer-with-menus\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2902:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/footer-with-3-menus\",\"name\":\"Footer with menus\"},\"align\":\"full\",\"style\":{\"spacing\":{\"blockGap\":\"40px\",\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"40px\",\"left\":\"40px\"}}},\"className\":\"wc-blocks-pattern-footer-with-3-menus wc-blocks-footer-pattern\"} -->\n<div class=\"wp-block-group alignfull wc-blocks-pattern-footer-with-3-menus wc-blocks-footer-pattern\" style=\"padding-top:40px;padding-right:40px;padding-bottom:40px;padding-left:40px\"><!-- wp:columns {\"style\":{\"spacing\":{\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"className\":\"are-vertically-aligned-top\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-top\" style=\"padding-right:0;padding-left:0\"><!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"60{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:60{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"32px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:columns {\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"var:preset|spacing|50\"}},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}}} -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:navigation {\"ref\":24,\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"},\"style\":{\"spacing\":{\"blockGap\":\"10px\"}}} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"10{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"stretch\",\"width\":\"30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"blockGap\":\"60px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-stretch\" style=\"flex-basis:30{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"placeholder\":\"Search\",\"width\":100,\"widthUnit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"query\":{\"post_type\":\"product\"},\"style\":{\"border\":{\"radius\":\"0px\"}}} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\",\"padding\":{\"right\":\"0\",\"left\":\"0\"},\"margin\":{\"top\":\"56px\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:56px;margin-bottom:0;padding-right:0;padding-left:0\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} /-->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p class=\"has-text-align-right\">\n					Powered by <a href=\"https://wordpress.org\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WordPress</a> with <a href=\"https://woocommerce.com\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WooCommerce</a>				</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:71:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/footer-with-menus/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:11:08\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:86;a:20:{s:2:\"ID\";i:139;s:7:\"site_id\";i:231214916;s:5:\"title\";s:24:\"Footer with 2 Menus Dark\";s:4:\"name\";s:24:\"footer-with-2-menus-dark\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3670:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/footer-with-2-menus-dark\",\"name\":\"Footer with 2 Menus Dark\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"4{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"bottom\":\"32px\",\"left\":\"4{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"},\"blockGap\":\"40px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"wc-blocks-footer-pattern has-background-color\"} -->\n<div class=\"wp-block-group alignfull wc-blocks-footer-pattern has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"padding-top:32px;padding-right:4{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};padding-bottom:32px;padding-left:4{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"70{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:70{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"32px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"shouldSyncIcon\":false} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"ref\":24} /-->\n\n<!-- wp:navigation {\"ref\":24} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"textColor\":\"background\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group has-background-color has-text-color\"><!-- wp:paragraph {\"textColor\":\"background\",\"fontSize\":\"medium\"} -->\n<p class=\"has-background-color has-text-color has-medium-font-size\"><strong>Join our community</strong>\n				</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\">Learn about new products and discounts!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:social-links {\"iconColor\":\"background\",\"iconColorValue\":\"#ffffff\",\"className\":\"is-style-logos-only\"} -->\n<ul class=\"wp-block-social-links has-icon-color is-style-logos-only\"><!-- wp:social-link {\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"service\":\"twitter\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"blockGap\":\"16px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"textColor\":\"background\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-text-color has-link-color\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"12px\"}}} -->\n<p style=\"font-size:12px\">@ 2022</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"12px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><em>\n			Built with <a href=\"https://woocommerce.com/\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WooCommerce</a>		</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:78:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/footer-with-2-menus-dark/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:10:37\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:87;a:20:{s:2:\"ID\";i:137;s:7:\"site_id\";i:231214916;s:5:\"title\";s:19:\"Footer with 2 Menus\";s:4:\"name\";s:19:\"footer-with-2-menus\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3013:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/footer-with-2-menus\",\"name\":\"Footer with 2 Menus\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"4{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"bottom\":\"32px\",\"left\":\"4{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"},\"blockGap\":\"40px\"}},\"className\":\"wc-blocks-footer-pattern\"} -->\n<div class=\"wp-block-group alignfull wc-blocks-footer-pattern\" style=\"padding-top:32px;padding-right:4{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};padding-bottom:32px;padding-left:4{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"70{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:70{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"32px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"shouldSyncIcon\":false} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"ref\":24} /-->\n\n<!-- wp:navigation {\"ref\":24} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\"><strong>Join our community</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\">Learn about new products and discounts!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:social-links {\"className\":\"is-style-logos-only\"} -->\n<ul class=\"wp-block-social-links is-style-logos-only\"><!-- wp:social-link {\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"service\":\"twitter\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"blockGap\":\"16px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"12px\"}}} -->\n<p style=\"font-size:12px\">@ 2022</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"12px\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><em>\n			Built with <a href=\"https://woocommerce.com/\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WooCommerce</a>		</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:73:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/footer-with-2-menus/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:10:01\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:88;a:20:{s:2:\"ID\";i:135;s:7:\"site_id\";i:231214916;s:5:\"title\";s:23:\"Footer with Simple Menu\";s:4:\"name\";s:23:\"footer-with-simple-menu\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2412:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/footer-simple-menu\",\"name\":\"Footer with Simple Menu\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"bottom\":\"40px\",\"left\":\"40px\",\"right\":\"40px\"}}},\"className\":\"wc-blocks-pattern-footer-simple-menu wc-blocks-footer-pattern\"} -->\n<div class=\"wp-block-group alignfull wc-blocks-pattern-footer-simple-menu wc-blocks-footer-pattern\" style=\"padding-top:40px;padding-right:40px;padding-bottom:40px;padding-left:40px\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-right:0;padding-left:0\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"placeholder\":\"Search\",\"width\":100,\"widthUnit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"query\":{\"post_type\":\"product\"},\"style\":{\"border\":{\"radius\":\"0px\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"ref\":24,\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"horizontal\",\"justifyContent\":\"left\",\"flexWrap\":\"wrap\"},\"style\":{\"spacing\":{\"blockGap\":\"24px\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:separator {\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\"}}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator alignfull has-alpha-channel-opacity is-style-wide\" style=\"margin-top:var(--wp--preset--spacing--40);margin-bottom:var(--wp--preset--spacing--40)\"/>\n<!-- /wp:separator -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"5px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title /-->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">\n			Powered by <a href=\"https://wordpress.org\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WordPress</a> with <a href=\"https://woocommerce.com\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WooCommerce</a>		</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:77:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/footer-with-simple-menu/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:09:23\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:89;a:20:{s:2:\"ID\";i:133;s:7:\"site_id\";i:231214916;s:5:\"title\";s:18:\"Simple Footer Dark\";s:4:\"name\";s:18:\"simple-footer-dark\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2951:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/footer-simple-dark\",\"name\":\"Simple Footer Dark\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"48px\",\"bottom\":\"32px\",\"left\":\"48px\"},\"blockGap\":\"40px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"wc-blocks-footer-pattern has-background-color\"} -->\n<div class=\"wp-block-group alignfull wc-blocks-footer-pattern has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"32px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:woocommerce/customer-account {\"fontSize\":\"small\"} /-->\n\n<!-- wp:navigation {\"ref\":24} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:social-links {\"iconColor\":\"background\",\"iconColorValue\":\"#ffffff\",\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<ul class=\"wp-block-social-links has-icon-color is-style-logos-only\"><!-- wp:social-link {\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"service\":\"twitter\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"blockGap\":\"12px\"}},\"textColor\":\"background\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-text-color\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"12px\"}}} -->\n<p style=\"font-size:12px\">@ 2022</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"12px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><em>\n			Built with <a href=\"https://woocommerce.com/\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WooCommerce</a>		</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:72:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/simple-footer-dark/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:08:48\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:90;a:20:{s:2:\"ID\";i:131;s:7:\"site_id\";i:231214916;s:5:\"title\";s:13:\"Simple Footer\";s:4:\"name\";s:13:\"simple-footer\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2499:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/footer-simple\",\"name\":\"Simple Footer\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"48px\",\"bottom\":\"32px\",\"left\":\"48px\"},\"blockGap\":\"40px\"}},\"className\":\"wc-blocks-footer-pattern\"} -->\n<div class=\"wp-block-group alignfull wc-blocks-footer-pattern\" style=\"padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"32px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:woocommerce/customer-account {\"fontSize\":\"small\"} /-->\n\n<!-- wp:navigation {\"ref\":24} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:social-links {\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<ul class=\"wp-block-social-links is-style-logos-only\"><!-- wp:social-link {\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"service\":\"twitter\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"blockGap\":\"12px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"12px\"}}} -->\n<p style=\"font-size:12px\">@ 2022</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"12px\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><em>\n			Built with <a href=\"https://woocommerce.com/\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WooCommerce</a>		</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:67:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/simple-footer/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:07:40\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:91;a:20:{s:2:\"ID\";i:129;s:7:\"site_id\";i:231214916;s:5:\"title\";s:17:\"Large Footer Dark\";s:4:\"name\";s:17:\"large-footer-dark\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:4192:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/footer-large-dark\",\"name\":\"Large Footer Dark\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"4{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"bottom\":\"32px\",\"left\":\"4{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"},\"blockGap\":\"40px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"wc-blocks-footer-pattern has-background-color\"} -->\n<div class=\"wp-block-group alignfull wc-blocks-footer-pattern has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"padding-top:32px;padding-right:4{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};padding-bottom:32px;padding-left:4{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"45{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"50px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:50px;flex-basis:45{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"textColor\":\"background\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group has-background-color has-text-color\"><!-- wp:site-logo /-->\n\n<!-- wp:spacer {\"height\":\"0px\",\"style\":{\"layout\":{\"flexSize\":\"30px\",\"selfStretch\":\"fixed\"}}} -->\n<div style=\"height:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":5} -->\n<h5 class=\"wp-block-heading\">Join the community</h5>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Learn about new products and discounts!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"0px\",\"style\":{\"layout\":{\"flexSize\":\"20px\",\"selfStretch\":\"fixed\"}}} -->\n<div style=\"height:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:social-links {\"iconColor\":\"background\",\"iconColorValue\":\"#ffffff\",\"size\":\"has-small-icon-size\",\"className\":\"is-style-logos-only\"} -->\n<ul class=\"wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only\"><!-- wp:social-link {\"url\":\"https://www.facebook.com\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://www.x.com\",\"service\":\"x\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://www.instagram.com\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0px;flex-basis:20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:navigation {\"ref\":24,\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:navigation {\"ref\":24,\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:woocommerce/customer-account {\"displayStyle\":\"text_only\",\"fontSize\":\"small\"} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"blockGap\":\"10px\"}},\"textColor\":\"background\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-text-color\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"textColor\":\"background\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group has-background-color has-text-color has-link-color\"><!-- wp:paragraph -->\n<p>@ 2024</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:site-title /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p><em>\n			Built with <a href=\"https://woocommerce.com/\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WooCommerce</a>		</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:71:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/large-footer-dark/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:06:19\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:92;a:20:{s:2:\"ID\";i:125;s:7:\"site_id\";i:231214916;s:5:\"title\";s:12:\"Large Footer\";s:4:\"name\";s:12:\"large-footer\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3605:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/footer-large\",\"name\":\"Large Footer\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"40px\",\"left\":\"40px\"},\"blockGap\":\"40px\"}},\"className\":\"wc-blocks-pattern-footer-large wc-blocks-footer-pattern\"} -->\n<div class=\"wp-block-group alignfull wc-blocks-pattern-footer-large wc-blocks-footer-pattern\" style=\"padding-top:40px;padding-right:40px;padding-bottom:40px;padding-left:40px\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"32px\",\"padding\":{\"right\":\"0px\",\"left\":\"0px\"}}}} -->\n<div class=\"wp-block-columns alignwide\" style=\"padding-right:0px;padding-left:0px\"><!-- wp:column {\"width\":\"60{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"50px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:50px;flex-basis:60{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:heading {\"level\":5,\"style\":{\"typography\":{\"textTransform\":\"none\"},\"spacing\":{\"margin\":{\"top\":\"40px\"}}}} -->\n<h5 class=\"wp-block-heading\" style=\"margin-top:40px;text-transform:none\">Join the community</h5>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"40px\"}}}} -->\n<p style=\"margin-bottom:40px\">Learn about new products and discounts</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-small-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"16px\"}}},\"className\":\"is-style-logos-only\"} -->\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"https://www.facebook.com\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://www.x.com\",\"service\":\"x\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://www.instagram.com\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://www.twitch.com\",\"service\":\"twitch\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-top:0px;flex-basis:20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:navigation {\"ref\":24,\"overlayMenu\":\"never\",\"layout\":{\"overlayMenu\":\"never\",\"type\":\"flex\",\"orientation\":\"vertical\"},\"style\":{\"spacing\":{\"blockGap\":\"10px\"}}} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"blockGap\":\"10px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} /-->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">\n			Powered by <a href=\"https://wordpress.org\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WordPress</a> with <a href=\"https://woocommerce.com\" target=\"_blank\" rel=\"noreferrer nofollow noopener\">WooCommerce</a>		</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:66:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/large-footer/\";s:13:\"modified_date\";s:19:\"2024-06-17 14:05:20\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:93;a:20:{s:2:\"ID\";i:119;s:7:\"site_id\";i:231214916;s:5:\"title\";s:36:\"Featured Products: Fresh &amp; Tasty\";s:4:\"name\";s:29:\"featured-products-fresh-tasty\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:5006:\"<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":120,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"full\"} -->\n<figure class=\"wp-block-image alignfull size-full\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/06/sweet-organic-lemons.png\" alt=\"\" class=\"wp-image-120\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\"},\"margin\":{\"top\":\"5px\",\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns\" style=\"margin-top:5px;margin-bottom:0\"><!-- wp:column {\"width\":\"67{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"typography\":{\"fontWeight\":\"600\"}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-column\" style=\"font-weight:600;flex-basis:67{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Sweet Organic Lemons</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-left has-small-font-size\">from $1.99</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":121,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"full\"} -->\n<figure class=\"wp-block-image alignfull size-full\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/06/fresh-organic-tomatoes.png\" alt=\"\" class=\"wp-image-121\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\"},\"margin\":{\"top\":\"5px\",\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns\" style=\"margin-top:5px;margin-bottom:0\"><!-- wp:column {\"width\":\"67{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"typography\":{\"fontWeight\":\"600\"}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-column\" style=\"font-weight:600;flex-basis:67{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Fresh Organic Tomatoes</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-left has-small-font-size\">from $2.99</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":122,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"full\"} -->\n<figure class=\"wp-block-image alignfull size-full\"><img src=\"https://s2.wp.com/i/woo-block-patterns/2024/06/fresh-lettuce-washed.png\" alt=\"\" class=\"wp-image-122\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\"},\"margin\":{\"top\":\"5px\",\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns\" style=\"margin-top:5px;margin-bottom:0\"><!-- wp:column {\"width\":\"67{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"typography\":{\"fontWeight\":\"600\"}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-column\" style=\"font-weight:600;flex-basis:67{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Fresh Lettuce (Washed)</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-left has-small-font-size\">from $0.99</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":123,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"full\"} -->\n<figure class=\"wp-block-image alignfull size-full\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/russet-organic-potatoes.png\" alt=\"\" class=\"wp-image-123\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\"},\"margin\":{\"top\":\"5px\",\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns\" style=\"margin-top:5px;margin-bottom:0\"><!-- wp:column {\"width\":\"67{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"style\":{\"typography\":{\"fontWeight\":\"600\"}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-column\" style=\"font-weight:600;flex-basis:67{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Russet Organic Potatoes</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\"><!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-left has-small-font-size\">from $1.49</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:83:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/featured-products-fresh-tasty/\";s:13:\"modified_date\";s:19:\"2024-06-17 13:47:45\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:94;a:20:{s:2:\"ID\";i:115;s:7:\"site_id\";i:231214916;s:5:\"title\";s:26:\"Discount Banner with Image\";s:4:\"name\";s:26:\"discount-banner-with-image\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3248:\"<!-- wp:columns {\"verticalAlignment\":\"center\",\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/discount-banner-with-image\",\"name\":\"Discount Banner with Image\"},\"align\":\"wide\",\"style\":{\"color\":{\"background\":\"#254094\"},\"spacing\":{\"padding\":{\"top\":\"30px\",\"right\":\"30px\",\"bottom\":\"30px\",\"left\":\"30px\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center has-background\" style=\"background-color:#254094;padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"15px\"}}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"350px\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:15px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"fontSize\":\"45px\",\"lineHeight\":\"0\"},\"color\":{\"text\":\"#ffffff\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff;font-size:45px;font-style:normal;font-weight:500;line-height:0\">UP TO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#fdf251\"},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"fontSize\":\"90px\",\"lineHeight\":\"0.8\"}}} -->\n<p class=\"has-text-color\" style=\"color:#fdf251;font-size:90px;font-style:normal;font-weight:800;line-height:0.8\">40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} off</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"fontSize\":\"35px\",\"lineHeight\":\"0\"},\"color\":{\"text\":\"#ffffff\"},\"spacing\":{\"margin\":{\"bottom\":\"40px\"}}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff;margin-bottom:40px;font-size:35px;font-style:normal;font-weight:300;line-height:0\">Select products</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"background\":\"#ff7179\",\"text\":\"#ffffff\"},\"border\":{\"radius\":\"40px\",\"width\":\"0px\",\"style\":\"none\"},\"spacing\":{\"padding\":{\"top\":\"10px\",\"bottom\":\"10px\",\"left\":\"30px\",\"right\":\"30px\"}}}} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" href=\"https://wooblockpatterns.wpcomstaging.com/shop/\" style=\"border-style:none;border-width:0px;border-radius:40px;color:#ffffff;background-color:#ff7179;padding-top:10px;padding-right:30px;padding-bottom:10px;padding-left:30px\">Shop now</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":117,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"center\",\"style\":{\"border\":{\"radius\":{\"topLeft\":\"100px\",\"topRight\":\"10px\",\"bottomLeft\":\"10px\",\"bottomRight\":\"100px\"}}}} -->\n<figure class=\"wp-block-image aligncenter size-full has-custom-border\"><img src=\"https://s0.wp.com/i/woo-block-patterns/2024/06/table-floor-interior-atmosphere-living-room-furniture-square-lg.png\" alt=\"\" class=\"wp-image-117\" style=\"border-top-left-radius:100px;border-top-right-radius:10px;border-bottom-left-radius:10px;border-bottom-right-radius:100px\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:80:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/discount-banner-with-image/\";s:13:\"modified_date\";s:19:\"2024-06-17 13:45:36\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:95;a:20:{s:2:\"ID\";i:113;s:7:\"site_id\";i:231214916;s:5:\"title\";s:15:\"Discount banner\";s:4:\"name\";s:15:\"discount-banner\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:2312:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/discount-banner\",\"name\":\"Discount Banner\"},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"470px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\"}},\"color\":{\"background\":\"#254094\"}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#254094;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"fontSize\":\"45px\"},\"color\":{\"text\":\"#ffffff\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff;font-size:45px;font-style:normal;font-weight:500\">UP TO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#fdf251\"},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"fontSize\":\"90px\",\"lineHeight\":\"0.1\"}}} -->\n<p class=\"has-text-color\" style=\"color:#fdf251;font-size:90px;font-style:normal;font-weight:800;line-height:0.1\">40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} off</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"fontSize\":\"35px\"},\"color\":{\"text\":\"#ffffff\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff;font-size:35px;font-style:normal;font-weight:300\">Select products</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"background\":\"#ff7179\",\"text\":\"#ffffff\"},\"border\":{\"radius\":\"40px\",\"width\":\"0px\",\"style\":\"none\"},\"spacing\":{\"padding\":{\"top\":\"10px\",\"bottom\":\"10px\",\"left\":\"30px\",\"right\":\"30px\"}}}} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" href=\"https://wooblockpatterns.wpcomstaging.com/shop/\" style=\"border-style:none;border-width:0px;border-radius:40px;color:#ffffff;background-color:#ff7179;padding-top:10px;padding-right:30px;padding-bottom:10px;padding-left:30px\">\n					Shop now\n				</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:16:\"_woo_woocommerce\";a:3:{s:4:\"slug\";s:16:\"_woo_woocommerce\";s:5:\"title\";s:16:\"_woo_WooCommerce\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:69:\"https://wooblockpatterns.wpcomstaging.com/2024/06/17/discount-banner/\";s:13:\"modified_date\";s:19:\"2024-06-17 13:39:37\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:96;a:20:{s:2:\"ID\";i:99;s:7:\"site_id\";i:231214916;s:5:\"title\";s:23:\"Featured Category Focus\";s:4:\"name\";s:22:\"feature-category-focus\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:1621:\"<!-- wp:group {\"metadata\":{\"categories\":[\"woo-commerce\"],\"patternName\":\"woocommerce-blocks/featured-category-focus\",\"name\":\"Featured Category Focus\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|70\",\"right\":\"var:preset|spacing|70\",\"bottom\":\"var:preset|spacing|70\",\"left\":\"var:preset|spacing|70\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--70);padding-right:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--70)\"><!-- wp:image {\"id\":100,\"width\":\"469px\",\"height\":\"348px\",\"scale\":\"cover\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"https://s1.wp.com/i/woo-block-patterns/2024/06/white-black-black-and-white-photograph-monochrome-photography.jpg\" alt=\"\" class=\"wp-image-100\" style=\"object-fit:cover;width:469px;height:348px\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">Black and white high-quality prints</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"border\":{\"width\":\"0px\",\"style\":\"none\"}}} --><div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wooblockpatterns.wpcomstaging.com/shop/\" style=\"border-style:none;border-width:0px\">Shop prints</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:0:{}s:10:\"categories\";a:1:{s:21:\"_woo_featured_selling\";a:3:{s:4:\"slug\";s:21:\"_woo_featured_selling\";s:5:\"title\";s:21:\"_woo_featured_selling\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:76:\"https://wooblockpatterns.wpcomstaging.com/2024/06/14/feature-category-focus/\";s:13:\"modified_date\";s:19:\"2024-07-18 16:17:19\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:97;a:20:{s:2:\"ID\";i:90;s:7:\"site_id\";i:231214916;s:5:\"title\";s:27:\"Large Image Product Gallery\";s:4:\"name\";s:27:\"large-image-product-gallery\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3144:\"<!-- wp:group {\"metadata\":{\"name\":\"Large Image Product Gallery\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:query {\"queryId\":3,\"query\":{\"perPage\":\"4\",\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false,\"__woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"]},\"namespace\":\"woocommerce/product-query\"} -->\n<div class=\"wp-block-query\"><!-- wp:post-template {\"layout\":{\"type\":\"grid\",\"columnCount\":2},\"__woocommerceNamespace\":\"woocommerce/product-query/product-template\"} -->\n<!-- wp:woocommerce/product-image {\"saleBadgeAlign\":\"left\",\"isDescendentOfQueryLoop\":true,\"aspectRatio\":\"2/3\"} /-->\n\n<!-- wp:post-title {\"textAlign\":\"center\",\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}},\"fontSize\":\"medium\",\"__woocommerceNamespace\":\"woocommerce/product-query/product-title\"} /-->\n\n<!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"textAlign\":\"center\",\"fontSize\":\"small\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\"}}}} /-->\n<!-- /wp:post-template --></div>\n<!-- /wp:query -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:21:\"_woo_featured_selling\";a:3:{s:4:\"slug\";s:21:\"_woo_featured_selling\";s:5:\"title\";s:21:\"_woo_featured_selling\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:81:\"https://wooblockpatterns.wpcomstaging.com/2024/06/14/large-image-product-gallery/\";s:13:\"modified_date\";s:19:\"2024-07-02 10:55:34\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}i:98;a:20:{s:2:\"ID\";i:83;s:7:\"site_id\";i:231214916;s:5:\"title\";s:28:\"Product Collection 3 Columns\";s:4:\"name\";s:28:\"product-collection-3-columns\";s:11:\"description\";s:0:\"\";s:14:\"ai_description\";s:0:\"\";s:4:\"html\";s:3351:\"<!-- wp:group {\"metadata\":{\"name\":\"Product Collection 3 Columns\"},\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"bottom\":\"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\",\"left\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\",\"right\":\"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))\"><!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:woocommerce/product-collection {\"queryId\":26,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"asc\",\"orderBy\":\"title\",\"search\":\"\",\"exclude\":[],\"inherit\":false,\"taxQuery\":[],\"isProductCollectionBlock\":true,\"woocommerceOnSale\":false,\"woocommerceStockStatus\":[\"instock\",\"outofstock\",\"onbackorder\"],\"woocommerceAttributes\":[],\"woocommerceHandPickedProducts\":[]},\"tagName\":\"div\",\"displayLayout\":{\"type\":\"flex\",\"columns\":3},\"queryContextIncludes\":[\"collection\"],\"align\":\"wide\"} -->\n<div class=\"wp-block-woocommerce-product-collection alignwide\"><!-- wp:woocommerce/product-template -->\n<!-- wp:woocommerce/product-image {\"isDescendentOfQueryLoop\":true,\"aspectRatio\":\"3/5\"} /-->\n\n<!-- wp:woocommerce/product-rating {\"isDescendentOfQueryLoop\":true,\"textAlign\":\"center\"} /-->\n\n<!-- wp:post-title {\"textAlign\":\"center\",\"level\":3,\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0.75rem\",\"top\":\"0\"}}},\"fontSize\":\"medium\",\"__woocommerceNamespace\":\"woocommerce/product-collection/product-title\"} /-->\n\n<!-- wp:woocommerce/product-price {\"isDescendentOfQueryLoop\":true,\"textAlign\":\"center\",\"fontSize\":\"small\"} /-->\n<!-- /wp:woocommerce/product-template --></div>\n<!-- /wp:woocommerce/product-collection -->\n\n<!-- wp:spacer {\"height\":\"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))\"} -->\n<div style=\"height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";s:14:\"disallow_after\";a:0:{}s:12:\"dependencies\";a:1:{i:0;s:11:\"woocommerce\";}s:10:\"categories\";a:1:{s:21:\"_woo_featured_selling\";a:3:{s:4:\"slug\";s:21:\"_woo_featured_selling\";s:5:\"title\";s:21:\"_woo_featured_selling\";s:11:\"description\";s:0:\"\";}}s:13:\"subcategories\";a:0:{}s:24:\"virtual_theme_categories\";a:0:{}s:4:\"tags\";a:0:{}s:12:\"pattern_meta\";a:0:{}s:10:\"source_url\";s:82:\"https://wooblockpatterns.wpcomstaging.com/2024/06/14/product-collection-3-columns/\";s:13:\"modified_date\";s:19:\"2024-07-02 10:35:33\";s:12:\"preview_data\";a:0:{}s:23:\"pattern_design_metadata\";a:7:{s:9:\"alignment\";a:0:{}s:12:\"text_density\";a:0:{}s:13:\"media_density\";a:0:{}s:11:\"personality\";a:0:{}s:14:\"next_alignment\";a:0:{}s:17:\"next_text_density\";a:0:{}s:18:\"next_media_density\";a:0:{}}s:9:\"post_type\";s:8:\"wp_block\";s:22:\"is_included_in_big_sky\";i:0;}}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608069','_transient_timeout_elementor_unread_notifications_17','1781109563','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608070','_transient_elementor_unread_notifications_17','a:20:{i:0;s:15:\"4.1-atomic-form\";i:1;s:21:\"cookie-consent-launch\";i:2;s:17:\"angie-super-admin\";i:3;s:11:\"4.0-default\";i:4;s:15:\"angie-revisions\";i:5;s:16:\"4.0-atomic-forms\";i:6;s:19:\"angie-cloud-library\";i:7;s:16:\"4.0-interactions\";i:8;s:22:\"4.0-sync-design-system\";i:9;s:12:\"angie-launch\";i:10;s:15:\"partner-program\";i:11;s:13:\"manage-launch\";i:12;s:15:\"components-3.35\";i:13;s:10:\"one-launch\";i:14;s:16:\"atomic-tabs-3.34\";i:15;s:22:\"variables-manager-3.33\";i:16;s:14:\"ally-assistant\";i:17;s:20:\"image-optimizer-3.19\";i:18;s:20:\"5-star-rating-prompt\";i:19;s:23:\"site-mailer-introducing\";}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608082','_transient_timeout_wc_order_2180_needs_processing','1781193999','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608083','_transient_wc_order_2180_needs_processing','1','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608084','_transient_timeout_order_id_wc_order_hst7fbyxrjbbs','1781111200','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608085','_transient_order_id_wc_order_hst7fbyxrjbbs','2180','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608086','_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');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608087','_transient_timeout_wcf_user_t_54ae0278554661eeb53a8a11d4b72d_checkout_2161','1781109409','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608088','_transient_wcf_user_t_54ae0278554661eeb53a8a11d4b72d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:900;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:900;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608089','_transient_timeout_cartflows_data_2159_82d33ac4f12a6b77bfa93bc848ee3330','1781109409','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608090','_transient_cartflows_data_2159_82d33ac4f12a6b77bfa93bc848ee3330','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608093','_transient_timeout_wcf_user_17_checkout_2161','1781242835','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608094','_transient_wcf_user_17_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608095','_transient_timeout_cartflows_data_2159_4cb7ca42304d5cb552a4e7eea0b836f4','1781109766','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608096','_transient_cartflows_data_2159_4cb7ca42304d5cb552a4e7eea0b836f4','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608097','_transient_timeout_wcf_user_t_26422df7e8c5cec7427f97b2872294_checkout_2161','1781110102','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608098','_transient_wcf_user_t_26422df7e8c5cec7427f97b2872294_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608099','_transient_timeout_cartflows_data_2159_b8696d1f216a586db55f4556be2bb2d5','1781110109','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608100','_transient_cartflows_data_2159_b8696d1f216a586db55f4556be2bb2d5','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608107','_transient_timeout_settings_errors','1781108131','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608108','_transient_settings_errors','a:1:{i:0;a:4:{s:7:\"setting\";s:7:\"general\";s:4:\"code\";s:16:\"settings_updated\";s:7:\"message\";s:15:\"Settings saved.\";s:4:\"type\";s:7:\"success\";}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608112','_transient_woocommerce_product_task_product_count_transient','5','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608113','_transient_timeout_woocommerce_admin_payment_gateway_suggestions_specs','1781713099','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608114','_transient_woocommerce_admin_payment_gateway_suggestions_specs','a:1:{s:5:\"en_US\";a:24:{s:6:\"affirm\";O:8:\"stdClass\":11:{s:2:\"id\";s:6:\"affirm\";s:5:\"title\";s:6:\"Affirm\";s:7:\"content\";s:169:\"Affirm’s tailored Buy Now Pay Later programs remove price as a barrier, turning browsers into buyers, increasing average order value, and expanding your customer base.\";s:5:\"image\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/affirm.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/affirm.png\";s:7:\"plugins\";a:0:{}s:13:\"external_link\";s:59:\"https://woocommerce.com/products/woocommerce-gateway-affirm\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{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:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.2.0-dev\";s:8:\"operator\";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-payments\";}}}}i:2;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:4:\"data\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:10:\"array_keys\";}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:10:\"account_id\";s:7:\"default\";a:0:{}}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:2:{i:0;s:2:\"US\";i:1;s:2:\"CA\";}s:23:\"recommendation_priority\";i:8;}s:8:\"afterpay\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"afterpay\";s:5:\"title\";s:8:\"Afterpay\";s:7:\"content\";s:125:\"Afterpay allows customers to receive products immediately and pay for purchases over four installments, always interest-free.\";s:5:\"image\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/afterpay.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/afterpay.png\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";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\":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:\"AU\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.2.0-dev\";s:8:\"operator\";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-payments\";}}}}i:2;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:4:\"data\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:10:\"array_keys\";}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:10:\"account_id\";s:7:\"default\";a:0:{}}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:3:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"AU\";}s:23:\"recommendation_priority\";i:9;}s:14:\"airwallex_main\";O:8:\"stdClass\":11:{s:2:\"id\";s:14:\"airwallex_main\";s:5:\"title\";s:18:\"Airwallex Payments\";s:7:\"content\";s:115:\"Boost international sales and save on FX fees. Accept 60+ local payment methods including Apple Pay and Google Pay.\";s:5:\"image\";s:105:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/airwallex.png\";s:11:\"image_72x72\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/airwallex.png\";s:12:\"square_image\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/airwallex-square.png\";s:7:\"plugins\";a:1:{i:0;s:33:\"airwallex-online-payments-gateway\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";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:\"IE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:17:{i:0;s:2:\"GB\";i:1;s:2:\"AT\";i:2;s:2:\"BE\";i:3;s:2:\"EE\";i:4;s:2:\"FR\";i:5;s:2:\"DE\";i:6;s:2:\"GR\";i:7;s:2:\"IE\";i:8;s:2:\"IT\";i:9;s:2:\"NL\";i:10;s:2:\"PL\";i:11;s:2:\"PT\";i:12;s:2:\"AU\";i:13;s:2:\"NZ\";i:14;s:2:\"HK\";i:15;s:2:\"SG\";i:16;s:2:\"CN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";N;}s:24:\"amazon_payments_advanced\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"amazon_payments_advanced\";s:5:\"title\";s:10:\"Amazon Pay\";s:7:\"content\";s:94:\"Enable a familiar, fast checkout for hundreds of millions of active Amazon customers globally.\";s:5:\"image\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/amazonpay.png\";s:11:\"image_72x72\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/amazonpay.png\";s:7:\"plugins\";a:1:{i:0;s:44:\"woocommerce-gateway-amazon-payments-advanced\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:18:{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:\"AT\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";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:\"DE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";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:\"PT\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:18:{i:0;s:2:\"US\";i:1;s:2:\"AT\";i:2;s:2:\"BE\";i:3;s:2:\"CY\";i:4;s:2:\"DK\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"DE\";i:8;s:2:\"GB\";i:9;s:2:\"HU\";i:10;s:2:\"IE\";i:11;s:2:\"IT\";i:12;s:2:\"LU\";i:13;s:2:\"NL\";i:14;s:2:\"PT\";i:15;s:2:\"SL\";i:16;s:2:\"SE\";i:17;s:2:\"JP\";}s:23:\"recommendation_priority\";i:7;}s:4:\"bacs\";O:8:\"stdClass\":8:{s:2:\"id\";s:4:\"bacs\";s:5:\"title\";s:20:\"Direct bank transfer\";s:7:\"content\";s:32:\"Take payments via bank transfer.\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/bacs.svg\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/bacs.png\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"type\";s:4:\"pass\";}}s:10:\"is_offline\";b:1;s:23:\"recommendation_priority\";N;}s:3:\"cod\";O:8:\"stdClass\":8:{s:2:\"id\";s:3:\"cod\";s:5:\"title\";s:16:\"Cash on delivery\";s:7:\"content\";s:36:\"Take payments in cash upon delivery.\";s:5:\"image\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/cod.svg\";s:11:\"image_72x72\";s:105:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/cod.png\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"type\";s:4:\"pass\";}}s:10:\"is_offline\";b:1;s:23:\"recommendation_priority\";N;}s:4:\"eway\";O:8:\"stdClass\":11:{s:2:\"id\";s:4:\"eway\";s:5:\"title\";s:4:\"Eway\";s:7:\"content\";s:171:\"The Eway extension for WooCommerce allows you to take credit card payments directly on your store without redirecting your customers to a third party site to make payment.\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/eway.png\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/eway.png\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/eway-square.png\";s:7:\"plugins\";a:1:{i:0;s:24:\"woocommerce-gateway-eway\";}s:10:\"is_visible\";b:0;s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:7;}s:3:\"kco\";O:8:\"stdClass\":10:{s:2:\"id\";s:3:\"kco\";s:5:\"title\";s:15:\"Klarna Checkout\";s:7:\"content\";s:115:\"Choose the payment that you want, pay now, pay later or slice it. No credit card numbers, no passwords, no worries.\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/klarna-black.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/klarna.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-checkout-for-woocommerce\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";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:\"category_other\";a:3:{i:0;s:2:\"NO\";i:1;s:2:\"SE\";i:2;s:2:\"FI\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:6;}s:15:\"klarna_payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:15:\"klarna_payments\";s:5:\"title\";s:15:\"Klarna Payments\";s:7:\"content\";s:115:\"Choose the payment that you want, pay now, pay later or slice it. No credit card numbers, no passwords, no worries.\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/klarna-black.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/klarna.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:19:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:1;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\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";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:\"CH\";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:\"ES\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";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:\"NO\";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:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";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:{}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.2.0-dev\";s:8:\"operator\";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: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: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:20:\"woocommerce-payments\";}}}}i:3;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:4:\"data\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:10:\"array_keys\";}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:10:\"account_id\";s:7:\"default\";a:0:{}}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:19:{i:0;s:2:\"MX\";i:1;s:2:\"US\";i:2;s:2:\"CA\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CH\";i:6;s:2:\"DK\";i:7;s:2:\"ES\";i:8;s:2:\"FI\";i:9;s:2:\"FR\";i:10;s:2:\"DE\";i:11;s:2:\"GB\";i:12;s:2:\"IT\";i:13;s:2:\"NL\";i:14;s:2:\"NO\";i:15;s:2:\"PL\";i:16;s:2:\"SE\";i:17;s:2:\"NZ\";i:18;s:2:\"AU\";}s:23:\"recommendation_priority\";i:6;}s:30:\"mollie_wc_gateway_banktransfer\";O:8:\"stdClass\":11:{s:2:\"id\";s:30:\"mollie_wc_gateway_banktransfer\";s:5:\"title\";s:6:\"Mollie\";s:7:\"content\";s:128:\"Effortless payments by Mollie: Offer global and local payment methods, get onboarded in minutes, and supported in your language.\";s:5:\"image\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mollie.svg\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/mollie.png\";s:12:\"square_image\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mollie-square.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"mollie-payments-for-woocommerce\";}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:\"AT\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";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:\"IT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:11:{i:0;s:2:\"AT\";i:1;s:2:\"BE\";i:2;s:2:\"CH\";i:3;s:2:\"ES\";i:4;s:2:\"FI\";i:5;s:2:\"FR\";i:6;s:2:\"DE\";i:7;s:2:\"GB\";i:8;s:2:\"IT\";i:9;s:2:\"NL\";i:10;s:2:\"PL\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:5;}s:7:\"payfast\";O:8:\"stdClass\":10:{s:2:\"id\";s:7:\"payfast\";s:5:\"title\";s:7:\"Payfast\";s:7:\"content\";s:299:\"The Payfast extension for WooCommerce enables you to accept payments by Credit Card and EFT via one of South Africa’s most popular payment gateways. No setup fees or monthly subscription costs. Selecting this extension will configure your store to use South African rands as the selected currency.\";s:5:\"image\";s:80:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/payfast.png\";s:11:\"image_72x72\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payfast.png\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-payfast-gateway\";}s:10:\"is_visible\";a:2:{i:0;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:\"ZA\";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:\"category_other\";a:1:{i:0;s:2:\"ZA\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:5;}s:17:\"payoneer-checkout\";O:8:\"stdClass\":10:{s:2:\"id\";s:17:\"payoneer-checkout\";s:5:\"title\";s:17:\"Payoneer Checkout\";s:7:\"content\";s:202:\"Payoneer Checkout is the next generation of payment processing platforms, giving merchants around the world the solutions and direction they need to succeed in today’s hyper-competitive global market.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/payoneer.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payoneer.png\";s:7:\"plugins\";a:1:{i:0;s:17:\"payoneer-checkout\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:2:{i:0;s:2:\"HK\";i:1;s:2:\"CN\";}s:23:\"recommendation_priority\";i:11;}s:8:\"paystack\";O:8:\"stdClass\":11:{s:2:\"id\";s:8:\"paystack\";s:5:\"title\";s:8:\"Paystack\";s:7:\"content\";s:127:\"Paystack helps African merchants accept one-time and recurring payments online with a modern, safe, and secure payment gateway.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paystack.png\";s:12:\"square_image\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paystack-square.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/paystack.png\";s:7:\"plugins\";a:1:{i:0;s:12:\"woo-paystack\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ZA\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GH\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NG\";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:\"category_other\";a:3:{i:0;s:2:\"ZA\";i:1;s:2:\"GH\";i:2;s:2:\"NG\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:6;}s:7:\"payubiz\";O:8:\"stdClass\":10:{s:2:\"id\";s:7:\"payubiz\";s:5:\"title\";s:20:\"PayU for WooCommerce\";s:7:\"content\";s:169:\"Enable PayU’s exclusive plugin for WooCommerce to start accepting payments in 100+ payment methods available in India including credit cards, debit cards, UPI, & more!\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/payu.svg\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payu.png\";s:7:\"plugins\";a:1:{i:0;s:10:\"payu-india\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";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:\"category_other\";a:1:{i:0;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:6;}s:12:\"ppcp-gateway\";O:8:\"stdClass\":11:{s:2:\"id\";s:12:\"ppcp-gateway\";s:5:\"title\";s:15:\"PayPal Payments\";s:7:\"content\";s:78:\"Safe and secure payments using credit cards or your customer\'s PayPal account.\";s:5:\"image\";s:79:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/paypal.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/paypal.png\";s:12:\"square_image\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paypal.svg\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:49:{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:\"BR\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CL\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CO\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EC\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UY\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"VE\";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:\"BG\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";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:\"category_other\";a:48:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AR\";i:5;s:2:\"CL\";i:6;s:2:\"CO\";i:7;s:2:\"EC\";i:8;s:2:\"PE\";i:9;s:2:\"UY\";i:10;s:2:\"VE\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"BG\";i:14;s:2:\"HR\";i:15;s:2:\"CH\";i:16;s:2:\"CY\";i:17;s:2:\"CZ\";i:18;s:2:\"DK\";i:19;s:2:\"EE\";i:20;s:2:\"ES\";i:21;s:2:\"FI\";i:22;s:2:\"FR\";i:23;s:2:\"DE\";i:24;s:2:\"GB\";i:25;s:2:\"GR\";i:26;s:2:\"HU\";i:27;s:2:\"IE\";i:28;s:2:\"IT\";i:29;s:2:\"LV\";i:30;s:2:\"LT\";i:31;s:2:\"LU\";i:32;s:2:\"MT\";i:33;s:2:\"NL\";i:34;s:2:\"NO\";i:35;s:2:\"PL\";i:36;s:2:\"PT\";i:37;s:2:\"RO\";i:38;s:2:\"SK\";i:39;s:2:\"SL\";i:40;s:2:\"SE\";i:41;s:2:\"AU\";i:42;s:2:\"NZ\";i:43;s:2:\"HK\";i:44;s:2:\"JP\";i:45;s:2:\"SG\";i:46;s:2:\"CN\";i:47;s:2:\"ID\";}s:19:\"category_additional\";a:49:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AR\";i:5;s:2:\"CL\";i:6;s:2:\"CO\";i:7;s:2:\"EC\";i:8;s:2:\"PE\";i:9;s:2:\"UY\";i:10;s:2:\"VE\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"BG\";i:14;s:2:\"HR\";i:15;s:2:\"CH\";i:16;s:2:\"CY\";i:17;s:2:\"CZ\";i:18;s:2:\"DK\";i:19;s:2:\"EE\";i:20;s:2:\"ES\";i:21;s:2:\"FI\";i:22;s:2:\"FR\";i:23;s:2:\"DE\";i:24;s:2:\"GB\";i:25;s:2:\"GR\";i:26;s:2:\"HU\";i:27;s:2:\"IE\";i:28;s:2:\"IT\";i:29;s:2:\"LV\";i:30;s:2:\"LT\";i:31;s:2:\"LU\";i:32;s:2:\"MT\";i:33;s:2:\"NL\";i:34;s:2:\"NO\";i:35;s:2:\"PL\";i:36;s:2:\"PT\";i:37;s:2:\"RO\";i:38;s:2:\"SK\";i:39;s:2:\"SL\";i:40;s:2:\"SE\";i:41;s:2:\"AU\";i:42;s:2:\"NZ\";i:43;s:2:\"HK\";i:44;s:2:\"JP\";i:45;s:2:\"SG\";i:46;s:2:\"CN\";i:47;s:2:\"ID\";i:48;s:2:\"IN\";}s:23:\"recommendation_priority\";i:4;}s:8:\"razorpay\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"razorpay\";s:5:\"title\";s:8:\"Razorpay\";s:7:\"content\";s:133:\"The official Razorpay extension for WooCommerce allows you to accept credit cards, debit cards, netbanking, wallet, and UPI payments.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/razorpay.svg\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/razorpay.png\";s:7:\"plugins\";a:1:{i:0;s:12:\"woo-razorpay\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";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:\"category_other\";a:1:{i:0;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:5;}s:18:\"square_credit_card\";O:8:\"stdClass\":10:{s:2:\"id\";s:18:\"square_credit_card\";s:5:\"title\";s:6:\"Square\";s:7:\"content\";s:169:\"Securely accept credit and debit cards with one low rate, no surprise fees (custom rates available). Sell online and in store and track sales and inventory in one place.\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/square-black.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/square.png\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-square\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;a:2:{i:0;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: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:8:\"contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}i:1;a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:8:{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:\"IE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}i:1;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:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":5:{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:14:\"selling_venues\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:12:\"brick-mortar\";}i:1;O:8:\"stdClass\":5:{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:14:\"selling_venues\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:18:\"brick-mortar-other\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{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:21:\"selling_online_answer\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:21:\"no_im_selling_offline\";s:7:\"default\";s:0:\"\";}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:21:\"selling_online_answer\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:34:\"im_selling_both_online_and_offline\";s:7:\"default\";s:0:\"\";}}}}}}}}}s:14:\"category_other\";a:8:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"IE\";i:3;s:2:\"ES\";i:4;s:2:\"FR\";i:5;s:2:\"GB\";i:6;s:2:\"AU\";i:7;s:2:\"JP\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:6;}s:6:\"stripe\";O:8:\"stdClass\":11:{s:2:\"id\";s:6:\"stripe\";s:5:\"title\";s:6:\"Stripe\";s:7:\"content\";s:112:\"Accept debit and credit cards in 135+ currencies, methods such as Alipay, and one-touch checkout with Apple Pay.\";s:5:\"image\";s:79:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/stripe.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/stripe.png\";s:12:\"square_image\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/stripe.svg\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}s:10:\"is_visible\";a:2:{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:\"BR\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";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:\"SL\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";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:\"category_other\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AT\";i:5;s:2:\"BE\";i:6;s:2:\"BG\";i:7;s:2:\"CH\";i:8;s:2:\"CY\";i:9;s:2:\"CZ\";i:10;s:2:\"DK\";i:11;s:2:\"EE\";i:12;s:2:\"ES\";i:13;s:2:\"FI\";i:14;s:2:\"FR\";i:15;s:2:\"DE\";i:16;s:2:\"GB\";i:17;s:2:\"GR\";i:18;s:2:\"HU\";i:19;s:2:\"IE\";i:20;s:2:\"IT\";i:21;s:2:\"LV\";i:22;s:2:\"LT\";i:23;s:2:\"LU\";i:24;s:2:\"MT\";i:25;s:2:\"NL\";i:26;s:2:\"NO\";i:27;s:2:\"PL\";i:28;s:2:\"PT\";i:29;s:2:\"RO\";i:30;s:2:\"SK\";i:31;s:2:\"SL\";i:32;s:2:\"SE\";i:33;s:2:\"AU\";i:34;s:2:\"NZ\";i:35;s:2:\"HK\";i:36;s:2:\"JP\";i:37;s:2:\"SG\";i:38;s:2:\"ID\";i:39;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:2;}s:23:\"woo-mercado-pago-custom\";O:8:\"stdClass\":11:{s:2:\"id\";s:23:\"woo-mercado-pago-custom\";s:5:\"title\";s:12:\"Mercado Pago\";s:7:\"content\";s:198:\"Set up your payment methods and accept credit and debit cards, cash, bank transfers and money from your Mercado Pago account. Offer safe and secure payments with Latin America’s leading processor.\";s:5:\"image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mercadopago.png\";s:11:\"image_72x72\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/mercadopago.png\";s:7:\"plugins\";a:1:{i:0;s:23:\"woocommerce-mercadopago\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:8:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AR\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CL\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CO\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EC\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UY\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}}}}s:16:\"is_local_partner\";b:1;s:14:\"category_other\";a:8:{i:0;s:2:\"AR\";i:1;s:2:\"CL\";i:2;s:2:\"CO\";i:3;s:2:\"EC\";i:4;s:2:\"PE\";i:5;s:2:\"UY\";i:6;s:2:\"MX\";i:7;s:2:\"BR\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:3;}s:20:\"woocommerce_payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:20:\"woocommerce_payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:11:\"image_72x72\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:225:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies. Track cash flow and manage recurring revenue directly from your store’s dashboard - with no setup costs or monthly fees.\";s:10:\"is_visible\";a:4:{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:\"=\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:1:\"<\";}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: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:17:\"woocommerce-admin\";}}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:1:\"<\";}}}}s:23:\"recommendation_priority\";i:1;}s:47:\"woocommerce_payments:without-in-person-payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:47:\"woocommerce_payments:without-in-person-payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:11:\"image_72x72\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:225:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies. Track cash flow and manage recurring revenue directly from your store’s dashboard - with no setup costs or monthly fees.\";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:37:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}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:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:2:\">=\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:2:\">=\";}}}}s:23:\"recommendation_priority\";i:1;}s:44:\"woocommerce_payments:with-in-person-payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:44:\"woocommerce_payments:with-in-person-payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:11:\"image_72x72\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:212:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies – with no setup costs or monthly fees – and you can now accept in-person payments with the Woo mobile app.\";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:2:{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\":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:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:2:\">=\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:2:\">=\";}}}}s:23:\"recommendation_priority\";i:1;}s:25:\"woocommerce_payments:bnpl\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"woocommerce_payments:bnpl\";s:5:\"title\";s:38:\"Activate BNPL instantly on WooPayments\";s:7:\"content\";s:185:\"The world’s favorite buy now, pay later options and many more are right at your fingertips with WooPayments — all from one dashboard, without needing multiple extensions and logins.\";s:5:\"image\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay-bnpl.svg\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay-bnpl.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:18:{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:\"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:\"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:\"CH\";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:\"ES\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";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:\"NO\";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:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";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:{}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.2.0-dev\";s:8:\"operator\";s:2:\">=\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}i:4;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:4:\"data\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:10:\"array_keys\";}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:10:\"account_id\";s:7:\"default\";a:0:{}}}s:23:\"recommendation_priority\";N;}s:8:\"zipmoney\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"zipmoney\";s:5:\"title\";s:27:\"Zip Co - Buy Now, Pay Later\";s:7:\"content\";s:84:\"Give your customers the power to pay later, interest free and watch your sales grow.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/zipmoney.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/zipmoney.png\";s:7:\"plugins\";a:1:{i:0;s:29:\"zipmoney-payments-woocommerce\";}s:10:\"is_visible\";b:0;s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:10;}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608115','_transient_timeout_wc_term_counts','1783700735','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608116','_transient_wc_term_counts','a:1:{i:25;s:1:\"5\";}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608117','_transient_timeout_wcf_user_t_8307cc82080d7b50f8490f857c45e5_checkout_2161','1781152601','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608118','_transient_wcf_user_t_8307cc82080d7b50f8490f857c45e5_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608119','_transient_timeout_cartflows_data_2159_9175e0a1a62ee2dfc51f8723a657111b','1781110539','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608120','_transient_cartflows_data_2159_9175e0a1a62ee2dfc51f8723a657111b','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608125','elementor_pro_remote_info_api_data_3.18.2','a:2:{s:7:\"timeout\";i:1781196871;s:5:\"value\";s:255060:\"{\"stable_version\":\"4.1.1\",\"last_updated\":\"2026-06-08 12:40:40\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:240380:\\\"<h1>Elementor Pro - by Elementor.com<\\/h1>\\n<h4>4.1.1 - 2026-06-08<\\/h4>\\n<ul>\\n<li>Fix: Live Results item count does not apply correctly on Tablet and Mobile in Search widget<\\/li>\\n<li>Fix: Default animation appears for logged-out users when using an ACF URL dynamic tag in Lottie widget<\\/li>\\n<li>Fix: &quot;Something went wrong&quot; error appears when using Taxonomy Filter with a Loop Grid based on Current Query<\\/li>\\n<\\/ul>\\n<h4>4.1.0 - 2026-05-26<\\/h4>\\n<ul>\\n<li>Tweak: Added Radio Button element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Select element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Date Picker element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Time Picker element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added File Upload element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Webhook URL support to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Improved the default To and From field settings in Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Updated the Connected Input ID control to a Select control in Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added the Atomic Elements section when editing Loop Grid templates - Atomic Editor<\\/li>\\n<li>Tweak: Added support for dynamic field mentions in email content in Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Start and End grid lines for the While Scrolling effect in Interactions - Atomic Editor<\\/li>\\n<li>Tweak: Updated the minimum required WordPress version to 6.8<\\/li>\\n<li>Fix: Custom styles are lost for Atomic elements used in loops - Atomic Editor<\\/li>\\n<li>Fix: Action Log and Page Title are not recorded in Atomic Form submissions - Atomic Editor<\\/li>\\n<li>Fix: Inline editing does not work for Buttons inside Atomic Form - Atomic Editor<\\/li>\\n<li>Fix: Atomic Form cannot be dragged into containers or child containers - Atomic Editor<\\/li>\\n<li>Fix: Pasting content from another site may cause a fatal error with Loop Item Templates<\\/li>\\n<\\/ul>\\n<h4>4.0.4 - 2026-04-28<\\/h4>\\n<ul>\\n<li>Fix: Flexbox and Div Block do not work with display conditions - Atomic Editor<\\/li>\\n<li>Fix: Custom CSS editor not editable in RTL websites - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.0.3 - 2026-04-20<\\/h4>\\n<ul>\\n<li>Tweak: Updated base style font styling in Atomic Form - Atomic Editor<\\/li>\\n<li>Fix: Submit button not working inside popups in Atomic Form - Atomic Editor<\\/li>\\n<li>Fix: Forms fail to send when using ACF Email dynamic tag - Atomic Editor<\\/li>\\n<li>Fix: Custom CSS editor not editable in RTL websites - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.0.2 - 2026-04-13<\\/h4>\\n<ul>\\n<li>Fix: Interactions apply only to the first matching element instead of all instances on the page - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.0.1 - 2026-04-01<\\/h4>\\n<ul>\\n<li>Fix: Exposed text properties appear empty in existing components - Atomic Editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/35357\\\">#35357<\\/a>)<\\/li>\\n<li>Fix: Cannot publish existing components with overridable properties - Atomic Editor<\\/li>\\n<li>Fix: Unexpected characters appear when deleting attribute values using backspace - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.0.0 - 2026-03-30<\\/h4>\\n<ul>\\n<li>New: Introducing Atomic Forms using composable Atomic elements - create flexible form layouts by combining individual field elements - Atomic Editor<\\/li>\\n<li>New: Introducing Interactions with new triggers and custom effects for dynamic experiences - create animations based on user scroll and user behavior - Atomic Editor<\\/li>\\n<li>Tweak: Component creation is available for Pro users - Atomic Editor<\\/li>\\n<li>Tweak: Added the ability to detach Components into editable layouts - Atomic Editor<\\/li>\\n<li>Tweak: Added support for custom fonts in typography controls - Atomic Editor<\\/li>\\n<li>Fix: Unable to paste content into the Custom CSS field - Atomic Editor<\\/li>\\n<li>Fix: Error when assigning a dynamic custom field to a component&#39;s inner element in Components - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>3.35.1 - 2026-02-11<\\/h4>\\n<ul>\\n<li>Fix: Enqueue script errors when <code>WP_DEBUG<\\/code> is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/34617\\\">#34617<\\/a>)<\\/li>\\n<li>Fix: General UI issues in Editor screens in WordPress Admin<\\/li>\\n<\\/ul>\\n<h4>3.35.0 - 2026-02-02<\\/h4>\\n<ul>\\n<li>Tweak: Extended the color picker to support ACF fields - Editor V4<\\/li>\\n<li>Tweak: Enabled size variables with custom units across relevant controls - Editor V4<\\/li>\\n<li>Tweak: Enabled size variables in border radius controls - Editor V4<\\/li>\\n<\\/ul>\\n<h4>3.34.4 - 2026-01-29<\\/h4>\\n<ul>\\n<li>Fix: Shortcodes overflow the screen on Saved Templates screen in WordPress Admin<\\/li>\\n<li>Fix: Avoid Multiple Popups control does not work in Popups<\\/li>\\n<\\/ul>\\n<h4>3.34.3 - 2026-01-26<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder WordPress view does not work as expected<\\/li>\\n<li>Fix: Submissions menu appears even when the setting is disabled<\\/li>\\n<\\/ul>\\n<h4>3.34.2 - 2026-01-22<\\/h4>\\n<ul>\\n<li>Tweak: Updated notification behavior in Elementor menu in WordPress admin<\\/li>\\n<\\/ul>\\n<h4>3.34.1 - 2026-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Unified the Elementor interface into a single place to manage, optimize, and configure Elementor capabilities in WordPress admin<\\/li>\\n<\\/ul>\\n<h4>3.34.0 - 2025-12-22<\\/h4>\\n<ul>\\n<li>New: Added support for Display Conditions for Atomic Elements - Editor V4<\\/li>\\n<li>Tweak: Enabled media queries for the Desktop breakpoint only in Custom CSS - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF field in Dynamic Tags - Editor V4<\\/li>\\n<li>Tweak: Added support for Google Calendar in Contact URL Dynamic Tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Tel link in Contact URL Dynamic Tag - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF Image field in Dynamic Tags - Editor V4<\\/li>\\n<li>Tweak: Removed icon from the accessibility tree in Flip Box widget<\\/li>\\n<li>Tweak: Applied CSS logical properties in text-align controls and improved RTL rendering in the Editor<\\/li>\\n<li>Fix: Website Template library displayed in English instead of the translated language<\\/li>\\n<li>Fix: Custom CSS field breaks when using certain characters - Editor V4<\\/li>\\n<\\/ul>\\n<h4>3.33.2 - 2025-12-03<\\/h4>\\n<ul>\\n<li>Fix: Incorrect status shown for Custom Code, Fonts, and Icons after importing a Website Template<\\/li>\\n<li>Fix: Display Conditions window appears empty in the editor<\\/li>\\n<\\/ul>\\n<h4>3.33.1 - 2025-11-11<\\/h4>\\n<ul>\\n<li>Fix: Styles not loading correctly in Custom Fonts and Custom Icons admin screens (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/33396\\\">#33396<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.33.0 - 2025-11-10<\\/h4>\\n<ul>\\n<li>New: Introducing Custom CSS for element-level styling with full isolation and responsive control - Editor V4<\\/li>\\n<li>New: Introducing media save to cloud in Website Templates, enabling users to store media assets directly in the cloud for easier access and management.<\\/li>\\n<li>Tweak: Added support for Post Excerpt dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Internal URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Post Terms dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Shortcode dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Popup dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Off-Canvas dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Lightbox dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Add To Cart dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Archive Title dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for the Email Contact URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for reduced-motion preferences in Flip Box widget<\\/li>\\n<li>Tweak: Updated minimum supported versions for Chrome, Firefox, and Safari<\\/li>\\n<li>Tweak: Updated Notes button location in the Editor Top Bar<\\/li>\\n<\\/ul>\\n<h4>3.32.3 - 2025-10-21<\\/h4>\\n<ul>\\n<li>Fix: Website Template fails to apply when Custom Code or Custom Icons are included<\\/li>\\n<\\/ul>\\n<h4>3.32.2 - 2025-09-29<\\/h4>\\n<ul>\\n<li>Fix: Exported taxonomies are not displayed correctly on the summary page in Website Templates export<\\/li>\\n<li>Fix: Certain taxonomies are not exported as expected in Website Templates export<\\/li>\\n<\\/ul>\\n<h4>3.32.1 - 2025-09-16<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder fails to load when containers are disabled<\\/li>\\n<li>Fix: Popup and single product templates not imported or exported as expected<\\/li>\\n<\\/ul>\\n<h4>3.32.0 - 2025-09-15<\\/h4>\\n<ul>\\n<li>New: Introducing Size Variables to store and reuse numeric values across spacing, typography, layout, and borders - Editor V4<\\/li>\\n<li>New: Introducing granular Transitions with property-level control for advanced micro-animations - Editor V4<\\/li>\\n<li>New: Added granular content selection for Website Templates import and export, including pages, menus, post types, and taxonomies<\\/li>\\n<li>Tweak: Enhanced accessibility of background images in Slides widget with proper aria attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23543\\\">#23543<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/31063\\\">#31063<\\/a>)<\\/li>\\n<li>Tweak: Added REST API support for the Custom Code feature<\\/li>\\n<li>Tweak: Moved Background control from Content tab to Style tab in Flip Box widget<\\/li>\\n<li>Tweak: Removed SVG icons from the accessibility tree in Share Buttons widget<\\/li>\\n<li>Tweak: Removed dropdown indicator icons from the accessibility tree in WordPress Menu widget<\\/li>\\n<li>Fix: PHP 8.4 deprecation notices when running with <code>WP_DEBUG<\\/code> enabled<\\/li>\\n<li>Fix: Reduced-motion preferences are not applied to Animated Headline widget<\\/li>\\n<li>Fix: Reduced-motion preferences are not applied in Motion Effects<\\/li>\\n<li>Fix: Added required PHP and WordPress versions to the plugin header<\\/li>\\n<\\/ul>\\n<h4>3.31.3 - 2025-09-08<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in WordPress Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.31.2 - 2025-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Improved release version functionality<\\/li>\\n<\\/ul>\\n<h4>3.31.1 - 2025-08-06<\\/h4>\\n<ul>\\n<li>Tweak: Updated <code>form-data<\\/code> package version<\\/li>\\n<\\/ul>\\n<h4>3.31.0 - 2025-08-05<\\/h4>\\n<ul>\\n<li>New: Introducing Attributes - add custom HTML attributes to elements for advanced control - Editor V4<\\/li>\\n<li>Tweak: Optimized Custom Code styles by removing redundant RTL file<\\/li>\\n<li>Tweak: Improved performance by loading ribbon styles only when used in Call to Action and Price Table widgets<\\/li>\\n<li>Tweak: Improved semantic markup structure for header and footer documents<\\/li>\\n<li>Tweak: Reorganized design controls in Animated Headline widget<\\/li>\\n<li>Tweak: Reorganized design controls in Blockquote widget<\\/li>\\n<li>Tweak: Reorganized design controls in Countdown widget<\\/li>\\n<li>Tweak: Replaced SASS mixins and functions with native CSS logical properties<\\/li>\\n<li>Fix: Empty headers are rendered in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28167\\\">#28167<\\/a>)<\\/li>\\n<li>Fix: <code>TypeError<\\/code> bug in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.30.1 - 2025-07-22<\\/h4>\\n<ul>\\n<li>Security Fix: Improved content sanitization in multiple widgets<\\/li>\\n<li>Fix: UI issue in Hotspot widget when Optimized Markup experiment is enabled<\\/li>\\n<li>Fix: Taxonomy filter not working in the Editor when Optimized Markup experiment is enabled<\\/li>\\n<\\/ul>\\n<h4>3.30.0 - 2025-07-01<\\/h4>\\n<ul>\\n<li>New: Introduced Full Website Templates in the Cloud - export, manage, and reuse full site kits across all your websites from one place<\\/li>\\n<li>Tweak: Activated &quot;Optimized Markup&quot; feature on new sites<\\/li>\\n<li>Tweak: Activated &quot;Menu&quot; feature on new sites<\\/li>\\n<li>Tweak: Improved error handling for Theme Builder display conditions<\\/li>\\n<li>Tweak: Added styling controls to Post Excerpt widget<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> and <code>aria-label<\\/code> attributes Post Navigation widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Form widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Login widget<\\/li>\\n<li>Tweak: Arranged content as lists in Portfolio and Posts widgets<\\/li>\\n<li>Tweak: Added Box Shadow and Text Shadow controls in Countdown widget<\\/li>\\n<li>Tweak: Moved image resolution control to content tab in Price List widget<\\/li>\\n<li>Tweak: Renamed and reorganized style sections in Price List widget<\\/li>\\n<li>Tweak: Added conditional logic to controls in Price Table widget<\\/li>\\n<li>Tweak: Grouped layout controls under list section in Price List widget<\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.6<\\/li>\\n<li>Fix: Inline font icons support doesn&#39;t work in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24367\\\">#24367<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18343\\\">#18343<\\/a>)<\\/li>\\n<li>Fix: Page Title condition doesn&#39;t work on child pages in Widget Display Conditions<\\/li>\\n<li>Fix: Editor users with &quot;Access to edit content only&quot; are able to delete elements<\\/li>\\n<li>Fix: Links are not crawlable in Video Playlist widget<\\/li>\\n<li>Fix: Uses hardcoded admin fonts in Video Playlist widget<\\/li>\\n<li>Fix: Editor freezes when the Form widget is used with a high PHP upload size limit<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled in Slides widget<\\/li>\\n<li>Fix: Plugin dependency not enforced in Elementor Pro<\\/li>\\n<li>Fix: Console shows deprecation warning in Global Widgets<\\/li>\\n<\\/ul>\\n<h4>3.29.2 - 2025-06-04<\\/h4>\\n<ul>\\n<li>Tweak: Added selectors to Menu widget for compatibility with Optimized Markup experiment<\\/li>\\n<\\/ul>\\n<h4>3.29.1 - 2025-05-28<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Price Table widget<\\/li>\\n<\\/ul>\\n<h4>3.29.0 - 2025-05-19<\\/h4>\\n<ul>\\n<li>New: Introduced Cloud Templates - save, manage, and reuse your templates across all your sites from a single cloud library<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> attributes in Share Buttons widget<\\/li>\\n<li>Tweak: Improved accessibility by grouping content with <code>role=region<\\/code> in the Video Playlist widget<\\/li>\\n<li>Fix: Focus color is not applied correctly for accessibility in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24239\\\">#24239<\\/a>)<\\/li>\\n<li>Fix: Common scripts loaded late when using the Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.28.4 - 2025-05-05<\\/h4>\\n<ul>\\n<li>Fix: Empty results appeared on the frontend when using the Taxonomy Filter with the &#39;Avoid Duplicates&#39; option in Loop Grid widget<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled and the Optimized Markup experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.28.3 - 2025-04-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved sidebar navigation flow on the Elementor Home screen<\\/li>\\n<\\/ul>\\n<h4>3.28.2 - 2025-03-30<\\/h4>\\n<ul>\\n<li>Fix: Default Elementor animation shown for logged-out users when using an &quot;External URL&quot; source in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.28.1 - 2025-03-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline and Form widgets<\\/li>\\n<\\/ul>\\n<h4>3.28.0 - 2025-03-17<\\/h4>\\n<ul>\\n<li>Tweak: Ensured File Upload field styles are overridden by global styles in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11651\\\">#11651<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17223\\\">#17223<\\/a>)<\\/li>\\n<li>Tweak: Updated Scroll Snap description to clarify incompatibility with animations and motion effects<\\/li>\\n<li>Tweak: Prevented special characters from being encoded in the email subject field in Form widget<\\/li>\\n<li>Tweak: Loaded module styles within the module instead of registering them in <code>plugin.php<\\/code><\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.5<\\/li>\\n<li>Tweak: Improved keyboard accessibility for menus in Editor Top Bar<\\/li>\\n<li>Tweak: Made the edit button accessible in the Template widget<\\/li>\\n<li>Tweak: Optimized Form widget performance by caching field assets <code>using get_style_depends()<\\/code> and <code>get_script_depends()<\\/code> methods<\\/li>\\n<li>Tweak: Added Text Shadow control in Testimonial Carousel, Call to Action and Animated Headline widgets<\\/li>\\n<li>Fix: Button icon alignment breaks when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16077\\\">#16077<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16511\\\">#16511<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17692\\\">#17692<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17922\\\">#17922<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19253\\\">#19253<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19370\\\">#19370<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21236\\\">#21236<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21844\\\">#21844<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28080\\\">#28080<\\/a>)<\\/li>\\n<li>Fix: Dropdown caret color did not follow menu item color when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17500\\\">#17500<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18466\\\">#18466<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21664\\\">#21664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24929\\\">#24929<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28064\\\">#28064<\\/a>)<\\/li>\\n<li>Fix: Page doesn&#39;t scroll up when a coupon error notice appears in Checkout widget<\\/li>\\n<\\/ul>\\n<h4>3.27.7 - 2025-03-13<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.27.6 - 2025-03-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Template Condition<\\/li>\\n<\\/ul>\\n<h4>3.27.5 - 2025-03-03<\\/h4>\\n<ul>\\n<li>Fix: The <code>wp_trigger_error<\\/code> function causes the site to crash instead of triggering a warning when used with ACF text<\\/li>\\n<\\/ul>\\n<h4>3.27.4 - 2025-02-16<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Screenshots module<\\/li>\\n<li>Security Fix: Improved code security enforcement in Query control<\\/li>\\n<li>Fix: ACF <code>true_false<\\/code> field causing a fatal error when used as a dynamic tag with third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/30170\\\">#30170<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.27.3 - 2025-02-06<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Stripe Button widget<\\/li>\\n<\\/ul>\\n<h4>3.27.2 - 2025-02-03<\\/h4>\\n<ul>\\n<li>Fix: Value type configuration issue causing errors when using ACF<\\/li>\\n<li>Fix: Hide content on responsive breakpoint option is not working on WordPress Menu widget when Optimized Markup experiment is activated<\\/li>\\n<\\/ul>\\n<h4>3.27.1 - 2025-01-27<\\/h4>\\n<ul>\\n<li>Tweak: Increased the number of items allowed in Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<li>Security Fix: Improved code security enforcement in Global widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Admin settings<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Empty custom fields are missing in the Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<\\/ul>\\n<h4>3.27.0 - 2025-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Removed the <code>elementor-widget-container<\\/code> div from the Menu, Loop, Table of Contents, Form, and Hotspot widgets as part of the Optimized Markup experiment to improve HTML structure<\\/li>\\n<li>Tweak: Reduced DOM size by optimizing the submit button markup in Search widget<\\/li>\\n<li>Tweak: Moved style loading to the head instead of the footer to improve CLS<\\/li>\\n<li>Tweak: Enabled conditional loading of Swiper.js based on widget dependencies to reduce unnecessary assets and improve page load times<\\/li>\\n<li>Tweak: Standardized navigation elements like arrows and bullets across all carousel and slider widgets for improved accessibility<\\/li>\\n<li>Tweak: Improved accessibility when the submit button has only an icon and no text in Search widget<\\/li>\\n<li>Tweak: Removed <code>load_plugin_textdomain()<\\/code> function from Elementor Pro<\\/li>\\n<\\/ul>\\n<h4>3.26.3 - 2025-01-07<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Search widget<\\/li>\\n<li>Fix: Height issues cause slideshow thumbnails to display incorrectly in Media Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29663\\\">#29663<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.2 - 2024-12-22<\\/h4>\\n<ul>\\n<li>Fix: Menu items are not clickable in various scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29191\\\">#29191<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.1 - 2024-12-17<\\/h4>\\n<ul>\\n<li>Fix: Restore deprecated <code>Plugin::enqueue_styles()<\\/code> function to avoid errors with 3rd party plugins<\\/li>\\n<\\/ul>\\n<h4>3.26.0 - 2024-12-16<\\/h4>\\n<ul>\\n<li>New: Introducing dynamic content support for Off-canvas in Loop Grid widget templates - enabling seamless display of additional content dynamically (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29049\\\">#29049<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28935\\\">#28935<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7106\\\">#7106<\\/a>)<\\/li>\\n<li>New: AdBlock Detection trigger for Popups - display targeted popups for visitors using ad blockers<\\/li>\\n<li>New: Added Reload Page link action for Dynamic Tags<\\/li>\\n<li>Tweak: Added &quot;Space Between Dots&quot; control to Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2526\\\">#2526<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3277\\\">#3277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21697\\\">#21697<\\/a>)<\\/li>\\n<li>Tweak: Replaced hidden <code>elementor-screen-only<\\/code> div with <code>aria-label<\\/code> attributes<\\/li>\\n<li>Tweak: Removed <code>elementor-widget-container<\\/code> div from Elementor widgets as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Optimize popup styling by loading it only when necessary<\\/li>\\n<li>Tweak: Updated Gap between slides control to support only PX units in Carousel widget<\\/li>\\n<li>Tweak: Removed the dependency between the Tabs handler and the Menu handler<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> in Carousel widgets<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=carousel<\\/code> to carousel wrapper<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=slide<\\/code> to slide wrapper<\\/li>\\n<li>Tweak: Optimized carousel widgets markup as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Updated minimum required Safari version to 15.5<\\/li>\\n<li>Tweak: Facebook widgets are no longer supported on mobile due to Facebook functionality changes<\\/li>\\n<li>Fix: Motion Effects sticky feature is not working when Scroll Snap is enabled<\\/li>\\n<li>Fix: Custom Image Resolution option is not working in Gallery widget<\\/li>\\n<li>Fix: &#39;Reading Settings&#39; unexpectedly reduces the number of posts displayed when using the Archive with Pagination setting<\\/li>\\n<li>Fix: Step Form does not scroll to the top when the first field is not an input field in Form widget<\\/li>\\n<li>Fix: Display Condition feature is available without an active Elementor license in Floating Elements<\\/li>\\n<li>Fix: Background options of Flip Box in Loop Grid widget are not working when images are added using ACF Dynamic Tags<\\/li>\\n<li>Fix: Dropdown icon in the Select field of the Form widget is cut off when the Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Incompatibility between Form widget and WPML when using Nested Elements<\\/li>\\n<li>Fix: Performance issues when changing the title name in the Menu widget<\\/li>\\n<li>Fix: Warnings appear when Element Caching is set to Inactive in Carousel widgets<\\/li>\\n<li>Fix: Swiper styling missing from Lightbox inside Gallery widgets<\\/li>\\n<\\/ul>\\n<h4>3.25.5 - 2024-12-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Popup overlay shown for non-logged users even when disabled<\\/li>\\n<\\/ul>\\n<h4>3.25.4 - 2024-11-20<\\/h4>\\n<ul>\\n<li>Tweak: Improved Global Widget loading method to enhance performance<\\/li>\\n<\\/ul>\\n<h4>3.25.3 - 2024-11-13<\\/h4>\\n<ul>\\n<li>Fix: Nested Elements are activated even when the Container experiment is inactive<\\/li>\\n<\\/ul>\\n<h4>3.25.2 - 2024-11-03<\\/h4>\\n<ul>\\n<li>Fix: Styling issues affecting popup layout when using a Dynamic Tag to open the popup<\\/li>\\n<li>Fix: Image captions are not displaying for non-logged-in users in Media Carousel widget<\\/li>\\n<li>Fix: Custom Add to Cart widget with Quantity enabled causes critical error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29159\\\">#29159<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.25.1 - 2024-10-31<\\/h4>\\n<ul>\\n<li>Fix: Multiple Custom Add to Cart widgets on the same page are adding the same product<\\/li>\\n<\\/ul>\\n<h4>3.25.0 - 2024-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added pagination functionality to the Live Results in Search widget<\\/li>\\n<li>Tweak: Added Anchor Offset control to allow precise positioning when scrolling to anchor links on the page<\\/li>\\n<li>Tweak: Load motion effects styles only when they are in use<\\/li>\\n<li>Tweak: Load sticky styles only when they are in use<\\/li>\\n<li>Tweak: Load popup styles only when they are in use<\\/li>\\n<li>Tweak: Load theme builder styles only when they are in use<\\/li>\\n<li>Tweak: Load transition styles for Call to Action and Gallery widgets only when they are in use<\\/li>\\n<li>Tweak: Load styles for Form widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for WooCommerce widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Theme Elements widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Carousel widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Pricing widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Floating Elements separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Link in Bio widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load minified CSS in the Loop Builder&#39;s Call to Action button in the Editor<\\/li>\\n<li>Tweak: Removed &quot;Payments&quot; module styles<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Payapl widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Stripe widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Merged &quot;Form Submissions&quot; feature into the version and moved it to the Advanced tab<\\/li>\\n<li>Tweak: Merged &quot;Display Conditions&quot; into the version<\\/li>\\n<li>Fix: Missing translation string for the empty message in the Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27580\\\">#27580<\\/a>)<\\/li>\\n<li>Fix: Local Storage and Session Storage were being used even when popups were not in use (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7151\\\">#7151<\\/a>)<\\/li>\\n<li>Fix: Masonry layout is not working when pagination is set to &quot;Load More&quot; or &quot;Infinite Scroll&quot; in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23684\\\">#23684<\\/a>)<\\/li>\\n<li>Fix: Extra gap between widgets on the frontend when using Off-canvas widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27706\\\">#27706<\\/a>)<\\/li>\\n<li>Fix: Pagination and custom queries did not work when the Posts Widget was saved as a Global Widget or used via shortcode<\\/li>\\n<li>Fix: Lightbox videos are missing controls and displayed at the wrong size in Media Carousel widget<\\/li>\\n<li>Fix: Pagination options with Individual Pagination not working as expected in Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Justified or Masonry layouts for the Pro Gallery would not display images on the frontend when inserted via nested tabs<\\/li>\\n<li>Fix: Error issue in the Loop Grid widget when used in theme parts with the Taxonomy Filter<\\/li>\\n<li>Fix: Removed the focus ring after clicking to open the Off Canvas inside the Editor<\\/li>\\n<li>Fix: Background gradient colors from the dynamic color tag values are not rendering on the frontend<\\/li>\\n<li>Fix: Excessive database requests generated by the Loop Grid widget<\\/li>\\n<li>Fix: Colors from Dynamic Tags were not rendered on the frontend<\\/li>\\n<li>Fix: Display issue in the Menu widget caused by the &#39;Native Intersection Observer API<\\/li>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget<\\/li>\\n<li>Fix: Content Width control inside the Mega Menu is displaying an empty value<\\/li>\\n<\\/ul>\\n<h4>3.24.4 - 2024-10-09<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<\\/ul>\\n<h4>3.24.3 - 2024-10-01<\\/h4>\\n<ul>\\n<li>Fix: Floating Elements template not loading when Single Page template is set with All Singular condition<\\/li>\\n<li>Fix: Form field styles not loading properly in various scenarios<\\/li>\\n<\\/ul>\\n<h4>3.24.2 - 2024-09-18<\\/h4>\\n<ul>\\n<li>Fix: Icons not displaying when Inline SVG Icons experiment is active in Link In Bio widgets and Floating Elements<\\/li>\\n<\\/ul>\\n<h4>3.24.1 - 2024-09-12<\\/h4>\\n<ul>\\n<li>Fix: Widget styles not loading correctly on front causing alignment inconsistencies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28676\\\">#28676<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.24.0 - 2024-09-10<\\/h4>\\n<ul>\\n<li>New: Introducing support for Variable Fonts - allowing for more dynamic and flexible text styling (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6703\\\">#6703<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11333\\\">#11333<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19277\\\">#19277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25485\\\">#25485<\\/a>)<\\/li>\\n<li>Tweak: Added &#39;Structure&#39; indication for widgets with Display Conditions applied (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28027\\\">#28027<\\/a>)<\\/li>\\n<li>Tweak: Added a new option for setting the live search results width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28280\\\">#28280<\\/a>)<\\/li>\\n<li>Tweak: Improved Honeypot field functionality in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28480\\\">#28480<\\/a>)<\\/li>\\n<li>Tweak: Added options to &#39;Copy&#39;, &#39;Paste&#39;, and &#39;Clear&#39; Display Conditions in Context Menu<\\/li>\\n<li>Tweak: Improved performance of the Menu widget when using Dynamic Tags in the URL field<\\/li>\\n<li>Tweak: Improved performance when using Dynamic Tags in Nested Elements<\\/li>\\n<li>Tweak: Added the option for users to disable Akismet for specific Elementor forms<\\/li>\\n<li>Tweak: Adjusted URL structure when presenting the Search Archive page in Search widget<\\/li>\\n<li>Tweak: Added the &#39;Create Template&#39; button in Search widget<\\/li>\\n<li>Tweak: Added an option to enable the &#39;Loader&#39; animation while live results are loading in Search widget<\\/li>\\n<li>Tweak: Load share buttons compatibility styles only when they are in use<\\/li>\\n<li>Tweak: Load dialog styles only when they are in use<\\/li>\\n<li>Tweak: Load global widget styles only during Editor preview<\\/li>\\n<li>Tweak: Conditionally load widget styles only when the widgets are used<\\/li>\\n<li>Tweak: Load styles for CTA hover animations only when they are in use<\\/li>\\n<li>Tweak: Load notes styles only when the WordPress Toolbar is displayed<\\/li>\\n<li>Tweak: Split <code>animations.min.css<\\/code> into multiple CSS files and load them conditionally<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Stable status<\\/li>\\n<li>Tweak: Merged Taxonomy Filter feature into the version<\\/li>\\n<li>Tweak: Merged Search feature into the version<\\/li>\\n<li>Tweak: Added a note to &#39;Current Query&#39; explaining the impact of WordPress settings on pagination within Archives<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for the Off-Canvas widget<\\/li>\\n<li>Fix: Manual Selection option is not excluding sticky posts in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18689\\\">#18689<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23331\\\">#23331<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28179\\\">#28179<\\/a>)<\\/li>\\n<li>Fix: Template ID does not change according to the imported Loop Item (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21404\\\">#21404<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22202\\\">#22202<\\/a>)<\\/li>\\n<li>Fix: &#39;Editing Mode&#39; for the Off-canvas was not functioning correctly in certain scenarios<\\/li>\\n<li>Fix: Added definition to <code>clear_custom_image_sizes<\\/code> hook to prevent edge case issues<\\/li>\\n<li>Fix: Flickering issue with search result buttons when closing results using the keyboard escape key in Search widget<\\/li>\\n<li>Fix: Theme Style settings for buttons were overriding the text styling in Search widget<\\/li>\\n<li>Fix: Nesting menu inside another menu causes functionality issues in Menu widget<\\/li>\\n<li>Fix: Error when using array as custom fields value in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.23.3 - 2024-08-05<\\/h4>\\n<ul>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28194\\\">#28194<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.23.2 - 2024-07-29<\\/h4>\\n<ul>\\n<li>Fix: Horizontal scroll bar appearing on the page when using Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28087\\\">#28087<\\/a>)<\\/li>\\n<li>Fix: Dropdown area disappearing in certain scenarios in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.23.1 - 2024-07-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in link URL<\\/li>\\n<\\/ul>\\n<h4>3.23.0 - 2024-07-15<\\/h4>\\n<ul>\\n<li>New: Search Widget with Live Results - Display live search results as visitors type into the search box, enhancing user experience and engagement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27664\\\">#27664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24931\\\">#24931<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21459\\\">#21459<\\/a>)<\\/li>\\n<li>Tweak: Renamed <code>width<\\/code> to <code>Min width<\\/code> and added <code>Max width<\\/code> control to Hotspot tooltips (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18930\\\">#18930<\\/a>)<\\/li>\\n<li>Tweak: Applied a logical DOM order to the Mega Menu widget to improve accessibility<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for WordPress Menu widget<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for Menu widget<\\/li>\\n<li>Tweak: Added a bottom option to the Image Position control in Call to Action widget<\\/li>\\n<li>Fix: Missing version string in included CSS query string when Improved CSS Loading is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21879\\\">#21879<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23821\\\">#23821<\\/a>)<\\/li>\\n<li>Fix: Form submission icon message does not display correctly when Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Save and Close button position issues in the conditions screen in Theme Builder.<\\/li>\\n<li>Fix: Focus appears on the first element when using the mouse to open Off-Canvas<\\/li>\\n<li>Fix: Links to Elementor Settings are broken in various locations<\\/li>\\n<li>Fix: Conditions field not showing all relevant conditions in Theme Builder<\\/li>\\n<li>Fix: Off-Canvas flickering in sticky containers with exit animations triggered by sticky effects<\\/li>\\n<\\/ul>\\n<h4>3.22.1 - 2024-06-24<\\/h4>\\n<ul>\\n<li>Fix: Styling of Global widgets not loading when Element Caching experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27704\\\">#27704<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.22.0 - 2024-06-16<\\/h4>\\n<ul>\\n<li>New: Introducing Off-Canvas widget - create engaging and creative layers triggered by a link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6225\\\">#6225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21769\\\">#21769<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25770\\\">#25770<\\/a>)<\\/li>\\n<li>Tweak: Added option to remove &#39;User IP&#39; and &#39;User Agent&#39; from the form submissions metadata (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14285\\\">#14285<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>waypoints.js<\\/code> library with the native Intersection Observer API<\\/li>\\n<li>Tweak: Extended Alignment and Position capabilities in Form widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Flip Box widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Call to Action widget<\\/li>\\n<li>Tweak: Optimized Form widget to eliminate unnecessary markup when the button icon is empty<\\/li>\\n<li>Tweak: Optimized Posts widget to eliminate unnecessary markup when Load More button text is empty<\\/li>\\n<li>Tweak: Remove <code>placeholder<\\/code> arguments from URL controls<\\/li>\\n<li>Tweak: Implemented CSS logical properties to Icon Position in Form, Posts and Menu Cart widgets<\\/li>\\n<li>Tweak: Activated Display Conditions feature for existing sites<\\/li>\\n<li>Tweak: Activated Taxonomy Filter feature for existing sites<\\/li>\\n<li>Tweak: Added functionality to delay the running of the ready triggers on inner elements<\\/li>\\n<li>Fix: Icons are now part of the link in the Menu Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24298\\\">#24298<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25112\\\">#25112<\\/a>)<\\/li>\\n<li>Fix: <code>all: unset<\\/code> assigned to buttons cause focus issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24322\\\">#24322<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25448\\\">#25448<\\/a>)<\\/li>\\n<li>Fix: Menu cart SVG icon disappears on front when Optimized Control Loading experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27342\\\">#27342<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro auto-updates are not working on multisite networks (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12615\\\">#12615<\\/a>)<\\/li>\\n<li>Fix: PHP error appears in the editor when using Loop Grid in an archive template<\\/li>\\n<li>Fix: UI glitch on Icon Position control in Paypal and Stripe Buttons widgets<\\/li>\\n<li>Fix: Icon Position control RTL issue in Hotspot widget<\\/li>\\n<li>Fix: Manual Selection &quot;Include By&quot; Query doesn&#39;t work with product categories<\\/li>\\n<\\/ul>\\n<h4>3.21.3 - 2024-05-20<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Loop Grid widget<\\/li>\\n<li>Fix: License expired affects the Display Conditions functionality in the front end<\\/li>\\n<\\/ul>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn&#39;t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Enqueuing non-existing Loop Template CSS file in Loop Item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24959\\\">#24959<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>New: Introducing Display Conditions for Elements - allowing users to customize content visibility based on specified criteria (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4246\\\">#4246<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21152\\\">#21152<\\/a>)<\\/li>\\n<li>New: Implemented Akismet Integration for enhanced spam protection and security in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11401\\\">#11401<\\/a>)<\\/li>\\n<li>New: Introducing Permissions functionality to Element Manager - providing users with enhanced control over access and management capabilities<\\/li>\\n<li>Tweak: Added styling option for dropdown indicator in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21907\\\">#21907<\\/a>)<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Implemented CSS logical properties in WordPress Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Reviews widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Countdown widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Updated <code>jquery.smartmenus.js<\\/code> version from 1.1.1 to 1.2.0<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21489\\\">#21489<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22368\\\">#22368<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23085\\\">#23085<\\/a>)<\\/li>\\n<li>Fix: History panel deprecation notices in console log<\\/li>\\n<li>Fix: Second Pro rollback installed the latest version instead of the specifically selected older version<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation in Menu Widget<\\/li>\\n<li>Fix: UX issues when using in-place editing in Menu widget<\\/li>\\n<li>Fix: Pagination with page reload is not working when used with the Taxonomy filter and Loop Grid widget in Archive template<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing &#39;self-hosted&#39; source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: &#39;Fallback: Recent Posts&#39; option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don&#39;t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn&#39;t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added &#39;Active item state&#39; to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget&#39;s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the &#39;Gap between slides&#39; control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle becomes inaccessible in various scenarios cases in Loop Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">#21316<\\/a>)<\\/li>\\n<li>Fix: Can&#39;t edit page when using &#39;Content Tabs&#39; and &#39;Section&#39; options in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups&#39; backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn&#39;t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to &#39;Show up to X times&#39; advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added &#39;Equal height&#39; functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-20<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-06<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note&#39;s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label&#39;s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">#19553<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes character is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629\\\">#18629<\\/a>)<\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn&#39;t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn&#39;t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn&#39;t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn&#39;t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn&#39;t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn&#39;t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn&#39;t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook&#39;s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn&#39;t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn&#39;t 100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn&#39;t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn&#39;t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn&#39;t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor&#39;s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn&#39;t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can&#39;t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn&#39;t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don&#39;t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn&#39;t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn&#39;t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>Elementor\\\\Utils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section&#39;s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can&#39;t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn&#39;t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn&#39;t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn&#39;t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code&#39;s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren&#39;t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted &#39;Max Height&#39; control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in &#39;Reply To&#39; Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted &#39;Max Height&#39; control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}5D\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can&#39;t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder&#39;s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can&#39;t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of &#39;get_create_url&#39; in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn&#39;t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can&#39;t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn&#39;t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don&#39;t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn&#39;t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren&#39;t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can&#39;t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn&#39;t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can&#39;t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn&#39;t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don&#39;t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=&quot;navigation&quot;<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn&#39;t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn&#39;t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder&#39;s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder&#39;s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when &#39;Hide Title&#39; is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it&#39;s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it&#39;s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won&#39;t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for &#39;View Cart&#39; link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added &#39;Current Subcategories&#39; option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it&#39;s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it&#39;s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent&#39;s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it&#39;s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it&#39;s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn&#39;t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in &#39;typing&#39; and &#39;clip&#39; animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there&#39;s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don&#39;t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorPro\\\\Modules\\\\Forms\\\\Classes\\\\Action_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can&#39;t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - &#39;Link apply on&#39; logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with &#39;0&#39; for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\n\\\";}\",\"new_version\":\"4.1.1\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"6.8\",\"tested\":\"7.0\",\"elementor_requires\":\"3.34\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiMjU3NDk5Y2U4ZDkzMmZkNzcyOGFlZjNhNDI4NzA3YjQiLCJ1cmwiOiJodHRwczovL2h5cGVyZ3Jvd3RoLmZpc2hncm93dGgueHl6IiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTc4MTEzMjA3MCwiZXhwIjoxNzgxMjE4NDcwfQ.zLJPo3Ugji0GMOPTIo_6uM6qw627bylP8Qdlv5WGBik\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiMjU3NDk5Y2U4ZDkzMmZkNzcyOGFlZjNhNDI4NzA3YjQiLCJ1cmwiOiJodHRwczovL2h5cGVyZ3Jvd3RoLmZpc2hncm93dGgueHl6IiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTc4MTEzMjA3MCwiZXhwIjoxNzgxMjE4NDcwfQ.zLJPo3Ugji0GMOPTIo_6uM6qw627bylP8Qdlv5WGBik\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/assets.elementor.com\\/miscellaneous\\/v1\\/images\\/icon.svg\"},\"requires_php\":\"7.4\"}\";}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608127','_transient_timeout_imunify_security_rules_1781132061_2738073','1781153673','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608128','_transient_imunify_security_rules_1781132061_2738073','a:2:{s:7:\"version\";s:7:\"0.658.0\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608131','_transient_timeout_imunify_security_rules_1781132761_2738621','1781155388','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608132','_transient_imunify_security_rules_1781132761_2738621','a:2:{s:7:\"version\";s:7:\"0.659.0\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608133','_transient_timeout_wcf_user_t_ff40e549da2b17629a0eeb8abd41ae_checkout_2161','1781151809','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608134','_transient_wcf_user_t_ff40e549da2b17629a0eeb8abd41ae_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608135','_transient_timeout_cartflows_data_2159_09cde313fc9eee288f2123ef38e518fc','1781135594','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608136','_transient_cartflows_data_2159_09cde313fc9eee288f2123ef38e518fc','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608137','_elementor_global_css','a:7:{s:4:\"time\";i:1781133791;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;b:0;s:3:\"css\";s:0:\"\";}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608138','_elementor_assets_data','a:2:{s:3:\"css\";a:1:{s:7:\"widgets\";a:16:{s:5:\"image\";a:2:{s:7:\"content\";s:269:\"<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>\";s:7:\"version\";s:6:\"3.23.4\";}s:7:\"heading\";a:2:{s:7:\"content\";s:673:\"<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\";s:7:\"version\";s:6:\"3.23.4\";}s:6:\"spacer\";a:2:{s:7:\"content\";s:1379:\"<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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.23.4\";}s:6:\"button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.4\";}s:5:\"video\";a:2:{s:7:\"content\";s:1883:\"<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-video .elementor-widget-container{overflow:hidden;transform:translateZ(0)}.elementor-widget-video .elementor-wrapper{aspect-ratio:var(--video-aspect-ratio)}.elementor-widget-video .elementor-wrapper iframe,.elementor-widget-video .elementor-wrapper video{height:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};display:flex;border:none;background-color:#000}@supports not (aspect-ratio:1/1){.elementor-widget-video .elementor-wrapper{position:relative;overflow:hidden;height:0;padding-bottom:calc(100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} / var(--video-aspect-ratio))}.elementor-widget-video .elementor-wrapper iframe,.elementor-widget-video .elementor-wrapper video{position:absolute;top:0;right:0;bottom:0;left:0}}.elementor-widget-video .elementor-open-inline .elementor-custom-embed-image-overlay{position:absolute;top:0;right:0;bottom:0;left:0;background-size:cover;background-position:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-widget-video .elementor-custom-embed-image-overlay{cursor:pointer;text-align:center}.elementor-widget-video .elementor-custom-embed-image-overlay:hover .elementor-custom-embed-play i{opacity:1}.elementor-widget-video .elementor-custom-embed-image-overlay img{display:block;width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};aspect-ratio:var(--video-aspect-ratio);-o-object-fit:cover;object-fit:cover;-o-object-position:center center;object-position:center center}@supports not (aspect-ratio:1/1){.elementor-widget-video .elementor-custom-embed-image-overlay{position:relative;overflow:hidden;height:0;padding-bottom:calc(100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} / var(--video-aspect-ratio))}.elementor-widget-video .elementor-custom-embed-image-overlay img{position:absolute;top:0;right:0;bottom:0;left:0}}.elementor-widget-video .e-hosted-video .elementor-video{-o-object-fit:cover;object-fit:cover}.e-con-inner>.elementor-widget-video,.e-con>.elementor-widget-video{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>\";s:7:\"version\";s:6:\"3.23.4\";}s:7:\"divider\";a:2:{s:7:\"content\";s:4311:\"<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};mask-size:var(--divider-pattern-size) 100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};-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{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced});--flex-grow:var(--container-widget-flex-grow)}</style>\";s:7:\"version\";s:6:\"3.23.4\";}s:9:\"icon-list\";a:2:{s:7:\"content\";s:130:\"<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">\";s:7:\"version\";s:6:\"3.23.4\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:719:\"<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>\";s:7:\"version\";s:6:\"3.23.4\";}s:17:\"animated-headline\";a:2:{s:7:\"content\";s:142:\"<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">\";s:7:\"version\";s:6:\"3.18.2\";}s:13:\"checkout-form\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.4\";}s:9:\"image-box\";a:2:{s:7:\"content\";s:1424:\"<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style>\";s:7:\"version\";s:6:\"3.23.4\";}s:7:\"counter\";a:2:{s:7:\"content\";s:808:\"<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>\";s:7:\"version\";s:6:\"3.23.4\";}s:11:\"google_maps\";a:2:{s:7:\"content\";s:247:\"<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>\";s:7:\"version\";s:6:\"3.23.4\";}s:18:\"fluent-form-widget\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.4\";}s:12:\"social-icons\";a:2:{s:7:\"content\";s:5051:\"<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}</style>\";s:7:\"version\";s:6:\"3.23.4\";}s:13:\"image-gallery\";a:2:{s:7:\"content\";s:2474:\"<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};max-width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};margin:0 auto}.elementor-image-gallery .gallery-item img{margin:0 auto}.elementor-image-gallery .gallery-item .gallery-caption{margin:0}.elementor-image-gallery figure img{display:block}.elementor-image-gallery figure figcaption{width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.gallery-spacing-custom .elementor-image-gallery .gallery-icon{padding:0}@media (min-width:768px){.elementor-image-gallery .gallery-columns-2 .gallery-item{max-width:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-image-gallery .gallery-columns-4 .gallery-item{max-width:25{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-image-gallery .gallery-columns-5 .gallery-item{max-width:20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-image-gallery .gallery-columns-10 .gallery-item{max-width:10{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}}@media (min-width:480px) and (max-width:767px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}}@media (max-width:479px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}}</style>\";s:7:\"version\";s:6:\"3.23.4\";}}}s:3:\"svg\";a:1:{s:9:\"font-icon\";a:6:{s:16:\"fas-check-circle\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:356:\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\";s:3:\"key\";s:16:\"fas-check-circle\";}s:7:\"version\";s:6:\"5.15.3\";}s:13:\"fas-phone-alt\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:264:\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\";s:3:\"key\";s:13:\"fas-phone-alt\";}s:7:\"version\";s:6:\"5.15.3\";}s:10:\"fas-circle\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:69:\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\";s:3:\"key\";s:10:\"fas-circle\";}s:7:\"version\";s:6:\"5.15.3\";}s:12:\"fab-facebook\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:264:\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\";s:3:\"key\";s:12:\"fab-facebook\";}s:7:\"version\";s:6:\"5.15.3\";}s:11:\"fab-twitter\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:791:\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\";s:3:\"key\";s:11:\"fab-twitter\";}s:7:\"version\";s:6:\"5.15.3\";}s:11:\"fab-youtube\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:576;s:6:\"height\";i:512;s:4:\"path\";s:470:\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\";s:3:\"key\";s:11:\"fab-youtube\";}s:7:\"version\";s:6:\"5.15.3\";}}}}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608139','_transient_timeout_imunify_security_rules_1781136459_2757295','1781159145','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608140','_transient_imunify_security_rules_1781136459_2757295','a:2:{s:7:\"version\";s:7:\"0.660.0\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608141','_transient_timeout_imunify_security_rules_1781140122_2760803','1781164012','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608142','_transient_imunify_security_rules_1781140122_2760803','a:2:{s:7:\"version\";s:7:\"0.661.0\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608143','_transient_timeout_wcf_user_t_15a323954f89cf253d76619bbd51d3_checkout_2161','1781145677','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608144','_transient_wcf_user_t_15a323954f89cf253d76619bbd51d3_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608145','_transient_timeout_cartflows_data_2159_c515f780aa0e4dc8714f71190f299c9e','1781145677','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608146','_transient_cartflows_data_2159_c515f780aa0e4dc8714f71190f299c9e','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608151','_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1781232690;s:8:\"response\";a:2:{s:23:\"cartflows/cartflows.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:23:\"w.org/plugins/cartflows\";s:4:\"slug\";s:9:\"cartflows\";s:6:\"plugin\";s:23:\"cartflows/cartflows.php\";s:11:\"new_version\";s:5:\"3.1.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/cartflows/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/cartflows.3.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/cartflows/assets/icon-256x256.gif?rev=3298049\";s:2:\"1x\";s:62:\"https://ps.w.org/cartflows/assets/icon-128x128.gif?rev=3298049\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/cartflows/assets/banner-1544x500.gif?rev=2960367\";s:2:\"1x\";s:64:\"https://ps.w.org/cartflows/assets/banner-772x250.gif?rev=2960367\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:25:\"fluentform/fluentform.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:24:\"w.org/plugins/fluentform\";s:4:\"slug\";s:10:\"fluentform\";s:6:\"plugin\";s:25:\"fluentform/fluentform.php\";s:11:\"new_version\";s:5:\"6.2.5\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/fluentform/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/fluentform.6.2.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/fluentform/assets/icon-256x256.png?rev=3354580\";s:2:\"1x\";s:63:\"https://ps.w.org/fluentform/assets/icon-128x128.png?rev=3354580\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/fluentform/assets/banner-1544x500.png?rev=3354580\";s:2:\"1x\";s:65:\"https://ps.w.org/fluentform/assets/banner-772x250.png?rev=3354580\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.4\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:5:{s:23:\"elementor/elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"4.1.3\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.1.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3444228\";s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3444228\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3443226\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3443226\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:33:\"kadence-blocks/kadence-blocks.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/kadence-blocks\";s:4:\"slug\";s:14:\"kadence-blocks\";s:6:\"plugin\";s:33:\"kadence-blocks/kadence-blocks.php\";s:11:\"new_version\";s:5:\"3.7.5\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/kadence-blocks/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/kadence-blocks.3.7.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/kadence-blocks/assets/icon-256x256.png?rev=3178382\";s:2:\"1x\";s:67:\"https://ps.w.org/kadence-blocks/assets/icon-128x128.png?rev=3178382\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/kadence-blocks/assets/banner-1544x500.jpg?rev=3178382\";s:2:\"1x\";s:69:\"https://ps.w.org/kadence-blocks/assets/banner-772x250.jpg?rev=3178382\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";}s:29:\"microsoft-clarity/clarity.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:31:\"w.org/plugins/microsoft-clarity\";s:4:\"slug\";s:17:\"microsoft-clarity\";s:6:\"plugin\";s:29:\"microsoft-clarity/clarity.php\";s:11:\"new_version\";s:7:\"0.10.24\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/microsoft-clarity/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/microsoft-clarity.0.10.24.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/microsoft-clarity/assets/icon-256x256.png?rev=3472012\";s:2:\"1x\";s:70:\"https://ps.w.org/microsoft-clarity/assets/icon-256x256.png?rev=3472012\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:55:\"kadence-starter-templates/kadence-starter-templates.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"w.org/plugins/kadence-starter-templates\";s:4:\"slug\";s:25:\"kadence-starter-templates\";s:6:\"plugin\";s:55:\"kadence-starter-templates/kadence-starter-templates.php\";s:11:\"new_version\";s:5:\"2.3.2\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/kadence-starter-templates/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/kadence-starter-templates.2.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:70:\"https://ps.w.org/kadence-starter-templates/assets/icon.svg?rev=3410175\";s:3:\"svg\";s:70:\"https://ps.w.org/kadence-starter-templates/assets/icon.svg?rev=3410175\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/kadence-starter-templates/assets/banner-1544x500.jpg?rev=3410175\";s:2:\"1x\";s:80:\"https://ps.w.org/kadence-starter-templates/assets/banner-772x250.jpg?rev=3410175\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":13:{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:6:\"10.8.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.10.8.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";s:3:\"svg\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3234504\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3234504\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.9\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608156','_transient_timeout_cartflows_data_2159_ac0e747a04278cb4bbe799fa32c41a2d','1781145701','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608157','_transient_cartflows_data_2159_ac0e747a04278cb4bbe799fa32c41a2d','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608158','_transient_timeout_imunify_security_rules_1781143906_2761995','1781165555','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608159','_transient_imunify_security_rules_1781143906_2761995','a:2:{s:7:\"version\";s:7:\"0.662.0\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608160','_transient_timeout_imunify_security_rules_1781147764_2766514','1781169688','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608161','_transient_imunify_security_rules_1781147764_2766514','a:2:{s:7:\"version\";s:7:\"0.663.0\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608162','_transient_timeout_cartflows_data_2159_02e7f182224d79de576cd9446a5c38c0','1781154472','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608163','_transient_cartflows_data_2159_02e7f182224d79de576cd9446a5c38c0','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608166','_site_transient_timeout_browser_16fee37559dbd42b448204446d02089f','1781754863','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608167','_site_transient_browser_16fee37559dbd42b448204446d02089f','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"149.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608170','_transient_timeout_fluentform_dashboard_stats_v1','1781150667','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608171','_transient_fluentform_dashboard_stats_v1','O:44:\"FluentForm\\Framework\\Database\\Orm\\Collection\":2:{s:8:\"\0*\0items\";a:0:{}s:28:\"\0*\0escapeWhenCastingToString\";b:0;}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608172','_site_transient_timeout_community-events-35db4ac3e6176b63b7fdf6c1306c8387','1781193271','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608173','_site_transient_community-events-35db4ac3e6176b63b7fdf6c1306c8387','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"27.147.191.0\";}s:6:\"events\";a:2:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:87:\"WordPress Campus Connect Hajee Mohammad Danesh Science and Technology University (HSTU)\";s:3:\"url\";s:53:\"https://events.wordpress.org/campusconnect/2026/hstu/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-06-11 00:00:00\";s:8:\"end_date\";s:19:\"2026-06-11 00:00:00\";s:20:\"start_unix_timestamp\";i:1781114400;s:18:\"end_unix_timestamp\";i:1781114400;s:8:\"location\";a:4:{s:8:\"location\";s:20:\"Dinajpur, Bangladesh\";s:7:\"country\";s:2:\"BD\";s:8:\"latitude\";d:25.6951926;s:9:\"longitude\";d:88.6519613;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:22:\"WordCamp Rajshahi 2026\";s:3:\"url\";s:35:\"https://rajshahi.wordcamp.org/2026/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-07-02 00:00:00\";s:8:\"end_date\";s:19:\"2026-07-03 00:00:00\";s:20:\"start_unix_timestamp\";i:1782928800;s:18:\"end_unix_timestamp\";i:1783015200;s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Rajshahi,Bangladesh\";s:7:\"country\";s:2:\"BD\";s:8:\"latitude\";d:24.3745949;s:9:\"longitude\";d:88.6217392;}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608174','pys_tiktok','a:43:{s:7:\"enabled\";b:1;s:8:\"pixel_id\";a:0:{}s:25:\"advanced_matching_enabled\";b:1;s:13:\"hide_this_tag\";b:0;s:21:\"hide_this_tag_contain\";a:0:{}s:21:\"hide_this_tag_timeout\";i:24;s:13:\"hide_this_url\";b:0;s:21:\"hide_this_url_contain\";a:0:{}s:22:\"woo_variable_as_simple\";b:0;s:14:\"woo_content_id\";s:10:\"product_id\";s:21:\"woo_content_id_prefix\";s:0:\"\";s:21:\"woo_content_id_suffix\";s:0:\"\";s:20:\"woo_content_id_logic\";s:7:\"default\";s:23:\"woo_add_to_cart_enabled\";b:1;s:24:\"woo_view_content_enabled\";b:1;s:29:\"woo_initiate_checkout_enabled\";b:1;s:20:\"woo_purchase_enabled\";b:1;s:27:\"woo_compete_payment_enabled\";b:1;s:23:\"edd_add_to_cart_enabled\";b:1;s:29:\"edd_initiate_checkout_enabled\";b:1;s:20:\"edd_purchase_enabled\";b:1;s:24:\"edd_view_content_enabled\";b:1;s:28:\"edd_complete_payment_enabled\";b:1;s:37:\"automatic_event_internal_link_enabled\";b:1;s:37:\"automatic_event_outbound_link_enabled\";b:1;s:28:\"automatic_event_form_enabled\";b:0;s:30:\"automatic_event_signup_enabled\";b:0;s:32:\"automatic_event_download_enabled\";b:1;s:30:\"automatic_event_search_enabled\";b:1;s:30:\"automatic_event_scroll_enabled\";b:0;s:29:\"automatic_event_video_enabled\";b:0;s:32:\"automatic_event_tel_link_enabled\";b:0;s:34:\"automatic_event_email_link_enabled\";b:0;s:29:\"automatic_event_login_enabled\";b:0;s:31:\"automatic_event_comment_enabled\";b:0;s:31:\"automatic_event_adsense_enabled\";b:0;s:36:\"automatic_event_time_on_page_enabled\";b:0;s:29:\"automatic_event_video_trigger\";s:2:\"0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\";s:14:\"use_server_api\";b:0;s:23:\"server_access_api_token\";a:0:{}s:19:\"test_api_event_code\";a:0:{}s:33:\"test_api_event_code_expiration_at\";a:0:{}s:11:\"logs_enable\";b:0;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608175','pys_facebook','a:94:{s:7:\"enabled\";b:1;s:8:\"pixel_id\";a:1:{i:0;s:16:\"1220065983481377\";}s:18:\"category_pixel_ids\";s:0:\"\";s:25:\"category_pixel_server_ids\";s:0:\"\";s:31:\"category_pixel_server_test_code\";s:0:\"\";s:13:\"hide_this_tag\";b:0;s:21:\"hide_this_tag_contain\";a:0:{}s:21:\"hide_this_tag_timeout\";i:24;s:13:\"hide_this_url\";b:0;s:21:\"hide_this_url_contain\";a:0:{}s:25:\"advanced_matching_enabled\";b:1;s:15:\"remove_metadata\";b:0;s:10:\"pixel_lang\";s:0:\"\";s:22:\"woo_variable_as_simple\";b:0;s:14:\"woo_content_id\";s:10:\"product_id\";s:21:\"woo_content_id_prefix\";s:0:\"\";s:21:\"woo_content_id_suffix\";s:0:\"\";s:20:\"woo_content_id_logic\";s:7:\"default\";s:28:\"woo_frequent_shopper_enabled\";b:1;s:22:\"woo_vip_client_enabled\";b:1;s:21:\"woo_big_whale_enabled\";b:1;s:20:\"woo_purchase_enabled\";b:1;s:29:\"woo_initiate_checkout_enabled\";b:1;s:28:\"woo_remove_from_cart_enabled\";b:1;s:23:\"woo_add_to_cart_enabled\";b:1;s:24:\"woo_view_content_enabled\";b:1;s:25:\"woo_view_category_enabled\";b:1;s:21:\"woo_affiliate_enabled\";b:1;s:18:\"woo_paypal_enabled\";b:1;s:22:\"edd_category_pixel_ids\";s:0:\"\";s:29:\"edd_category_pixel_server_ids\";s:0:\"\";s:35:\"edd_category_pixel_server_test_code\";s:0:\"\";s:14:\"edd_content_id\";s:11:\"download_id\";s:21:\"edd_content_id_prefix\";s:0:\"\";s:21:\"edd_content_id_suffix\";s:0:\"\";s:28:\"edd_frequent_shopper_enabled\";b:1;s:22:\"edd_vip_client_enabled\";b:1;s:21:\"edd_big_whale_enabled\";b:1;s:20:\"edd_purchase_enabled\";b:1;s:29:\"edd_initiate_checkout_enabled\";b:1;s:28:\"edd_remove_from_cart_enabled\";b:1;s:23:\"edd_add_to_cart_enabled\";b:1;s:24:\"edd_view_content_enabled\";b:1;s:25:\"edd_view_category_enabled\";b:1;s:16:\"fdp_content_type\";s:7:\"product\";s:24:\"fdp_view_content_enabled\";b:0;s:25:\"fdp_view_category_enabled\";b:0;s:23:\"fdp_add_to_cart_enabled\";b:0;s:33:\"fdp_add_to_cart_event_fire_scroll\";s:2:\"50\";s:26:\"fdp_add_to_cart_event_fire\";s:10:\"scroll_pos\";s:30:\"fdp_add_to_cart_event_fire_css\";s:0:\"\";s:20:\"fdp_purchase_enabled\";b:0;s:23:\"fdp_purchase_event_fire\";s:10:\"scroll_pos\";s:30:\"fdp_purchase_event_fire_scroll\";s:2:\"90\";s:27:\"fdp_purchase_event_fire_css\";s:0:\"\";s:12:\"fdp_pixel_id\";s:0:\"\";s:20:\"fdp_use_own_pixel_id\";b:0;s:12:\"fdp_currency\";s:3:\"USD\";s:21:\"fdp_add_to_cart_value\";s:1:\"0\";s:18:\"fdp_purchase_value\";s:1:\"0\";s:14:\"use_server_api\";b:1;s:23:\"server_access_api_token\";a:1:{i:0;s:198:\"EAAJ361SyPn4BRoQuiOR0FfuczqwJ3RFVZCtDRs4gZAiQ1H8XCkOYH1AsI1f4DZCHniWbdU3bkEnii7n6fMfOiqrwig5AeuaaZAYnRZCyKrXFby2gvv0tOuIdHipv0xi7DXRwjxGZA6IYpD1Ek2LCdFZBLMGnIBoF7X28iczatpmwM2dkeQOO27Usp8LYaNrWgZDZD\";}s:19:\"test_api_event_code\";a:0:{}s:33:\"test_api_event_code_expiration_at\";a:0:{}s:41:\"woo_complete_registration_fire_every_time\";b:0;s:42:\"woo_complete_registration_use_custom_value\";b:1;s:38:\"woo_complete_registration_custom_value\";s:5:\"price\";s:39:\"woo_complete_registration_percent_value\";s:0:\"\";s:38:\"woo_complete_registration_global_value\";s:0:\"\";s:42:\"woo_complete_registration_custom_value_old\";s:0:\"\";s:42:\"woo_complete_registration_send_from_server\";b:1;s:16:\"send_external_id\";b:1;s:15:\"verify_meta_tag\";a:0:{}s:28:\"wcf_cart_flows_event_enabled\";b:1;s:22:\"wcf_step_event_enabled\";b:1;s:22:\"wcf_bump_event_enabled\";b:1;s:12:\"wcf_pixel_id\";s:0:\"\";s:27:\"wcf_server_access_api_token\";s:0:\"\";s:23:\"wcf_test_api_event_code\";s:0:\"\";s:19:\"wcf_verify_meta_tag\";s:0:\"\";s:37:\"automatic_event_internal_link_enabled\";b:1;s:37:\"automatic_event_outbound_link_enabled\";b:1;s:29:\"automatic_event_video_enabled\";b:1;s:32:\"automatic_event_tel_link_enabled\";b:1;s:34:\"automatic_event_email_link_enabled\";b:1;s:28:\"automatic_event_form_enabled\";b:1;s:30:\"automatic_event_signup_enabled\";b:0;s:29:\"automatic_event_login_enabled\";b:1;s:32:\"automatic_event_download_enabled\";b:1;s:31:\"automatic_event_comment_enabled\";b:1;s:31:\"automatic_event_adsense_enabled\";b:1;s:30:\"automatic_event_scroll_enabled\";b:1;s:36:\"automatic_event_time_on_page_enabled\";b:1;s:30:\"automatic_event_search_enabled\";b:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608176','pys_ga','a:126:{s:7:\"enabled\";b:1;s:20:\"is_enable_debug_mode\";a:0:{}s:10:\"pixel_lang\";s:0:\"\";s:24:\"enhance_link_attribution\";b:0;s:12:\"anonimize_ip\";b:0;s:13:\"track_user_id\";b:0;s:11:\"tracking_id\";a:0:{}s:16:\"optimize_enabled\";b:0;s:11:\"optimize_id\";s:0:\"\";s:13:\"hide_this_tag\";b:0;s:21:\"hide_this_tag_contain\";a:0:{}s:21:\"hide_this_tag_timeout\";i:24;s:13:\"hide_this_url\";b:0;s:21:\"hide_this_url_contain\";a:0:{}s:14:\"use_server_api\";b:0;s:23:\"server_access_api_token\";s:0:\"\";s:20:\"cross_domain_enabled\";b:0;s:28:\"cross_domain_accept_incoming\";b:0;s:20:\"cross_domain_domains\";a:0:{}s:19:\"enable_anti_flicker\";b:1;s:20:\"anti_flicker_timeout\";i:4000;s:22:\"woo_variable_as_simple\";b:1;s:30:\"woo_variations_use_parent_name\";b:0;s:14:\"woo_content_id\";s:10:\"product_id\";s:21:\"woo_content_id_prefix\";s:0:\"\";s:21:\"woo_content_id_suffix\";s:0:\"\";s:28:\"woo_frequent_shopper_enabled\";b:1;s:22:\"woo_vip_client_enabled\";b:1;s:21:\"woo_big_whale_enabled\";b:1;s:20:\"woo_purchase_enabled\";b:1;s:29:\"woo_initiate_checkout_enabled\";b:1;s:40:\"woo_initiate_set_checkout_option_enabled\";b:1;s:40:\"woo_initiate_checkout_progress_f_enabled\";b:1;s:40:\"woo_initiate_checkout_progress_l_enabled\";b:1;s:40:\"woo_initiate_checkout_progress_e_enabled\";b:1;s:40:\"woo_initiate_checkout_progress_o_enabled\";b:1;s:28:\"woo_remove_from_cart_enabled\";b:1;s:23:\"woo_add_to_cart_enabled\";b:1;s:24:\"woo_view_content_enabled\";b:1;s:25:\"woo_view_category_enabled\";b:1;s:21:\"woo_view_cart_enabled\";b:1;s:21:\"woo_affiliate_enabled\";b:1;s:18:\"woo_paypal_enabled\";b:1;s:26:\"woo_select_content_enabled\";b:1;s:26:\"woo_view_item_list_enabled\";b:1;s:14:\"edd_content_id\";s:11:\"download_id\";s:21:\"edd_content_id_prefix\";s:0:\"\";s:21:\"edd_content_id_suffix\";s:0:\"\";s:28:\"edd_frequent_shopper_enabled\";b:1;s:22:\"edd_vip_client_enabled\";b:1;s:21:\"edd_big_whale_enabled\";b:1;s:20:\"edd_purchase_enabled\";b:1;s:29:\"edd_initiate_checkout_enabled\";b:1;s:28:\"edd_remove_from_cart_enabled\";b:1;s:23:\"edd_add_to_cart_enabled\";b:1;s:24:\"edd_view_content_enabled\";b:1;s:25:\"edd_view_category_enabled\";b:1;s:27:\"click_event_non_interactive\";b:1;s:32:\"watchvideo_event_non_interactive\";b:0;s:43:\"complete_registration_event_non_interactive\";b:0;s:26:\"form_event_non_interactive\";b:0;s:29:\"comment_event_non_interactive\";b:0;s:30:\"download_event_non_interactive\";b:0;s:36:\"woo_frequent_shopper_non_interactive\";b:1;s:30:\"woo_vip_client_non_interactive\";b:1;s:29:\"woo_big_whale_non_interactive\";b:1;s:28:\"woo_purchase_non_interactive\";b:1;s:37:\"woo_initiate_checkout_non_interactive\";b:1;s:36:\"woo_remove_from_cart_non_interactive\";b:0;s:31:\"woo_add_to_cart_non_interactive\";b:0;s:32:\"woo_view_content_non_interactive\";b:1;s:33:\"woo_view_category_non_interactive\";b:1;s:29:\"woo_affiliate_non_interactive\";b:0;s:26:\"woo_paypal_non_interactive\";b:0;s:36:\"edd_frequent_shopper_non_interactive\";b:1;s:30:\"edd_vip_client_non_interactive\";b:1;s:29:\"edd_big_whale_non_interactive\";b:1;s:28:\"edd_purchase_non_interactive\";b:1;s:37:\"edd_initiate_checkout_non_interactive\";b:1;s:36:\"edd_remove_from_cart_non_interactive\";b:0;s:31:\"edd_add_to_cart_non_interactive\";b:0;s:32:\"edd_view_content_non_interactive\";b:1;s:33:\"edd_view_category_non_interactive\";b:1;s:28:\"disable_advertising_features\";b:0;s:35:\"disable_advertising_personalization\";b:0;s:28:\"wcf_cart_flows_event_enabled\";b:1;s:22:\"wcf_step_event_enabled\";b:1;s:22:\"wcf_bump_event_enabled\";b:1;s:12:\"wcf_pixel_id\";s:0:\"\";s:37:\"automatic_event_internal_link_enabled\";b:1;s:37:\"automatic_event_outbound_link_enabled\";b:1;s:29:\"automatic_event_video_enabled\";b:1;s:38:\"automatic_event_video_youtube_disabled\";b:0;s:32:\"automatic_event_tel_link_enabled\";b:1;s:34:\"automatic_event_email_link_enabled\";b:1;s:28:\"automatic_event_form_enabled\";b:1;s:30:\"automatic_event_signup_enabled\";b:1;s:29:\"automatic_event_login_enabled\";b:1;s:32:\"automatic_event_download_enabled\";b:1;s:31:\"automatic_event_comment_enabled\";b:1;s:31:\"automatic_event_adsense_enabled\";b:1;s:30:\"automatic_event_scroll_enabled\";b:1;s:36:\"automatic_event_time_on_page_enabled\";b:1;s:30:\"automatic_event_search_enabled\";b:1;s:53:\"automatic_event_internal_link_non_interactive_enabled\";b:0;s:53:\"automatic_event_outbound_link_non_interactive_enabled\";b:0;s:45:\"automatic_event_video_non_interactive_enabled\";b:0;s:48:\"automatic_event_tel_link_non_interactive_enabled\";b:0;s:50:\"automatic_event_email_link_non_interactive_enabled\";b:0;s:44:\"automatic_event_form_non_interactive_enabled\";b:0;s:46:\"automatic_event_signup_non_interactive_enabled\";b:0;s:45:\"automatic_event_login_non_interactive_enabled\";b:0;s:48:\"automatic_event_download_non_interactive_enabled\";b:0;s:47:\"automatic_event_comment_non_interactive_enabled\";b:0;s:47:\"automatic_event_adsense_non_interactive_enabled\";b:0;s:46:\"automatic_event_scroll_non_interactive_enabled\";b:0;s:52:\"automatic_event_time_on_page_non_interactive_enabled\";b:0;s:46:\"automatic_event_search_non_interactive_enabled\";b:0;s:20:\"woo_enable_list_shop\";b:1;s:23:\"woo_enable_list_related\";b:1;s:24:\"woo_enable_list_category\";b:1;s:20:\"woo_enable_list_tags\";b:1;s:26:\"woo_enable_list_shortcodes\";b:1;s:22:\"woo_track_item_list_id\";b:0;s:24:\"woo_track_item_list_name\";b:0;s:29:\"woo_view_item_list_track_name\";b:0;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608177','pys_google_ads','a:61:{s:7:\"enabled\";b:1;s:7:\"ads_ids\";a:1:{i:0;s:0:\"\";}s:10:\"pixel_lang\";s:0:\"\";s:13:\"hide_this_tag\";b:0;s:21:\"hide_this_tag_contain\";a:0:{}s:21:\"hide_this_tag_timeout\";i:24;s:13:\"hide_this_url\";b:0;s:21:\"hide_this_url_contain\";a:0:{}s:22:\"woo_variable_as_simple\";b:0;s:14:\"woo_content_id\";s:10:\"product_id\";s:18:\"woo_item_id_prefix\";s:0:\"\";s:18:\"woo_item_id_suffix\";s:0:\"\";s:20:\"woo_purchase_enabled\";b:1;s:30:\"woo_purchase_conversion_labels\";a:0:{}s:39:\"woo_initiate_checkout_conversion_labels\";a:0:{}s:38:\"woo_remove_from_cart_conversion_labels\";a:0:{}s:23:\"woo_add_to_cart_enabled\";b:1;s:33:\"woo_add_to_cart_conversion_labels\";a:0:{}s:24:\"woo_view_content_enabled\";b:1;s:34:\"woo_view_content_conversion_labels\";a:0:{}s:25:\"woo_view_category_enabled\";b:1;s:35:\"woo_view_category_conversion_labels\";a:0:{}s:21:\"woo_affiliate_enabled\";b:1;s:35:\"enhanced_conversions_manual_enabled\";a:0:{}s:25:\"woo_purchase_new_customer\";b:1;s:14:\"edd_content_id\";s:11:\"download_id\";s:21:\"edd_content_id_prefix\";s:0:\"\";s:21:\"edd_content_id_suffix\";s:0:\"\";s:20:\"edd_purchase_enabled\";b:1;s:29:\"edd_purchase_conversion_label\";s:0:\"\";s:26:\"edd_purchase_conversion_id\";s:0:\"\";s:23:\"edd_add_to_cart_enabled\";b:1;s:33:\"edd_add_to_cart_conversion_labels\";a:0:{}s:24:\"edd_view_content_enabled\";b:1;s:34:\"edd_view_content_conversion_labels\";a:0:{}s:25:\"edd_view_category_enabled\";b:1;s:35:\"edd_view_category_conversion_labels\";a:0:{}s:22:\"page_view_post_enabled\";b:0;s:22:\"page_view_page_enabled\";b:0;s:29:\"page_view_custom_post_enabled\";b:0;s:27:\"page_view_business_vertical\";s:6:\"custom\";s:15:\"verify_meta_tag\";a:0:{}s:28:\"wcf_cart_flows_event_enabled\";b:1;s:22:\"wcf_step_event_enabled\";b:1;s:22:\"wcf_bump_event_enabled\";b:1;s:12:\"wcf_pixel_id\";s:0:\"\";s:19:\"wcf_verify_meta_tag\";s:0:\"\";s:37:\"automatic_event_internal_link_enabled\";b:1;s:37:\"automatic_event_outbound_link_enabled\";b:1;s:29:\"automatic_event_video_enabled\";b:1;s:32:\"automatic_event_tel_link_enabled\";b:1;s:34:\"automatic_event_email_link_enabled\";b:1;s:28:\"automatic_event_form_enabled\";b:1;s:30:\"automatic_event_signup_enabled\";b:1;s:29:\"automatic_event_login_enabled\";b:1;s:32:\"automatic_event_download_enabled\";b:1;s:31:\"automatic_event_comment_enabled\";b:1;s:31:\"automatic_event_adsense_enabled\";b:1;s:30:\"automatic_event_scroll_enabled\";b:1;s:36:\"automatic_event_time_on_page_enabled\";b:1;s:30:\"automatic_event_search_enabled\";b:1;}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608178','pys_head_footer','a:14:{s:7:\"enabled\";b:1;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";s:33:\"woo_order_received_disable_global\";b:0;s:27:\"woo_order_received_head_any\";s:0:\"\";s:31:\"woo_order_received_head_desktop\";s:0:\"\";s:30:\"woo_order_received_head_mobile\";s:0:\"\";s:29:\"woo_order_received_footer_any\";s:0:\"\";s:33:\"woo_order_received_footer_desktop\";s:0:\"\";s:32:\"woo_order_received_footer_mobile\";s:0:\"\";}','yes');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608179','_transient_timeout_cartflows_data_2159_c1333cfc3ae617955d6b9a2350b544b4','1781152603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608180','_transient_cartflows_data_2159_c1333cfc3ae617955d6b9a2350b544b4','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608181','_transient_timeout_wcf_user_t_05cac4bcdc5366557622f4c9986ae7_checkout_2161','1781152714','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608182','_transient_wcf_user_t_05cac4bcdc5366557622f4c9986ae7_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608183','_transient_timeout_cartflows_data_2159_b10948b6735ba0bb904166d4d9919cf9','1781152714','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608184','_transient_cartflows_data_2159_b10948b6735ba0bb904166d4d9919cf9','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608185','_transient_timeout_wcf_user_t_72b2a9a4c305a91440e7cd1308cebc_checkout_2161','1781152714','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608186','_transient_wcf_user_t_72b2a9a4c305a91440e7cd1308cebc_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608187','_transient_timeout_cartflows_data_2159_04ea4ec4b480d209eea678ff08f2401f','1781152714','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608188','_transient_cartflows_data_2159_04ea4ec4b480d209eea678ff08f2401f','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608189','_transient_timeout_wcf_user_t_782523368a515e74b483ff36fe1a92_checkout_2161','1781152714','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608190','_transient_wcf_user_t_782523368a515e74b483ff36fe1a92_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608191','_transient_timeout_cartflows_data_2159_5001d342cbfe5c89065a77e8f3ca8236','1781152714','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608192','_transient_cartflows_data_2159_5001d342cbfe5c89065a77e8f3ca8236','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608193','_transient_timeout_wcf_user_t_88411ace4ece1d0f2b2a05577757f2_checkout_2161','1781152714','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608194','_transient_wcf_user_t_88411ace4ece1d0f2b2a05577757f2_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608195','_transient_timeout_cartflows_data_2159_ff49910dfecbbd849c89115c4b35b122','1781152714','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608196','_transient_cartflows_data_2159_ff49910dfecbbd849c89115c4b35b122','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608197','_transient_timeout_wcf_user_t_800e7d37002cc7acef62a21f05a1e3_checkout_2161','1781152714','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608198','_transient_wcf_user_t_800e7d37002cc7acef62a21f05a1e3_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608199','_transient_timeout_cartflows_data_2159_5121330283c4a4d4e9f8ed5132f47578','1781152714','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608200','_transient_cartflows_data_2159_5121330283c4a4d4e9f8ed5132f47578','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608201','_transient_timeout_wcf_user_t_fb050e6a16e306369a252ce2826ed5_checkout_2161','1781152716','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608202','_transient_wcf_user_t_fb050e6a16e306369a252ce2826ed5_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608203','_transient_timeout_cartflows_data_2159_e46d05d15b547248a3d95aaf3bc47e8c','1781152716','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608204','_transient_cartflows_data_2159_e46d05d15b547248a3d95aaf3bc47e8c','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608205','_transient_timeout_wcf_user_t_5f212be89384b50fd913c2737828b4_checkout_2161','1781152717','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608206','_transient_wcf_user_t_5f212be89384b50fd913c2737828b4_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608207','_transient_timeout_cartflows_data_2159_989d0b32519d189e4026640ac0b1c595','1781152717','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608208','_transient_cartflows_data_2159_989d0b32519d189e4026640ac0b1c595','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608209','_transient_timeout_wcf_user_t_b4c98d93b31f9b0b70102d592362ff_checkout_2161','1781152720','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608210','_transient_wcf_user_t_b4c98d93b31f9b0b70102d592362ff_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608211','_transient_timeout_cartflows_data_2159_c13088887c709964293429069b1e428c','1781152720','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608212','_transient_cartflows_data_2159_c13088887c709964293429069b1e428c','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608213','_transient_timeout_wcf_user_t_a7ef809f19656d10da62eaf621d54c_checkout_2161','1781152725','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608214','_transient_wcf_user_t_a7ef809f19656d10da62eaf621d54c_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608215','_transient_timeout_cartflows_data_2159_5f420981172185d645e7bb0ccf5b3752','1781152750','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608216','_transient_cartflows_data_2159_5f420981172185d645e7bb0ccf5b3752','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608217','_transient_timeout_wcf_user_t_954ad373b0901cf183996d351f41f0_checkout_2161','1781152729','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608218','_transient_wcf_user_t_954ad373b0901cf183996d351f41f0_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608219','_transient_timeout_cartflows_data_2159_8370b04f486842f3daf55784fec774cb','1781152750','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608220','_transient_cartflows_data_2159_8370b04f486842f3daf55784fec774cb','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608221','_transient_timeout_wcf_user_t_317df44e4357c330d9e305460811a0_checkout_2161','1781152730','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608222','_transient_wcf_user_t_317df44e4357c330d9e305460811a0_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608223','_transient_timeout_cartflows_data_2159_ee25bfe40ef0ea0598cd1dec8aef782f','1781152752','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608224','_transient_cartflows_data_2159_ee25bfe40ef0ea0598cd1dec8aef782f','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608225','_transient_timeout_wcf_user_t_a3c8cbad08da87cf4042f00d045cd7_checkout_2161','1781152776','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608226','_transient_wcf_user_t_a3c8cbad08da87cf4042f00d045cd7_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608227','_transient_timeout_cartflows_data_2159_8705a27540af14d427805a7b5cd9a441','1781152776','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608228','_transient_cartflows_data_2159_8705a27540af14d427805a7b5cd9a441','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608229','_transient_timeout_wcf_user_t_baacbcd0677ead67a995183eb9866f_checkout_2161','1781152777','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608230','_transient_wcf_user_t_baacbcd0677ead67a995183eb9866f_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608231','_transient_timeout_cartflows_data_2159_8de9cb1703d660229e157aeb5e9eeff1','1781152777','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608232','_transient_cartflows_data_2159_8de9cb1703d660229e157aeb5e9eeff1','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608233','_transient_timeout_wcf_user_t_6756cd234bbaf1ccb3f90765dc25ca_checkout_2161','1781152777','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608234','_transient_wcf_user_t_6756cd234bbaf1ccb3f90765dc25ca_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608235','_transient_timeout_cartflows_data_2159_08c62491c237c7d1c809e509a570ae70','1781152777','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608236','_transient_cartflows_data_2159_08c62491c237c7d1c809e509a570ae70','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608237','_transient_timeout_wcf_user_t_62cb4b106e2140ea2ea2ee3bc8d067_checkout_2161','1781152793','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608238','_transient_wcf_user_t_62cb4b106e2140ea2ea2ee3bc8d067_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608239','_transient_timeout_cartflows_data_2159_6d8d346e07eeedc03923404569a4846d','1781152793','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608240','_transient_cartflows_data_2159_6d8d346e07eeedc03923404569a4846d','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608241','_transient_timeout_wcf_user_t_2189819f806439906e633d79b9b787_checkout_2161','1781152798','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608242','_transient_wcf_user_t_2189819f806439906e633d79b9b787_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608243','_transient_timeout_cartflows_data_2159_0c88c34a1a6d2e2befbcc3051b6db6e3','1781152798','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608244','_transient_cartflows_data_2159_0c88c34a1a6d2e2befbcc3051b6db6e3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608245','_transient_timeout_wcf_user_t_e27ce9560842ec024e55a8c8a3b67c_checkout_2161','1781152838','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608246','_transient_wcf_user_t_e27ce9560842ec024e55a8c8a3b67c_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608247','_transient_timeout_cartflows_data_2159_2b05bf21340d8500b61c453f0eb73620','1781152843','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608248','_transient_cartflows_data_2159_2b05bf21340d8500b61c453f0eb73620','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608249','_transient_timeout_wcf_user_t_36320215c615a4f305f5fa7b7cbf12_checkout_2161','1781152875','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608250','_transient_wcf_user_t_36320215c615a4f305f5fa7b7cbf12_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608251','_transient_timeout_cartflows_data_2159_74cc764c6d3eee21b447174be8cbf075','1781152875','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608252','_transient_cartflows_data_2159_74cc764c6d3eee21b447174be8cbf075','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608253','_transient_timeout_wcf_user_t_b5bd05d80a4231af24fdc78be7a2ab_checkout_2161','1781152875','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608254','_transient_wcf_user_t_b5bd05d80a4231af24fdc78be7a2ab_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608255','_transient_timeout_cartflows_data_2159_441d2db2dcd6a26aed1b532b5f399ab9','1781152882','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608256','_transient_cartflows_data_2159_441d2db2dcd6a26aed1b532b5f399ab9','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608257','_transient_timeout_wcf_user_t_0e4d2395d1d1b5907993819f5cb3f3_checkout_2161','1781152913','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608258','_transient_wcf_user_t_0e4d2395d1d1b5907993819f5cb3f3_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608259','_transient_timeout_cartflows_data_2159_340a1be5aa33faaf45ded5b1a92fdca1','1781152913','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608260','_transient_cartflows_data_2159_340a1be5aa33faaf45ded5b1a92fdca1','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608261','_transient_timeout_imunify_security_rules_1781151468_2766542','1781173425','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608262','_transient_imunify_security_rules_1781151468_2766542','a:2:{s:7:\"version\";s:7:\"0.664.0\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608263','_transient_timeout_wcf_user_t_0462fe98a10cd336a7d3522e14d681_checkout_2161','1781153633','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608264','_transient_wcf_user_t_0462fe98a10cd336a7d3522e14d681_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608265','_transient_timeout_cartflows_data_2159_eac669f653059241ce6e0f76fd869a87','1781153633','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608266','_transient_cartflows_data_2159_eac669f653059241ce6e0f76fd869a87','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608267','_transient_timeout_wcf_user_t_70e38a4242531e6b413b77207be233_checkout_2161','1781153634','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608268','_transient_wcf_user_t_70e38a4242531e6b413b77207be233_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608269','_transient_timeout_cartflows_data_2159_cb066b1bda6f48119539ad0252e87cbd','1781153634','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608270','_transient_cartflows_data_2159_cb066b1bda6f48119539ad0252e87cbd','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608271','_transient_timeout_wcf_user_t_2dc5a51159e1bf46e13a0959a550ea_checkout_2161','1781154563','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608272','_transient_wcf_user_t_2dc5a51159e1bf46e13a0959a550ea_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608273','_transient_timeout_cartflows_data_2159_d2b264057d9f1aa68e09867841f19c53','1781154563','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608274','_transient_cartflows_data_2159_d2b264057d9f1aa68e09867841f19c53','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608275','_transient_timeout_wcf_user_t_34a1337dafe9db580ad86526e754c0_checkout_2161','1781154569','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608276','_transient_wcf_user_t_34a1337dafe9db580ad86526e754c0_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608277','_transient_timeout_cartflows_data_2159_5548c4ff885ca36a87a3e8ee4f10668a','1781154569','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608278','_transient_cartflows_data_2159_5548c4ff885ca36a87a3e8ee4f10668a','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608279','_transient_timeout_wcf_user_t_3f2b37cb8a28ebce8e7c517a9768ac_checkout_2161','1781154569','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608280','_transient_wcf_user_t_3f2b37cb8a28ebce8e7c517a9768ac_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608281','_transient_timeout_cartflows_data_2159_57b5e62dc384a78cc4252873fb64abb7','1781154569','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608282','_transient_cartflows_data_2159_57b5e62dc384a78cc4252873fb64abb7','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608283','_transient_timeout_wcf_user_t_89957d87b29a8807d762a80def6f60_checkout_2161','1781154572','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608284','_transient_wcf_user_t_89957d87b29a8807d762a80def6f60_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608285','_transient_timeout_cartflows_data_2159_256508b018d1476809376f1c53c8a357','1781154572','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608286','_transient_cartflows_data_2159_256508b018d1476809376f1c53c8a357','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608287','_transient_timeout_wcf_user_t_baae02ce745102f2f644fb0ecae904_checkout_2161','1781154573','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608288','_transient_wcf_user_t_baae02ce745102f2f644fb0ecae904_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608289','_transient_timeout_cartflows_data_2159_764fabae906ef521d505e60e4c1b1db7','1781154573','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608290','_transient_cartflows_data_2159_764fabae906ef521d505e60e4c1b1db7','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608291','_transient_timeout_wcf_user_t_8fa8c0a9a98b3f6e53bb6bf34cdf4d_checkout_2161','1781154573','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608292','_transient_wcf_user_t_8fa8c0a9a98b3f6e53bb6bf34cdf4d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608293','_transient_timeout_cartflows_data_2159_718cc7ee83e6fa99bcc6c025fdafbc44','1781154573','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608294','_transient_cartflows_data_2159_718cc7ee83e6fa99bcc6c025fdafbc44','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608295','_transient_timeout_wcf_user_t_6ff2bc64123be49b18f64d809838f4_checkout_2161','1781154573','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608296','_transient_wcf_user_t_6ff2bc64123be49b18f64d809838f4_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608297','_transient_timeout_cartflows_data_2159_d1f1c995c4b85223592fc76b8f1437a3','1781154573','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608298','_transient_cartflows_data_2159_d1f1c995c4b85223592fc76b8f1437a3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608299','_transient_timeout_wcf_user_t_5f6247eb13834b9ec21766100043f1_checkout_2161','1781154574','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608300','_transient_wcf_user_t_5f6247eb13834b9ec21766100043f1_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608301','_transient_timeout_cartflows_data_2159_0f9a23c047434929bc492b0e9de591b2','1781154574','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608302','_transient_cartflows_data_2159_0f9a23c047434929bc492b0e9de591b2','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608303','_transient_timeout_wcf_user_t_4171c237ba589c9f46236fce3f9af1_checkout_2161','1781154574','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608304','_transient_wcf_user_t_4171c237ba589c9f46236fce3f9af1_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608305','_transient_timeout_cartflows_data_2159_fb9e31f3af0ac794d6501a37cb08e561','1781154574','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608306','_transient_cartflows_data_2159_fb9e31f3af0ac794d6501a37cb08e561','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608307','_transient_timeout_wcf_user_t_f3adb9c8970673320deedac140c844_checkout_2161','1781154575','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608308','_transient_wcf_user_t_f3adb9c8970673320deedac140c844_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608309','_transient_timeout_cartflows_data_2159_b6834fc8ff5e0fa5765f50bbc1f761b5','1781154575','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608310','_transient_cartflows_data_2159_b6834fc8ff5e0fa5765f50bbc1f761b5','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608311','_transient_timeout_wcf_user_t_273e8417c7791e06733b92d60c9635_checkout_2161','1781154575','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608312','_transient_wcf_user_t_273e8417c7791e06733b92d60c9635_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608313','_transient_timeout_cartflows_data_2159_e6e5e98d24cf604c287a65e8c723ee49','1781154575','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608314','_transient_cartflows_data_2159_e6e5e98d24cf604c287a65e8c723ee49','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608315','_transient_timeout_wcf_user_t_6c1622b1f8f8d0c522fa4db1114619_checkout_2161','1781154575','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608316','_transient_wcf_user_t_6c1622b1f8f8d0c522fa4db1114619_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608317','_transient_timeout_cartflows_data_2159_9a4308e5e07fdd2281cb7a336a99cf07','1781154575','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608318','_transient_cartflows_data_2159_9a4308e5e07fdd2281cb7a336a99cf07','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608319','_transient_timeout_wcf_user_t_295fd74a671d8ea0d7d3b016870aae_checkout_2161','1781154576','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608320','_transient_wcf_user_t_295fd74a671d8ea0d7d3b016870aae_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608321','_transient_timeout_cartflows_data_2159_10fe199e49b8035acafcd012b40548e4','1781154576','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608322','_transient_cartflows_data_2159_10fe199e49b8035acafcd012b40548e4','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608323','_transient_timeout_wcf_user_t_6e1bcaa755600a5165d0296472b896_checkout_2161','1781154576','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608324','_transient_wcf_user_t_6e1bcaa755600a5165d0296472b896_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608325','_transient_timeout_cartflows_data_2159_a841d3bb95c5e273540f4b0bfa0d65e3','1781154576','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608326','_transient_cartflows_data_2159_a841d3bb95c5e273540f4b0bfa0d65e3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608327','_transient_timeout_wcf_user_t_8d87d9b7d9be644e2b916847b5a1a8_checkout_2161','1781154576','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608328','_transient_wcf_user_t_8d87d9b7d9be644e2b916847b5a1a8_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608329','_transient_timeout_cartflows_data_2159_b265964ff25abe2aef8e1e33a8ec2414','1781154576','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608330','_transient_cartflows_data_2159_b265964ff25abe2aef8e1e33a8ec2414','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608331','_transient_timeout_wcf_user_t_bf7bbbda36a890c41df1fcec16540a_checkout_2161','1781154576','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608332','_transient_wcf_user_t_bf7bbbda36a890c41df1fcec16540a_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608333','_transient_timeout_cartflows_data_2159_4e61511a9f457ade1b4e3628cf6c1736','1781154576','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608334','_transient_cartflows_data_2159_4e61511a9f457ade1b4e3628cf6c1736','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608335','_transient_timeout_wcf_user_t_98b9c4755182492aa13175a4689337_checkout_2161','1781154576','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608336','_transient_wcf_user_t_98b9c4755182492aa13175a4689337_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608337','_transient_timeout_cartflows_data_2159_bcd1dfd23a371ca77b959fdd51b0c1d1','1781154576','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608338','_transient_cartflows_data_2159_bcd1dfd23a371ca77b959fdd51b0c1d1','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608339','_transient_timeout_wcf_user_t_a49394af4c4c01dbdf52c7c6cacf9f_checkout_2161','1781154591','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608340','_transient_wcf_user_t_a49394af4c4c01dbdf52c7c6cacf9f_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608341','_transient_timeout_cartflows_data_2159_e19e7d8c2c7007205260302372592b36','1781154591','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608342','_transient_cartflows_data_2159_e19e7d8c2c7007205260302372592b36','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608343','_transient_timeout_wcf_user_t_6ce82f13b03481feb517c0b86cc5ba_checkout_2161','1781154734','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608344','_transient_wcf_user_t_6ce82f13b03481feb517c0b86cc5ba_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608345','_transient_timeout_cartflows_data_2159_3276662724b4d0edceca115b59e22241','1781154734','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608346','_transient_cartflows_data_2159_3276662724b4d0edceca115b59e22241','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608347','_transient_timeout_wcf_user_t_a5346d02fd67f9c662351d3c1af1f2_checkout_2161','1781154735','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608348','_transient_wcf_user_t_a5346d02fd67f9c662351d3c1af1f2_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608349','_transient_timeout_cartflows_data_2159_efd182557dc4a62baeebbd6bc9102d09','1781154735','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608350','_transient_cartflows_data_2159_efd182557dc4a62baeebbd6bc9102d09','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608351','_transient_timeout_wcf_user_t_46261a298c8320d131acc652e093cd_checkout_2161','1781154736','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608352','_transient_wcf_user_t_46261a298c8320d131acc652e093cd_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608353','_transient_timeout_cartflows_data_2159_193a00b79a27df687d9fd1eb64fdb3b4','1781154736','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608354','_transient_cartflows_data_2159_193a00b79a27df687d9fd1eb64fdb3b4','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608355','_transient_timeout_wcf_user_t_3670d9034419b2c6c4393f4bef76d2_checkout_2161','1781154736','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608356','_transient_wcf_user_t_3670d9034419b2c6c4393f4bef76d2_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608357','_transient_timeout_cartflows_data_2159_be9a4c7a9b9486b7bced95207d97e6fe','1781154736','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608358','_transient_cartflows_data_2159_be9a4c7a9b9486b7bced95207d97e6fe','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608359','_transient_timeout_wcf_user_t_bb22d8c0d391808b5400f950fec273_checkout_2161','1781154736','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608360','_transient_wcf_user_t_bb22d8c0d391808b5400f950fec273_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608361','_transient_timeout_cartflows_data_2159_0fe0e1ccda2b6c82fd2326052cc8ceb5','1781154736','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608362','_transient_cartflows_data_2159_0fe0e1ccda2b6c82fd2326052cc8ceb5','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608363','_transient_timeout_wcf_user_t_b7d56dacd6a065f7723bf887454d96_checkout_2161','1781154736','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608364','_transient_wcf_user_t_b7d56dacd6a065f7723bf887454d96_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608365','_transient_timeout_cartflows_data_2159_dadf0e6371a8ced03c77bba8e2406c56','1781154736','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608366','_transient_cartflows_data_2159_dadf0e6371a8ced03c77bba8e2406c56','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608367','_transient_timeout_wcf_user_t_aaf5759a918e1d57735aadf7130c67_checkout_2161','1781154738','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608368','_transient_wcf_user_t_aaf5759a918e1d57735aadf7130c67_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608369','_transient_timeout_cartflows_data_2159_df955bcd13a898a333374befbd5e01de','1781154738','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608370','_transient_cartflows_data_2159_df955bcd13a898a333374befbd5e01de','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608371','_transient_timeout_wcf_user_t_67c0924352ea38260e21907a65ff81_checkout_2161','1781154739','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608372','_transient_wcf_user_t_67c0924352ea38260e21907a65ff81_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608373','_transient_timeout_cartflows_data_2159_4d0565600e244a6f8de3540193fa40ec','1781154739','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608374','_transient_cartflows_data_2159_4d0565600e244a6f8de3540193fa40ec','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608375','_transient_timeout_wcf_user_t_e0b37d5e4c8c40d1419987647265b0_checkout_2161','1781154739','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608376','_transient_wcf_user_t_e0b37d5e4c8c40d1419987647265b0_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608377','_transient_timeout_cartflows_data_2159_62d77d8c734385272648bd227ce96fdc','1781154739','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608378','_transient_cartflows_data_2159_62d77d8c734385272648bd227ce96fdc','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608379','_transient_timeout_wcf_user_t_b6b4eaca6e3e483655f9d65bf14e91_checkout_2161','1781154739','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608380','_transient_wcf_user_t_b6b4eaca6e3e483655f9d65bf14e91_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608381','_transient_timeout_cartflows_data_2159_c531660e60934a683d68fe489e80277d','1781154739','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608382','_transient_cartflows_data_2159_c531660e60934a683d68fe489e80277d','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608383','_transient_timeout_wcf_user_t_c4e8cbccb7ff612bc3176b078cee60_checkout_2161','1781154739','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608384','_transient_wcf_user_t_c4e8cbccb7ff612bc3176b078cee60_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608385','_transient_timeout_cartflows_data_2159_e355549aaa5b34b990166e4657fa00f8','1781154739','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608386','_transient_cartflows_data_2159_e355549aaa5b34b990166e4657fa00f8','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608387','_transient_timeout_wcf_user_t_cc7ff8db75bfdf25121718be16eee8_checkout_2161','1781154740','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608388','_transient_wcf_user_t_cc7ff8db75bfdf25121718be16eee8_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608389','_transient_timeout_cartflows_data_2159_67f73526051d5bbeef7c4f12c781c8e6','1781154740','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608390','_transient_cartflows_data_2159_67f73526051d5bbeef7c4f12c781c8e6','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608391','_transient_timeout_wcf_user_t_efe30a94cd0fc5900684524e8fb711_checkout_2161','1781154814','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608392','_transient_wcf_user_t_efe30a94cd0fc5900684524e8fb711_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608393','_transient_timeout_cartflows_data_2159_e0f176eb13e24e98c48084af732672e1','1781154814','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608394','_transient_cartflows_data_2159_e0f176eb13e24e98c48084af732672e1','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608395','_transient_timeout_wcf_user_t_a1d5ff3a637177f41010b47364ad91_checkout_2161','1781154875','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608396','_transient_wcf_user_t_a1d5ff3a637177f41010b47364ad91_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608397','_transient_timeout_cartflows_data_2159_9746de5e24a44ce5edac18f6ef770c4a','1781154875','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608398','_transient_cartflows_data_2159_9746de5e24a44ce5edac18f6ef770c4a','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608399','_transient_timeout_wcf_user_t_f19c6a0ae851dc828d9645138f9667_checkout_2161','1781154908','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608400','_transient_wcf_user_t_f19c6a0ae851dc828d9645138f9667_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608401','_transient_timeout_cartflows_data_2159_d1c2ef3c5b0232c091d8c32779fb9bb3','1781154908','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608402','_transient_cartflows_data_2159_d1c2ef3c5b0232c091d8c32779fb9bb3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608403','_transient_timeout_wcf_user_t_522f24de56ddf5999070e348cbf358_checkout_2161','1781154933','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608404','_transient_wcf_user_t_522f24de56ddf5999070e348cbf358_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608405','_transient_timeout_cartflows_data_2159_857c7cb7834f21546d93d38e51c55659','1781154933','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608406','_transient_cartflows_data_2159_857c7cb7834f21546d93d38e51c55659','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608407','_transient_timeout_wcf_user_t_b69ce2c57d2b4bae55a655ae063c85_checkout_2161','1781154936','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608408','_transient_wcf_user_t_b69ce2c57d2b4bae55a655ae063c85_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608409','_transient_timeout_cartflows_data_2159_2524a1318d9e5f5aedab69130fc9878b','1781154936','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608410','_transient_cartflows_data_2159_2524a1318d9e5f5aedab69130fc9878b','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608411','_transient_timeout_wcf_user_t_61a48f295da21f4e0a3382c28d40e2_checkout_2161','1781155000','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608412','_transient_wcf_user_t_61a48f295da21f4e0a3382c28d40e2_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608413','_transient_timeout_cartflows_data_2159_59c533f3dcd871247e1eb778b3d369c1','1781155000','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608414','_transient_cartflows_data_2159_59c533f3dcd871247e1eb778b3d369c1','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608415','_transient_timeout_wcf_user_t_5a591fd422d809c97c51c93bce65de_checkout_2161','1781155026','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608416','_transient_wcf_user_t_5a591fd422d809c97c51c93bce65de_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608417','_transient_timeout_cartflows_data_2159_4a10ebe5e8c4c0de3ead8590c6b46fa8','1781155026','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608418','_transient_cartflows_data_2159_4a10ebe5e8c4c0de3ead8590c6b46fa8','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608419','_transient_timeout_wcf_user_t_196b75e743233df833650478f8f3e5_checkout_2161','1781155059','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608420','_transient_wcf_user_t_196b75e743233df833650478f8f3e5_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608421','_transient_timeout_cartflows_data_2159_a7d8e5a67552a39607c82aca1cc68fc4','1781155059','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608422','_transient_cartflows_data_2159_a7d8e5a67552a39607c82aca1cc68fc4','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608423','_transient_timeout_wcf_user_t_8713b7e93be4aeb1ae0e8b5fb0a024_checkout_2161','1781155099','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608424','_transient_wcf_user_t_8713b7e93be4aeb1ae0e8b5fb0a024_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608425','_transient_timeout_cartflows_data_2159_74067de4052693f59ac58e0f6f723355','1781155099','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608426','_transient_cartflows_data_2159_74067de4052693f59ac58e0f6f723355','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608427','_transient_timeout_wcf_user_t_b0f392796220202b8079bb72d79318_checkout_2161','1781155103','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608428','_transient_wcf_user_t_b0f392796220202b8079bb72d79318_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608429','_transient_timeout_cartflows_data_2159_64ee0ec27a8eb85b005366af58c513fe','1781155103','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608430','_transient_cartflows_data_2159_64ee0ec27a8eb85b005366af58c513fe','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608431','_transient_timeout_wcf_user_t_9bb2309c9920104103e7a9b654bb6c_checkout_2161','1781155104','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608432','_transient_wcf_user_t_9bb2309c9920104103e7a9b654bb6c_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608433','_transient_timeout_cartflows_data_2159_e595c8966a13f3c753a39c9cb3a7681e','1781155104','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608434','_transient_cartflows_data_2159_e595c8966a13f3c753a39c9cb3a7681e','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608435','_transient_timeout_wcf_user_t_57560c673421c85cd13e09e9fa1730_checkout_2161','1781155105','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608436','_transient_wcf_user_t_57560c673421c85cd13e09e9fa1730_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608437','_transient_timeout_cartflows_data_2159_7492d534c53e28fc73193f571bab7b86','1781155105','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608438','_transient_cartflows_data_2159_7492d534c53e28fc73193f571bab7b86','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608439','_transient_timeout_wcf_user_t_630ce097fc3196d1fce16de56c0352_checkout_2161','1781155110','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608440','_transient_wcf_user_t_630ce097fc3196d1fce16de56c0352_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608441','_transient_timeout_cartflows_data_2159_a5ff5c42aaf7dc8399fe1cb2e19634ea','1781155110','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608442','_transient_cartflows_data_2159_a5ff5c42aaf7dc8399fe1cb2e19634ea','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608443','_transient_timeout_wcf_user_t_3df36a6be84ea635ed2ad66beda6f2_checkout_2161','1781155122','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608444','_transient_wcf_user_t_3df36a6be84ea635ed2ad66beda6f2_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608445','_transient_timeout_cartflows_data_2159_0293c3f465e33e48c5dbe9179703934e','1781155122','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608446','_transient_cartflows_data_2159_0293c3f465e33e48c5dbe9179703934e','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608447','_transient_timeout_wcf_user_t_cd890a0aeae189c357ce94ee108a19_checkout_2161','1781155138','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608448','_transient_wcf_user_t_cd890a0aeae189c357ce94ee108a19_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608449','_transient_timeout_cartflows_data_2159_a85351ce5e9954efbde08386d12bb82a','1781155138','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608450','_transient_cartflows_data_2159_a85351ce5e9954efbde08386d12bb82a','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608451','_transient_timeout_wcf_user_t_d690413d121bc3bfb67e7dea622591_checkout_2161','1781155145','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608452','_transient_wcf_user_t_d690413d121bc3bfb67e7dea622591_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608453','_transient_timeout_cartflows_data_2159_9c3e018037944b3a9f44490efd510d00','1781155153','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608454','_transient_cartflows_data_2159_9c3e018037944b3a9f44490efd510d00','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608455','_transient_timeout_wcf_user_t_2dd00ecb0baa903a14e57e7a4ca580_checkout_2161','1781155145','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608456','_transient_wcf_user_t_2dd00ecb0baa903a14e57e7a4ca580_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608457','_transient_timeout_cartflows_data_2159_56b4b22a3135e3cfbaaa470e60d39c60','1781155158','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608458','_transient_cartflows_data_2159_56b4b22a3135e3cfbaaa470e60d39c60','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608459','_transient_timeout_wcf_user_t_018f041efa0e2cd53e80e2a9b64e2b_checkout_2161','1781155146','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608460','_transient_wcf_user_t_018f041efa0e2cd53e80e2a9b64e2b_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608461','_transient_timeout_cartflows_data_2159_15b48e0ba63bb681b039e6a49a96ec36','1781155159','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608462','_transient_cartflows_data_2159_15b48e0ba63bb681b039e6a49a96ec36','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608463','_transient_timeout_wcf_user_t_42190eb8c3b050956d063304ff1295_checkout_2161','1781155148','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608464','_transient_wcf_user_t_42190eb8c3b050956d063304ff1295_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608465','_transient_timeout_cartflows_data_2159_e8877e208bbad865af763a79288a3d5d','1781155164','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608466','_transient_cartflows_data_2159_e8877e208bbad865af763a79288a3d5d','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608467','_transient_timeout_wcf_user_t_a329baf6536c70445650c4a469e75f_checkout_2161','1781155148','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608468','_transient_wcf_user_t_a329baf6536c70445650c4a469e75f_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608469','_transient_timeout_cartflows_data_2159_6499a52144c3eb4aecbbd6b241c43330','1781155164','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608470','_transient_cartflows_data_2159_6499a52144c3eb4aecbbd6b241c43330','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608471','_transient_timeout_wcf_user_t_c1fcb45384ab46d00110d0c6c2d986_checkout_2161','1781155148','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608472','_transient_wcf_user_t_c1fcb45384ab46d00110d0c6c2d986_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608473','_transient_timeout_cartflows_data_2159_1696f51615d4dd2e1840ed58072cfdd7','1781155166','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608474','_transient_cartflows_data_2159_1696f51615d4dd2e1840ed58072cfdd7','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608475','_transient_timeout_wcf_user_t_6242739caf68bbaa0ea358ab6655fe_checkout_2161','1781155148','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608476','_transient_wcf_user_t_6242739caf68bbaa0ea358ab6655fe_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608477','_transient_timeout_cartflows_data_2159_34b6cd2b3f4b812fc79031e69fbba752','1781155161','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608478','_transient_cartflows_data_2159_34b6cd2b3f4b812fc79031e69fbba752','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608479','_transient_timeout_wcf_user_t_528e1b346ec0b239bb396ea84bed38_checkout_2161','1781155149','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608480','_transient_wcf_user_t_528e1b346ec0b239bb396ea84bed38_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608481','_transient_timeout_cartflows_data_2159_0c1dcc8282996cb162a90f4813a3c7b2','1781155162','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608482','_transient_cartflows_data_2159_0c1dcc8282996cb162a90f4813a3c7b2','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608483','_transient_timeout_wcf_user_t_0a99ad24b77f0e108dc0e2158093a7_checkout_2161','1781155152','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608484','_transient_wcf_user_t_0a99ad24b77f0e108dc0e2158093a7_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608485','_transient_timeout_cartflows_data_2159_3bb2f8c56c44ba122e3d8e1d00cae94d','1781155167','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608486','_transient_cartflows_data_2159_3bb2f8c56c44ba122e3d8e1d00cae94d','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608487','_transient_timeout_wcf_user_t_282ae41582f7d7e457e98e024cc070_checkout_2161','1781155152','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608488','_transient_wcf_user_t_282ae41582f7d7e457e98e024cc070_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608489','_transient_timeout_cartflows_data_2159_7e158f8c183f949a207350474a863385','1781155152','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608490','_transient_cartflows_data_2159_7e158f8c183f949a207350474a863385','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608491','_transient_timeout_wcf_user_t_5fc539c3ee8be179d567078bbbbd41_checkout_2161','1781155166','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608492','_transient_wcf_user_t_5fc539c3ee8be179d567078bbbbd41_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608493','_transient_timeout_cartflows_data_2159_e8acc581df95d90af511f1e7024ec8eb','1781155166','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608494','_transient_cartflows_data_2159_e8acc581df95d90af511f1e7024ec8eb','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608495','_transient_timeout_wcf_user_t_807a730c7be01e4e64bef411225cac_checkout_2161','1781155166','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608496','_transient_wcf_user_t_807a730c7be01e4e64bef411225cac_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608497','_transient_timeout_cartflows_data_2159_bae8f4e432c8c254d08d6305f36d9505','1781155175','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608498','_transient_cartflows_data_2159_bae8f4e432c8c254d08d6305f36d9505','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608499','_transient_timeout_wcf_user_t_98e6cecc4ff741a29aaec5036f6cf9_checkout_2161','1781155166','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608500','_transient_wcf_user_t_98e6cecc4ff741a29aaec5036f6cf9_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608501','_transient_timeout_cartflows_data_2159_8cd5caa8f18cbc9ef34b129984384d3e','1781155177','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608502','_transient_cartflows_data_2159_8cd5caa8f18cbc9ef34b129984384d3e','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608503','_transient_timeout_wcf_user_t_00e7afc1ec548300e4795e88275e13_checkout_2161','1781155168','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608504','_transient_wcf_user_t_00e7afc1ec548300e4795e88275e13_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608505','_transient_timeout_cartflows_data_2159_4e7258dbca892b55bff0c0291134caa3','1781155177','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608506','_transient_cartflows_data_2159_4e7258dbca892b55bff0c0291134caa3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608507','_transient_timeout_wcf_user_t_0669c981a7bfe864affe1cc0e238d6_checkout_2161','1781155168','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608508','_transient_wcf_user_t_0669c981a7bfe864affe1cc0e238d6_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608509','_transient_timeout_cartflows_data_2159_0c91d252c803f14bc376a9bbd68d44f7','1781155174','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608510','_transient_cartflows_data_2159_0c91d252c803f14bc376a9bbd68d44f7','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608511','_transient_timeout_wcf_user_t_5a7e00d65d334981a986d8ae44b39c_checkout_2161','1781155185','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608512','_transient_wcf_user_t_5a7e00d65d334981a986d8ae44b39c_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608513','_transient_timeout_cartflows_data_2159_db3789946ff566e58210aae48f0ea873','1781155195','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608514','_transient_cartflows_data_2159_db3789946ff566e58210aae48f0ea873','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608515','_transient_timeout_wcf_user_t_003ac5f4f27131b369cdae206ff6f8_checkout_2161','1781155185','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608516','_transient_wcf_user_t_003ac5f4f27131b369cdae206ff6f8_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608517','_transient_timeout_cartflows_data_2159_f497e2e1b989ddcf77bedc5ba8ef263e','1781155195','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608518','_transient_cartflows_data_2159_f497e2e1b989ddcf77bedc5ba8ef263e','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608519','_transient_timeout_wcf_user_t_97872d457d6b50ec8057b90b672fb0_checkout_2161','1781155186','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608520','_transient_wcf_user_t_97872d457d6b50ec8057b90b672fb0_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608521','_transient_timeout_cartflows_data_2159_a73f0f671d9683069084692d185b3bd1','1781155197','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608522','_transient_cartflows_data_2159_a73f0f671d9683069084692d185b3bd1','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608523','_transient_timeout_wcf_user_t_d17f8f8d6e1471443869b3feecca9d_checkout_2161','1781155187','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608524','_transient_wcf_user_t_d17f8f8d6e1471443869b3feecca9d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608525','_transient_timeout_cartflows_data_2159_6182a2dd8cb2d6ad630ad927429b199f','1781155199','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608526','_transient_cartflows_data_2159_6182a2dd8cb2d6ad630ad927429b199f','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608527','_transient_timeout_wcf_user_t_45f00be327f936f3a8303252c6a6f3_checkout_2161','1781155187','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608528','_transient_wcf_user_t_45f00be327f936f3a8303252c6a6f3_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608529','_transient_timeout_cartflows_data_2159_f05731316c731e6a96946627c7b2f03e','1781155198','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608530','_transient_cartflows_data_2159_f05731316c731e6a96946627c7b2f03e','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608531','_transient_timeout_wcf_user_t_d6cb2f784a31073fee95db4b93baac_checkout_2161','1781155187','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608532','_transient_wcf_user_t_d6cb2f784a31073fee95db4b93baac_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608533','_transient_timeout_cartflows_data_2159_a9b7137a1385864b0f869f4709a7126c','1781155200','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608534','_transient_cartflows_data_2159_a9b7137a1385864b0f869f4709a7126c','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608535','_transient_timeout_wcf_user_t_1596f61ccea0534ba480971ee9cee9_checkout_2161','1781155201','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608536','_transient_wcf_user_t_1596f61ccea0534ba480971ee9cee9_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608537','_transient_timeout_cartflows_data_2159_4c8012b3dc239006924f0272dc8754d7','1781155201','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608538','_transient_cartflows_data_2159_4c8012b3dc239006924f0272dc8754d7','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608539','_transient_timeout_wcf_user_t_9e2ba73e6990364e12f166b0fd3887_checkout_2161','1781155267','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608540','_transient_wcf_user_t_9e2ba73e6990364e12f166b0fd3887_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608541','_transient_timeout_cartflows_data_2159_a093c0a77e2de3da4cd2823baac50625','1781155275','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608542','_transient_cartflows_data_2159_a093c0a77e2de3da4cd2823baac50625','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608543','_transient_timeout_wcf_user_t_063b70e071df15d6bb864b360a1c4c_checkout_2161','1781155288','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608544','_transient_wcf_user_t_063b70e071df15d6bb864b360a1c4c_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608545','_transient_timeout_cartflows_data_2159_e213385ab1c4c2bdee0dfdb21e6711b5','1781155294','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608546','_transient_cartflows_data_2159_e213385ab1c4c2bdee0dfdb21e6711b5','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608547','_transient_timeout_wcf_user_t_cc399a4efab0ea1ce36252541caa6f_checkout_2161','1781155304','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608548','_transient_wcf_user_t_cc399a4efab0ea1ce36252541caa6f_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608549','_transient_timeout_cartflows_data_2159_b8ef34ffd648feb7c85b4c12e78e0d36','1781155304','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608550','_transient_cartflows_data_2159_b8ef34ffd648feb7c85b4c12e78e0d36','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608551','_transient_timeout_wcf_user_t_2d37505dffed6bd5603531a3b238b4_checkout_2161','1781155310','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608552','_transient_wcf_user_t_2d37505dffed6bd5603531a3b238b4_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608553','_transient_timeout_cartflows_data_2159_16a09a4b2169a6c1e48624bc479a447f','1781155317','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608554','_transient_cartflows_data_2159_16a09a4b2169a6c1e48624bc479a447f','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608555','_transient_timeout_wcf_user_t_b9d20ba3914e45f88904f5ef36022c_checkout_2161','1781155316','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608556','_transient_wcf_user_t_b9d20ba3914e45f88904f5ef36022c_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608557','_transient_timeout_cartflows_data_2159_36c44ba5e452a68fc9c3aae4482e5a40','1781155325','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608558','_transient_cartflows_data_2159_36c44ba5e452a68fc9c3aae4482e5a40','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608559','_transient_timeout_wcf_user_t_afa85abdead1b106038fcf41fd02a8_checkout_2161','1781155317','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608560','_transient_wcf_user_t_afa85abdead1b106038fcf41fd02a8_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608561','_transient_timeout_cartflows_data_2159_116cb027934a93dd37f32a8d3652fa32','1781155325','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608562','_transient_cartflows_data_2159_116cb027934a93dd37f32a8d3652fa32','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608563','_transient_timeout_wcf_user_t_7d33d7b4dbd19b7ba47be4fc6828a3_checkout_2161','1781155321','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608564','_transient_wcf_user_t_7d33d7b4dbd19b7ba47be4fc6828a3_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608565','_transient_timeout_cartflows_data_2159_5edd2027735bca39cd5fecb81ef62c14','1781155327','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608566','_transient_cartflows_data_2159_5edd2027735bca39cd5fecb81ef62c14','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608567','_transient_timeout_wcf_user_t_69e206eef6c988f871af113a12342a_checkout_2161','1781155326','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608568','_transient_wcf_user_t_69e206eef6c988f871af113a12342a_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608569','_transient_timeout_cartflows_data_2159_0a2aed65b9a0bf20c86cfafebda81694','1781155326','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608570','_transient_cartflows_data_2159_0a2aed65b9a0bf20c86cfafebda81694','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608571','_transient_timeout_wcf_user_t_30f4168c6b470dab9c1ba7f6ed2604_checkout_2161','1781155331','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608572','_transient_wcf_user_t_30f4168c6b470dab9c1ba7f6ed2604_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608573','_transient_timeout_cartflows_data_2159_0256b447b4c194c6f55a8579dfb30751','1781155337','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608574','_transient_cartflows_data_2159_0256b447b4c194c6f55a8579dfb30751','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608575','_transient_timeout_wcf_user_t_8a0a8e1f4db2849b53b025e4aadb36_checkout_2161','1781155347','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608576','_transient_wcf_user_t_8a0a8e1f4db2849b53b025e4aadb36_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608577','_transient_timeout_cartflows_data_2159_22a19fa8eec760c1d30c451f5862c85f','1781155347','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608578','_transient_cartflows_data_2159_22a19fa8eec760c1d30c451f5862c85f','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608579','_transient_timeout_wcf_user_t_1ab297573cdda2737116e7fd366e7b_checkout_2161','1781155354','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608580','_transient_wcf_user_t_1ab297573cdda2737116e7fd366e7b_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608581','_transient_timeout_cartflows_data_2159_3893a30c746fbcb733cce4af85ec09b7','1781155354','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608582','_transient_cartflows_data_2159_3893a30c746fbcb733cce4af85ec09b7','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608583','_transient_timeout_wcf_user_t_c9177b431e65352d671a8c5581051b_checkout_2161','1781155355','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608584','_transient_wcf_user_t_c9177b431e65352d671a8c5581051b_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608585','_transient_timeout_cartflows_data_2159_6068f9e8d3d8cc1118dc6a73da5c39ac','1781155355','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608586','_transient_cartflows_data_2159_6068f9e8d3d8cc1118dc6a73da5c39ac','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608587','_transient_timeout_wcf_user_t_09275169dcadbc6b0901b9d16f7a90_checkout_2161','1781155359','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608588','_transient_wcf_user_t_09275169dcadbc6b0901b9d16f7a90_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608589','_transient_timeout_cartflows_data_2159_4f32d12f042b8a1f47f19b7402533f02','1781155359','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608590','_transient_cartflows_data_2159_4f32d12f042b8a1f47f19b7402533f02','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608591','_transient_timeout_wcf_user_t_867d27271fa6c949a00a493a72b76d_checkout_2161','1781155368','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608592','_transient_wcf_user_t_867d27271fa6c949a00a493a72b76d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608593','_transient_timeout_cartflows_data_2159_bbf7155a042578a7ef22079d3848ebbd','1781155368','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608594','_transient_cartflows_data_2159_bbf7155a042578a7ef22079d3848ebbd','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608597','_transient_timeout_wcf_user_t_f68802dedc41188852fe0c0adfe021_checkout_2161','1781155482','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608598','_transient_wcf_user_t_f68802dedc41188852fe0c0adfe021_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608599','_transient_timeout_cartflows_data_2159_59426efc2fde95cc89857e7c927933d8','1781155488','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608600','_transient_cartflows_data_2159_59426efc2fde95cc89857e7c927933d8','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608601','_transient_timeout_wcf_user_t_e682717cb8d973c5e3a6fa106c42df_checkout_2161','1781155519','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608602','_transient_wcf_user_t_e682717cb8d973c5e3a6fa106c42df_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608603','_transient_timeout_cartflows_data_2159_93b2a75bcda0babf16d53d4ef7ad3e95','1781155519','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608604','_transient_cartflows_data_2159_93b2a75bcda0babf16d53d4ef7ad3e95','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608605','_transient_timeout_wcf_user_t_3dc19925e6f6959a4e85af3f45cf18_checkout_2161','1781155592','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608606','_transient_wcf_user_t_3dc19925e6f6959a4e85af3f45cf18_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608607','_transient_timeout_cartflows_data_2159_f8517bfd5783eeaccf9abb243af86c28','1781155597','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608608','_transient_cartflows_data_2159_f8517bfd5783eeaccf9abb243af86c28','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608609','_transient_timeout_wcf_user_t_99d3709b5b55b7053f100cfbeafd85_checkout_2161','1781155613','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608610','_transient_wcf_user_t_99d3709b5b55b7053f100cfbeafd85_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608611','_transient_timeout_cartflows_data_2159_a6e0f3973aedb2f596ebfe7bab441f68','1781155617','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608612','_transient_cartflows_data_2159_a6e0f3973aedb2f596ebfe7bab441f68','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608613','_transient_timeout_wcf_user_t_2805de1b1e84afadbef592e4fd1647_checkout_2161','1781155617','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608614','_transient_wcf_user_t_2805de1b1e84afadbef592e4fd1647_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608615','_transient_timeout_cartflows_data_2159_e9a8026dddf3fda68f8a1b368f4ad7d3','1781155624','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608616','_transient_cartflows_data_2159_e9a8026dddf3fda68f8a1b368f4ad7d3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608617','_transient_timeout_wcf_user_t_bc048016bd20bdcecda01f35c6a45f_checkout_2161','1781155617','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608618','_transient_wcf_user_t_bc048016bd20bdcecda01f35c6a45f_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608619','_transient_timeout_cartflows_data_2159_e29e706220c7556c19d8f9fdd905a8d2','1781155625','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608620','_transient_cartflows_data_2159_e29e706220c7556c19d8f9fdd905a8d2','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608621','_transient_timeout_wcf_user_t_985cec964945e91d4d07dfcba98d72_checkout_2161','1781155617','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608622','_transient_wcf_user_t_985cec964945e91d4d07dfcba98d72_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608623','_transient_timeout_cartflows_data_2159_77ba3068b2d5693d6b0cedb4634fa798','1781155625','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608624','_transient_cartflows_data_2159_77ba3068b2d5693d6b0cedb4634fa798','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608625','_transient_timeout_wcf_user_t_e2cadf9c0c03dbae9fc05fe5c53414_checkout_2161','1781155619','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608626','_transient_wcf_user_t_e2cadf9c0c03dbae9fc05fe5c53414_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608627','_transient_timeout_cartflows_data_2159_113a600e20504f9a107b2f8fee6d8343','1781155626','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608628','_transient_cartflows_data_2159_113a600e20504f9a107b2f8fee6d8343','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608629','_transient_timeout_wcf_user_t_11a0d0f28be9a498e43e093b21dcc0_checkout_2161','1781155744','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608630','_transient_wcf_user_t_11a0d0f28be9a498e43e093b21dcc0_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608631','_transient_timeout_cartflows_data_2159_fd1fc65e8af2b3a9c20a9541c8e8c7e0','1781155744','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608632','_transient_cartflows_data_2159_fd1fc65e8af2b3a9c20a9541c8e8c7e0','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608633','_transient_timeout_wcf_user_t_1855567b5c97833369bd571e8a14ec_checkout_2161','1781155745','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608634','_transient_wcf_user_t_1855567b5c97833369bd571e8a14ec_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608635','_transient_timeout_cartflows_data_2159_b397de1dbddc83e37b7ac4beda0dd8d2','1781155745','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608636','_transient_cartflows_data_2159_b397de1dbddc83e37b7ac4beda0dd8d2','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608637','_transient_timeout_wcf_user_t_ea6468d096b669b8adbf072bbcad54_checkout_2161','1781155745','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608638','_transient_wcf_user_t_ea6468d096b669b8adbf072bbcad54_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608639','_transient_timeout_cartflows_data_2159_b26c9e0f6c80e709bff260277961eab3','1781155745','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608640','_transient_cartflows_data_2159_b26c9e0f6c80e709bff260277961eab3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608641','_transient_timeout_wcf_user_t_1140a415b14faa206b248ba064d823_checkout_2161','1781155747','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608642','_transient_wcf_user_t_1140a415b14faa206b248ba064d823_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608643','_transient_timeout_cartflows_data_2159_be572b1fe31d8d7a0072fac23db1dce2','1781155747','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608644','_transient_cartflows_data_2159_be572b1fe31d8d7a0072fac23db1dce2','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608645','_transient_timeout_wcf_user_t_ad25b94e464d53ca1aada9052b4489_checkout_2161','1781155749','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608646','_transient_wcf_user_t_ad25b94e464d53ca1aada9052b4489_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608647','_transient_timeout_cartflows_data_2159_32920a1750de9f84eee47c2980d4d2f3','1781155749','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608648','_transient_cartflows_data_2159_32920a1750de9f84eee47c2980d4d2f3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608649','_transient_timeout_wcf_user_t_ea58a25806ac8610c8ba6c1bca3eca_checkout_2161','1781155750','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608650','_transient_wcf_user_t_ea58a25806ac8610c8ba6c1bca3eca_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608651','_transient_timeout_cartflows_data_2159_552144a87ae9d3cb798ac491ad81fba4','1781155750','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608652','_transient_cartflows_data_2159_552144a87ae9d3cb798ac491ad81fba4','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608653','_transient_timeout_wcf_user_t_f747b145e9a747449a02da06de08f0_checkout_2161','1781155863','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608654','_transient_wcf_user_t_f747b145e9a747449a02da06de08f0_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608655','_transient_timeout_cartflows_data_2159_2dd08a6b6947983d2e2efa864a073eaa','1781155872','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608656','_transient_cartflows_data_2159_2dd08a6b6947983d2e2efa864a073eaa','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608657','_transient_timeout_wcf_user_t_d9d1f33f5288684d2f39370703793a_checkout_2161','1781155880','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608658','_transient_wcf_user_t_d9d1f33f5288684d2f39370703793a_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608659','_transient_timeout_cartflows_data_2159_954e262e80a181ab030acc4629a09f39','1781155886','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608660','_transient_cartflows_data_2159_954e262e80a181ab030acc4629a09f39','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608661','_transient_timeout_wcf_user_t_59c8580b99fe3720e793c2df4071d2_checkout_2161','1781155918','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608662','_transient_wcf_user_t_59c8580b99fe3720e793c2df4071d2_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608663','_transient_timeout_cartflows_data_2159_dca71d4b1d53c1e6ddd77e7887f10652','1781155918','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608664','_transient_cartflows_data_2159_dca71d4b1d53c1e6ddd77e7887f10652','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608665','_transient_timeout_wcf_user_t_db4a6aa46ff41c402a89715795da76_checkout_2161','1781155918','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608666','_transient_wcf_user_t_db4a6aa46ff41c402a89715795da76_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608667','_transient_timeout_cartflows_data_2159_9e37a34c382293bb701521ff2c547240','1781155925','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608668','_transient_cartflows_data_2159_9e37a34c382293bb701521ff2c547240','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608669','_transient_timeout_wcf_user_t_4a01c521ed6f479d05af1538f98434_checkout_2161','1781155954','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608670','_transient_wcf_user_t_4a01c521ed6f479d05af1538f98434_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608671','_transient_timeout_cartflows_data_2159_eddac8c6a439911e2c544172c57368d4','1781155954','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608672','_transient_cartflows_data_2159_eddac8c6a439911e2c544172c57368d4','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608673','_transient_timeout_wcf_user_t_f2253b0b6784073546b15021ac1a4a_checkout_2161','1781156002','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608674','_transient_wcf_user_t_f2253b0b6784073546b15021ac1a4a_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608675','_transient_timeout_cartflows_data_2159_6b05b12052540417cfdef226853060f3','1781156007','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608676','_transient_cartflows_data_2159_6b05b12052540417cfdef226853060f3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608677','_transient_timeout_wcf_user_t_a81009702868b5b51a7dba963d5018_checkout_2161','1781156010','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608678','_transient_wcf_user_t_a81009702868b5b51a7dba963d5018_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608679','_transient_timeout_cartflows_data_2159_04a239c416e978389bfbd3daeea515af','1781156015','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608680','_transient_cartflows_data_2159_04a239c416e978389bfbd3daeea515af','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608681','_transient_timeout_wcf_user_t_afe6641fa99c3f05d426b01cca7640_checkout_2161','1781156019','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608682','_transient_wcf_user_t_afe6641fa99c3f05d426b01cca7640_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608683','_transient_timeout_cartflows_data_2159_e9e122dfe2a94e4c37bca3c0eeebfae0','1781156024','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608684','_transient_cartflows_data_2159_e9e122dfe2a94e4c37bca3c0eeebfae0','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608685','_transient_timeout_wcf_user_t_173c29cfcfa337281f6d41e4590e26_checkout_2161','1781156034','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608686','_transient_wcf_user_t_173c29cfcfa337281f6d41e4590e26_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608687','_transient_timeout_cartflows_data_2159_d98040476fbfd6e53ae989e1745b0dbb','1781156042','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608688','_transient_cartflows_data_2159_d98040476fbfd6e53ae989e1745b0dbb','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608689','_transient_timeout_wcf_user_t_80c6d9a63ddf2bd789800216eb8067_checkout_2161','1781156039','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608690','_transient_wcf_user_t_80c6d9a63ddf2bd789800216eb8067_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608691','_transient_timeout_cartflows_data_2159_2e8312199c43ddb44df1d19f25fa0e6d','1781156039','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608692','_transient_cartflows_data_2159_2e8312199c43ddb44df1d19f25fa0e6d','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608693','_transient_timeout_wcf_user_t_d98caa51b6f299d16fca0861f26dee_checkout_2161','1781156048','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608694','_transient_wcf_user_t_d98caa51b6f299d16fca0861f26dee_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608695','_transient_timeout_cartflows_data_2159_036205f3542b569a1b31c57ccc249c2d','1781156048','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608696','_transient_cartflows_data_2159_036205f3542b569a1b31c57ccc249c2d','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608697','_transient_timeout_wcf_user_t_3a45f3cd6b6ead5fec0b5716af2a2a_checkout_2161','1781156060','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608698','_transient_wcf_user_t_3a45f3cd6b6ead5fec0b5716af2a2a_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608699','_transient_timeout_cartflows_data_2159_7304b9f7e5e585a67c7deb82fcdf7e05','1781156060','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608700','_transient_cartflows_data_2159_7304b9f7e5e585a67c7deb82fcdf7e05','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608701','_transient_timeout_wcf_user_t_51f1c289131834a66fae52dd9d94c9_checkout_2161','1781156061','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608702','_transient_wcf_user_t_51f1c289131834a66fae52dd9d94c9_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608703','_transient_timeout_cartflows_data_2159_3733b309502e0615347b409da8e61ac2','1781156068','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608704','_transient_cartflows_data_2159_3733b309502e0615347b409da8e61ac2','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608705','_transient_timeout_wcf_user_t_f03f6db4a9dc8bad2f0d84ce44139a_checkout_2161','1781156071','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608706','_transient_wcf_user_t_f03f6db4a9dc8bad2f0d84ce44139a_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608707','_transient_timeout_cartflows_data_2159_d2164a70080685c1d4e85127e002bd9c','1781156071','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608708','_transient_cartflows_data_2159_d2164a70080685c1d4e85127e002bd9c','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608709','_transient_timeout_wcf_user_t_5f73ee159d2a30e9195e8797391ae2_checkout_2161','1781156099','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608710','_transient_wcf_user_t_5f73ee159d2a30e9195e8797391ae2_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608711','_transient_timeout_cartflows_data_2159_fe061a166cd201a9afcab40661ce1028','1781156099','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608712','_transient_cartflows_data_2159_fe061a166cd201a9afcab40661ce1028','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608713','_transient_timeout_wcf_user_t_49e4ddd7f40cf8bfb38ef1ec3fadd4_checkout_2161','1781156100','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608714','_transient_wcf_user_t_49e4ddd7f40cf8bfb38ef1ec3fadd4_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608715','_transient_timeout_cartflows_data_2159_a1dcc57a73d911d9c41ecf341c87a549','1781156106','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608716','_transient_cartflows_data_2159_a1dcc57a73d911d9c41ecf341c87a549','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608717','_transient_timeout_wcf_user_t_9e0d3190a668f115f073bf9ba38617_checkout_2161','1781156129','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608718','_transient_wcf_user_t_9e0d3190a668f115f073bf9ba38617_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608719','_transient_timeout_cartflows_data_2159_39fb4ab0d4df3ddc4441a2e1b8c10a5e','1781156135','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608720','_transient_cartflows_data_2159_39fb4ab0d4df3ddc4441a2e1b8c10a5e','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608721','_transient_timeout_wcf_user_t_daf535755b19abfd8f95f202d702a9_checkout_2161','1781156136','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608722','_transient_wcf_user_t_daf535755b19abfd8f95f202d702a9_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608723','_transient_timeout_cartflows_data_2159_c9568256419fd6e125197ec564be8009','1781156136','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608724','_transient_cartflows_data_2159_c9568256419fd6e125197ec564be8009','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608725','_transient_timeout_wcf_user_t_37a2c79b6c3abf450e7c9ee39f69d7_checkout_2161','1781156156','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608726','_transient_wcf_user_t_37a2c79b6c3abf450e7c9ee39f69d7_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608727','_transient_timeout_cartflows_data_2159_92b31cdcc5e504a60b0cf25e6ec66f71','1781156161','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608728','_transient_cartflows_data_2159_92b31cdcc5e504a60b0cf25e6ec66f71','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608729','_transient_timeout_wcf_user_t_aaa526f2702ba15a1c3d92e85ed2b9_checkout_2161','1781156167','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608730','_transient_wcf_user_t_aaa526f2702ba15a1c3d92e85ed2b9_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608731','_transient_timeout_cartflows_data_2159_9ac7e88fe44d3f0a478cff74579361ae','1781156167','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608732','_transient_cartflows_data_2159_9ac7e88fe44d3f0a478cff74579361ae','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608733','_transient_timeout_wcf_user_t_b6921a2444a6ade2e1a97d1e060051_checkout_2161','1781156195','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608734','_transient_wcf_user_t_b6921a2444a6ade2e1a97d1e060051_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608735','_transient_timeout_cartflows_data_2159_c6c78a78c4d301ac6c46d98485cbed32','1781156195','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608736','_transient_cartflows_data_2159_c6c78a78c4d301ac6c46d98485cbed32','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608737','_transient_timeout_wcf_user_t_3cbe29f57b1ce6b0810a3abdc20e2d_checkout_2161','1781156595','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608738','_transient_wcf_user_t_3cbe29f57b1ce6b0810a3abdc20e2d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608739','_transient_timeout_cartflows_data_2159_29e825981e8198fd48f1d3143cde1d50','1781156595','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608740','_transient_cartflows_data_2159_29e825981e8198fd48f1d3143cde1d50','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608741','_transient_timeout_wcf_user_t_4afcc5b58087afc0e7077c5f96bd0c_checkout_2161','1781156797','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608742','_transient_wcf_user_t_4afcc5b58087afc0e7077c5f96bd0c_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608743','_transient_timeout_cartflows_data_2159_0634652b2e449af6f813251153a87a45','1781156797','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608744','_transient_cartflows_data_2159_0634652b2e449af6f813251153a87a45','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608745','_transient_timeout_wcf_user_t_03d9a2082af7b8ee986c43c4051916_checkout_2161','1781156880','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608746','_transient_wcf_user_t_03d9a2082af7b8ee986c43c4051916_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608747','_transient_timeout_cartflows_data_2159_1a0f0d0e676a4ea674050d22bfa7c01f','1781156880','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608748','_transient_cartflows_data_2159_1a0f0d0e676a4ea674050d22bfa7c01f','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608749','_transient_timeout_wcf_user_t_f91b9c76430ba9fe8e9ec5cfde5ba4_checkout_2161','1781156903','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608750','_transient_wcf_user_t_f91b9c76430ba9fe8e9ec5cfde5ba4_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608751','_transient_timeout_cartflows_data_2159_138b0be5999f52ba114fe83764b76452','1781156906','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608752','_transient_cartflows_data_2159_138b0be5999f52ba114fe83764b76452','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608753','_transient_timeout_wcf_user_t_5572584c606e16d611e20f029a8ef8_checkout_2161','1781156956','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608754','_transient_wcf_user_t_5572584c606e16d611e20f029a8ef8_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608755','_transient_timeout_cartflows_data_2159_92e05e1a6b034f2cde36edb9a8011de3','1781156966','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608756','_transient_cartflows_data_2159_92e05e1a6b034f2cde36edb9a8011de3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608757','_transient_timeout_imunify_security_rules_1781155165_2766548','1781176765','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608758','_transient_imunify_security_rules_1781155165_2766548','a:2:{s:7:\"version\";s:7:\"0.665.0\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608759','_transient_timeout_wcf_user_t_9467d88dd6f49cabe9637d7aace363_checkout_2161','1781156991','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608760','_transient_wcf_user_t_9467d88dd6f49cabe9637d7aace363_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608761','_transient_timeout_cartflows_data_2159_bc16ada9687535797b1f8d21427a67dc','1781156991','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608762','_transient_cartflows_data_2159_bc16ada9687535797b1f8d21427a67dc','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608763','_transient_timeout_wcf_user_t_947756827ec68792c91748c89bdd74_checkout_2161','1781157027','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608764','_transient_wcf_user_t_947756827ec68792c91748c89bdd74_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608765','_transient_timeout_cartflows_data_2159_4436982e3f40e1dea7ad3eec2a324b40','1781157033','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608766','_transient_cartflows_data_2159_4436982e3f40e1dea7ad3eec2a324b40','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608767','_transient_timeout_wcf_user_t_b17afef75a5d063a9cf6dc8627fe68_checkout_2161','1781157057','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608768','_transient_wcf_user_t_b17afef75a5d063a9cf6dc8627fe68_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608769','_transient_timeout_cartflows_data_2159_e49781603aabbf9c5ddd115fae8c0aa0','1781157060','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608770','_transient_cartflows_data_2159_e49781603aabbf9c5ddd115fae8c0aa0','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608771','_transient_timeout_wcf_user_t_aea1599c78f7b93bf26b19270f3218_checkout_2161','1781157119','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608772','_transient_wcf_user_t_aea1599c78f7b93bf26b19270f3218_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608773','_transient_timeout_cartflows_data_2159_016d62d62dc47dba43c54d9d8333b267','1781157123','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608774','_transient_cartflows_data_2159_016d62d62dc47dba43c54d9d8333b267','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608775','_transient_timeout_wcf_user_t_882c9fa766f2b5d9607fb0d2f61f41_checkout_2161','1781157273','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608776','_transient_wcf_user_t_882c9fa766f2b5d9607fb0d2f61f41_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608777','_transient_timeout_cartflows_data_2159_1158c77d6cbbb8f7a34f9ca4cf20de7c','1781157278','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608778','_transient_cartflows_data_2159_1158c77d6cbbb8f7a34f9ca4cf20de7c','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608779','_transient_timeout_wcf_user_t_504caf1e56531c0b0e72f7bac6aa38_checkout_2161','1781157349','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608780','_transient_wcf_user_t_504caf1e56531c0b0e72f7bac6aa38_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608781','_transient_timeout_cartflows_data_2159_a98278feaa5fd0ed9dcf5b0b0dc85583','1781157349','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608782','_transient_cartflows_data_2159_a98278feaa5fd0ed9dcf5b0b0dc85583','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608783','_transient_timeout_wcf_user_t_7c6215d56b183b542003a2f7066ee8_checkout_2161','1781157425','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608784','_transient_wcf_user_t_7c6215d56b183b542003a2f7066ee8_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608785','_transient_timeout_cartflows_data_2159_56d029d53ab8bd8610c33219b61af283','1781157438','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608786','_transient_cartflows_data_2159_56d029d53ab8bd8610c33219b61af283','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608787','_transient_timeout_wcf_user_t_192f2536d3b00f345e8e5db5c44bff_checkout_2161','1781157465','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608788','_transient_wcf_user_t_192f2536d3b00f345e8e5db5c44bff_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608789','_transient_timeout_cartflows_data_2159_be5cb86e5a3037b52eeed4cf5fd2db7c','1781157474','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608790','_transient_cartflows_data_2159_be5cb86e5a3037b52eeed4cf5fd2db7c','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608791','_transient_timeout_wcf_user_t_75b75a48f7585254d1c01559dd599d_checkout_2161','1781157569','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608792','_transient_wcf_user_t_75b75a48f7585254d1c01559dd599d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608793','_transient_timeout_cartflows_data_2159_f526430a2ddd9d9ecbf619d60d86b028','1781157572','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608794','_transient_cartflows_data_2159_f526430a2ddd9d9ecbf619d60d86b028','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608795','_transient_timeout_wcf_user_t_3f9a19157426540af9bf1eaf1d8567_checkout_2161','1781157602','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608796','_transient_wcf_user_t_3f9a19157426540af9bf1eaf1d8567_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608797','_transient_timeout_cartflows_data_2159_865f3cdfae7646ab74e79be0fe9f08c9','1781157602','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608798','_transient_cartflows_data_2159_865f3cdfae7646ab74e79be0fe9f08c9','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608799','_transient_timeout_wcf_user_t_7e0ec5e27ab91918c622fefc662eb8_checkout_2161','1781157602','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608800','_transient_wcf_user_t_7e0ec5e27ab91918c622fefc662eb8_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608801','_transient_timeout_cartflows_data_2159_4375c7db7261964087b8ea42a32ac35b','1781157602','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608802','_transient_cartflows_data_2159_4375c7db7261964087b8ea42a32ac35b','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608803','_transient_timeout_wcf_user_t_3f643bfc387c538c21577469cb10fa_checkout_2161','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608804','_transient_wcf_user_t_3f643bfc387c538c21577469cb10fa_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608805','_transient_timeout_cartflows_data_2159_df2b4b96d1e78123fd94848b3d0710d6','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608806','_transient_cartflows_data_2159_df2b4b96d1e78123fd94848b3d0710d6','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608807','_transient_timeout_wcf_user_t_1f0284c727496cac0493a85f74cf5f_checkout_2161','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608808','_transient_wcf_user_t_1f0284c727496cac0493a85f74cf5f_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608809','_transient_timeout_cartflows_data_2159_c73b1fe8351f016a57cd853d9a7a20ca','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608810','_transient_timeout_wcf_user_t_2e4a059111c35ee6f573a1c1a43132_checkout_2161','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608811','_transient_wcf_user_t_2e4a059111c35ee6f573a1c1a43132_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608812','_transient_timeout_cartflows_data_2159_5e35496eb1a042c1b607c8f4fb1b2245','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608813','_transient_cartflows_data_2159_5e35496eb1a042c1b607c8f4fb1b2245','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608814','_transient_cartflows_data_2159_c73b1fe8351f016a57cd853d9a7a20ca','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608815','_transient_timeout_wcf_user_t_99c30605230c202c5207d9f4277cc4_checkout_2161','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608816','_transient_wcf_user_t_99c30605230c202c5207d9f4277cc4_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608817','_transient_timeout_wcf_user_t_1b209f13d9e2e0445a1e68fd54cbf7_checkout_2161','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608818','_transient_wcf_user_t_1b209f13d9e2e0445a1e68fd54cbf7_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608819','_transient_timeout_cartflows_data_2159_66f4c08f60e4ebe2cc8bb31c22520257','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608820','_transient_timeout_cartflows_data_2159_4b5500f1c6bcffbc2f44879eeb7ed64c','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608821','_transient_cartflows_data_2159_4b5500f1c6bcffbc2f44879eeb7ed64c','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608822','_transient_cartflows_data_2159_66f4c08f60e4ebe2cc8bb31c22520257','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608823','_transient_timeout_wcf_user_t_baa3e9ea2231de62bebb5b66fc6ac4_checkout_2161','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608824','_transient_wcf_user_t_baa3e9ea2231de62bebb5b66fc6ac4_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608825','_transient_timeout_cartflows_data_2159_f7a010a0a47599ab394f033c3c542ef8','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608826','_transient_cartflows_data_2159_f7a010a0a47599ab394f033c3c542ef8','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608827','_transient_timeout_wcf_user_t_53cdce7196b3c74eb73587e09f8a86_checkout_2161','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608828','_transient_wcf_user_t_53cdce7196b3c74eb73587e09f8a86_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608829','_transient_timeout_cartflows_data_2159_8b4c6d757aba7d5d18076f389400d45b','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608830','_transient_cartflows_data_2159_8b4c6d757aba7d5d18076f389400d45b','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608831','_transient_timeout_wcf_user_t_ab4137878ccabed04d2028555b791c_checkout_2161','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608832','_transient_wcf_user_t_ab4137878ccabed04d2028555b791c_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608833','_transient_timeout_cartflows_data_2159_9ad466341a2b4b14ff02f98bfbba4937','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608834','_transient_cartflows_data_2159_9ad466341a2b4b14ff02f98bfbba4937','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608835','_transient_timeout_wcf_user_t_a2b4d436347c06f40606f1a2736c34_checkout_2161','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608836','_transient_wcf_user_t_a2b4d436347c06f40606f1a2736c34_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608837','_transient_timeout_cartflows_data_2159_79c72a98eb1b80b095af917b1ce5f5e3','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608838','_transient_cartflows_data_2159_79c72a98eb1b80b095af917b1ce5f5e3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608839','_transient_timeout_wcf_user_t_cd1fefad92812d1a221fb57725ee5b_checkout_2161','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608840','_transient_wcf_user_t_cd1fefad92812d1a221fb57725ee5b_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608841','_transient_timeout_cartflows_data_2159_ce3c0af378f267da9aa40b053effa0ac','1781157603','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608842','_transient_cartflows_data_2159_ce3c0af378f267da9aa40b053effa0ac','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608843','_transient_timeout_wcf_user_t_c4b707dced55bf2d70ab89c1a0b962_checkout_2161','1781157604','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608844','_transient_wcf_user_t_c4b707dced55bf2d70ab89c1a0b962_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608845','_transient_timeout_cartflows_data_2159_8426dc7b0282ecbb88aa019248b61f21','1781157604','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608846','_transient_cartflows_data_2159_8426dc7b0282ecbb88aa019248b61f21','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608847','_transient_timeout_wcf_user_t_ff592838234255e036bd65f61502d1_checkout_2161','1781157604','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608848','_transient_wcf_user_t_ff592838234255e036bd65f61502d1_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608849','_transient_timeout_cartflows_data_2159_8ad3bbb5a81db50c083cf01ed55384ce','1781157604','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608850','_transient_cartflows_data_2159_8ad3bbb5a81db50c083cf01ed55384ce','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608851','_transient_timeout_wcf_user_t_181edd95296a8670ab36361b692f38_checkout_2161','1781157604','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608852','_transient_wcf_user_t_181edd95296a8670ab36361b692f38_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608853','_transient_timeout_cartflows_data_2159_8bceb89c5498c30a73454f36050c6468','1781157604','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608854','_transient_cartflows_data_2159_8bceb89c5498c30a73454f36050c6468','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608855','_transient_timeout_wcf_user_t_336b7276922d1d9496722c3f838510_checkout_2161','1781157604','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608856','_transient_wcf_user_t_336b7276922d1d9496722c3f838510_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608857','_transient_timeout_cartflows_data_2159_75c978f11328ef4625815e39e12f3097','1781157604','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608858','_transient_cartflows_data_2159_75c978f11328ef4625815e39e12f3097','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608859','_transient_timeout_wcf_user_t_ed5d6cbc720c1bcc21f65f1b0f38ef_checkout_2161','1781157604','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608860','_transient_wcf_user_t_ed5d6cbc720c1bcc21f65f1b0f38ef_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608861','_transient_timeout_cartflows_data_2159_b830423f9f6e14b923dfeca345085f14','1781157604','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608862','_transient_cartflows_data_2159_b830423f9f6e14b923dfeca345085f14','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608863','_transient_timeout_wcf_user_t_7ca9544517e08e58a53eb0bc6a6431_checkout_2161','1781157604','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608864','_transient_wcf_user_t_7ca9544517e08e58a53eb0bc6a6431_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608865','_transient_timeout_cartflows_data_2159_ef86d42a57fd77e8d7baf3eedd053a54','1781157604','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608866','_transient_cartflows_data_2159_ef86d42a57fd77e8d7baf3eedd053a54','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608867','_transient_timeout_wcf_user_t_0a7aa4a9af1695ee19f69557b61dc2_checkout_2161','1781157604','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608868','_transient_wcf_user_t_0a7aa4a9af1695ee19f69557b61dc2_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608869','_transient_timeout_cartflows_data_2159_ebdeff9fa03dd20f08044e017ec645c3','1781157604','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608870','_transient_cartflows_data_2159_ebdeff9fa03dd20f08044e017ec645c3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608871','_transient_timeout_wcf_user_t_8e4bf89b780ff5d4521cc4bdd0034d_checkout_2161','1781157605','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608872','_transient_wcf_user_t_8e4bf89b780ff5d4521cc4bdd0034d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608873','_transient_timeout_cartflows_data_2159_5339c4e0403a3924a36944375d7322b7','1781157605','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608874','_transient_cartflows_data_2159_5339c4e0403a3924a36944375d7322b7','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608875','_transient_timeout_wcf_user_t_54be3b9455e8dcdded85f30d83fa78_checkout_2161','1781157605','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608876','_transient_wcf_user_t_54be3b9455e8dcdded85f30d83fa78_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608877','_transient_timeout_cartflows_data_2159_9217ba401c4e47ea0cbddc475f2f4eed','1781157605','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608878','_transient_cartflows_data_2159_9217ba401c4e47ea0cbddc475f2f4eed','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608879','_transient_timeout_wcf_user_t_027c0026baea9966b192b1913f6e12_checkout_2161','1781157610','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608880','_transient_wcf_user_t_027c0026baea9966b192b1913f6e12_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608881','_transient_timeout_cartflows_data_2159_899d467cdbd2e8fedc0275fd3472891a','1781157610','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608882','_transient_cartflows_data_2159_899d467cdbd2e8fedc0275fd3472891a','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608883','_transient_timeout_wcf_user_t_c51a0ddadab27efe9e5cb5de63c2b6_checkout_2161','1781157610','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608884','_transient_wcf_user_t_c51a0ddadab27efe9e5cb5de63c2b6_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608885','_transient_timeout_cartflows_data_2159_169ac6c616a093da21893295dd35b42d','1781157610','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608886','_transient_cartflows_data_2159_169ac6c616a093da21893295dd35b42d','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608887','_transient_timeout_wcf_user_t_654abc9666c7d7fd3d1a10c766c00a_checkout_2161','1781157611','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608888','_transient_wcf_user_t_654abc9666c7d7fd3d1a10c766c00a_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608889','_transient_timeout_cartflows_data_2159_fb5d9cde1026e036f83be8b9a4a6c2fb','1781157611','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608890','_transient_cartflows_data_2159_fb5d9cde1026e036f83be8b9a4a6c2fb','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608891','_transient_timeout_wcf_user_t_8aeeb72ee5816c48135744b6ee663c_checkout_2161','1781157612','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608892','_transient_wcf_user_t_8aeeb72ee5816c48135744b6ee663c_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608893','_transient_timeout_cartflows_data_2159_d24695af06e027225a6986d73aec46af','1781157612','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608894','_transient_cartflows_data_2159_d24695af06e027225a6986d73aec46af','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608895','_transient_timeout_wcf_user_t_ffd0cd92a7101961975cac4a45c811_checkout_2161','1781157612','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608896','_transient_wcf_user_t_ffd0cd92a7101961975cac4a45c811_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608897','_transient_timeout_cartflows_data_2159_9d994624ba7f2b705b73ca05add11063','1781157612','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608898','_transient_cartflows_data_2159_9d994624ba7f2b705b73ca05add11063','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608899','_transient_timeout_wcf_user_t_ece99ac1e616a4e8140011f459ea95_checkout_2161','1781157613','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608900','_transient_wcf_user_t_ece99ac1e616a4e8140011f459ea95_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608901','_transient_timeout_cartflows_data_2159_100e19b6138f469d14ebd93b863ec8b8','1781157613','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608902','_transient_cartflows_data_2159_100e19b6138f469d14ebd93b863ec8b8','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608903','_transient_timeout_wcf_user_t_5785552d7c16d9c43a4e1335518c9f_checkout_2161','1781157614','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608904','_transient_wcf_user_t_5785552d7c16d9c43a4e1335518c9f_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608905','_transient_timeout_cartflows_data_2159_c7d2ea721fc5e0c7092683b112033147','1781157614','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608906','_transient_cartflows_data_2159_c7d2ea721fc5e0c7092683b112033147','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608907','_transient_timeout_wcf_user_t_86541b11df99542b683c80a31ac6c9_checkout_2161','1781157699','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608908','_transient_wcf_user_t_86541b11df99542b683c80a31ac6c9_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608909','_transient_timeout_cartflows_data_2159_d88b8eea6ebd9b64655df9da78cd5f90','1781157699','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608910','_transient_cartflows_data_2159_d88b8eea6ebd9b64655df9da78cd5f90','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608911','_transient_timeout_wcf_user_t_830b8443269ceeadf99042c5df6b84_checkout_2161','1781157709','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608912','_transient_wcf_user_t_830b8443269ceeadf99042c5df6b84_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608913','_transient_timeout_cartflows_data_2159_91c4b9b03ba1ceac5b163716d1e092c9','1781157709','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608914','_transient_cartflows_data_2159_91c4b9b03ba1ceac5b163716d1e092c9','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608915','_transient_timeout_wcf_user_t_d36702dd1d8859e4dcb07e9b950c33_checkout_2161','1781157747','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608916','_transient_wcf_user_t_d36702dd1d8859e4dcb07e9b950c33_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608917','_transient_timeout_cartflows_data_2159_e25e96d1457987416d71e6e2a39afba4','1781157750','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608918','_transient_cartflows_data_2159_e25e96d1457987416d71e6e2a39afba4','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608919','_transient_timeout_wcf_user_t_82ba6980695b210de7724f912e72d5_checkout_2161','1781157759','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608920','_transient_wcf_user_t_82ba6980695b210de7724f912e72d5_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608921','_transient_timeout_cartflows_data_2159_60ef833600dc41ebd23bd0902972d2f4','1781157760','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608922','_transient_cartflows_data_2159_60ef833600dc41ebd23bd0902972d2f4','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608923','_transient_timeout_wcf_user_t_256f34d3656bb51e9487864fa09488_checkout_2161','1781157834','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608924','_transient_wcf_user_t_256f34d3656bb51e9487864fa09488_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608925','_transient_timeout_cartflows_data_2159_458a13934321c331e2282756d185dbca','1781157834','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608926','_transient_cartflows_data_2159_458a13934321c331e2282756d185dbca','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608927','_transient_timeout_wcf_user_t_302c070dd0962098d5f7e7eae381a1_checkout_2161','1781157888','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608928','_transient_wcf_user_t_302c070dd0962098d5f7e7eae381a1_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608929','_transient_timeout_cartflows_data_2159_68bdba1e8a2e70826ea72fb902bd6366','1781157893','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608930','_transient_cartflows_data_2159_68bdba1e8a2e70826ea72fb902bd6366','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608931','_transient_timeout_wcf_user_t_a9ce5aeb49e77d53b4b840a8ae75a0_checkout_2161','1781157917','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608932','_transient_wcf_user_t_a9ce5aeb49e77d53b4b840a8ae75a0_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608933','_transient_timeout_cartflows_data_2159_8a2a8a24507244e5d44e0d4ff61c8743','1781157917','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608934','_transient_cartflows_data_2159_8a2a8a24507244e5d44e0d4ff61c8743','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608935','_transient_timeout_wcf_user_t_24bd4f807b6ed7ecf0f4e3f52bf1ee_checkout_2161','1781158093','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608936','_transient_wcf_user_t_24bd4f807b6ed7ecf0f4e3f52bf1ee_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608937','_transient_timeout_cartflows_data_2159_8c95c4b5d12b17022bbb538fa4e08163','1781158096','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608938','_transient_cartflows_data_2159_8c95c4b5d12b17022bbb538fa4e08163','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608939','_transient_timeout_wcf_user_t_ff68e0843cd5c92f0019a540017fa6_checkout_2161','1781158170','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608940','_transient_wcf_user_t_ff68e0843cd5c92f0019a540017fa6_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608941','_transient_timeout_cartflows_data_2159_3b1c07a0812bfb1536632f3524a60939','1781158170','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608942','_transient_cartflows_data_2159_3b1c07a0812bfb1536632f3524a60939','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608943','_transient_timeout_wcf_user_t_ce3a30864d379efeb42342c1ebf4ce_checkout_2161','1781158306','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608944','_transient_wcf_user_t_ce3a30864d379efeb42342c1ebf4ce_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608945','_transient_timeout_cartflows_data_2159_31fa7437f3509c8f535634fdfb2974f5','1781158310','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608946','_transient_cartflows_data_2159_31fa7437f3509c8f535634fdfb2974f5','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608947','_transient_timeout_wcf_user_t_583e139742009f5b3783c02bb8df73_checkout_2161','1781158358','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608948','_transient_wcf_user_t_583e139742009f5b3783c02bb8df73_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608949','_transient_timeout_cartflows_data_2159_29f6348b5a2238057cb06fe276f905c7','1781158368','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608950','_transient_cartflows_data_2159_29f6348b5a2238057cb06fe276f905c7','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608951','_transient_timeout_wcf_user_t_2d571e7402eff93e9a759fdca28da2_checkout_2161','1781158390','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608952','_transient_wcf_user_t_2d571e7402eff93e9a759fdca28da2_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608953','_transient_timeout_cartflows_data_2159_febe185ffbbe03c586d82e82122efcdd','1781158400','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608954','_transient_cartflows_data_2159_febe185ffbbe03c586d82e82122efcdd','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608955','_transient_timeout_wcf_user_t_cc25333866deb34faeeb2fdf9d9381_checkout_2161','1781158406','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608956','_transient_wcf_user_t_cc25333866deb34faeeb2fdf9d9381_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608957','_transient_timeout_cartflows_data_2159_fa6152a040086addec7dbf22bfecb8d7','1781158413','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608958','_transient_cartflows_data_2159_fa6152a040086addec7dbf22bfecb8d7','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608959','_transient_timeout_wcf_user_t_fbb36c4affc4cb066b95eed9620051_checkout_2161','1781158447','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608960','_transient_wcf_user_t_fbb36c4affc4cb066b95eed9620051_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608961','_transient_timeout_cartflows_data_2159_3a092ba3afbaa3dab0799f4deaabc541','1781158447','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608962','_transient_cartflows_data_2159_3a092ba3afbaa3dab0799f4deaabc541','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608963','_transient_timeout_wcf_user_t_ef536408a47a4b7eaf8e8f92d23fba_checkout_2161','1781158474','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608964','_transient_wcf_user_t_ef536408a47a4b7eaf8e8f92d23fba_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608965','_transient_timeout_cartflows_data_2159_27a25168eeb9c561a1ab5b879cba028b','1781158484','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608966','_transient_cartflows_data_2159_27a25168eeb9c561a1ab5b879cba028b','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608967','_transient_timeout_wcf_user_t_0c4ea2e6e384783d2ec9b02a7b79b8_checkout_2161','1781158484','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608968','_transient_wcf_user_t_0c4ea2e6e384783d2ec9b02a7b79b8_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608969','_transient_timeout_cartflows_data_2159_c38b94811f13072682d2ffd6d9a75c71','1781158484','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608970','_transient_cartflows_data_2159_c38b94811f13072682d2ffd6d9a75c71','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608971','_transient_timeout_wcf_user_t_1c85e91ff5a5421930f83c30e084a9_checkout_2161','1781158474','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608972','_transient_wcf_user_t_1c85e91ff5a5421930f83c30e084a9_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608973','_transient_timeout_wcf_user_t_52b1671326578f506b9a6b6018881e_checkout_2161','1781158552','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608974','_transient_wcf_user_t_52b1671326578f506b9a6b6018881e_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608975','_transient_timeout_cartflows_data_2159_9eef16350a9d30133c74b7fcabd42c18','1781158557','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608976','_transient_cartflows_data_2159_9eef16350a9d30133c74b7fcabd42c18','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608977','_transient_timeout_wcf_user_t_94a3d7397c2bf3911833537fe9b53c_checkout_2161','1781158560','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608978','_transient_wcf_user_t_94a3d7397c2bf3911833537fe9b53c_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608979','_transient_timeout_cartflows_data_2159_3bb0994834efd29dbe77baa8f9b7dc7d','1781158563','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608980','_transient_cartflows_data_2159_3bb0994834efd29dbe77baa8f9b7dc7d','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608981','_transient_timeout_wcf_user_t_f2adec3bea7bf7ce3dcca116704708_checkout_2161','1781158735','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608982','_transient_wcf_user_t_f2adec3bea7bf7ce3dcca116704708_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608983','_transient_timeout_cartflows_data_2159_e9f812a58d2cb0de89eb4960d174a310','1781158735','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608984','_transient_cartflows_data_2159_e9f812a58d2cb0de89eb4960d174a310','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608985','_transient_timeout_wcf_user_t_a76e502fba47ac50031464f3c88f13_checkout_2161','1781158778','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608986','_transient_wcf_user_t_a76e502fba47ac50031464f3c88f13_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608987','_transient_timeout_cartflows_data_2159_662c815aa8b337333edfad42e6e885ff','1781158784','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608988','_transient_cartflows_data_2159_662c815aa8b337333edfad42e6e885ff','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608989','_transient_timeout_wcf_user_t_f7d9ef8cd09295bc1b16cef8b827d9_checkout_2161','1781158805','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608990','_transient_wcf_user_t_f7d9ef8cd09295bc1b16cef8b827d9_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608991','_transient_timeout_cartflows_data_2159_bacaffe81a4ec074a29eeb4724b4742b','1781158805','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608992','_transient_cartflows_data_2159_bacaffe81a4ec074a29eeb4724b4742b','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608993','_transient_timeout_wcf_user_t_9a73a8651e08fee8d3c418a0db3ee8_checkout_2161','1781158809','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608994','_transient_wcf_user_t_9a73a8651e08fee8d3c418a0db3ee8_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608995','_transient_timeout_cartflows_data_2159_8bc7fc9c85e9a9d425c1527d4079ba7f','1781158813','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608996','_transient_cartflows_data_2159_8bc7fc9c85e9a9d425c1527d4079ba7f','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608997','_transient_timeout_wcf_user_t_3b1605c170d3a410d3fd5fd641eb90_checkout_2161','1781158815','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608998','_transient_wcf_user_t_3b1605c170d3a410d3fd5fd641eb90_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1608999','_transient_timeout_cartflows_data_2159_f105dbf97f111b607330da650e0da3d2','1781158818','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609000','_transient_cartflows_data_2159_f105dbf97f111b607330da650e0da3d2','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609001','_transient_timeout_wcf_user_t_ab5681b5aa4e871a31e25f4f50d6ba_checkout_2161','1781158859','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609002','_transient_wcf_user_t_ab5681b5aa4e871a31e25f4f50d6ba_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609003','_transient_timeout_cartflows_data_2159_dfd84431684d31ed335aeaaa761770c5','1781158865','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609004','_transient_cartflows_data_2159_dfd84431684d31ed335aeaaa761770c5','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609005','_transient_timeout_wcf_user_t_3ef66a39645f41718079cb485ada9f_checkout_2161','1781158952','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609006','_transient_wcf_user_t_3ef66a39645f41718079cb485ada9f_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609007','_transient_timeout_cartflows_data_2159_1f40d3ad53b81ff492c5c9863338b8b3','1781158956','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609008','_transient_cartflows_data_2159_1f40d3ad53b81ff492c5c9863338b8b3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609009','_transient_timeout_wcf_user_t_d2e8e9e8daedbbdf7263330d717845_checkout_2161','1781159457','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609010','_transient_wcf_user_t_d2e8e9e8daedbbdf7263330d717845_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609011','_transient_timeout_cartflows_data_2159_6c3e0e760b0f35d7cab22d632d1afb24','1781159464','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609012','_transient_cartflows_data_2159_6c3e0e760b0f35d7cab22d632d1afb24','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609013','_transient_timeout_wcf_user_t_68208dc1fb419a568b4fb5bcae9814_checkout_2161','1781159660','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609014','_transient_wcf_user_t_68208dc1fb419a568b4fb5bcae9814_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609015','_transient_timeout_cartflows_data_2159_5c095b266c5d4ac822787f806b9ecf5f','1781159665','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609016','_transient_cartflows_data_2159_5c095b266c5d4ac822787f806b9ecf5f','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609017','_transient_timeout_wcf_user_t_8a5aa63f6306150d79dad032b92829_checkout_2161','1781159665','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609018','_transient_wcf_user_t_8a5aa63f6306150d79dad032b92829_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609019','_transient_timeout_cartflows_data_2159_eaeeeda88414c3a785851d09de2e1dec','1781159667','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609020','_transient_cartflows_data_2159_eaeeeda88414c3a785851d09de2e1dec','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609021','_transient_timeout_wcf_user_t_386d0d3f738cfb0d8534e3a072f37f_checkout_2161','1781159671','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609022','_transient_wcf_user_t_386d0d3f738cfb0d8534e3a072f37f_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609023','_transient_timeout_cartflows_data_2159_2cba1346323c41f934314eedfc227901','1781159671','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609024','_transient_cartflows_data_2159_2cba1346323c41f934314eedfc227901','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609025','_transient_timeout_wcf_user_t_09d5549e2d32fdd8237332e545f9b8_checkout_2161','1781159671','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609026','_transient_wcf_user_t_09d5549e2d32fdd8237332e545f9b8_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609027','_transient_timeout_cartflows_data_2159_b3cb845efabc66db79636e3ecad75632','1781159671','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609028','_transient_cartflows_data_2159_b3cb845efabc66db79636e3ecad75632','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609029','_transient_timeout_wcf_user_t_fc72d30de27a577f72fec331291df3_checkout_2161','1781159671','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609030','_transient_wcf_user_t_fc72d30de27a577f72fec331291df3_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609031','_transient_timeout_cartflows_data_2159_faa7529f8cefd211bf37d2857c0d371d','1781159671','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609032','_transient_cartflows_data_2159_faa7529f8cefd211bf37d2857c0d371d','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609033','_transient_timeout_wcf_user_t_4cc307716581e9a1ce376bc018efc7_checkout_2161','1781159671','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609034','_transient_wcf_user_t_4cc307716581e9a1ce376bc018efc7_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609035','_transient_timeout_cartflows_data_2159_ceb8b57a834e9c2830ac18cb914196cb','1781159671','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609036','_transient_cartflows_data_2159_ceb8b57a834e9c2830ac18cb914196cb','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609037','_transient_timeout_wcf_user_t_6be6cc368d01dae93b0a969b77f444_checkout_2161','1781159671','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609038','_transient_wcf_user_t_6be6cc368d01dae93b0a969b77f444_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609039','_transient_timeout_cartflows_data_2159_56b0e4ea8c531a31e617c1926f9d6839','1781159671','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609040','_transient_cartflows_data_2159_56b0e4ea8c531a31e617c1926f9d6839','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609041','_transient_timeout_wcf_user_t_16252b5a93bee834364db2435a75eb_checkout_2161','1781159672','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609042','_transient_wcf_user_t_16252b5a93bee834364db2435a75eb_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609043','_transient_timeout_cartflows_data_2159_68fb731b99389c37ea32654a12a1ff39','1781159672','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609044','_transient_cartflows_data_2159_68fb731b99389c37ea32654a12a1ff39','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609045','_transient_timeout_wcf_user_t_0caf4210ba51fa2dc7942053976eaf_checkout_2161','1781159672','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609046','_transient_wcf_user_t_0caf4210ba51fa2dc7942053976eaf_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609047','_transient_timeout_cartflows_data_2159_29410b8dfa5c81f618e04fdee43f2784','1781159672','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609048','_transient_cartflows_data_2159_29410b8dfa5c81f618e04fdee43f2784','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609049','_transient_timeout_wcf_user_t_ad5fb4ecca42237d385f13a9be1e21_checkout_2161','1781159672','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609050','_transient_wcf_user_t_ad5fb4ecca42237d385f13a9be1e21_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609051','_transient_timeout_cartflows_data_2159_85e54919629cd48d65b4d6ef7a0a5077','1781159672','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609052','_transient_cartflows_data_2159_85e54919629cd48d65b4d6ef7a0a5077','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609053','_transient_timeout_wcf_user_t_3e35b3738c68b46ef49afd8be1c46e_checkout_2161','1781159672','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609054','_transient_wcf_user_t_3e35b3738c68b46ef49afd8be1c46e_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609055','_transient_timeout_cartflows_data_2159_909e7e1f302432bd11a88fa4e557bda3','1781159672','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609056','_transient_cartflows_data_2159_909e7e1f302432bd11a88fa4e557bda3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609057','_transient_timeout_wcf_user_t_c344514ea636d74aef2a038a546d4d_checkout_2161','1781159672','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609058','_transient_wcf_user_t_c344514ea636d74aef2a038a546d4d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609059','_transient_timeout_cartflows_data_2159_9525e224f049b61ae4c75defdb60eeee','1781159672','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609060','_transient_cartflows_data_2159_9525e224f049b61ae4c75defdb60eeee','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609061','_transient_timeout_wcf_user_t_9bc3ca1d3aa5873957d3135ace08a3_checkout_2161','1781159672','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609062','_transient_wcf_user_t_9bc3ca1d3aa5873957d3135ace08a3_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609063','_transient_timeout_cartflows_data_2159_becfece773a1c8e4877ceca5cd9627e9','1781159672','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609064','_transient_cartflows_data_2159_becfece773a1c8e4877ceca5cd9627e9','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609065','_transient_timeout_wcf_user_t_07df50e177c66231f43ddc9a84cfc4_checkout_2161','1781159674','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609066','_transient_wcf_user_t_07df50e177c66231f43ddc9a84cfc4_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609067','_transient_timeout_cartflows_data_2159_04a82d18b12a6ec8fb662d31ce26692a','1781159674','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609068','_transient_cartflows_data_2159_04a82d18b12a6ec8fb662d31ce26692a','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609069','_transient_timeout_wcf_user_t_952e172d8ae27e0e7ac3df6f6e2673_checkout_2161','1781159674','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609070','_transient_wcf_user_t_952e172d8ae27e0e7ac3df6f6e2673_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609071','_transient_timeout_cartflows_data_2159_f01b4d4d3f8b2ca1170bd4359556a8ab','1781159674','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609072','_transient_cartflows_data_2159_f01b4d4d3f8b2ca1170bd4359556a8ab','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609073','_transient_timeout_wcf_user_t_6999a51ffd7a7ef32fa7fb178dfa90_checkout_2161','1781159675','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609074','_transient_wcf_user_t_6999a51ffd7a7ef32fa7fb178dfa90_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609075','_transient_timeout_cartflows_data_2159_d6992fd30e98c7ac97dc9c95a9e3d19a','1781159675','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609076','_transient_cartflows_data_2159_d6992fd30e98c7ac97dc9c95a9e3d19a','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609077','_transient_timeout_wcf_user_t_b48633e8b78f34efe27a302f1bb1a1_checkout_2161','1781159675','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609078','_transient_wcf_user_t_b48633e8b78f34efe27a302f1bb1a1_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609079','_transient_timeout_cartflows_data_2159_e6ee5d7a8bcb7555f9a7cdacf9a4a5f9','1781159675','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609080','_transient_cartflows_data_2159_e6ee5d7a8bcb7555f9a7cdacf9a4a5f9','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609081','_transient_timeout_wcf_user_t_01ced6c1971c9b5f08da3dcfa2651e_checkout_2161','1781159675','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609082','_transient_wcf_user_t_01ced6c1971c9b5f08da3dcfa2651e_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609083','_transient_timeout_cartflows_data_2159_5c96325c501710068a8a186acb5977da','1781159675','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609084','_transient_cartflows_data_2159_5c96325c501710068a8a186acb5977da','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609085','_transient_timeout_wcf_user_t_14a1d99afd3cf8ae7a2d447062d672_checkout_2161','1781159675','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609086','_transient_wcf_user_t_14a1d99afd3cf8ae7a2d447062d672_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609087','_transient_timeout_cartflows_data_2159_291800cec800ab232c915fe5415bee5e','1781159675','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609088','_transient_cartflows_data_2159_291800cec800ab232c915fe5415bee5e','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609089','_transient_timeout_wcf_user_t_c62a5b5d160c3339a631169f6ed087_checkout_2161','1781159675','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609090','_transient_wcf_user_t_c62a5b5d160c3339a631169f6ed087_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609091','_transient_timeout_wcf_user_t_2f046514f494775bb33ce3f2d15125_checkout_2161','1781159675','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609092','_transient_timeout_cartflows_data_2159_1a40e3a44c30ccf23ab3fbf204aeacb6','1781159675','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609093','_transient_cartflows_data_2159_1a40e3a44c30ccf23ab3fbf204aeacb6','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609094','_transient_wcf_user_t_2f046514f494775bb33ce3f2d15125_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609095','_transient_timeout_cartflows_data_2159_6b610a39536636387e7e9e7152d01a0a','1781159675','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609096','_transient_cartflows_data_2159_6b610a39536636387e7e9e7152d01a0a','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609097','_transient_timeout_wcf_user_t_ecfdbcc9ec1b3eb8ea22b77b3b2db3_checkout_2161','1781159675','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609098','_transient_wcf_user_t_ecfdbcc9ec1b3eb8ea22b77b3b2db3_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609099','_transient_timeout_cartflows_data_2159_06b45cf80ed3bb69131c57c1f379be28','1781159675','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609100','_transient_cartflows_data_2159_06b45cf80ed3bb69131c57c1f379be28','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609101','_transient_timeout_wcf_user_t_9eceee5423e542c8014d45f122d12e_checkout_2161','1781159675','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609102','_transient_wcf_user_t_9eceee5423e542c8014d45f122d12e_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609103','_transient_timeout_cartflows_data_2159_fb6fb0657f0325a7a54e9cffb1e919e7','1781159675','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609104','_transient_cartflows_data_2159_fb6fb0657f0325a7a54e9cffb1e919e7','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609105','_transient_timeout_wcf_user_t_797fffbf1468c840e88507066078f4_checkout_2161','1781159676','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609106','_transient_wcf_user_t_797fffbf1468c840e88507066078f4_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609107','_transient_timeout_cartflows_data_2159_8b9d61ae22713ca8bb005f8ed947cffa','1781159676','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609108','_transient_cartflows_data_2159_8b9d61ae22713ca8bb005f8ed947cffa','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609109','_transient_timeout_wcf_user_t_1073d5cf6cc1eeed67c1853ae4753e_checkout_2161','1781159679','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609110','_transient_wcf_user_t_1073d5cf6cc1eeed67c1853ae4753e_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609111','_transient_timeout_cartflows_data_2159_8fcefa395936471fb2b628341d56c05a','1781159679','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609112','_transient_cartflows_data_2159_8fcefa395936471fb2b628341d56c05a','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609113','_transient_timeout_imunify_security_rules_1781158882_2766550','1781180602','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609114','_transient_imunify_security_rules_1781158882_2766550','a:2:{s:7:\"version\";s:7:\"0.666.0\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609115','_transient_timeout_wcf_user_t_ef02799dcf17cdfbb8c2a8d5275380_checkout_2161','1781161345','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609116','_transient_wcf_user_t_ef02799dcf17cdfbb8c2a8d5275380_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609117','_transient_timeout_cartflows_data_2159_95d1ddda2f8f970a0e998c069ccbdf0b','1781161345','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609118','_transient_cartflows_data_2159_95d1ddda2f8f970a0e998c069ccbdf0b','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609119','_transient_timeout_wcf_user_t_1b9a5aef5a0face292f30d80125e38_checkout_2161','1781162537','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609120','_transient_wcf_user_t_1b9a5aef5a0face292f30d80125e38_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609121','_transient_timeout_cartflows_data_2159_29b5d909f672c2507f04a1d62a71a4db','1781162540','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609122','_transient_cartflows_data_2159_29b5d909f672c2507f04a1d62a71a4db','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609123','_transient_timeout_imunify_security_rules_1781160749_2767190','1781182350','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609124','_transient_imunify_security_rules_1781160749_2767190','a:2:{s:7:\"version\";s:7:\"0.668.0\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609125','_transient_timeout_wcf_user_t_eb4937cde11f9f73cc5f062b51f969_checkout_2161','1781163966','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609126','_transient_wcf_user_t_eb4937cde11f9f73cc5f062b51f969_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609127','_transient_timeout_cartflows_data_2159_4c49aebba5def0a9bed0eff834b7db3e','1781163966','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609128','_transient_cartflows_data_2159_4c49aebba5def0a9bed0eff834b7db3e','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609129','_transient_timeout_wcf_user_t_d2c3e6dc886315f6c61f517e6e7e93_checkout_2161','1781163971','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609130','_transient_wcf_user_t_d2c3e6dc886315f6c61f517e6e7e93_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609131','_transient_timeout_cartflows_data_2159_e0a5269cf17299bc1b905e77f066dac6','1781163971','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609132','_transient_cartflows_data_2159_e0a5269cf17299bc1b905e77f066dac6','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609133','_transient_timeout_wcf_user_t_005f57785501dcef976cb8f9a54ad6_checkout_2161','1781163975','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609134','_transient_wcf_user_t_005f57785501dcef976cb8f9a54ad6_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609135','_transient_timeout_cartflows_data_2159_6706d90a2613c4c57a2e42c835c2c1dc','1781163975','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609136','_transient_cartflows_data_2159_6706d90a2613c4c57a2e42c835c2c1dc','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609137','_transient_timeout_wcf_user_t_f6e359fd34857a03062580ba953154_checkout_2161','1781163975','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609138','_transient_wcf_user_t_f6e359fd34857a03062580ba953154_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609139','_transient_timeout_cartflows_data_2159_8f4dd1261e01c731407a2d8d5af696e1','1781163975','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609140','_transient_cartflows_data_2159_8f4dd1261e01c731407a2d8d5af696e1','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609141','_transient_timeout_imunify_security_rules_1781163012_2766558','1781184689','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609142','_transient_imunify_security_rules_1781163012_2766558','a:2:{s:7:\"version\";s:7:\"0.668.1\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609143','_transient_timeout_wcf_user_t_16dd8be2d6b3508f2962148035824b_checkout_2161','1781166517','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609144','_transient_wcf_user_t_16dd8be2d6b3508f2962148035824b_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609145','_transient_timeout_cartflows_data_2159_eacac83c1c3c4291a72801bdc6733fc6','1781166517','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609146','_transient_cartflows_data_2159_eacac83c1c3c4291a72801bdc6733fc6','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609147','_transient_timeout_wcf_user_t_e37c615b24e6bb16592ac008d84dd2_checkout_2161','1781166764','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609148','_transient_wcf_user_t_e37c615b24e6bb16592ac008d84dd2_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609149','_transient_timeout_cartflows_data_2159_3fe24b7e9054a242ebdb49e82a8df890','1781166764','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609150','_transient_cartflows_data_2159_3fe24b7e9054a242ebdb49e82a8df890','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609151','_transient_timeout_wcf_user_t_1aea24abf74f2254115d40f40db503_checkout_2161','1781166765','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609152','_transient_wcf_user_t_1aea24abf74f2254115d40f40db503_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609153','_transient_timeout_cartflows_data_2159_89606649322a498ac4c5e830cf56c9e2','1781166765','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609154','_transient_cartflows_data_2159_89606649322a498ac4c5e830cf56c9e2','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609155','_transient_timeout_wcf_user_t_99bb78587974ce57c619fb4afa5a15_checkout_2161','1781166767','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609156','_transient_wcf_user_t_99bb78587974ce57c619fb4afa5a15_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609157','_transient_timeout_cartflows_data_2159_217b39c91ff9deadb51561f47c4c1faa','1781166767','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609158','_transient_cartflows_data_2159_217b39c91ff9deadb51561f47c4c1faa','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609159','_transient_timeout_wcf_user_t_8f07e08a9762b377af44793e23ffcb_checkout_2161','1781166767','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609160','_transient_wcf_user_t_8f07e08a9762b377af44793e23ffcb_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609161','_transient_timeout_cartflows_data_2159_3faf67606e4334ff8e4e7f2d8807d8bf','1781166767','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609162','_transient_cartflows_data_2159_3faf67606e4334ff8e4e7f2d8807d8bf','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609163','_transient_timeout_wcf_user_t_ccb76852dffae6bf44ffc38eb219f4_checkout_2161','1781166770','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609164','_transient_wcf_user_t_ccb76852dffae6bf44ffc38eb219f4_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609165','_transient_timeout_cartflows_data_2159_a5530328ba3385cc058ccb8ce6f9395c','1781166770','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609166','_transient_cartflows_data_2159_a5530328ba3385cc058ccb8ce6f9395c','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609167','_transient_timeout_wcf_user_t_5afd3869eacf0e58f2c5396aed2b18_checkout_2161','1781166770','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609168','_transient_wcf_user_t_5afd3869eacf0e58f2c5396aed2b18_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609169','_transient_timeout_cartflows_data_2159_df632d66249f6ba52c1126373c439911','1781166770','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609170','_transient_cartflows_data_2159_df632d66249f6ba52c1126373c439911','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609171','_transient_timeout_wcf_user_t_5b61c96669729ccf344e2cdb51acf9_checkout_2161','1781166771','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609172','_transient_wcf_user_t_5b61c96669729ccf344e2cdb51acf9_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609173','_transient_timeout_cartflows_data_2159_2d6d707f39fee4e8c860e0e50c7761de','1781166771','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609174','_transient_cartflows_data_2159_2d6d707f39fee4e8c860e0e50c7761de','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609175','_transient_timeout_wcf_user_t_db56f9d289e337818c64ab6484a61b_checkout_2161','1781166772','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609176','_transient_wcf_user_t_db56f9d289e337818c64ab6484a61b_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609177','_transient_timeout_cartflows_data_2159_6b0284085a4d7dbae897e6570fe5368d','1781166772','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609178','_transient_cartflows_data_2159_6b0284085a4d7dbae897e6570fe5368d','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609179','_transient_timeout_wcf_user_t_30b7e0b2c0411d08b4b812e1d7bfa2_checkout_2161','1781166772','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609180','_transient_wcf_user_t_30b7e0b2c0411d08b4b812e1d7bfa2_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609181','_transient_timeout_cartflows_data_2159_1a2ef7dfcadbc708eb36dae65b1c40c2','1781166772','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609182','_transient_cartflows_data_2159_1a2ef7dfcadbc708eb36dae65b1c40c2','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609183','_transient_timeout_wcf_user_t_f84b19792b1e8d6ee2aefa4fc7b302_checkout_2161','1781166773','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609184','_transient_wcf_user_t_f84b19792b1e8d6ee2aefa4fc7b302_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609185','_transient_timeout_cartflows_data_2159_089f91b85cf97aefb1802029795f790d','1781166773','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609186','_transient_cartflows_data_2159_089f91b85cf97aefb1802029795f790d','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609187','_transient_timeout_wcf_user_t_307927848b5a6e4f7894ee8141b037_checkout_2161','1781167309','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609188','_transient_wcf_user_t_307927848b5a6e4f7894ee8141b037_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609189','_transient_timeout_cartflows_data_2159_f70d696d4def1da846c4eb3b1e9fb115','1781167309','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609190','_transient_cartflows_data_2159_f70d696d4def1da846c4eb3b1e9fb115','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609191','_transient_timeout_wcf_user_t_94bd7ded51d25efc973c7120a2419d_checkout_2161','1781167570','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609192','_transient_wcf_user_t_94bd7ded51d25efc973c7120a2419d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609193','_transient_timeout_cartflows_data_2159_60292f347348ecf33829763850313ae8','1781167573','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609194','_transient_cartflows_data_2159_60292f347348ecf33829763850313ae8','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609195','_transient_timeout_wcf_user_t_beed2e3922417451389a25e42ed9ae_checkout_2161','1781167802','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609196','_transient_wcf_user_t_beed2e3922417451389a25e42ed9ae_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609197','_transient_timeout_cartflows_data_2159_c22c208df9a1b41339fbce5c1a9d2889','1781167802','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609198','_transient_cartflows_data_2159_c22c208df9a1b41339fbce5c1a9d2889','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609199','_transient_timeout_wcf_user_t_f665323403444c0d3e69c7584a6422_checkout_2161','1781167874','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609200','_transient_wcf_user_t_f665323403444c0d3e69c7584a6422_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609201','_transient_timeout_cartflows_data_2159_7ad66f1b09cfd31d26a6edd626fa98d6','1781167874','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609202','_transient_cartflows_data_2159_7ad66f1b09cfd31d26a6edd626fa98d6','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609203','_transient_timeout_wcf_user_t_a6e427dc2d40800f8b59aaca4ac92a_checkout_2161','1781169064','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609204','_transient_wcf_user_t_a6e427dc2d40800f8b59aaca4ac92a_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609205','_transient_timeout_cartflows_data_2159_252f17904343ce43e25cbab56e4f33b1','1781169064','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609206','_transient_cartflows_data_2159_252f17904343ce43e25cbab56e4f33b1','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609207','_transient_timeout_wcf_user_t_51ff7aea52962fab3f978433f4bd12_checkout_2161','1781169088','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609208','_transient_wcf_user_t_51ff7aea52962fab3f978433f4bd12_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609209','_transient_timeout_cartflows_data_2159_69e195086023bd26a38dd11235f5dddb','1781169088','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609210','_transient_cartflows_data_2159_69e195086023bd26a38dd11235f5dddb','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609211','_transient_timeout_wcf_user_t_ceff2ef4e8a657bf9c89e4fce43a21_checkout_2161','1781169375','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609212','_transient_wcf_user_t_ceff2ef4e8a657bf9c89e4fce43a21_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609213','_transient_timeout_cartflows_data_2159_3333fbbfe510f936b257cd0aa097c024','1781169380','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609214','_transient_cartflows_data_2159_3333fbbfe510f936b257cd0aa097c024','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609215','_transient_timeout_wcf_user_t_6229c65d219e24f9ec445c3f894405_checkout_2161','1781169801','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609216','_transient_wcf_user_t_6229c65d219e24f9ec445c3f894405_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609217','_transient_timeout_cartflows_data_2159_d8965ec47d401944c9446be8f00afd24','1781169806','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609218','_transient_cartflows_data_2159_d8965ec47d401944c9446be8f00afd24','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609219','_transient_timeout_wcf_user_t_d198d0e4ec1cf53c7527a1ae33b59d_checkout_2161','1781170369','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609220','_transient_wcf_user_t_d198d0e4ec1cf53c7527a1ae33b59d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609221','_transient_timeout_cartflows_data_2159_6481a4ddab1e1b2f78ca7c8b78ade820','1781170372','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609222','_transient_cartflows_data_2159_6481a4ddab1e1b2f78ca7c8b78ade820','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609223','_transient_timeout_wcf_user_t_d41d7746e4648c45dc9018e73ae016_checkout_2161','1781170405','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609224','_transient_wcf_user_t_d41d7746e4648c45dc9018e73ae016_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609225','_transient_timeout_cartflows_data_2159_eb0ad1fb96880de4474a046502223bfe','1781170408','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609226','_transient_cartflows_data_2159_eb0ad1fb96880de4474a046502223bfe','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609227','_transient_timeout_wcf_user_t_3934437b0c5a7b2adafa4482f58fc5_checkout_2161','1781170731','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609228','_transient_wcf_user_t_3934437b0c5a7b2adafa4482f58fc5_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609229','_transient_timeout_cartflows_data_2159_1c60536e67ca203eeb850c69377d4047','1781170737','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609230','_transient_cartflows_data_2159_1c60536e67ca203eeb850c69377d4047','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609231','_transient_timeout_wcf_user_t_9772b3708937411704b78676a96d0d_checkout_2161','1781170797','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609232','_transient_wcf_user_t_9772b3708937411704b78676a96d0d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609233','_transient_timeout_cartflows_data_2159_997f7423de17f52bbae3e3ea5112a313','1781170797','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609234','_transient_cartflows_data_2159_997f7423de17f52bbae3e3ea5112a313','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609235','_transient_timeout_wcf_user_t_7263a62eaa4b03a095c166dba9d622_checkout_2161','1781170814','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609236','_transient_wcf_user_t_7263a62eaa4b03a095c166dba9d622_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609237','_transient_timeout_wcf_user_t_47f7646b87779342384fb5e0c6a0ee_checkout_2161','1781170814','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609238','_transient_wcf_user_t_47f7646b87779342384fb5e0c6a0ee_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609239','_transient_timeout_cartflows_data_2159_7053fa30539280aed3fba7d7afdf40b1','1781170814','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609240','_transient_cartflows_data_2159_7053fa30539280aed3fba7d7afdf40b1','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609241','_transient_timeout_cartflows_data_2159_28e05f58aee841b48f06b74ce2e237a2','1781170814','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609242','_transient_cartflows_data_2159_28e05f58aee841b48f06b74ce2e237a2','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609243','_transient_timeout_wcf_user_t_03fe1c2c5813f74e7a2a0adcc5152e_checkout_2161','1781170814','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609244','_transient_wcf_user_t_03fe1c2c5813f74e7a2a0adcc5152e_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609245','_transient_timeout_cartflows_data_2159_62c020278fb76c11b4540ae4fafbafc8','1781170814','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609246','_transient_cartflows_data_2159_62c020278fb76c11b4540ae4fafbafc8','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609247','_transient_timeout_wcf_user_t_b9eb823d0aac42aa12fae0c7ca5002_checkout_2161','1781170814','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609248','_transient_wcf_user_t_b9eb823d0aac42aa12fae0c7ca5002_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609249','_transient_timeout_cartflows_data_2159_f82e2bd5d30ab7b95aab5ba1967d8d23','1781170814','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609250','_transient_cartflows_data_2159_f82e2bd5d30ab7b95aab5ba1967d8d23','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609251','_transient_timeout_wcf_user_t_0320962b2d6d8a257a9ceb993185b4_checkout_2161','1781170814','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609252','_transient_wcf_user_t_0320962b2d6d8a257a9ceb993185b4_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609253','_transient_timeout_cartflows_data_2159_cb2f93a5fedf70afc4a2a4865001871d','1781170814','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609254','_transient_cartflows_data_2159_cb2f93a5fedf70afc4a2a4865001871d','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609255','_transient_timeout_wcf_user_t_d3e019f986c9eae81493bae79004bb_checkout_2161','1781170814','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609256','_transient_wcf_user_t_d3e019f986c9eae81493bae79004bb_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609257','_transient_timeout_cartflows_data_2159_c2a6f945646c4c675f277087f059b2f3','1781170814','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609258','_transient_cartflows_data_2159_c2a6f945646c4c675f277087f059b2f3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609259','_transient_timeout_wcf_user_t_5b1118f8851dcfe79d76051183156e_checkout_2161','1781170815','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609260','_transient_wcf_user_t_5b1118f8851dcfe79d76051183156e_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609261','_transient_timeout_cartflows_data_2159_b0d4d6d7e2f0bbee6d7e073937cfc6f3','1781170815','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609262','_transient_cartflows_data_2159_b0d4d6d7e2f0bbee6d7e073937cfc6f3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609263','_transient_timeout_wcf_user_t_202c25047571002939603db9a1b2d8_checkout_2161','1781170815','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609264','_transient_wcf_user_t_202c25047571002939603db9a1b2d8_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609265','_transient_timeout_cartflows_data_2159_32156b21422798b9ca95530f544eac17','1781170815','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609266','_transient_cartflows_data_2159_32156b21422798b9ca95530f544eac17','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609267','_transient_timeout_wcf_user_t_cd2e690a5e4c929dc2b89a70c71a53_checkout_2161','1781170817','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609268','_transient_wcf_user_t_cd2e690a5e4c929dc2b89a70c71a53_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609269','_transient_timeout_cartflows_data_2159_65c268f044efab4209ef619e418d0dcc','1781170817','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609270','_transient_cartflows_data_2159_65c268f044efab4209ef619e418d0dcc','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609271','_transient_timeout_wcf_user_t_1464d931b30fc3a0bbe80b728430c3_checkout_2161','1781170817','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609272','_transient_wcf_user_t_1464d931b30fc3a0bbe80b728430c3_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609273','_transient_timeout_cartflows_data_2159_64747b01ac810d83bcd32e187a14e220','1781170817','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609274','_transient_cartflows_data_2159_64747b01ac810d83bcd32e187a14e220','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609275','_transient_timeout_wcf_user_t_32023adf5ba886237874b8d4b61f33_checkout_2161','1781170818','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609276','_transient_wcf_user_t_32023adf5ba886237874b8d4b61f33_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609277','_transient_timeout_cartflows_data_2159_9896e22a50ec823f1e1801324a1fc78d','1781170818','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609278','_transient_cartflows_data_2159_9896e22a50ec823f1e1801324a1fc78d','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609279','_transient_timeout_wcf_user_t_9aac0c2e940f4c628ed26ef21fa7d4_checkout_2161','1781170818','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609280','_transient_wcf_user_t_9aac0c2e940f4c628ed26ef21fa7d4_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609281','_transient_timeout_cartflows_data_2159_81c166553f41e438c83a59d6211e7829','1781170818','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609282','_transient_cartflows_data_2159_81c166553f41e438c83a59d6211e7829','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609283','_transient_timeout_wcf_user_t_821d8b7be7f5b1da2ec0c41dc746b0_checkout_2161','1781170818','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609284','_transient_wcf_user_t_821d8b7be7f5b1da2ec0c41dc746b0_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609285','_transient_timeout_cartflows_data_2159_bc1bb44c5ca8b237295be92e731007da','1781170818','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609286','_transient_cartflows_data_2159_bc1bb44c5ca8b237295be92e731007da','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609287','_transient_timeout_wcf_user_t_368c881ca917c0a7ab0ac6da9b6903_checkout_2161','1781170818','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609288','_transient_wcf_user_t_368c881ca917c0a7ab0ac6da9b6903_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609289','_transient_timeout_cartflows_data_2159_4940ad9172758024b6dffc3fb2204dd3','1781170818','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609290','_transient_cartflows_data_2159_4940ad9172758024b6dffc3fb2204dd3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609291','_transient_timeout_wcf_user_t_80de7d4339c294a7e1e27dd2a15729_checkout_2161','1781170818','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609292','_transient_wcf_user_t_80de7d4339c294a7e1e27dd2a15729_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609293','_transient_timeout_cartflows_data_2159_4d25b3a2b3f92a010202ef21a52990fe','1781170818','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609294','_transient_cartflows_data_2159_4d25b3a2b3f92a010202ef21a52990fe','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609295','_transient_timeout_wcf_user_t_847d7d351f4620ef222b0eaf90bf82_checkout_2161','1781170818','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609296','_transient_wcf_user_t_847d7d351f4620ef222b0eaf90bf82_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609297','_transient_timeout_cartflows_data_2159_711fed0a62075a57a78d6f3a93944cf7','1781170819','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609298','_transient_cartflows_data_2159_711fed0a62075a57a78d6f3a93944cf7','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609299','_transient_timeout_wcf_user_t_fc6e4ed742a679f3614529df83a396_checkout_2161','1781170821','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609300','_transient_wcf_user_t_fc6e4ed742a679f3614529df83a396_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609301','_transient_timeout_cartflows_data_2159_600ca6cd791dc2a948df3e089a653e5c','1781170821','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609302','_transient_cartflows_data_2159_600ca6cd791dc2a948df3e089a653e5c','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609303','_transient_timeout_wcf_user_t_59d1ae805110ff7edc19f87f3af2a4_checkout_2161','1781171780','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609304','_transient_wcf_user_t_59d1ae805110ff7edc19f87f3af2a4_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609305','_transient_timeout_cartflows_data_2159_65099cfb6f1117ba0b11f28116a0b58c','1781171780','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609306','_transient_cartflows_data_2159_65099cfb6f1117ba0b11f28116a0b58c','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609307','_transient_timeout_wcf_user_t_f8870a4975f5c3b4107d3f517502cb_checkout_2161','1781171781','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609308','_transient_wcf_user_t_f8870a4975f5c3b4107d3f517502cb_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609309','_transient_timeout_cartflows_data_2159_b5285c661c54c8dcb0dabb6f592e884f','1781171781','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609310','_transient_cartflows_data_2159_b5285c661c54c8dcb0dabb6f592e884f','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609311','_transient_timeout_wcf_user_t_8acf3b19d55211e17bcd800a3edab8_checkout_2161','1781171786','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609312','_transient_wcf_user_t_8acf3b19d55211e17bcd800a3edab8_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609313','_transient_timeout_cartflows_data_2159_d31ec8e25b1449b395d8803fcffac559','1781171786','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609314','_transient_cartflows_data_2159_d31ec8e25b1449b395d8803fcffac559','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609315','_transient_timeout_wcf_user_t_dc3a424736b68bde0d48a2c4edcad8_checkout_2161','1781171933','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609316','_transient_wcf_user_t_dc3a424736b68bde0d48a2c4edcad8_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609317','_transient_timeout_cartflows_data_2159_e7b27367f478fc3f398c01c62e92d40a','1781171933','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609318','_transient_cartflows_data_2159_e7b27367f478fc3f398c01c62e92d40a','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609319','_transient_timeout_wcf_user_t_5e8d624a91be9a37c005c84f4bdb0c_checkout_2161','1781172625','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609320','_transient_wcf_user_t_5e8d624a91be9a37c005c84f4bdb0c_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609321','_transient_timeout_cartflows_data_2159_f41f00549e5115303af9de7df7137d9b','1781172625','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609322','_transient_cartflows_data_2159_f41f00549e5115303af9de7df7137d9b','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609323','_transient_timeout_wcf_user_t_3431305c3cb19b1adcf96f1275c41d_checkout_2161','1781172655','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609324','_transient_wcf_user_t_3431305c3cb19b1adcf96f1275c41d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609325','_transient_timeout_cartflows_data_2159_00cb0287a5af12e26f80c1b17a5078da','1781172655','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609326','_transient_cartflows_data_2159_00cb0287a5af12e26f80c1b17a5078da','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609327','_transient_timeout_wcf_user_t_c2c8a7c27af3c3db3023435a5ebe50_checkout_2161','1781172656','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609328','_transient_wcf_user_t_c2c8a7c27af3c3db3023435a5ebe50_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609329','_transient_timeout_cartflows_data_2159_3e3f2e5073c94130c7672d829cc7e556','1781172656','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609330','_transient_cartflows_data_2159_3e3f2e5073c94130c7672d829cc7e556','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609331','_transient_timeout_wcf_user_t_5349048960743c0d4e676ce3e3afc8_checkout_2161','1781172660','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609332','_transient_wcf_user_t_5349048960743c0d4e676ce3e3afc8_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609333','_transient_timeout_cartflows_data_2159_7ba6d1f9b048ebeaf448b79bc266256d','1781172660','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609334','_transient_cartflows_data_2159_7ba6d1f9b048ebeaf448b79bc266256d','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609335','_transient_timeout_wcf_user_t_ff40113521acd0b32bf38045169891_checkout_2161','1781172755','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609336','_transient_wcf_user_t_ff40113521acd0b32bf38045169891_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609337','_transient_timeout_cartflows_data_2159_fbbb255ed4dabee0f46e2b44f8acb8b6','1781172759','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609338','_transient_cartflows_data_2159_fbbb255ed4dabee0f46e2b44f8acb8b6','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609339','_transient_timeout_wcf_user_t_b943c513f7a99781ddc0831392045d_checkout_2161','1781174230','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609340','_transient_wcf_user_t_b943c513f7a99781ddc0831392045d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609341','_transient_timeout_cartflows_data_2159_ce0f96c43de768eb7e547c76560eb7ce','1781174230','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609342','_transient_cartflows_data_2159_ce0f96c43de768eb7e547c76560eb7ce','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609343','_transient_timeout_wcf_user_t_baa031f60cd7b8d6cb92f21d18de1d_checkout_2161','1781176356','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609344','_transient_wcf_user_t_baa031f60cd7b8d6cb92f21d18de1d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609345','_transient_timeout_cartflows_data_2159_2bd4a4847104447020cbb8ba47adf04c','1781176356','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609346','_transient_cartflows_data_2159_2bd4a4847104447020cbb8ba47adf04c','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609349','_transient_timeout_imunify_security_rules_1781176184_2766558','1781197831','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609350','_transient_imunify_security_rules_1781176184_2766558','a:2:{s:7:\"version\";s:7:\"0.669.1\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609351','_transient_timeout_wcf_user_t_e3668ec62300210a7c89f5ac1326e1_checkout_2161','1781178070','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609352','_transient_wcf_user_t_e3668ec62300210a7c89f5ac1326e1_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609353','_transient_timeout_cartflows_data_2159_b74defa2691dcb19a6dd25d6f459b15c','1781178070','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609354','_transient_cartflows_data_2159_b74defa2691dcb19a6dd25d6f459b15c','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609359','_transient_timeout_wcf_user_t_37ae4d6d3af7c15c430fc4f877b286_checkout_2161','1781178109','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609360','_transient_wcf_user_t_37ae4d6d3af7c15c430fc4f877b286_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609361','_transient_timeout_cartflows_data_2159_f6af9088de9d79cbdb00a22054a53da3','1781178109','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609362','_transient_cartflows_data_2159_f6af9088de9d79cbdb00a22054a53da3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609363','_transient_timeout_wcf_user_t_e6e247a318baf634157d178e2146a0_checkout_2161','1781179171','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609364','_transient_wcf_user_t_e6e247a318baf634157d178e2146a0_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609365','_transient_timeout_cartflows_data_2159_2f67e0f362e3234cb33a78aa4c3ef413','1781179171','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609366','_transient_cartflows_data_2159_2f67e0f362e3234cb33a78aa4c3ef413','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609367','_transient_timeout_wcf_user_t_770c5a1cd327b5588eb939e2c23188_checkout_2161','1781179172','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609368','_transient_wcf_user_t_770c5a1cd327b5588eb939e2c23188_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609369','_transient_timeout_cartflows_data_2159_7546c9c3b373539f57bf20b67ba6e754','1781179172','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609370','_transient_cartflows_data_2159_7546c9c3b373539f57bf20b67ba6e754','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609371','_transient_timeout_wcf_user_t_5eafa225df237d340b79f5902c20ab_checkout_2161','1781179172','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609372','_transient_wcf_user_t_5eafa225df237d340b79f5902c20ab_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609373','_transient_timeout_cartflows_data_2159_39938f48341278ebdc2267f2c5130f73','1781179172','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609374','_transient_cartflows_data_2159_39938f48341278ebdc2267f2c5130f73','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609375','_transient_timeout_wcf_user_t_1919ee4293dd9a0cf2d4e9f3f5debc_checkout_2161','1781179172','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609376','_transient_wcf_user_t_1919ee4293dd9a0cf2d4e9f3f5debc_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609377','_transient_timeout_cartflows_data_2159_3e368cf36ccb0c4e98d82e8d2a15affc','1781179172','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609378','_transient_cartflows_data_2159_3e368cf36ccb0c4e98d82e8d2a15affc','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609379','_transient_timeout_wcf_user_t_092c0f6c495a8b3abb2af07604e5bc_checkout_2161','1781179172','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609380','_transient_wcf_user_t_092c0f6c495a8b3abb2af07604e5bc_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609381','_transient_timeout_cartflows_data_2159_e183bd8da68bda49f703c74600d3c966','1781179172','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609382','_transient_cartflows_data_2159_e183bd8da68bda49f703c74600d3c966','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609383','_transient_timeout_woocommerce_marketplace_promotions_v2','1781263772','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609384','_transient_woocommerce_marketplace_promotions_v2','a:1:{s:6:\"promos\";a:4:{i:0;a:9:{s:13:\"date_from_gmt\";s:16:\"2025-11-26 14:15\";s:11:\"date_to_gmt\";s:16:\"2025-12-02 13:59\";s:6:\"format\";s:10:\"promo-card\";s:5:\"pages\";a:1:{i:0;a:2:{s:4:\"path\";s:0:\"\";s:8:\"pathname\";s:33:\"/wp-admin/admin.php?page=wc-admin\";}}s:9:\"cta_label\";a:1:{s:5:\"en_US\";s:13:\"Shop the sale\";}s:8:\"cta_link\";s:52:\"/wp-admin/admin.php?page=wc-admin&path={489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2Fextensions\";s:7:\"content\";a:1:{s:5:\"en_US\";s:240:\"Save up to 40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} on themes and extensions in the WooCommerce Marketplace until December 2 at 14:00 UTC. <strong>Coupon applied at checkout.</strong> <a href=\"https://woocommerce.com/products/#sale-ts-and-cs\" target=\"_blank\">T&C</a>’s apply.\";}s:5:\"title\";a:1:{s:5:\"en_US\";s:29:\"Black Friday savings are live\";}s:4:\"icon\";s:7:\"percent\";}i:1;a:9:{s:13:\"date_from_gmt\";s:16:\"2025-11-26 14:15\";s:11:\"date_to_gmt\";s:16:\"2025-12-02 13:59\";s:6:\"format\";s:10:\"promo-card\";s:5:\"pages\";a:1:{i:0;a:2:{s:4:\"page\";s:8:\"wc-admin\";s:4:\"path\";s:10:\"/marketing\";}}s:9:\"cta_label\";a:1:{s:5:\"en_US\";s:23:\"Level up your marketing\";}s:8:\"cta_link\";s:52:\"/wp-admin/admin.php?page=wc-admin&path={489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2Fextensions\";s:7:\"content\";a:1:{s:5:\"en_US\";s:223:\"Save up to 40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} in the Woo BFCM sale. <strong>Coupon applied at checkout.</strong> Offer ends December 2 at 14:00 UTC. T&Cs apply. <a href=\"https://woocommerce.com/products/#sale-ts-and-cs\" target=\"_blank\">T&C</a>’s apply.\";}s:5:\"title\";a:1:{s:5:\"en_US\";s:43:\"Take up to 40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} off marketing tools and more\";}s:4:\"icon\";s:7:\"percent\";}i:2;a:10:{s:13:\"date_from_gmt\";s:16:\"2025-11-26 14:15\";s:11:\"date_to_gmt\";s:16:\"2025-12-02 13:59\";s:6:\"format\";s:10:\"promo-card\";s:5:\"pages\";a:1:{i:0;a:2:{s:4:\"path\";s:0:\"\";s:8:\"pathname\";s:40:\"/wp-admin/edit.php?post_type=shop_coupon\";}}s:9:\"cta_label\";a:1:{s:5:\"en_US\";s:19:\"Upgrade your promos\";}s:8:\"cta_link\";s:52:\"/wp-admin/admin.php?page=wc-admin&path={489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2Fextensions\";s:7:\"content\";a:1:{s:5:\"en_US\";s:211:\"Save up to 40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} in the Woo BFCM sale. <strong>Coupon applied at checkout.</strong> Offer ends December 2 at 14:00 UTC. <a href=\"https://woocommerce.com/products/#sale-ts-and-cs\" target=\"_blank\">T&C</a>’s apply.\";}s:5:\"title\";a:1:{s:5:\"en_US\";s:46:\"Take up to 40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} off coupon and promo extensions\";}s:5:\"style\";s:4:\"wide\";s:4:\"icon\";s:7:\"percent\";}i:3;a:10:{s:13:\"date_from_gmt\";s:16:\"2025-11-26 14:15\";s:11:\"date_to_gmt\";s:16:\"2025-12-02 13:59\";s:6:\"format\";s:10:\"promo-card\";s:5:\"pages\";a:1:{i:0;a:2:{s:4:\"page\";s:8:\"wc-admin\";s:4:\"path\";s:11:\"/extensions\";}}s:9:\"cta_label\";a:1:{s:5:\"en_US\";s:13:\"Shop the sale\";}s:8:\"cta_link\";s:52:\"/wp-admin/admin.php?page=wc-admin&path={489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2Fextensions\";s:7:\"content\";a:1:{s:5:\"en_US\";s:233:\"Take up to 40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} off WooCommerce Marketplace products this BFCM. <strong>Coupon applied at checkout.</strong> Sale ends December 2 at 14:00 UTC. <a href=\"https://woocommerce.com/products/#sale-ts-and-cs\" target=\"_blank\">T&Cs</a> apply.\";}s:5:\"title\";a:1:{s:5:\"en_US\";s:39:\"Save up to 40{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} on your next big upgrade\";}s:5:\"style\";s:14:\"has-background\";s:4:\"icon\";s:7:\"percent\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609385','_transient_timeout_clarity_is_latest_plugin_version','1781263773','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609386','_transient_clarity_is_latest_plugin_version','1','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609387','_transient_timeout_wcf_user_t_338a2962b4618df6363ec8633753e5_checkout_2161','1781179173','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609388','_transient_wcf_user_t_338a2962b4618df6363ec8633753e5_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609389','_transient_timeout_cartflows_data_2159_7a99f081afdf0383b450781d5d0a2d3a','1781179173','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609390','_transient_cartflows_data_2159_7a99f081afdf0383b450781d5d0a2d3a','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609391','_transient_timeout_wcf_user_t_9949fec7fa3ff71302f54e89d18920_checkout_2161','1781179174','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609392','_transient_wcf_user_t_9949fec7fa3ff71302f54e89d18920_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609393','_transient_timeout_cartflows_data_2159_4e9130c73e300ec6d5cc7796df6ba086','1781179174','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609394','_transient_cartflows_data_2159_4e9130c73e300ec6d5cc7796df6ba086','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609395','_transient_timeout_wcf_user_t_b25b1460d2e8dd646636b658f23c93_checkout_2161','1781179175','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609396','_transient_wcf_user_t_b25b1460d2e8dd646636b658f23c93_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609397','_transient_timeout_cartflows_data_2159_eda6bf91f2a67f1df359329371126525','1781179175','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609398','_transient_cartflows_data_2159_eda6bf91f2a67f1df359329371126525','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609399','_transient_timeout_wcf_user_t_6bca154a4d71b527d7ecf2ebaae7e7_checkout_2161','1781179175','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609400','_transient_wcf_user_t_6bca154a4d71b527d7ecf2ebaae7e7_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609401','_transient_timeout_cartflows_data_2159_36c58f1c62343b430333edd30f2f4dae','1781179175','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609402','_transient_cartflows_data_2159_36c58f1c62343b430333edd30f2f4dae','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609403','_transient_timeout_wcf_user_t_35cbdace8656eb186fb0e6bb0d8d02_checkout_2161','1781179175','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609404','_transient_wcf_user_t_35cbdace8656eb186fb0e6bb0d8d02_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609405','_transient_timeout_cartflows_data_2159_f1047cd61ac175e1fbb86ec7d94a3cdd','1781179175','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609406','_transient_cartflows_data_2159_f1047cd61ac175e1fbb86ec7d94a3cdd','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609407','_transient_timeout_wcf_user_t_1ccdacf69538b5ef981fcc037b4793_checkout_2161','1781179176','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609408','_transient_wcf_user_t_1ccdacf69538b5ef981fcc037b4793_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609409','_transient_timeout_cartflows_data_2159_41dedf9032ab18fb1172e46bb79e926b','1781179176','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609410','_transient_cartflows_data_2159_41dedf9032ab18fb1172e46bb79e926b','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609411','_transient_timeout_wcf_user_t_3570fe220232de61f98548bd3b4c7b_checkout_2161','1781179176','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609412','_transient_wcf_user_t_3570fe220232de61f98548bd3b4c7b_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609413','_transient_timeout_cartflows_data_2159_83c9a6b8d5de70225246e7155d3ede2c','1781179176','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609414','_transient_cartflows_data_2159_83c9a6b8d5de70225246e7155d3ede2c','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609415','_transient_timeout_wcf_user_t_d74598b5a1b47251c1bf6ee5db596b_checkout_2161','1781179178','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609416','_transient_wcf_user_t_d74598b5a1b47251c1bf6ee5db596b_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609417','_transient_timeout_cartflows_data_2159_ba7f7ed2c988fece4fce8087b6da1a15','1781179178','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609418','_transient_cartflows_data_2159_ba7f7ed2c988fece4fce8087b6da1a15','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609419','_transient_timeout_wcf_user_t_103d33181d2754453070a3c61097da_checkout_2161','1781179178','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609420','_transient_wcf_user_t_103d33181d2754453070a3c61097da_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609421','_transient_timeout_cartflows_data_2159_49870fa6507fe0edd5a136b48932e8f7','1781179178','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609422','_transient_cartflows_data_2159_49870fa6507fe0edd5a136b48932e8f7','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609423','_transient_timeout_wcf_user_t_71c0e59048418ac4b332c369d99565_checkout_2161','1781179178','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609424','_transient_wcf_user_t_71c0e59048418ac4b332c369d99565_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609425','_transient_timeout_cartflows_data_2159_72c98924120932052f041eea8a980275','1781179178','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609426','_transient_cartflows_data_2159_72c98924120932052f041eea8a980275','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609427','_transient_timeout_wcf_user_t_2f24e5796b1c32c5dcfd238fddb0c2_checkout_2161','1781179178','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609428','_transient_wcf_user_t_2f24e5796b1c32c5dcfd238fddb0c2_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609429','_transient_timeout_cartflows_data_2159_011cd05a24ee5369e5ce1348287f88df','1781179178','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609430','_transient_cartflows_data_2159_011cd05a24ee5369e5ce1348287f88df','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609431','_transient_timeout_wcf_user_t_50f1af0f4b9721f89d11edea9ae93c_checkout_2161','1781179179','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609432','_transient_wcf_user_t_50f1af0f4b9721f89d11edea9ae93c_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609433','_transient_timeout_cartflows_data_2159_55d36a513fc161d03771c50792a1f925','1781179179','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609434','_transient_cartflows_data_2159_55d36a513fc161d03771c50792a1f925','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609435','_transient_timeout_wcf_user_t_5cd4ad1e038f3b3eb30e72b03583fd_checkout_2161','1781179179','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609436','_transient_wcf_user_t_5cd4ad1e038f3b3eb30e72b03583fd_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609437','_transient_timeout_cartflows_data_2159_8111f0c8d3e00517db530226b2183320','1781179179','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609438','_transient_cartflows_data_2159_8111f0c8d3e00517db530226b2183320','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609439','_transient_timeout_wcf_user_t_f04833c5f13429f5e53bcf02e6f1e0_checkout_2161','1781179179','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609440','_transient_wcf_user_t_f04833c5f13429f5e53bcf02e6f1e0_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609441','_transient_timeout_cartflows_data_2159_cd40b09eb1e11f32f73fe71ce9f29b67','1781179179','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609442','_transient_cartflows_data_2159_cd40b09eb1e11f32f73fe71ce9f29b67','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609443','_transient_timeout_wcf_user_t_ceb7900d7206586b10a81bec813eb8_checkout_2161','1781179181','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609444','_transient_wcf_user_t_ceb7900d7206586b10a81bec813eb8_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609445','_transient_timeout_cartflows_data_2159_26731094d337e6b773e0fc246e108699','1781179181','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609446','_transient_cartflows_data_2159_26731094d337e6b773e0fc246e108699','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609447','_transient_timeout_wcf_user_t_a295ad27d13671866134c4eeac6ec3_checkout_2161','1781179181','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609448','_transient_wcf_user_t_a295ad27d13671866134c4eeac6ec3_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609449','_transient_timeout_cartflows_data_2159_1e9d985da71b388a6c92bb4c074ae6ca','1781179181','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609450','_transient_cartflows_data_2159_1e9d985da71b388a6c92bb4c074ae6ca','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609451','_transient_timeout_wcf_user_t_6dd92cf1e98f818ba3cd97e9871b79_checkout_2161','1781179181','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609452','_transient_wcf_user_t_6dd92cf1e98f818ba3cd97e9871b79_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609453','_transient_timeout_cartflows_data_2159_8e98f9e5373d354ffb36c805114cceec','1781179181','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609454','_transient_cartflows_data_2159_8e98f9e5373d354ffb36c805114cceec','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609455','_transient_timeout_wcf_user_t_8ca0053bb90793378648b5d23eb022_checkout_2161','1781183684','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609456','_transient_wcf_user_t_8ca0053bb90793378648b5d23eb022_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609457','_transient_timeout_cartflows_data_2159_17dc5a52297475fdbe1b663fea49392f','1781183688','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609458','_transient_cartflows_data_2159_17dc5a52297475fdbe1b663fea49392f','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609459','_transient_timeout_wcf_user_t_203e7cc7196d53e1c4f7f17467fa67_checkout_2161','1781184324','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609460','_transient_wcf_user_t_203e7cc7196d53e1c4f7f17467fa67_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609461','_transient_timeout_cartflows_data_2159_24d1392e8cfc9c3d4fdc8385ac101a8f','1781184324','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609462','_transient_cartflows_data_2159_24d1392e8cfc9c3d4fdc8385ac101a8f','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609463','_transient_timeout_wcf_user_t_5936aa4a17b6e9e6ca46b27fed4e83_checkout_2161','1781184557','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609464','_transient_wcf_user_t_5936aa4a17b6e9e6ca46b27fed4e83_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609465','_transient_timeout_cartflows_data_2159_8620385f5cc6acb7afae9a1610b51f85','1781184563','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609466','_transient_cartflows_data_2159_8620385f5cc6acb7afae9a1610b51f85','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609467','_transient_timeout_wcf_user_t_b084d014d68ba0553f678b01c78270_checkout_2161','1781184842','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609468','_transient_wcf_user_t_b084d014d68ba0553f678b01c78270_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609469','_transient_timeout_cartflows_data_2159_28ceecf33e63099d74727ea6683fc324','1781184842','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609470','_transient_cartflows_data_2159_28ceecf33e63099d74727ea6683fc324','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609471','_transient_timeout_wcf_user_t_a3691e6b65e6df8a73ac34f32b60a1_checkout_2161','1781185382','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609472','_transient_wcf_user_t_a3691e6b65e6df8a73ac34f32b60a1_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609473','_transient_timeout_cartflows_data_2159_f3545c204e69a71b42d6d4f05e5017dd','1781185382','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609474','_transient_cartflows_data_2159_f3545c204e69a71b42d6d4f05e5017dd','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609475','_transient_timeout_wcf_user_t_d8c9bfdce94ca70c9ad6f30050e75f_checkout_2161','1781185696','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609476','_transient_wcf_user_t_d8c9bfdce94ca70c9ad6f30050e75f_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609477','_transient_timeout_cartflows_data_2159_2e74ea7cef6522d5288d122904c5f3ed','1781185701','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609478','_transient_cartflows_data_2159_2e74ea7cef6522d5288d122904c5f3ed','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609479','_transient_timeout_wcf_user_t_49fbdf3c325c133ccaff8d34cf71fb_checkout_2161','1781186174','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609480','_transient_wcf_user_t_49fbdf3c325c133ccaff8d34cf71fb_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609481','_transient_timeout_cartflows_data_2159_76f874cd61a9d47384d7bb00c044de95','1781186177','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609482','_transient_cartflows_data_2159_76f874cd61a9d47384d7bb00c044de95','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609483','_transient_timeout_wcf_user_t_243cdfad882fc76f7733e015c107dc_checkout_2161','1781186791','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609484','_transient_wcf_user_t_243cdfad882fc76f7733e015c107dc_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609485','_transient_timeout_cartflows_data_2159_0a8d7857052feced82741a132e679cc2','1781186795','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609486','_transient_cartflows_data_2159_0a8d7857052feced82741a132e679cc2','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609487','_transient_timeout_wcf_user_t_c864849ab730199e22d72a23f62fa5_checkout_2161','1781187467','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609488','_transient_wcf_user_t_c864849ab730199e22d72a23f62fa5_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609489','_transient_timeout_cartflows_data_2159_aa8451dd80c300876998809b2102b76d','1781187471','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609490','_transient_cartflows_data_2159_aa8451dd80c300876998809b2102b76d','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609491','_transient_timeout_imunify_security_rules_1781187569_2767373','1781209275','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609492','_transient_imunify_security_rules_1781187569_2767373','a:2:{s:7:\"version\";s:7:\"0.670.0\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609493','_transient_timeout_wcf_user_t_3acdf655d6bf3ab9e936f95e986c69_checkout_2161','1781189501','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609494','_transient_wcf_user_t_3acdf655d6bf3ab9e936f95e986c69_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609495','_transient_timeout_cartflows_data_2159_922bc2ffd40a291e4c6e397ba2f72ca9','1781189504','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609496','_transient_cartflows_data_2159_922bc2ffd40a291e4c6e397ba2f72ca9','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609501','_transient_timeout_wcf_user_t_9e21a10ce0a55aa9eedb951352135a_checkout_2161','1781189961','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609502','_transient_wcf_user_t_9e21a10ce0a55aa9eedb951352135a_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609503','_transient_timeout_cartflows_data_2159_d5f246636f6255942e0014a27c0e3d4b','1781190000','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609504','_transient_cartflows_data_2159_d5f246636f6255942e0014a27c0e3d4b','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609505','_transient_timeout_wcf_user_t_6f7517c286f80d4235832e67816427_checkout_2161','1781190639','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609506','_transient_wcf_user_t_6f7517c286f80d4235832e67816427_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609507','_transient_timeout_cartflows_data_2159_89f732604eff375e9c36a6931cb7ceb2','1781190639','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609508','_transient_cartflows_data_2159_89f732604eff375e9c36a6931cb7ceb2','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609509','_transient_timeout_wcf_user_t_6de24ae8eb797985048a53ce29130d_checkout_2161','1781190757','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609510','_transient_wcf_user_t_6de24ae8eb797985048a53ce29130d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609511','_transient_timeout_cartflows_data_2159_7e08560361d78a6bfcc0b503561037fd','1781190760','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609512','_transient_cartflows_data_2159_7e08560361d78a6bfcc0b503561037fd','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609513','_transient_timeout_wcf_user_t_7df49b1dac30629deb7a1eb0dba1a0_checkout_2161','1781190870','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609514','_transient_wcf_user_t_7df49b1dac30629deb7a1eb0dba1a0_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609515','_transient_timeout_cartflows_data_2159_a133db17845f1aa2ac1f3740b3f3426b','1781190870','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609516','_transient_cartflows_data_2159_a133db17845f1aa2ac1f3740b3f3426b','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609517','_transient_timeout_wcf_user_t_fcd8527847e1246a424cce5ba248ae_checkout_2161','1781192438','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609518','_transient_wcf_user_t_fcd8527847e1246a424cce5ba248ae_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609519','_transient_timeout_cartflows_data_2159_068bd157e4be21e379913bfd60d4d7c0','1781192443','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609520','_transient_cartflows_data_2159_068bd157e4be21e379913bfd60d4d7c0','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609521','_transient_timeout_wcf_user_t_0091611b82f0c570bac9eafdff2c04_checkout_2161','1781192461','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609522','_transient_wcf_user_t_0091611b82f0c570bac9eafdff2c04_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609523','_transient_timeout_cartflows_data_2159_2eb02fe3a8766a4599201f8f57d7974f','1781192461','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609524','_transient_cartflows_data_2159_2eb02fe3a8766a4599201f8f57d7974f','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609525','_transient_timeout_wcf_user_t_f3090233906ea867fb11e60f230207_checkout_2161','1781192729','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609526','_transient_wcf_user_t_f3090233906ea867fb11e60f230207_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609527','_transient_timeout_cartflows_data_2159_fdddc209c3843b908bcf244158767edf','1781192729','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609528','_transient_cartflows_data_2159_fdddc209c3843b908bcf244158767edf','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609529','_transient_timeout_imunify_security_rules_1781191210_2771608','1781212834','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609530','_transient_imunify_security_rules_1781191210_2771608','a:2:{s:7:\"version\";s:7:\"0.672.0\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609531','_transient_timeout_wcf_user_t_c8511eaa21648391025049dec2d713_checkout_2161','1781193208','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609532','_transient_wcf_user_t_c8511eaa21648391025049dec2d713_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609533','_transient_timeout_cartflows_data_2159_7a94fe88d28d9867a3db7805dd04f248','1781193211','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609534','_transient_cartflows_data_2159_7a94fe88d28d9867a3db7805dd04f248','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609535','_transient_timeout_wcf_user_t_03f4310bd934d1b9a87a37b0f3ec20_checkout_2161','1781193650','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609536','_transient_wcf_user_t_03f4310bd934d1b9a87a37b0f3ec20_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609537','_transient_timeout_cartflows_data_2159_18da2edccc322f6097d44d1eb01227ba','1781193653','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609538','_transient_cartflows_data_2159_18da2edccc322f6097d44d1eb01227ba','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609539','_transient_timeout_wcf_user_t_c8fb8e687c86ebe21201518108d228_checkout_2161','1781193924','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609540','_transient_wcf_user_t_c8fb8e687c86ebe21201518108d228_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609541','_transient_timeout_cartflows_data_2159_5c32eaf347bb0d3edf1cfb46e2e32996','1781193931','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609542','_transient_cartflows_data_2159_5c32eaf347bb0d3edf1cfb46e2e32996','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609543','_transient_timeout_wcf_user_t_bad078f34f004c897d2d5b98a85ead_checkout_2161','1781194146','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609544','_transient_wcf_user_t_bad078f34f004c897d2d5b98a85ead_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609545','_transient_timeout_cartflows_data_2159_7da4d0ed32180c5543b2add658a9f1d7','1781194150','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609546','_transient_cartflows_data_2159_7da4d0ed32180c5543b2add658a9f1d7','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609547','_transient_timeout_wcf_user_t_99192c3e4375940ea161219efe8b48_checkout_2161','1781194505','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609548','_transient_wcf_user_t_99192c3e4375940ea161219efe8b48_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609549','_transient_timeout_cartflows_data_2159_3e0d48928082082881ba11fe179cc876','1781194505','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609550','_transient_cartflows_data_2159_3e0d48928082082881ba11fe179cc876','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609551','_transient_timeout_wcf_user_t_45121b46cdac82d72164b93d965514_checkout_2161','1781194768','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609552','_transient_wcf_user_t_45121b46cdac82d72164b93d965514_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609553','_transient_timeout_cartflows_data_2159_8006e7c27a2acaeffb42bec3fc5aa042','1781194772','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609554','_transient_cartflows_data_2159_8006e7c27a2acaeffb42bec3fc5aa042','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609555','_transient_timeout_wcf_user_t_5e2feeb2a4e09b1462c21b811e3f23_checkout_2161','1781194869','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609556','_transient_wcf_user_t_5e2feeb2a4e09b1462c21b811e3f23_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609557','_transient_timeout_cartflows_data_2159_ecb199c0898818a495043c96ee42fd9c','1781194869','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609558','_transient_cartflows_data_2159_ecb199c0898818a495043c96ee42fd9c','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609559','_transient_timeout_wcf_user_t_f15b9f2dca2552c8dbb166e79a57fa_checkout_2161','1781194991','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609560','_transient_wcf_user_t_f15b9f2dca2552c8dbb166e79a57fa_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609561','_transient_timeout_cartflows_data_2159_0974ec38b9d4dbcbd9d6eb09a3f51164','1781194994','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609562','_transient_cartflows_data_2159_0974ec38b9d4dbcbd9d6eb09a3f51164','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609563','_transient_timeout_wcf_user_t_9630c4df8f6693329d96c66b7dc871_checkout_2161','1781195466','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609564','_transient_wcf_user_t_9630c4df8f6693329d96c66b7dc871_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609565','_transient_timeout_cartflows_data_2159_6fd43471c9d73184cee8f4c7dda70006','1781195469','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609566','_transient_cartflows_data_2159_6fd43471c9d73184cee8f4c7dda70006','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609567','_transient_timeout_wcf_user_t_1f0d10a3817b6b3e6681a646ca9176_checkout_2161','1781195786','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609568','_transient_wcf_user_t_1f0d10a3817b6b3e6681a646ca9176_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609569','_transient_timeout_cartflows_data_2159_2be4b183d1992be5d4199288468613ed','1781195793','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609570','_transient_cartflows_data_2159_2be4b183d1992be5d4199288468613ed','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609571','_transient_timeout_wcf_user_t_18531f92e109ef121e7e0769b6371d_checkout_2161','1781195801','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609572','_transient_wcf_user_t_18531f92e109ef121e7e0769b6371d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609573','_transient_timeout_cartflows_data_2159_c3d22f2821d49cb1ea32a2b30f42c6ef','1781195801','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609574','_transient_cartflows_data_2159_c3d22f2821d49cb1ea32a2b30f42c6ef','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609575','_transient_timeout_wcf_user_t_7dcb121b6160da7f8be4b89a224927_checkout_2161','1781196336','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609576','_transient_wcf_user_t_7dcb121b6160da7f8be4b89a224927_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609577','_transient_timeout_cartflows_data_2159_98bd428e4437c7d80a9fb29f390a94b0','1781196336','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609578','_transient_cartflows_data_2159_98bd428e4437c7d80a9fb29f390a94b0','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609579','_transient_timeout_imunify_security_rules_1781194894_2773769','1781216563','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609580','_transient_imunify_security_rules_1781194894_2773769','a:2:{s:7:\"version\";s:7:\"0.673.0\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609581','_transient_timeout_wcf_user_t_d19ee444227329e845cbff89e8a822_checkout_2161','1781197133','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609582','_transient_wcf_user_t_d19ee444227329e845cbff89e8a822_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609583','_transient_timeout_cartflows_data_2159_52f5e25356c1432060114194d11e77a5','1781197136','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609584','_transient_cartflows_data_2159_52f5e25356c1432060114194d11e77a5','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609585','_transient_timeout_wcf_user_t_96da3449100929a895ec8263f1e9ad_checkout_2161','1781197342','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609586','_transient_wcf_user_t_96da3449100929a895ec8263f1e9ad_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609587','_transient_timeout_cartflows_data_2159_d19b420dbae962688302aa956b43a807','1781197342','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609588','_transient_cartflows_data_2159_d19b420dbae962688302aa956b43a807','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609589','_transient_timeout_wcf_user_t_9798ea995a694495c99545d2dab4bb_checkout_2161','1781197597','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609590','_transient_wcf_user_t_9798ea995a694495c99545d2dab4bb_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609591','_transient_timeout_cartflows_data_2159_d9dafd9476fe7ebd645ea1e980111657','1781197597','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609592','_transient_cartflows_data_2159_d9dafd9476fe7ebd645ea1e980111657','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609593','_transient_timeout_wcf_user_t_543ca2ae8bc197cd1a87c2a2abb548_checkout_2161','1781197598','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609594','_transient_wcf_user_t_543ca2ae8bc197cd1a87c2a2abb548_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609595','_transient_timeout_cartflows_data_2159_a72c307d64c9054126c4dc18ee1b1868','1781197598','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609596','_transient_cartflows_data_2159_a72c307d64c9054126c4dc18ee1b1868','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609597','_transient_timeout_wcf_user_t_5d597a0cddab262a1fcf9deb2511db_checkout_2161','1781197606','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609598','_transient_wcf_user_t_5d597a0cddab262a1fcf9deb2511db_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609599','_transient_timeout_cartflows_data_2159_c6b7c0798b2b62c5ece5f7df30e33f58','1781197606','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609600','_transient_cartflows_data_2159_c6b7c0798b2b62c5ece5f7df30e33f58','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609601','_transient_timeout_wcf_user_t_f2a64438544157f8b4b6f3c3362209_checkout_2161','1781197621','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609602','_transient_wcf_user_t_f2a64438544157f8b4b6f3c3362209_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609603','_transient_timeout_cartflows_data_2159_504f5d89f013af2a273e7926c9f6e66c','1781197621','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609604','_transient_cartflows_data_2159_504f5d89f013af2a273e7926c9f6e66c','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609605','_transient_timeout_wcf_user_t_e6b39b5ec2282f6cb52067e644abfb_checkout_2161','1781197980','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609606','_transient_wcf_user_t_e6b39b5ec2282f6cb52067e644abfb_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609607','_transient_timeout_cartflows_data_2159_648030ee0aac8719375aa5798516fbd3','1781197980','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609608','_transient_cartflows_data_2159_648030ee0aac8719375aa5798516fbd3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609609','_transient_timeout_wcf_user_t_71cfc8bc55c52689718abcac3226af_checkout_2161','1781197983','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609610','_transient_wcf_user_t_71cfc8bc55c52689718abcac3226af_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609611','_transient_timeout_cartflows_data_2159_532f3e4da007fe7ae7488c5dcd78a8ae','1781197983','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609612','_transient_cartflows_data_2159_532f3e4da007fe7ae7488c5dcd78a8ae','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609613','_transient_timeout_wcf_user_t_2ee7af164f05e1a0b73e85a58b1611_checkout_2161','1781198201','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609614','_transient_wcf_user_t_2ee7af164f05e1a0b73e85a58b1611_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609615','_transient_timeout_cartflows_data_2159_448b7198035339d7fbcf7eb82c49c45f','1781198201','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609616','_transient_cartflows_data_2159_448b7198035339d7fbcf7eb82c49c45f','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609619','_transient_timeout_wcf_user_t_bc39a8267b32824e079a8829bd1577_checkout_2161','1781199406','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609620','_transient_wcf_user_t_bc39a8267b32824e079a8829bd1577_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609621','_transient_timeout_cartflows_data_2159_100024240abadca7dcf024d7e68b6c22','1781199406','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609622','_transient_cartflows_data_2159_100024240abadca7dcf024d7e68b6c22','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609623','_transient_timeout_wcf_user_t_ec673f0ba6f06141107a6a52669a9a_checkout_2161','1781199697','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609624','_transient_wcf_user_t_ec673f0ba6f06141107a6a52669a9a_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609625','_transient_timeout_cartflows_data_2159_9a262d86c0b93567ac356378d6cbaace','1781199702','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609626','_transient_cartflows_data_2159_9a262d86c0b93567ac356378d6cbaace','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609627','_transient_timeout_wcf_user_t_a815ca9fb49e458a6e6ee912d4b22d_checkout_2161','1781199706','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609628','_transient_wcf_user_t_a815ca9fb49e458a6e6ee912d4b22d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609629','_transient_timeout_cartflows_data_2159_cbb76fe8553ccbaa79b1abad988cc0ce','1781199706','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609630','_transient_cartflows_data_2159_cbb76fe8553ccbaa79b1abad988cc0ce','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609631','_transient_timeout_wcf_user_t_91e9ce123259315609608c56bd79fb_checkout_2161','1781199706','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609632','_transient_wcf_user_t_91e9ce123259315609608c56bd79fb_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609633','_transient_timeout_cartflows_data_2159_e941932d0fefb9f71f2e0608b49fe053','1781199706','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609634','_transient_cartflows_data_2159_e941932d0fefb9f71f2e0608b49fe053','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609635','_transient_timeout_wcf_user_t_31bda36f7b7fde6183a38e1c8b5e73_checkout_2161','1781199706','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609636','_transient_wcf_user_t_31bda36f7b7fde6183a38e1c8b5e73_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609637','_transient_timeout_cartflows_data_2159_4d9a8fcf4f74a25f7f005d0f87019554','1781199706','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609638','_transient_cartflows_data_2159_4d9a8fcf4f74a25f7f005d0f87019554','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609639','_transient_timeout_wcf_user_t_e4d4307feace2dce1ae9eced7517a7_checkout_2161','1781199706','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609640','_transient_wcf_user_t_e4d4307feace2dce1ae9eced7517a7_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609641','_transient_timeout_cartflows_data_2159_e0252d1ab6b66cf710de5cc02529cdba','1781199706','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609642','_transient_cartflows_data_2159_e0252d1ab6b66cf710de5cc02529cdba','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609643','_transient_timeout_wcf_user_t_f7700e4aafc34c0bdca68088a28d3f_checkout_2161','1781199706','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609644','_transient_wcf_user_t_f7700e4aafc34c0bdca68088a28d3f_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609645','_transient_timeout_cartflows_data_2159_5d79347d10cf60ab1700b934269a2f2a','1781199706','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609646','_transient_cartflows_data_2159_5d79347d10cf60ab1700b934269a2f2a','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609647','_transient_timeout_wcf_user_t_a392b289ef683fe025ebb6b813e100_checkout_2161','1781199706','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609648','_transient_wcf_user_t_a392b289ef683fe025ebb6b813e100_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609649','_transient_timeout_cartflows_data_2159_69f21246d5687478d03a90fae32ed68f','1781199706','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609650','_transient_cartflows_data_2159_69f21246d5687478d03a90fae32ed68f','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609651','_transient_timeout_wcf_user_t_0a4fa23d9af4a300ccf32271ae315d_checkout_2161','1781199707','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609652','_transient_wcf_user_t_0a4fa23d9af4a300ccf32271ae315d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609653','_transient_timeout_cartflows_data_2159_280f140d70a3c28b5e9935beaf2de6c8','1781199707','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609654','_transient_cartflows_data_2159_280f140d70a3c28b5e9935beaf2de6c8','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609655','_transient_timeout_wcf_user_t_e5747aec3efa7e5ce4fec8914e4c9b_checkout_2161','1781199707','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609656','_transient_wcf_user_t_e5747aec3efa7e5ce4fec8914e4c9b_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609657','_transient_timeout_cartflows_data_2159_6b9433f3c0a1a7904e88b742aa9c888a','1781199707','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609658','_transient_cartflows_data_2159_6b9433f3c0a1a7904e88b742aa9c888a','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609659','_transient_timeout_wcf_user_t_9d667b1617bd7c256a6e5712f32fad_checkout_2161','1781199707','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609660','_transient_timeout_wcf_user_t_c697308a729c35cc625e45c5da9063_checkout_2161','1781199707','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609661','_transient_wcf_user_t_9d667b1617bd7c256a6e5712f32fad_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609662','_transient_wcf_user_t_c697308a729c35cc625e45c5da9063_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609663','_transient_timeout_cartflows_data_2159_c0017818432fa132fba382714e74bd08','1781199707','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609664','_transient_timeout_cartflows_data_2159_a9e93c3b9c3a93b40e574504e2f96215','1781199707','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609665','_transient_cartflows_data_2159_c0017818432fa132fba382714e74bd08','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609666','_transient_cartflows_data_2159_a9e93c3b9c3a93b40e574504e2f96215','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609667','_transient_timeout_wcf_user_t_98c3b3dbd604730363a7c07d2307d5_checkout_2161','1781199707','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609668','_transient_wcf_user_t_98c3b3dbd604730363a7c07d2307d5_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609669','_transient_timeout_cartflows_data_2159_ca2280d470cc22b01b53c9009de61347','1781199707','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609670','_transient_cartflows_data_2159_ca2280d470cc22b01b53c9009de61347','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609671','_transient_timeout_wcf_user_t_37a9e0413b42940c31741f68100ba7_checkout_2161','1781199708','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609672','_transient_wcf_user_t_37a9e0413b42940c31741f68100ba7_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609673','_transient_timeout_cartflows_data_2159_7d8bec00e40b3e1ac48921a0ec86907d','1781199708','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609674','_transient_cartflows_data_2159_7d8bec00e40b3e1ac48921a0ec86907d','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609675','_transient_timeout_wcf_user_t_db496ee26f1abe272d4b66987e09e7_checkout_2161','1781199709','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609676','_transient_wcf_user_t_db496ee26f1abe272d4b66987e09e7_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609677','_transient_timeout_cartflows_data_2159_95550c794ff99df171eff044c68c2eba','1781199709','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609678','_transient_cartflows_data_2159_95550c794ff99df171eff044c68c2eba','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609679','_transient_timeout_wcf_user_t_1f8da9d8b5bf115330825adc3adef5_checkout_2161','1781199711','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609680','_transient_wcf_user_t_1f8da9d8b5bf115330825adc3adef5_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609681','_transient_timeout_cartflows_data_2159_b336fb5e3b1feabda209f6142231ea6b','1781199711','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609682','_transient_cartflows_data_2159_b336fb5e3b1feabda209f6142231ea6b','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609683','_transient_timeout_wcf_user_t_71f0345f99f091125ec63ad691b532_checkout_2161','1781199711','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609684','_transient_wcf_user_t_71f0345f99f091125ec63ad691b532_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609685','_transient_timeout_cartflows_data_2159_452e2d639cd621a40ef01aa94545c55d','1781199711','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609686','_transient_cartflows_data_2159_452e2d639cd621a40ef01aa94545c55d','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609687','_transient_timeout_wcf_user_t_d06e04c3f10aff53625d17c449d1ab_checkout_2161','1781199711','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609688','_transient_wcf_user_t_d06e04c3f10aff53625d17c449d1ab_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609689','_transient_timeout_cartflows_data_2159_f455a74183fd79a8ad37ddcc00d40620','1781199711','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609690','_transient_cartflows_data_2159_f455a74183fd79a8ad37ddcc00d40620','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609691','_transient_timeout_wcf_user_t_9246c5f0a256c6ee859d002e2d950d_checkout_2161','1781199711','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609692','_transient_wcf_user_t_9246c5f0a256c6ee859d002e2d950d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609693','_transient_timeout_cartflows_data_2159_797ea48a3f40fa12de1d9f2592d511c5','1781199711','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609694','_transient_cartflows_data_2159_797ea48a3f40fa12de1d9f2592d511c5','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609695','_transient_timeout_wcf_user_t_98f2f04429da355f915e5ae64c797f_checkout_2161','1781199712','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609696','_transient_wcf_user_t_98f2f04429da355f915e5ae64c797f_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609697','_transient_timeout_cartflows_data_2159_7a03c255a5f6c4c3311e149b7aa2a70b','1781199712','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609698','_transient_cartflows_data_2159_7a03c255a5f6c4c3311e149b7aa2a70b','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609699','_transient_timeout_wcf_user_t_8054ecdc1fd1c45509862634cf6850_checkout_2161','1781199712','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609700','_transient_wcf_user_t_8054ecdc1fd1c45509862634cf6850_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609701','_transient_timeout_cartflows_data_2159_260ea72fde245904ce126ede562663c4','1781199712','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609702','_transient_cartflows_data_2159_260ea72fde245904ce126ede562663c4','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609703','_transient_timeout_wcf_user_t_ad19259a662f8e7805f41d2afc785b_checkout_2161','1781199712','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609704','_transient_wcf_user_t_ad19259a662f8e7805f41d2afc785b_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609705','_transient_timeout_cartflows_data_2159_3cdcfb783d0b39c0e9470708bac25337','1781199712','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609706','_transient_cartflows_data_2159_3cdcfb783d0b39c0e9470708bac25337','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609707','_transient_timeout_wcf_user_t_27b2a4073866d71808603fc84d741d_checkout_2161','1781199712','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609708','_transient_wcf_user_t_27b2a4073866d71808603fc84d741d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609709','_transient_timeout_cartflows_data_2159_cb8eb952be5e20ce5332b88c5b688d71','1781199712','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609710','_transient_cartflows_data_2159_cb8eb952be5e20ce5332b88c5b688d71','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609711','_transient_timeout_wcf_user_t_09d16ce0ff5e37b1aae907af5f4bee_checkout_2161','1781199712','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609712','_transient_wcf_user_t_09d16ce0ff5e37b1aae907af5f4bee_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609713','_transient_timeout_cartflows_data_2159_f856f2798105723273fe20c02d0366bc','1781199712','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609714','_transient_cartflows_data_2159_f856f2798105723273fe20c02d0366bc','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609715','_transient_timeout_wcf_user_t_661245513e969bcebebab1aab115dd_checkout_2161','1781199712','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609716','_transient_wcf_user_t_661245513e969bcebebab1aab115dd_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609717','_transient_timeout_cartflows_data_2159_ab36d5215fd68286c25ce2487a971fb6','1781199712','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609718','_transient_cartflows_data_2159_ab36d5215fd68286c25ce2487a971fb6','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609719','_transient_timeout_wcf_user_t_617ee1aeb79b57ff478e71965c9ed4_checkout_2161','1781199714','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609720','_transient_wcf_user_t_617ee1aeb79b57ff478e71965c9ed4_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609721','_transient_timeout_cartflows_data_2159_922abc4353387eba8ac34f25102d5fb3','1781199714','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609722','_transient_cartflows_data_2159_922abc4353387eba8ac34f25102d5fb3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609723','_transient_timeout_wcf_user_t_b4b71826a6e87e04e1c36571360359_checkout_2161','1781199714','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609724','_transient_wcf_user_t_b4b71826a6e87e04e1c36571360359_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609725','_transient_timeout_cartflows_data_2159_862bb0ff2d24117a96f6b4741a2c9ee2','1781199714','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609726','_transient_cartflows_data_2159_862bb0ff2d24117a96f6b4741a2c9ee2','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609727','_transient_timeout_wcf_user_t_89e235aff024e1bc78b48ac075c1ef_checkout_2161','1781199715','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609728','_transient_wcf_user_t_89e235aff024e1bc78b48ac075c1ef_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609729','_transient_timeout_cartflows_data_2159_3b2c58e54ab954b7a4801a0bc19ec8de','1781199715','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609730','_transient_cartflows_data_2159_3b2c58e54ab954b7a4801a0bc19ec8de','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609731','_transient_timeout_imunify_security_rules_1781198536_2773142','1781220150','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609732','_transient_imunify_security_rules_1781198536_2773142','a:2:{s:7:\"version\";s:7:\"0.673.1\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609733','_transient_timeout_wcf_user_t_25dae700b520ad6f1c7810166ea41d_checkout_2161','1781200750','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609734','_transient_wcf_user_t_25dae700b520ad6f1c7810166ea41d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609735','_transient_timeout_cartflows_data_2159_700eab74eca774407be46195456e526a','1781200753','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609736','_transient_cartflows_data_2159_700eab74eca774407be46195456e526a','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609737','_transient_timeout_wcf_user_t_650585af11103e78f0e0184e4e9ec0_checkout_2161','1781201918','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609738','_transient_wcf_user_t_650585af11103e78f0e0184e4e9ec0_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609739','_transient_timeout_cartflows_data_2159_675b5f9e41194abd31f43f1ba7ea6a46','1781201918','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609740','_transient_cartflows_data_2159_675b5f9e41194abd31f43f1ba7ea6a46','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609741','_transient_timeout_wcf_user_t_9c032ca9d17eaca6dc75928b36262f_checkout_2161','1781202489','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609742','_transient_wcf_user_t_9c032ca9d17eaca6dc75928b36262f_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609743','_transient_timeout_cartflows_data_2159_e19c581753fa3480e289e40a1d208f67','1781202501','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609744','_transient_cartflows_data_2159_e19c581753fa3480e289e40a1d208f67','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609745','_transient_timeout_imunify_security_rules_1781202232_2773622','1781223947','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609746','_transient_imunify_security_rules_1781202232_2773622','a:2:{s:7:\"version\";s:7:\"0.675.1\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609747','_transient_timeout_wcf_user_t_429bf4a15cfb83d4aacdc2a5714c2e_checkout_2161','1781204215','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609748','_transient_wcf_user_t_429bf4a15cfb83d4aacdc2a5714c2e_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609749','_transient_timeout_cartflows_data_2159_8e8fa10609d5df48317d20e64de96106','1781204221','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609750','_transient_cartflows_data_2159_8e8fa10609d5df48317d20e64de96106','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609751','_transient_timeout_wcf_user_t_fc37faf0e886822a301258343ad7c5_checkout_2161','1781204279','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609752','_transient_wcf_user_t_fc37faf0e886822a301258343ad7c5_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609753','_transient_timeout_cartflows_data_2159_a47b7c696b993869d0ed039d22e144bf','1781204279','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609754','_transient_cartflows_data_2159_a47b7c696b993869d0ed039d22e144bf','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609755','_transient_timeout_imunify_security_rules_1781204299_2773629','1781226117','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609756','_transient_imunify_security_rules_1781204299_2773629','a:2:{s:7:\"version\";s:7:\"0.676.1\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609757','_transient_timeout_wcf_user_t_6ccc1db9936fc7fb412bbca0064664_checkout_2161','1781206414','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609758','_transient_wcf_user_t_6ccc1db9936fc7fb412bbca0064664_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609759','_transient_timeout_cartflows_data_2159_d0e8034eba25b3a25df9f9a2fed3b303','1781206419','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609760','_transient_cartflows_data_2159_d0e8034eba25b3a25df9f9a2fed3b303','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609761','_transient_timeout_wcf_user_t_01428435ad5f8b82b47114e4632043_checkout_2161','1781209436','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609762','_transient_wcf_user_t_01428435ad5f8b82b47114e4632043_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609763','_transient_timeout_cartflows_data_2159_471155cf5acfc56e679bed8414d83af9','1781209436','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609764','_transient_cartflows_data_2159_471155cf5acfc56e679bed8414d83af9','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609765','_transient_timeout_wcf_user_t_c67abb87ebe295e859292a0b42fdb0_checkout_2161','1781209437','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609766','_transient_wcf_user_t_c67abb87ebe295e859292a0b42fdb0_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609767','_transient_timeout_cartflows_data_2159_ca2d3601c76f44fa4f8476d797b8767b','1781209437','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609768','_transient_cartflows_data_2159_ca2d3601c76f44fa4f8476d797b8767b','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609769','_transient_timeout_wcf_user_t_49087f2cfb4494a9aad9fea9aa80f9_checkout_2161','1781209443','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609770','_transient_wcf_user_t_49087f2cfb4494a9aad9fea9aa80f9_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609771','_transient_timeout_cartflows_data_2159_79956db2d09c6c94eb755fb8f306f5e5','1781209443','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609772','_transient_cartflows_data_2159_79956db2d09c6c94eb755fb8f306f5e5','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609773','_transient_timeout_wcf_user_t_5ba37167d76a4fa14fb5705b4b4bd1_checkout_2161','1781209929','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609774','_transient_wcf_user_t_5ba37167d76a4fa14fb5705b4b4bd1_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609775','_transient_timeout_cartflows_data_2159_616d6088af3976bb5e3641db994f7108','1781209929','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609776','_transient_cartflows_data_2159_616d6088af3976bb5e3641db994f7108','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609777','_transient_timeout_wcf_user_t_a1b7673ecab0f3566354c1596b874d_checkout_2161','1781210041','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609778','_transient_wcf_user_t_a1b7673ecab0f3566354c1596b874d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609779','_transient_timeout_cartflows_data_2159_a479073bfac4cd12f54910e6cccb99c0','1781210041','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609780','_transient_cartflows_data_2159_a479073bfac4cd12f54910e6cccb99c0','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609781','_transient_timeout_imunify_security_rules_1781208272_2773632','1781230035','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609782','_transient_imunify_security_rules_1781208272_2773632','a:2:{s:7:\"version\";s:7:\"0.677.1\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609783','_transient_timeout_imunify_security_rules_1781212029_2773154','1781233981','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609784','_transient_imunify_security_rules_1781212029_2773154','a:2:{s:7:\"version\";s:7:\"0.677.2\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609787','_transient_timeout_wcf_user_t_ad726c189f138f85da99b129554cf1_checkout_2161','1781219434','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609788','_transient_wcf_user_t_ad726c189f138f85da99b129554cf1_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609789','_transient_timeout_cartflows_data_2159_bdff1ac589958e17dae3bfe672e74fb8','1781219437','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609790','_transient_cartflows_data_2159_bdff1ac589958e17dae3bfe672e74fb8','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609793','_transient_timeout_wcf_user_t_b580dfa84c8aaf5f2c5afba5b13d08_checkout_2161','1781224392','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609794','_transient_wcf_user_t_b580dfa84c8aaf5f2c5afba5b13d08_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609795','_transient_timeout_cartflows_data_2159_145520ced2f42c68c6aaa26b0b9a2731','1781224395','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609796','_transient_cartflows_data_2159_145520ced2f42c68c6aaa26b0b9a2731','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609801','_transient_timeout_wcf_user_t_d70358b3cfdb8f7560b7af829472ee_checkout_2161','1781234487','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609802','_transient_wcf_user_t_d70358b3cfdb8f7560b7af829472ee_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609803','_transient_timeout_cartflows_data_2159_59c3a28d59b3e52bbf6b5820e7564142','1781234487','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609804','_transient_cartflows_data_2159_59c3a28d59b3e52bbf6b5820e7564142','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609805','_transient_timeout__woocommerce_helper_subscriptions','1781233590','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609806','_transient__woocommerce_helper_subscriptions','a:0:{}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609809','_transient_timeout_imunify_security_rules_1781215695_2773154','1781258993','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609810','_transient_imunify_security_rules_1781215695_2773154','a:2:{s:7:\"version\";s:7:\"0.678.1\";s:5:\"rules\";a:20:{s:22:\"RULE-CVE-2024-10453-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-10453\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.25.9\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:67:\"~global_typography_title.*?(?:<script|\\bon\\w+\\s*=|javascript\\s*:)~i\";}}}s:22:\"RULE-CVE-2024-54444-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2024-54444\";s:11:\"description\";s:101:\"Elementor <=3.25.10 Stored XSS via Social Icons widget javascript protocol URI in elementor_ajax save\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2024-54444\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:9:\"<=3.25.10\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:16:\"social_icon_list\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:85:\"~j[\\s]*a[\\s]*v[\\s]*a[\\s]*s[\\s]*c[\\s]*r[\\s]*i[\\s]*p[\\s]*t[\\s]*:(?![\\s]*void[\\s]*[(])~i\";}}}s:22:\"RULE-CVE-2025-11220-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-11220\";s:11:\"description\";s:100:\"Elementor <=3.33.3 Authenticated (Contributor+) Stored DOM-Based XSS via Text Path widget SVG markup\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-11220\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"svg-injection\";i:3;s:9:\"elementor\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.3\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:8:\"contains\";s:5:\"value\";s:9:\"text-path\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:116:\"~<(?:script|iframe|embed|object|form|meta|link|base)\\b|\\bon(?:error|load|begin|end|click|mouseover|focus|blur)\\s*=~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2025-14732-01\";a:11:{s:3:\"cve\";s:14:\"CVE-2025-14732\";s:11:\"description\";s:69:\"Elementor <=3.35.5 stored XSS via REST API meta _elementor_data field\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2025-14732\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:3:{i:0;s:10:\"stored-xss\";i:1;s:8:\"rest-api\";i:2;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.35.5\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:66:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts/[0-9]+(?:[/?]|$)~\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:meta[_elementor_data]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:78:\"~(?:<script[\\s/>]|on(?:error|load|click|mouseover|focus)\\s*=|javascript\\s*:)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2025-3075-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-3075\";s:11:\"description\";s:109:\"Elementor <=3.29.0 Authenticated (Contributor+) Stored XSS via widget settings in elementor_ajax save handler\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-3075\";s:8:\"severity\";d:5.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:13:\"authenticated\";i:3;s:12:\"page-builder\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.29.0\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:251:\"~\\bon(?:mouse(?:over|enter|move|out|down|up)|error|load|focus|blur|click|dblclick|key(?:down|up|press)|change|submit|reset|animate(?:end|start|iteration)|transition(?:end|run|start)|pointer(?:over|enter|down|up|move|out)|touch(?:start|end|move))\\s*=~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:10:\"edit_posts\";}}}s:22:\"RULE-CVE-2025-67588-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:3:\"PUT\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-03\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:5:\"PATCH\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:22:\"RULE-CVE-2025-67588-04\";a:12:{s:3:\"cve\";s:14:\"CVE-2025-67588\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.3;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.33.0\";s:6:\"method\";s:6:\"DELETE\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:110:\"~^(?:/wp-json/wp/v2/e-floating-buttons(?:/|\\?|$)|/\\?(?:[^#]*&)?rest_route=/wp/v2/e-floating-buttons(?:/|$|&))~\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:14:\"elementor_ajax\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ARGS:actions\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:122:\"~tmp_name[\"\']?\\s*[:=]\\s*[\"\']?(?:\\.\\.[\\\\/]|/(?:etc|proc|var|usr|home|root)/|[a-zA-Z]:\\\\|wp-config\\.php|{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}00|\\\\x00|\\\\u002e)~i\";}i:1;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-8081-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-8081\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:4.9;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"versions\";s:8:\"<=3.30.2\";s:6:\"method\";s:4:\"POST\";s:11:\"ajax_action\";s:32:\"elementor_library_direct_actions\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:126:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in classic editor post save\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:4:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:3:{s:4:\"name\";s:17:\"ARGS:post_content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2025-9130-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2025-9130\";s:11:\"description\";s:124:\"Unify <=3.4.7 Authenticated (Contributor+) Stored XSS via unify_checkout shortcode token attribute in REST API post creation\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2025-9130\";s:8:\"severity\";d:6.4;s:4:\"tags\";a:5:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"shortcode\";i:3;s:13:\"authenticated\";i:4;s:8:\"rest-api\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:5:\"unify\";s:8:\"versions\";s:7:\"<=3.4.7\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:57:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wp/v2/posts(/|\\?|$)~\";}i:1;a:3:{s:4:\"name\";s:12:\"ARGS:content\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:141:\"~\\[unify_checkout\\b[^\\]]*(?:<script|\\bon(?:error|load|click|mouseover|focus|change|submit|focusin)\\s*=|javascript\\s*:|data\\s*:\\s*text/html)~i\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:14:\"manage_options\";}}}s:21:\"RULE-CVE-2026-1841-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:94:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_source request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"ARGS:pys_source\";s:4:\"type\";s:9:\"detectXSS\";}}}s:21:\"RULE-CVE-2026-1841-02\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-1841\";s:11:\"description\";s:95:\"PixelYourSite <=11.2.0 stored XSS via unsanitized pys_landing request parameter during checkout\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-1841\";s:8:\"severity\";d:7.2;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:15:\"unauthenticated\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:8:\"<=11.2.0\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"ARGS:pys_landing\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:26:\"~<[a-zA-Z/!]|javascript:~i\";}}}s:22:\"RULE-CVE-2026-27072-01\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:86:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_head parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:13:\"ARGS:pys_head\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:22:\"RULE-CVE-2026-27072-02\";a:12:{s:3:\"cve\";s:14:\"CVE-2026-27072\";s:11:\"description\";s:88:\"PixelYourSite <=11.2.0.1 Stored XSS via pys_footer parameter in HeadFooter save_meta_box\";s:8:\"cve_link\";s:47:\"https://nvd.nist.gov/vuln/detail/CVE-2026-27072\";s:8:\"severity\";d:7.1;s:4:\"tags\";a:3:{i:0;s:3:\"xss\";i:1;s:10:\"stored-xss\";i:2;s:9:\"post-meta\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:13:\"pixelyoursite\";s:8:\"versions\";s:10:\"<=11.2.0.1\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:22:\"~^/wp-admin/post\\.php~\";}i:1;a:2:{s:4:\"name\";s:15:\"ARGS:pys_footer\";s:4:\"type\";s:6:\"exists\";}i:2;a:2:{s:4:\"type\";s:18:\"missing_capability\";s:5:\"value\";s:15:\"unfiltered_html\";}}}s:21:\"RULE-CVE-2026-3589-01\";a:12:{s:3:\"cve\";s:13:\"CVE-2026-3589\";s:11:\"description\";s:232:\"WooCommerce >=5.4.0 <=10.5.2 CSRF via Store API batch endpoint routing sub-requests to arbitrary non-Store REST endpoints. Covers both form-urlencoded and JSON body (application/json) POST variants via transparent JSON body parsing.\";s:8:\"cve_link\";s:46:\"https://nvd.nist.gov/vuln/detail/CVE-2026-3589\";s:8:\"severity\";d:7.5;s:4:\"tags\";a:4:{i:0;s:4:\"csrf\";i:1;s:21:\"broken-access-control\";i:2;s:8:\"rest-api\";i:3;s:18:\"batch-route-hijack\";}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:6:\"plugin\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"versions\";s:16:\">=5.4.0 <=10.5.2\";s:6:\"method\";s:4:\"POST\";s:6:\"action\";s:13:\"rest_api_init\";s:10:\"conditions\";a:2:{i:0;a:3:{s:4:\"name\";s:11:\"REQUEST_URI\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:65:\"~(?:^/wp-json|(?:^|&|\\?)rest_route=)/wc/store/v1/batch([/?&]|$)~i\";}i:1;a:3:{s:4:\"name\";s:26:\"ARGS:requests[/\\d+/][path]\";s:4:\"type\";s:5:\"regex\";s:5:\"value\";s:21:\"~^/(?!wc/store[/?])~i\";}}}s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609813','_transient_timeout_imunify_disabled_rules','1781262225','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609814','_transient_imunify_disabled_rules','a:3:{s:10:\"file_mtime\";i:1781132062;s:9:\"file_size\";i:115;s:5:\"rules\";a:0:{}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609815','_transient_timeout_wcf_user_t_e63d90c827009571d5b5ef9c39a7a3_checkout_2161','1781242504','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609816','_transient_wcf_user_t_e63d90c827009571d5b5ef9c39a7a3_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609817','_transient_timeout_cartflows_data_2159_e624a54c547d6b12177ce450f8b69892','1781242504','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609818','_transient_cartflows_data_2159_e624a54c547d6b12177ce450f8b69892','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609819','_transient_timeout_cartflows_data_2159_2bdb96b95c9e3c23c83cf0b485f68878','1781242508','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609820','_transient_cartflows_data_2159_2bdb96b95c9e3c23c83cf0b485f68878','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609821','_transient_timeout_woocommerce_admin_payment_method_promotion_specs','1781845509','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609822','_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:11:\"WooPayments\";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:101:\"https://woocommerce.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:865:\"<img class=\"wcpay-visa-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/visa.svg\" alt=\"Visa\"><img class=\"wcpay-mastercard-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/mastercard.svg\" alt=\"Mastercard\"><img class=\"wcpay-amex-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/amex.svg\" alt=\"Amex\"><img class=\"wcpay-googlepay-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/googlepay.svg\" alt=\"Googlepay\"><img class=\"wcpay-applepay-icon wcpay-icon\" src=\"https://woocommerce.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:11:\"WooPayments\";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:101:\"https://woocommerce.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:865:\"<img class=\"wcpay-visa-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/visa.svg\" alt=\"Visa\"><img class=\"wcpay-mastercard-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/mastercard.svg\" alt=\"Mastercard\"><img class=\"wcpay-amex-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/amex.svg\" alt=\"Amex\"><img class=\"wcpay-googlepay-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/googlepay.svg\" alt=\"Googlepay\"><img class=\"wcpay-applepay-icon wcpay-icon\" src=\"https://woocommerce.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');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609823','_transient_timeout_woocommerce_admin_remote_free_extensions_specs','1781845816','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609824','_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:154:\"Accept credit cards and other popular payment methods with <a href=\"https://woocommerce.com/products/woocommerce-payments\" target=\"_blank\">WooPayments</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:2:\"in\";}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:119:\"Print shipping labels with <a href=\"https://woocommerce.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\";a:1:{i:0;s:2:\"US\";}s:9:\"operation\";s:2:\"in\";}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-shipping\";}}}}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:20:\"woocommerce-shipping\";}i:2;O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"WooCommerce Tax\";s:11:\"description\";s:111:\"Get automated sales tax with <a href=\"https://woocommerce.com/products/tax\" target=\"_blank\">WooCommerce Tax</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:11:{i:0;s:2:\"US\";i:1;s:2:\"FR\";i:2;s:2:\"GB\";i:3;s:2:\"DE\";i:4;s:2:\"CA\";i:5;s:2:\"AU\";i:6;s:2:\"GR\";i:7;s:2:\"BE\";i:8;s:2:\"PT\";i:9;s:2:\"DK\";i:10;s:2:\"SE\";}s:9:\"operation\";s:2:\"in\";}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:110:\"Enhance speed and security with <a href=\"https://woocommerce.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:3:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:115:\"Level up your email marketing with <a href=\"https://woocommerce.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\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:84;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";}i:1;O:8:\"stdClass\":8:{s:4:\"name\";s:22:\"Google for WooCommerce\";s:11:\"description\";s:126:\"Drive sales with <a href=\"https://woocommerce.com/products/google-listings-and-ads\" target=\"_blank\">Google for WooCommerce</a>\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path={489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2Fgoogle{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}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\":8:{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:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path={489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2Fpinterest{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2Flanding\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:61;i:1;i:120;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}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: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:96:\"https://woocommerce.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: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:95:\"https://woocommerce.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:11:\"klaviyo:alt\";}i:2;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:97:\"https://woocommerce.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:29:\"mailchimp-for-woocommerce:alt\";}}}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:22:\"Google for WooCommerce\";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:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path={489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2Fgoogle{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}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:94:\"https://woocommerce.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:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CZ\";i:6;s:2:\"DK\";i:7;s:2:\"FI\";i:8;s:2:\"FR\";i:9;s:2:\"DE\";i:10;s:2:\"GR\";i:11;s:2:\"HU\";i:12;s:2:\"IE\";i:13;s:2:\"IT\";i:14;s:2:\"NL\";i:15;s:2:\"PL\";i:16;s:2:\"PT\";i:17;s:2:\"RO\";i:18;s:2:\"ES\";i:19;s:2:\"SE\";i:20;s:2:\"GB\";i:21;s:2:\"CH\";i:22;s:2:\"NO\";i:23;s:2:\"AU\";i:24;s:2:\"NZ\";i:25;s:2:\"SG\";i:26;s:2:\"MY\";i:27;s:2:\"PH\";i:28;s:2:\"ID\";i:29;s:2:\"VN\";i:30;s:2:\"TH\";i:31;s:2:\"KR\";i:32;s:2:\"IL\";i:33;s:2:\"AE\";i:34;s:2:\"RU\";i:35;s:2:\"UA\";i:36;s:2:\"TR\";i:37;s:2:\"SA\";i:38;s:2:\"BR\";i:39;s:2:\"JP\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:60;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";}i:2;O:8:\"stdClass\":7:{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:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path={489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2Fpinterest{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2Flanding\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:61;i:1;i:120;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"pinterest-for-woocommerce:alt\";}i:3;O:8:\"stdClass\":8:{s:4:\"name\";s:26:\"Meta Ads & Pixel by Kliken\";s:11:\"description\";s:150:\"Automate Facebook & Instagram marketing with Kliken. Launch ads and schedule a month of posts in 5 minutes—first 5 free! Plans start at just $20/mo.\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/kliken.svg\";s:10:\"manage_url\";s:40:\"admin.php?page=kliken-ads-pixel-for-meta\";s:14:\"is_built_by_wc\";b:0;s:16:\"install_external\";b:0;s:10:\"is_visible\";b:1;s:3:\"key\";s:29:\"kliken-ads-pixel-for-meta: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:16:{i:0;O:8:\"stdClass\":11:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:54:\"Offer safe and convenient ways to pay with WooPayments\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:2:\"in\";}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:120:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo-rebrand-2.svg\";s:15:\"learn_more_link\";s:123:\"https://woocommerce.com/products/woocommerce-payments?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:5;s:12:\"requires_jpc\";b:1;}i:1;O:8:\"stdClass\":9:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:41:\"Print discounted USPS, UPS and DHL labels\";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:20:\"woocommerce-shipping\";s:5:\"label\";s:42:\"Save on shipping with WooCommerce Shipping\";s:9:\"image_url\";s:120:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo-rebrand-2.svg\";s:15:\"learn_more_link\";s:114:\"https://woocommerce.com/woocommerce-shipping?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:3;}i:2;O:8:\"stdClass\":10:{s:4:\"name\";s:11:\"ShipStation\";s:9:\"image_url\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-shipstation.svg\";s:10:\"manage_url\";s:26:\"admin.php?page=shipstation\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:4:{i:0;s:2:\"CA\";i:1;s:2:\"GB\";i:2;s:2:\"AU\";i:3;s:2:\"NZ\";}s:9:\"operation\";s:2:\"in\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:35:\"woocommerce-shipstation-integration\";s:5:\"label\";s:49:\"Print discounted shipping labels with ShipStation\";s:11:\"description\";s:56:\"Automate your order fulfillment and save on top carriers\";s:15:\"learn_more_link\";s:66:\"https://wordpress.org/plugins/woocommerce-shipstation-integration/\";s:16:\"install_priority\";i:3;}i:3;O:8:\"stdClass\":10:{s:4:\"name\";s:8:\"Packlink\";s:9:\"image_url\";s:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-packlink.svg\";s:10:\"manage_url\";s:36:\"admin.php?page=packlink-pro-shipping\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:9:{i:0;s:2:\"FR\";i:1;s:2:\"ES\";i:2;s:2:\"IT\";i:3;s:2:\"DE\";i:4;s:2:\"NL\";i:5;s:2:\"AT\";i:6;s:2:\"BE\";i:7;s:2:\"IE\";i:8;s:2:\"PT\";}s:9:\"operation\";s:2:\"in\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:21:\"packlink-pro-shipping\";s:5:\"label\";s:46:\"Print discounted shipping labels with Packlink\";s:11:\"description\";s:56:\"Automate your order fulfillment and save on top carriers\";s:15:\"learn_more_link\";s:52:\"https://wordpress.org/plugins/packlink-pro-shipping/\";s:16:\"install_priority\";i:3;}i:4;O:8:\"stdClass\":10:{s:4:\"name\";s:31:\"PayPal Payments for WooCommerce\";s:11:\"description\";s:61:\"Offer more ways to pay with this all-in-one checkout solution\";s:14:\"is_built_by_wc\";b:0;s:15:\"install_options\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"name\";s:26:\"woocommerce_paypal_branded\";s:5:\"value\";s:8:\"profiler\";}}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:3:\"!in\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"9.8.0-rc.1\";s:8:\"operator\";s:2:\">=\";}}s:3:\"key\";s:27:\"woocommerce-paypal-payments\";s:5:\"label\";s:41:\"Maximize conversions with PayPal Payments\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-paypal.svg\";s:15:\"learn_more_link\";s:130:\"https://woocommerce.com/products/woocommerce-paypal-payments?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:5;}i:5;O:8:\"stdClass\":9:{s:4:\"name\";s:31:\"PayPal Payments for WooCommerce\";s:11:\"description\";s:60:\"Offer additional flexible payment options with PayPal Wallet\";s:14:\"is_built_by_wc\";b:0;s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"9.8.0-rc.1\";s:8:\"operator\";s:2:\">=\";}}s:3:\"key\";s:39:\"woocommerce-paypal-payments:wallet-only\";s:5:\"label\";s:38:\"Give shoppers a variety of ways to pay\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-paypal.svg\";s:15:\"learn_more_link\";s:130:\"https://woocommerce.com/products/woocommerce-paypal-payments?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:5;}i:6;O:8:\"stdClass\":11:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:53:\"Keep your store online with full security and backups\";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:49:\"Protect your store and your shoppers with Jetpack\";s:9:\"image_url\";s:114:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-jetpack.svg\";s:15:\"learn_more_link\";s:110:\"https://woocommerce.com/products/jetpack?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:8;s:12:\"requires_jpc\";b:1;}i:7;O:8:\"stdClass\":11:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:55:\"Get your products in front of a highly engaged audience\";s:9:\"image_url\";s:116:\"https://woocommerce.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={489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2Fpinterest{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2Flanding\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:61;i:1;i:120;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}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:128:\"https://woocommerce.com/products/pinterest-for-woocommerce?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:2;}i:8;O:8:\"stdClass\":10:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:58:\"Attract and retain shoppers with email marketing campaigns\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:84;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}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:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-mailpoet.svg\";s:15:\"learn_more_link\";s:111:\"https://woocommerce.com/products/mailpoet?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:7;}i:9;O:8:\"stdClass\":10:{s:4:\"name\";s:7:\"Klaviyo\";s:11:\"description\";s:56:\"Build personalized email and SMS campaigns using Klaviyo\";s:9:\"image_url\";s:95:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/klaviyo.png\";s:10:\"manage_url\";s:31:\"admin.php?page=klaviyo_settings\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:85;i:1;i:120;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:7:\"klaviyo\";s:5:\"label\";s:7:\"Klaviyo\";s:15:\"learn_more_link\";s:126:\"https://woocommerce.com/products/klaviyo-for-woocommerce?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:7;}i:10;O:8:\"stdClass\":11:{s:4:\"name\";s:22:\"Google for WooCommerce\";s:11:\"description\";s:57:\"Create ads for your products straight from your dashboard\";s:9:\"image_url\";s:113:\"https://woocommerce.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={489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2Fgoogle{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}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:39:\"Drive sales with Google for WooCommerce\";s:15:\"learn_more_link\";s:126:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:6;}i:11;O:8:\"stdClass\":9:{s:4:\"name\";s:15:\"WooCommerce Tax\";s:11:\"description\";s:62:\"Automatically calculate how much sales tax should be collected\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:11:{i:0;s:2:\"US\";i:1;s:2:\"FR\";i:2;s:2:\"GB\";i:3;s:2:\"DE\";i:4;s:2:\"CA\";i:5;s:2:\"AU\";i:6;s:2:\"GR\";i:7;s:2:\"BE\";i:8;s:2:\"PT\";i:9;s:2:\"DK\";i:10;s:2:\"SE\";}s:9:\"operation\";s:2:\"in\";}}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:120:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo-rebrand-2.svg\";s:15:\"learn_more_link\";s:106:\"https://woocommerce.com/products/tax?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:4;}i:12;O:8:\"stdClass\":10:{s:4:\"name\";s:22:\"TikTok for WooCommerce\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-tiktok.svg\";s:11:\"description\";s:59:\"Sync your store with TikTok to create engaging ad campaigns\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CZ\";i:6;s:2:\"DK\";i:7;s:2:\"FI\";i:8;s:2:\"FR\";i:9;s:2:\"DE\";i:10;s:2:\"GR\";i:11;s:2:\"HU\";i:12;s:2:\"IE\";i:13;s:2:\"IT\";i:14;s:2:\"NL\";i:15;s:2:\"PL\";i:16;s:2:\"PT\";i:17;s:2:\"RO\";i:18;s:2:\"ES\";i:19;s:2:\"SE\";i:20;s:2:\"GB\";i:21;s:2:\"CH\";i:22;s:2:\"NO\";i:23;s:2:\"AU\";i:24;s:2:\"NZ\";i:25;s:2:\"SG\";i:26;s:2:\"MY\";i:27;s:2:\"PH\";i:28;s:2:\"ID\";i:29;s:2:\"VN\";i:30;s:2:\"TH\";i:31;s:2:\"KR\";i:32;s:2:\"IL\";i:33;s:2:\"AE\";i:34;s:2:\"RU\";i:35;s:2:\"UA\";i:36;s:2:\"TR\";i:37;s:2:\"SA\";i:38;s:2:\"BR\";i:39;s:2:\"JP\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:60;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}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:125:\"https://woocommerce.com/products/tiktok-for-woocommerce?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:1;}i:13;O:8:\"stdClass\":10:{s:4:\"name\";s:12:\"Snapchat Ads\";s:11:\"description\";s:60:\"Reach an untapped audience on Snapchat and drive more sales.\";s:9:\"image_url\";s:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-snapchat.svg\";s:10:\"manage_url\";s:48:\"admin.php?page=wc-admin&path={489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2Fsnapchat{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2Fstart\";s:14:\"is_built_by_wc\";b:1;s:10:\"is_visible\";b:1;s:3:\"key\";s:24:\"snapchat-for-woocommerce\";s:5:\"label\";s:36:\"Find New Customers with Snapchat Ads\";s:15:\"learn_more_link\";s:112:\"https://woocommerce.com/products/snapchat/?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:1;}i:14;O:8:\"stdClass\":10:{s:4:\"name\";s:10:\"Reddit Ads\";s:11:\"description\";s:51:\"Seamlessly sync your products and start Reddit Ads.\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-reddit.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path={489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2Freddit{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2Fsetup\";s:14:\"is_built_by_wc\";b:1;s:10:\"is_visible\";b:1;s:3:\"key\";s:22:\"reddit-for-woocommerce\";s:5:\"label\";s:37:\"Reach ready-to-buy shoppers on Reddit\";s:15:\"learn_more_link\";s:110:\"https://woocommerce.com/products/reddit/?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:1;}i:15;O:8:\"stdClass\":10:{s:4:\"name\";s:29:\"Print on Demand with Printful\";s:9:\"image_url\";s:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-printful.png\";s:11:\"description\";s:65:\"Design and easily sell custom print products online with Printful\";s:10:\"manage_url\";s:0:\"\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:9:{i:0;s:2:\"AU\";i:1;s:2:\"GB\";i:2;s:2:\"CA\";i:3;s:2:\"ES\";i:4;s:2:\"DE\";i:5;s:2:\"FR\";i:6;s:2:\"NL\";i:7;s:2:\"BE\";i:8;s:2:\"LU\";}s:9:\"operation\";s:2:\"in\";}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:10:\"industry.0\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";s:24:\"clothing_and_accessories\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:33:\"printful-shipping-for-woocommerce\";s:5:\"label\";s:29:\"Print on Demand with Printful\";s:15:\"learn_more_link\";s:111:\"https://woocommerce.com/products/printful?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:9;}}}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609825','_transient_timeout_wcpay_welcome_page_incentive','1781327417','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609826','_transient_wcpay_welcome_page_incentive','a:3:{s:9:\"incentive\";a:0:{}s:12:\"context_hash\";s:32:\"004f529f6341f18de7219c404dc31db0\";s:9:\"timestamp\";i:1781241017;}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609827','_transient_timeout_action_scheduler_last_pastdue_actions_check','1781262617','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609828','_transient_action_scheduler_last_pastdue_actions_check','1781241017','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609829','_transient_timeout_elementor_remote_info_api_data_3.23.4','1781284218','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609830','_transient_elementor_remote_info_api_data_3.23.4','a:4:{s:9:\"timestamp\";s:10:\"1781240255\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:82:{i:0;a:4:{s:4:\"name\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:3;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-2\";s:5:\"title\";s:7:\"Classic\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-3\";s:5:\"title\";s:8:\"Showcase\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:6;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-4\";s:5:\"title\";s:5:\"Links\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:8;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:9;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-5\";s:5:\"title\";s:8:\"Services\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:10;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:11;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-6\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:12;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-7\";s:5:\"title\";s:13:\"Business Card\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:14;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:10:\"off-canvas\";s:5:\"title\";s:10:\"Off-Canvas\";s:4:\"icon\";s:16:\"eicon-off-canvas\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:25;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:26;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:27;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:33;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:34;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:35;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:36;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:37;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:38;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:39;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:40;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:41;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:43;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:51;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:52;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:53;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:54;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:55;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:57;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:75;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:76;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:77;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:78;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:79;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:80;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:81;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609831','_transient_timeout_wc_tracks_blog_details','1781327418','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609832','_transient_wc_tracks_blog_details','a:6:{s:3:\"url\";s:34:\"https://hypergrowth.fishgrowth.xyz\";s:9:\"blog_lang\";s:5:\"en_US\";s:7:\"blog_id\";b:0;s:8:\"store_id\";s:36:\"e8b52279-0fee-4b48-a18d-fabfa5c59066\";s:14:\"products_count\";s:1:\"5\";s:10:\"wc_version\";s:5:\"9.2.3\";}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609833','_site_transient_timeout_theme_roots','1781242824','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609834','_site_transient_theme_roots','a:3:{s:21:\"hello-elementor-child\";s:7:\"/themes\";s:15:\"hello-elementor\";s:7:\"/themes\";s:7:\"kadence\";s:7:\"/themes\";}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609835','_transient_timeout_cartflows_rollback_versions_2.1.16','1781845825','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609836','_transient_cartflows_rollback_versions_2.1.16','a:10:{i:0;s:6:\"2.1.15\";i:1;s:6:\"2.1.14\";i:2;s:6:\"2.1.13\";i:3;s:6:\"2.1.12\";i:4;s:6:\"2.1.11\";i:5;s:6:\"2.1.10\";i:6;s:5:\"2.1.9\";i:7;s:5:\"2.1.8\";i:8;s:5:\"2.1.7\";i:9;s:5:\"2.1.6\";}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609839','_transient_timeout_cartflows_data_2159_ba65b7aaf701ade570e4ae3fe534ef73','1781242838','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609840','_transient_cartflows_data_2159_ba65b7aaf701ade570e4ae3fe534ef73','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609841','_transient_timeout_wcf_user_t_3f842ac41df8d1c492921fc0c08194_checkout_2161','1781242843','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609842','_transient_wcf_user_t_3f842ac41df8d1c492921fc0c08194_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609843','_transient_timeout_cartflows_data_2159_f9c923e125fc70020bd18550cf341481','1781242844','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609844','_transient_cartflows_data_2159_f9c923e125fc70020bd18550cf341481','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609845','_transient_timeout_wcf_user_t_cf21751fd247b230aa07793ca67207_checkout_2161','1781242857','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609846','_transient_wcf_user_t_cf21751fd247b230aa07793ca67207_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609847','_transient_timeout_cartflows_data_2159_beb2cc86752bb331497dc4ad65c57a51','1781242860','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609848','_transient_cartflows_data_2159_beb2cc86752bb331497dc4ad65c57a51','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609849','_transient_timeout_wcf_user_t_ac08297eec52b64838b02c7c313e25_checkout_2161','1781242865','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609850','_transient_wcf_user_t_ac08297eec52b64838b02c7c313e25_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609851','_transient_timeout_cartflows_data_2159_4f69468ea4a002277355d7a7e22f8c15','1781242873','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609852','_transient_cartflows_data_2159_4f69468ea4a002277355d7a7e22f8c15','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609853','_transient_timeout_wcf_user_t_aeda386e900af0c9c087d12069c0df_checkout_2161','1781242895','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609854','_transient_wcf_user_t_aeda386e900af0c9c087d12069c0df_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609855','_transient_timeout_cartflows_data_2159_ea8da263f6fa95eaa2c648fe3db2f2fe','1781242895','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609856','_transient_cartflows_data_2159_ea8da263f6fa95eaa2c648fe3db2f2fe','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609857','_transient_timeout_wcf_user_t_a5f57939353322d8f16489bdbc1a13_checkout_2161','1781242895','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609858','_transient_wcf_user_t_a5f57939353322d8f16489bdbc1a13_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609859','_transient_timeout_cartflows_data_2159_0423a5e82d078ad25a225f20b537d8f3','1781242895','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609860','_transient_cartflows_data_2159_0423a5e82d078ad25a225f20b537d8f3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609861','_transient_timeout_wcf_user_t_9772496a5ad41abf1d2c5f326925cf_checkout_2161','1781242895','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609862','_transient_timeout_wcf_user_t_ded60ecec6a15f04220d0c330edd3a_checkout_2161','1781242895','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609863','_transient_wcf_user_t_9772496a5ad41abf1d2c5f326925cf_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609864','_transient_wcf_user_t_ded60ecec6a15f04220d0c330edd3a_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609865','_transient_timeout_cartflows_data_2159_d38ef620b0398b8024d9e8aa39d20fdb','1781242895','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609866','_transient_cartflows_data_2159_d38ef620b0398b8024d9e8aa39d20fdb','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609867','_transient_timeout_cartflows_data_2159_6ccf3117f6dd629560c556a320cad6ba','1781242895','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609868','_transient_cartflows_data_2159_6ccf3117f6dd629560c556a320cad6ba','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609869','_transient_timeout_wcf_user_t_06dbee512a2b925496f510f795f602_checkout_2161','1781242895','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609870','_transient_wcf_user_t_06dbee512a2b925496f510f795f602_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609871','_transient_timeout_cartflows_data_2159_906e984f4b478007beb619e5077e3c43','1781242895','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609872','_transient_cartflows_data_2159_906e984f4b478007beb619e5077e3c43','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609873','_transient_timeout_wcf_user_t_76cf781b398c24e88560ffbe8595a7_checkout_2161','1781242896','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609874','_transient_wcf_user_t_76cf781b398c24e88560ffbe8595a7_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609875','_transient_timeout_cartflows_data_2159_2a01e67e35259fc6e8547f73bb620d32','1781242896','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609876','_transient_cartflows_data_2159_2a01e67e35259fc6e8547f73bb620d32','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609877','_transient_timeout_wcf_user_t_5229556c30dcc6c9b3ba1d1625ca52_checkout_2161','1781242896','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609878','_transient_wcf_user_t_5229556c30dcc6c9b3ba1d1625ca52_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609879','_transient_timeout_cartflows_data_2159_ce2bea7c4a36c64271a3b3cdaba7c3d7','1781242896','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609880','_transient_cartflows_data_2159_ce2bea7c4a36c64271a3b3cdaba7c3d7','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609881','_transient_timeout_wcf_user_t_3c163e9fdd27747e87985a0d50ca05_checkout_2161','1781242896','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609882','_transient_wcf_user_t_3c163e9fdd27747e87985a0d50ca05_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609883','_transient_timeout_cartflows_data_2159_53106cc8cd2862ea9a4f4961cb88e87a','1781242896','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609884','_transient_cartflows_data_2159_53106cc8cd2862ea9a4f4961cb88e87a','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609885','_transient_timeout_wcf_user_t_7800225b6998283e1e0b131ee3f6f6_checkout_2161','1781242896','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609886','_transient_wcf_user_t_7800225b6998283e1e0b131ee3f6f6_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609887','_transient_timeout_cartflows_data_2159_a6e6f72c495292800b701ae07183e087','1781242896','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609888','_transient_cartflows_data_2159_a6e6f72c495292800b701ae07183e087','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609889','_transient_timeout_wcf_user_t_7394a7a2ccd12d48495e3feff93ff3_checkout_2161','1781242896','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609890','_transient_wcf_user_t_7394a7a2ccd12d48495e3feff93ff3_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609891','_transient_timeout_cartflows_data_2159_528d491a3384ba88308067b8c22cd04e','1781242896','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609892','_transient_cartflows_data_2159_528d491a3384ba88308067b8c22cd04e','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609893','_transient_timeout_wcf_user_t_3c6276908e9b3b6616cc06d6e62607_checkout_2161','1781242896','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609894','_transient_wcf_user_t_3c6276908e9b3b6616cc06d6e62607_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609895','_transient_timeout_cartflows_data_2159_b1475361538776449ac05ba6ca99c368','1781242896','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609896','_transient_cartflows_data_2159_b1475361538776449ac05ba6ca99c368','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609897','_transient_timeout_wcf_user_t_31a10d45143ebeb61c4de5f738957d_checkout_2161','1781242896','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609898','_transient_wcf_user_t_31a10d45143ebeb61c4de5f738957d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609899','_transient_timeout_cartflows_data_2159_2719e26f34b6e63ab80a859051cb155a','1781242896','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609900','_transient_cartflows_data_2159_2719e26f34b6e63ab80a859051cb155a','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609901','_transient_timeout_wcf_user_t_dc11d2caecefc6d2ea4bc31189dbf6_checkout_2161','1781242897','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609902','_transient_timeout_wcf_user_t_81d6320d81c5cbca453e730ee8e4a5_checkout_2161','1781242897','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609903','_transient_wcf_user_t_dc11d2caecefc6d2ea4bc31189dbf6_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609904','_transient_wcf_user_t_81d6320d81c5cbca453e730ee8e4a5_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609905','_transient_timeout_cartflows_data_2159_35cc32eac362660791bd51bd0a5df487','1781242897','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609906','_transient_cartflows_data_2159_35cc32eac362660791bd51bd0a5df487','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609907','_transient_timeout_cartflows_data_2159_bcf6b78096bd74b200ced1cbf0861d83','1781242897','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609908','_transient_cartflows_data_2159_bcf6b78096bd74b200ced1cbf0861d83','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609909','_transient_timeout_wcf_user_t_15f77471e848d459e98da102e12d07_checkout_2161','1781242897','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609910','_transient_wcf_user_t_15f77471e848d459e98da102e12d07_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609911','_transient_timeout_cartflows_data_2159_067cc9d8d696e033408ad5fc5d72703f','1781242897','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609912','_transient_cartflows_data_2159_067cc9d8d696e033408ad5fc5d72703f','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609913','_transient_timeout_wcf_user_t_ce7bfac8fe1ceed6698435a5248d2d_checkout_2161','1781242897','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609914','_transient_wcf_user_t_ce7bfac8fe1ceed6698435a5248d2d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609915','_transient_timeout_cartflows_data_2159_257664d4b8ab0f396e5d72215865280b','1781242897','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609916','_transient_cartflows_data_2159_257664d4b8ab0f396e5d72215865280b','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609917','_transient_timeout_wcf_user_t_35beab6bb7dc20a3bf547e0537e10d_checkout_2161','1781242902','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609918','_transient_wcf_user_t_35beab6bb7dc20a3bf547e0537e10d_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609919','_transient_timeout_cartflows_data_2159_981a5c74542e7239f470e8bf361cf3c0','1781242902','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609920','_transient_cartflows_data_2159_981a5c74542e7239f470e8bf361cf3c0','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609921','_transient_timeout_wcf_user_t_a5326a4d9bfccc7d01e1b7f950951c_checkout_2161','1781242903','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609922','_transient_wcf_user_t_a5326a4d9bfccc7d01e1b7f950951c_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609923','_transient_timeout_cartflows_data_2159_6072e65039e39ef417c1b5d3fd1eb0c5','1781242903','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609924','_transient_cartflows_data_2159_6072e65039e39ef417c1b5d3fd1eb0c5','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609925','_transient_timeout_wcf_user_t_40b175c79d5e0434f27043a54c6956_checkout_2161','1781242903','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609926','_transient_wcf_user_t_40b175c79d5e0434f27043a54c6956_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609927','_transient_timeout_cartflows_data_2159_71cbbde475cf04f88175e0b06b8fc4aa','1781242903','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609928','_transient_cartflows_data_2159_71cbbde475cf04f88175e0b06b8fc4aa','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609929','_transient_timeout_wcf_user_t_784696ae66ce7d58bcec351c588384_checkout_2161','1781242903','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609930','_transient_wcf_user_t_784696ae66ce7d58bcec351c588384_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609931','_transient_timeout_cartflows_data_2159_51b46b9302376044212eb0f3b5a48c3e','1781242903','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609932','_transient_cartflows_data_2159_51b46b9302376044212eb0f3b5a48c3e','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609933','_transient_timeout_wcf_user_t_cf7485656d47d05f916a9b2c4500c8_checkout_2161','1781242903','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609934','_transient_wcf_user_t_cf7485656d47d05f916a9b2c4500c8_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609935','_transient_timeout_cartflows_data_2159_bd1819ffd60d15e03fe5de54c378ec08','1781242903','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609936','_transient_cartflows_data_2159_bd1819ffd60d15e03fe5de54c378ec08','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609937','_transient_timeout_wcf_user_t_f6bad1a0d7c70a23bd5d356fe86502_checkout_2161','1781242904','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609938','_transient_wcf_user_t_f6bad1a0d7c70a23bd5d356fe86502_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609939','_transient_timeout_cartflows_data_2159_4154544492c1c5f45e192d59f2dbf487','1781242904','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609940','_transient_cartflows_data_2159_4154544492c1c5f45e192d59f2dbf487','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609941','_transient_timeout_wcf_user_t_04fd1e09fc97466222c4be7f1739d4_checkout_2161','1781242904','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609942','_transient_wcf_user_t_04fd1e09fc97466222c4be7f1739d4_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609943','_transient_timeout_cartflows_data_2159_4a387203bbcd460fd76b7cf85c448528','1781242904','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609944','_transient_cartflows_data_2159_4a387203bbcd460fd76b7cf85c448528','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609945','_transient_timeout_wcf_user_t_557f0458289dbadcad0398518954e7_checkout_2161','1781242904','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609946','_transient_wcf_user_t_557f0458289dbadcad0398518954e7_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609947','_transient_timeout_cartflows_data_2159_82b627f6101d4b790e719b3e788a6c4b','1781242904','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609948','_transient_cartflows_data_2159_82b627f6101d4b790e719b3e788a6c4b','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609949','_transient_timeout_wcf_user_t_8ada51c8929a62f48ca4338cc6e273_checkout_2161','1781242904','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609950','_transient_wcf_user_t_8ada51c8929a62f48ca4338cc6e273_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609951','_transient_timeout_cartflows_data_2159_8134ba842d312e347de1e804cd14e2fc','1781242904','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609952','_transient_cartflows_data_2159_8134ba842d312e347de1e804cd14e2fc','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609953','_transient_timeout_wcf_user_t_eadd056c34545f95ea294d15c19ac2_checkout_2161','1781242904','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609954','_transient_wcf_user_t_eadd056c34545f95ea294d15c19ac2_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609955','_transient_timeout_cartflows_data_2159_c36a47803de4e3635d64d47d323b833e','1781242904','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609956','_transient_cartflows_data_2159_c36a47803de4e3635d64d47d323b833e','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609957','_transient_timeout_wcf_user_t_0ab21c4eb80e69426c8f5b6bd9217c_checkout_2161','1781242907','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609958','_transient_wcf_user_t_0ab21c4eb80e69426c8f5b6bd9217c_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609959','_transient_timeout_cartflows_data_2159_637a78363784ad67ec6663e6e0256fa3','1781242907','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609960','_transient_cartflows_data_2159_637a78363784ad67ec6663e6e0256fa3','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609961','_transient_timeout_wcf_user_t_59445ccd838dbbc7059f7758c6f4f8_checkout_2161','1781242910','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609962','_transient_wcf_user_t_59445ccd838dbbc7059f7758c6f4f8_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609963','_transient_timeout_cartflows_data_2159_afca065d6a36a70275521137433ef612','1781242910','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609964','_transient_cartflows_data_2159_afca065d6a36a70275521137433ef612','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609965','_transient_timeout_wcf_user_t_37e92680ed1e34b1bb9d5ac38e63f4_checkout_2161','1781242913','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609966','_transient_wcf_user_t_37e92680ed1e34b1bb9d5ac38e63f4_checkout_2161','a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:13:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:2123;}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:990;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:990;s:8:\"line_tax\";d:0;}}','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609967','_transient_timeout_cartflows_data_2159_f119c0c31d9ba080b9291a98c83c14cc','1781242913','no');
INSERT INTO `wpst_options` (`option_id`,`option_name`,`option_value`,`autoload`) VALUES ('1609968','_transient_cartflows_data_2159_f119c0c31d9ba080b9291a98c83c14cc','a:2:{s:7:\"flow_id\";s:4:\"2159\";s:5:\"steps\";a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}}','no');

DROP TABLE IF EXISTS `wpst_postmeta`;
CREATE TABLE `wpst_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=8114 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1','3','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2','3','_elementor_template_type','kit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('349','43','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('350','43','_elementor_template_type','kit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('352','50','_wp_attached_file','2026/06/01.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('353','50','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1298;s:6:\"height\";i:1003;s:4:\"file\";s:14:\"2026/06/01.png\";s:8:\"filesize\";i:750136;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92075;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('356','52','_wp_attached_file','2026/06/440470036_459782033107096_6852173422467720754_n.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('357','52','_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:398;s:4:\"file\";s:59:\"2026/06/440470036_459782033107096_6852173422467720754_n.jpg\";s:8:\"filesize\";i:100644;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('358','53','_wp_attached_file','2026/06/double-growth-min-300x300-1.jpeg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('359','53','_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:40:\"2026/06/double-growth-min-300x300-1.jpeg\";s:8:\"filesize\";i:19530;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('360','54','_wp_attached_file','2026/06/water-pluncton-min-300x300-1.jpeg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('361','54','_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:41:\"2026/06/water-pluncton-min-300x300-1.jpeg\";s:8:\"filesize\";i:19445;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('362','55','_wp_attached_file','2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('363','55','_wp_attachment_metadata','a:6:{s:5:\"width\";i:945;s:6:\"height\";i:945;s:4:\"file\";s:60:\"2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\";s:8:\"filesize\";i:176187;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('384','5','_edit_lock','1780628648:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('385','5','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('386','5','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('387','5','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('388','5','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('390','56','wcf-flow-indexing','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('391','56','wcf-testing','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('392','56','wcf-enable-analytics','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('393','56','wcf-flow-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('394','56','wcf-enable-gcp-styling','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('395','56','wcf-gcp-primary-color','#f16334');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('396','56','wcf-gcp-secondary-color','#000000');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('397','56','wcf-gcp-text-color','#4B5563');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('398','56','wcf-gcp-accent-color','#1F2937');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('399','56','wcf-gcp-primary-base-font-family','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('400','56','instant-layout-style','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('401','56','wcf-instant-checkout-header-logo-width','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('402','56','wcf-instant-checkout-header-logo','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('403','56','wcf-instant-checkout-header-logo-height','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('404','56','wcf-instant-checkout-header-color','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('405','57','wcf-flow-id','56');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('406','57','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('407','57','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('408','56','wcf-steps','a:6:{i:0;a:3:{s:2:\"id\";i:57;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:58;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:67;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:70;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:73;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:78;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('409','58','wcf-flow-id','56');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('410','58','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('411','58','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('412','58','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('413','58','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('414','58','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('415','58','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('416','58','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('417','58','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('418','58','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('419','58','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('420','58','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('421','58','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('422','58','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('423','58','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('424','58','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('425','58','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('426','58','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('427','58','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('428','58','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:28:\"আপনার নামঃ\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:37:\"মোবাইল নম্বরঃ\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:20;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:46:\"ডেলিভারি ঠিকানাঃ\";s:11:\"placeholder\";s:0:\"\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:30;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:40;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:50;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:60;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:70;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:80;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:90;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:100;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('429','58','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('430','58','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('431','58','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('432','58','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('433','58','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('434','58','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('435','58','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('436','58','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('437','58','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('438','58','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('439','58','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('440','58','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('441','58','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('442','58','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('443','58','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('444','58','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('445','58','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('446','58','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('447','58','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('448','58','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('449','58','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('450','58','_edit_lock','1773549229:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('451','58','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('452','58','_elementor_data','[{\"id\":\"56af9bdc\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0D7422\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_negative\":\"yes\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"20\",\"bottom\":\"36\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6354fe87\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ca4d84f\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\"},\"width\":{\"unit\":\"px\",\"size\":162,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2817b6e6\",\"settings\":{\"title\":\"<strong style=\\\"background: linear-gradient(90deg, #ff0000, #ff7f00);\\n      color: #ffffff;\\n      font-size: 14px;\\n      font-weight: 900;\\n      padding: 4px;\\n      text-align: center;\\n      border-radius: 12px;\\n      box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);\\n      font-family: \'Arial\', sans-serif;\\n      margin: 20px;\\n      animation: pulse 2s infinite;\\\">\\u099a\\u09b2\\u099b\\u09c7 \\u09b8\\u09b0\\u09cd\\u09ac\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09b8\\u09c7\\u09b0\\u09be \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f<\\/strong> \\n \\n    <span> \\u098f\\u0996\\u09a8 \\u09eb\\u09e6{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f !<\\/span>  <br><br>\\n\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09be\\u0987 \\u09b8\\u09bf\\u09a6\\u09cd\\u09a7\\u09be\\u09a8\\u09cd\\u09a4 \\u2013 \\u0996\\u09b0\\u099a \\u0995\\u09ae\\u09be\\u09ac\\u09c7 \\u09eb\\u09e6{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4!\\n <br><br>\\n\\n\\u26d4 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09b2\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_animation\":\"fadeInDown\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_background_color\":\"#21503B\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"570c0eb4\",\"settings\":{\"title\":\"<br\\/> \\u09e7\\u09e6\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09df \\u0986\\u09aa\\u09a8\\u09bf \\u09ac\\u09be\\u0981\\u099a\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09a4\\u09c7\\u09a8 \\u09e7\\u09eb\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0?\\n\\n<br\\/><br\\/>\\n\\u09a4\\u09be\\u0987 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u09a8\\u09be \\u0995\\u09b0\\u09c7 \\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09c1\\u09a8 \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"35cf3d3b\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"78895acb\",\"settings\":{\"button_type\":\"success\",\"text\":\"\\u09b9\\u09cb\\u09af\\u09bc\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_element_width\":\"auto\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"720c8da1\",\"settings\":{\"button_type\":\"danger\",\"text\":\"  \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"link\":{\"url\":\" tel:01838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"background_color\":\"#F70944\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"8366e1a\",\"settings\":{\"background_background\":\"classic\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color\":\"#FFFFFF\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"237445d4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f71532a\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/PKwk_GzEyao\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"video_type\":\"hosted\",\"hosted_url\":{\"id\":64,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/sorkoar-agro-dicche.mp4\"},\"autoplay\":\"yes\",\"poster\":{\"id\":65,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Screenshot-2024-07-01-134806.webp\"},\"image_overlay\":{\"id\":66,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/placeholder.png\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"d6334dd\",\"settings\":{\"thumbnail_size\":\"medium_large\",\"autoplay_speed\":2000,\"carousel\":[],\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"},{\"id\":\"21652aea\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\"},\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"31c87f7\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0D7422\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d2923e5\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d5d5f54\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"17632185\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"24cf03d5\",\"settings\":{\"content_position\":\"middle\",\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c582a9b\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6355a4f5\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5006653\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"6d18c6a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"P H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4bed90a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0d295c0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7059cbe\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c6a56c8\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"17fafae\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ea0db2\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0acdf06\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#FFFFFF\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"3e9980a3\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"59c5b7af\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ae7a46a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b9db319\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"56f4c721\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#54A41F\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"3a31b225\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ef7714e\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d81fdf9\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Screenshot-2024-07-01-134806.webp\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"513395d9\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33a94c14\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"396e5194\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7995c68\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#54A41F\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"232a7d13\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"196d5788\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7995c68\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#54A41F\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"46d52cd7\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"7557cce3\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0D7422\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"205e1a79\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22ff8f09\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6755c86b\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"656f7e53\",\"settings\":{\"content_position\":\"middle\",\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71d861ed\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e3f3b4\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5006653\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"95b3d64\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4763cdd\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5c62940\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3f89b83\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#FFFFFF\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"4167eca5\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"35637d4e\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.74,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3bec52f0\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FB6107\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2422081d\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09ed\\u09eb \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"title_color\":\"#54A41F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"__globals__\":{\"marker_color\":\"\",\"words_color\":\"\"},\"marker_color\":\"#FB6107\",\"words_color\":\"#FB6107\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"921a419\",\"settings\":{\"title\":\"\\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e9\\u09ed\\u09eb\\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FB0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"bounceIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"32deff59\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FB6107\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2748054\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09eb\\u09e6 \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\" \\u099f\\u09be\\u0995\\u09be\",\"title_color\":\"#54A41F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"__globals__\":{\"marker_color\":\"\",\"words_color\":\"\"},\"marker_color\":\"#FB6107\",\"words_color\":\"#FB6107\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"1d7c7f92\",\"settings\":{\"title\":\"\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e9\\u09ed\\u09eb \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FB0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"bounceIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"a80cf01\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_position\":\"middle\",\"background_color\":\"#0D7455\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"12bf4bc4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ed8c323\",\"settings\":{\"title\":\"\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u0985\\u09a5\\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6641457c\",\"settings\":{\"text\":\"01838 40 40 44\",\"link\":{\"url\":\"tel:01838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"6b619a31\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"checkout\",\"background_background\":\"classic\",\"background_color\":\"#AAFFBB\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29cc3b4a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#1D5F4B\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f1d51c\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\"> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 <\\/span> \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"title_color\":\"#1D5F4B\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"166b94d4\",\"settings\":{\"title\":\"\",\"align\":\"center\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5f4afc4\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#E7FFEB\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e284e0\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#03DE91\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"45d5910\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ded94d3\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F20055\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"1d7d9558\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a7a1d51\",\"settings\":{\"editor\":\"<p>Develop by itgalaxy<\\/p>\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('453','58','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('454','58','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('458','58','_oembed_2eb870b29308e19a161bdccc715b9f53','<iframe title=\"Sorkar Agro Care\" width=\"800\" height=\"600\" src=\"https://www.youtube.com/embed/PKwk_GzEyao?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('459','58','_oembed_time_2eb870b29308e19a161bdccc715b9f53','1731603925');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('460','58','_oembed_cf3702f1f5d1f48594fb0fc30211171c','<iframe title=\"মাছ চাষে আপনার লাভের চাবিকাঠি! 🐟\" width=\"800\" height=\"600\" src=\"https://www.youtube.com/embed/XzHseE4It-0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('461','58','_oembed_time_cf3702f1f5d1f48594fb0fc30211171c','1750557453');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('462','58','_oembed_917518cc87b13b1e8476a71b11e254d0','<iframe title=\"মাছ চাষে আপনার লাভের চাবিকাঠি! 🐟\" width=\"800\" height=\"600\" src=\"https://www.youtube.com/embed/XzHseE4It-0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('463','58','_oembed_time_917518cc87b13b1e8476a71b11e254d0','1750557529');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('467','59','_wp_attached_file','2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('468','59','_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:70:\"2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg\";s:8:\"filesize\";i:5074;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('469','59','_cartflows_image_hash','adf546b22a567a96c2ab0cb3be104267cd00b702');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('470','60','_wp_attached_file','2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-1.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('471','60','_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:70:\"2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-1.jpg\";s:8:\"filesize\";i:83688;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('472','60','_cartflows_image_hash','808ab14f455ee8fe78c2666626b4957e2efa6770');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('473','61','_wp_attached_file','2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-1.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('474','61','_wp_attachment_metadata','a:6:{s:5:\"width\";i:768;s:6:\"height\";i:768;s:4:\"file\";s:70:\"2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-1.jpg\";s:8:\"filesize\";i:121974;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('475','61','_cartflows_image_hash','ccccdc9f0fbeb345402197f58e7413a10ce9402a');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('476','62','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('477','62','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('478','62','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('479','62','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('480','62','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('481','62','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('482','62','_elementor_data','[{\"id\":\"56af9bdc\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0D7422\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_negative\":\"yes\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"20\",\"bottom\":\"36\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6354fe87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6ca4d84f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\"},\"width\":{\"unit\":\"px\",\"size\":162,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2817b6e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"<strong style=\\\"background: linear-gradient(90deg, #ff0000, #ff7f00);\\n      color: #ffffff;\\n      font-size: 14px;\\n      font-weight: 900;\\n      padding: 4px;\\n      text-align: center;\\n      border-radius: 12px;\\n      box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);\\n      font-family: \'Arial\', sans-serif;\\n      margin: 20px;\\n      animation: pulse 2s infinite;\\\">\\u099a\\u09b2\\u099b\\u09c7 \\u09b8\\u09b0\\u09cd\\u09ac\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09b8\\u09c7\\u09b0\\u09be \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f<\\/strong> \\n \\n    <span> \\u098f\\u0996\\u09a8 \\u09eb\\u09e6{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f !<\\/span>  <br><br>\\n\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09be\\u0987 \\u09b8\\u09bf\\u09a6\\u09cd\\u09a7\\u09be\\u09a8\\u09cd\\u09a4 \\u2013 \\u0996\\u09b0\\u099a \\u0995\\u09ae\\u09be\\u09ac\\u09c7 \\u09eb\\u09e6{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4!\\n <br><br>\\n\\n\\u26d4 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09b2\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_animation\":\"fadeInDown\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_background_color\":\"#21503B\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570c0eb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"<br\\/> \\u09e7\\u09e6\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09df \\u0986\\u09aa\\u09a8\\u09bf \\u09ac\\u09be\\u0981\\u099a\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09a4\\u09c7\\u09a8 \\u09e7\\u09eb\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0?\\n\\n<br\\/><br\\/>\\n\\u09a4\\u09be\\u0987 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u09a8\\u09be \\u0995\\u09b0\\u09c7 \\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09c1\\u09a8 \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35cf3d3b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"78895acb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"\\u09b9\\u09cb\\u09af\\u09bc\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"720c8da1\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"danger\",\"text\":\"  \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"link\":{\"url\":\" tel:01838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"background_color\":\"#F70944\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8366e1a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"237445d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f71532a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/PKwk_GzEyao\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"video_type\":\"hosted\",\"hosted_url\":{\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/sorkoar-agro-dicche.mp4\",\"id\":2838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"poster\":{\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp\",\"id\":22,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"d6334dd\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"medium_large\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"21652aea\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\"},\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31c87f7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0D7422\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2d2923e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5d5d5f54\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17632185\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"24cf03d5\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"6c582a9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6355a4f5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5006653\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"6d18c6a\"},{\"text\":\"P H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4bed90a\"},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0d295c0\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7059cbe\"},{\"text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c6a56c8\"},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"17fafae\"},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ea0db2\"},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0acdf06\"}],\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#FFFFFF\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3e9980a3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"59c5b7af\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ae7a46a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b9db319\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56f4c721\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#54A41F\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3a31b225\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"7ef7714e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d81fdf9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":22,\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"513395d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"33a94c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"396e5194\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7995c68\"}],\"icon_color\":\"#54A41F\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"232a7d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"196d5788\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7995c68\"}],\"icon_color\":\"#54A41F\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46d52cd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7557cce3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0D7422\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"205e1a79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"22ff8f09\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6755c86b\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"656f7e53\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"71d861ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7e3f3b4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5006653\"},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"95b3d64\"},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4763cdd\"},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5c62940\"},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3f89b83\"}],\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#FFFFFF\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4167eca5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35637d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.74,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"structure\":\"20\"},\"elements\":[{\"id\":\"3bec52f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FB6107\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2422081d\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09ed\\u09eb \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"title_color\":\"#54A41F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"__globals__\":{\"marker_color\":\"\",\"words_color\":\"\"},\"marker_color\":\"#FB6107\",\"words_color\":\"#FB6107\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"921a419\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e9\\u09ed\\u09eb\\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FB0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"32deff59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FB6107\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2748054\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09eb\\u09e6 \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\" \\u099f\\u09be\\u0995\\u09be\",\"title_color\":\"#54A41F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"__globals__\":{\"marker_color\":\"\",\"words_color\":\"\"},\"marker_color\":\"#FB6107\",\"words_color\":\"#FB6107\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"1d7c7f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e9\\u09ed\\u09eb \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FB0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a80cf01\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_position\":\"middle\",\"background_color\":\"#0D7455\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"12bf4bc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed8c323\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u0985\\u09a5\\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6641457c\",\"elType\":\"widget\",\"settings\":{\"text\":\"01838 40 40 44\",\"link\":{\"url\":\"tel:01838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b619a31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"checkout\",\"background_background\":\"classic\",\"background_color\":\"#AAFFBB\"},\"elements\":[{\"id\":\"29cc3b4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#1D5F4B\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"64f1d51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\"> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 <\\/span> \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"title_color\":\"#1D5F4B\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"166b94d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"align\":\"center\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f4afc4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#E7FFEB\"},\"elements\":[{\"id\":\"4e284e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#03DE91\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"45d5910\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4ded94d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F20055\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1d7d9558\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4a7a1d51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Develop by itgalaxy<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('483','62','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('484','62','_elementor_controls_usage','a:13:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:13;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:5:\"align\";i:11;s:21:\"typography_typography\";i:13;s:22:\"typography_font_family\";i:11;s:22:\"typography_font_weight\";i:12;s:20:\"typography_font_size\";i:11;s:23:\"text_stroke_text_stroke\";i:6;s:11:\"title_color\";i:13;s:22:\"typography_line_height\";i:5;s:28:\"text_stroke_text_stroke_type\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:9;}s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:7;s:7:\"_margin\";i:2;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:7;s:17:\"_background_color\";i:2;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:7;s:4:\"link\";i:7;s:4:\"size\";i:5;s:10:\"icon_align\";i:4;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:5:\"align\";i:7;s:21:\"typography_typography\";i:6;s:12:\"align_mobile\";i:1;s:16:\"background_color\";i:6;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:15:\"hover_animation\";i:5;s:11:\"hover_color\";i:5;s:29:\"button_background_hover_color\";i:5;s:13:\"border_border\";i:5;s:12:\"border_width\";i:5;s:12:\"border_color\";i:5;s:13:\"border_radius\";i:1;s:17:\"button_text_color\";i:4;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:7;}s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:14:\"_element_width\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:13:\"border_radius\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:6;s:36:\"background_motion_fx_motion_fx_mouse\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;}s:26:\"section_background_overlay\";a:3:{s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:2:{s:20:\"shape_divider_bottom\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:7;s:11:\"_element_id\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:4;s:3:\"gap\";i:11;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:16:\"content_position\";i:7;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:5:{s:11:\"youtube_url\";i:1;s:10:\"video_type\";i:1;s:10:\"hosted_url\";i:1;s:8:\"autoplay\";i:1;s:6:\"poster\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:22:\"section_image_carousel\";a:1:{s:14:\"thumbnail_size\";i:1;}s:26:\"section_additional_options\";a:1:{s:14:\"autoplay_speed\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"style\";i:3;s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:3:{s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:4;s:9:\"icon_size\";i:4;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:4;s:27:\"icon_typography_font_family\";i:4;s:25:\"icon_typography_font_size\";i:4;s:27:\"icon_typography_font_weight\";i:4;s:10:\"text_color\";i:4;}s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:4;s:7:\"divider\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:2;s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:10:\"after_text\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:28:\"title_typography_font_weight\";i:2;s:27:\"words_typography_typography\";i:2;s:28:\"words_typography_font_family\";i:2;s:28:\"words_typography_font_weight\";i:2;s:11:\"words_color\";i:2;s:26:\"title_typography_font_size\";i:2;}s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:2;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:13:\"content_width\";i:1;s:14:\"flex_direction\";i:2;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('487','63','_wp_attached_file','2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('488','63','_wp_attachment_metadata','a:6:{s:5:\"width\";i:945;s:6:\"height\";i:945;s:4:\"file\";s:62:\"2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\";s:8:\"filesize\";i:176187;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('489','63','_elementor_source_image_hash','4862fc62504216f733ee5d5141afd0af5bfb5c9e');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('490','64','_wp_attached_file','2026/06/sorkoar-agro-dicche.mp4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('491','64','_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:37356184;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:42;s:16:\"length_formatted\";s:4:\"0:42\";s:5:\"width\";i:1440;s:6:\"height\";i:1440;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:9:{s:10:\"dataformat\";s:3:\"mp4\";s:7:\"bitrate\";i:196415;s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";s:17:\"compression_ratio\";d:0.1391829648526077;}s:17:\"created_timestamp\";i:1750515632;}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('492','64','_elementor_source_image_hash','9c37dd1d0bb4c9a79d7481665327c7a09c2ae859');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('493','65','_wp_attached_file','2026/06/Screenshot-2024-07-01-134806.webp');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('494','65','_wp_attachment_metadata','a:6:{s:5:\"width\";i:912;s:6:\"height\";i:516;s:4:\"file\";s:41:\"2026/06/Screenshot-2024-07-01-134806.webp\";s:8:\"filesize\";i:85454;s:5:\"sizes\";a:2:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:41:\"Screenshot-2024-07-01-134806-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:30152;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:41:\"Screenshot-2024-07-01-134806-100x100.webp\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5394;}}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:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('495','65','_elementor_source_image_hash','a2f3750fe0bee1d201f6deb00484876873ff8d0b');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('496','66','_wp_attached_file','2026/06/placeholder.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('497','66','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2026/06/placeholder.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('498','66','_elementor_source_image_hash','253b51b275cad57b94b6c80c51ea667d10463497');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('499','67','wcf-flow-id','56');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('500','67','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('501','67','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('502','67','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('503','67','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('504','67','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('505','67','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('506','67','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('507','67','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('508','67','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('509','67','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('510','67','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('511','67','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('512','67','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('513','67','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('514','67','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('515','67','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('516','67','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('517','67','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('518','67','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:28:\"আপনার নামঃ\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:37:\"মোবাইল নম্বরঃ\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:20;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:46:\"ডেলিভারি ঠিকানাঃ\";s:11:\"placeholder\";s:0:\"\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:30;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:40;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:50;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:60;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:70;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:80;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:90;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:100;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('519','67','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('520','67','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('521','67','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('522','67','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('523','67','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('524','67','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('525','67','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('526','67','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('527','67','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('528','67','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('529','67','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('530','67','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('531','67','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('532','67','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('533','67','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('534','67','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('535','67','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('536','67','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('537','67','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('538','67','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('539','67','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('540','67','_edit_lock','1750306740:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('541','67','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('542','67','_elementor_data','[{\"id\":\"1965c1d2\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#9BFC8F\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"shape_divider_bottom\":\"zigzag\",\"shape_divider_bottom_negative\":\"yes\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"20\",\"bottom\":\"36\",\"left\":\"20\",\"isLinked\":false},\"shape_divider_bottom_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":184,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c95a42e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6be0e455\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\"},\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"63248444\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_animation\":\"fadeInDown\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#085400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"11f85201\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7 \\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 fishgrowth\\u0964 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964 \\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964\\n\\n\",\"align\":\"center\",\"title_color\":\"#22592C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"58b727d1\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"far fa-hand-point-down\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#F3DE2C\",\"hover_animation\":\"push\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"64e08cfe\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#C9FFA9\",\"shape_divider_top\":\"zigzag\",\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":139,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":101,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b71f38d\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":97.045},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6972ce1f\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":712,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d02b5f9\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=mjr8CjmMFL0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"loop\":\"yes\",\"css_filters_css_filter\":\"custom\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":11,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.76)\"},\"image_overlay\":{\"id\":69,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/placeholder-1-2.png\"},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_border_color\":\"#2F9226\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"a54a337\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008021\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#00360F\",\"button_background_hover_color\":\"#F5F2F1\",\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"24045da2\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#BEFFC3\",\"background_color_b\":\"#D5F4AE\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b269c13\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"240f69d\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n\",\"align\":\"center\",\"title_color\":\"#135E2C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"ee44033\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":95.425},\"min_height\":{\"unit\":\"px\",\"size\":339,\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78dc954e\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"046bfd6\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"P H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"1eada04\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"6392abe\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"ec2a39c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"f6fc568\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"4fdeb75\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"01216bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"2a08443\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"7cd6d51\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"ca4fa22\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_color\":\"#1E5C24\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"3ee16b0a\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#7AE282\",\"background_color_b\":\"#DAFFA8\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"55726d7c\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#0A5115\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"771cd63b\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c7f5bb4\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ee1986e\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":95.425},\"min_height\":{\"unit\":\"px\",\"size\":339,\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ed5d8fb\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1A6F30\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"40e60c24\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"67a32d69\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#106C3F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"10efc91f\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"5de5559a\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008013\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#003D06\",\"button_background_hover_color\":\"#FFFFFF\",\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"65b3891b\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":521,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFD1D1\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64fcdb68\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\"},\"align\":\"center\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":9,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.77)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"422c73c3\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"overflow\":\"hidden\",\"background_color\":\"#C9FFA9\",\"width_mobile\":{\"unit\":\"px\",\"size\":307},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b16432c\",\"settings\":{\"content_width\":\"full\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4adda39c\",\"settings\":{\"content_width\":\"full\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#008024\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"566b5d51\",\"settings\":{\"title\":\"\\ud83d\\udca5\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\ud83d\\udca5\",\"header_size\":\"span\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"align_mobile\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"531950b5\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4dd017e9\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"10306a7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"9fd5518\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"d66b4f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"6d5bd08\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"c986e5e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"3acd941\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"text_color\":\"#166D08\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"1b994605\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"df2d8b0\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008021\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#00500C\",\"button_background_hover_color\":\"#FFFFFF\",\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"38a84c86\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#045304\",\"shape_divider_top_color\":\"#56FF07\",\"shape_divider_top_flip\":\"yes\",\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"px\",\"size\":1528,\"sizes\":[]},\"css_classes\":\"order\",\"margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_id\":\"checkout\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2205f14d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#C9FFA9\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#045304\",\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3485003d\",\"settings\":{\"title\":\"<span style=\\\"color:#00FF48\\\"> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  <\\/span>\\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#045304\",\"title_color\":\"#FFFFFF\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1626b5c0\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#0E371C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"5f4afc4\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e284e0\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#03DE91\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"26aaf0b8\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72b53444\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F20055\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"49772d91\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"flex_justify_content_mobile\":\"center\",\"flex_align_items_mobile\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_flex_align_self_mobile\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#B3FD99\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#777777\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49368123\",\"settings\":{\"title\":\"\\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 - 01838 40 40 44\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('543','67','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('544','67','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('545','67','_oembed_d1ba36e57cf99aabd5db8f13b2e7604c','<iframe title=\"৪০{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} ব্যয় কমিয়ে গড়ে তুলুন লাভজনক ব্যবসা মাছ চাষীদের জন্য সর্বোচ্চ কার্যকরী\" width=\"800\" height=\"600\" src=\"https://www.youtube.com/embed/mjr8CjmMFL0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('546','67','_oembed_time_d1ba36e57cf99aabd5db8f13b2e7604c','1725890253');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('547','67','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('548','67','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('549','67','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('551','68','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('552','68','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('553','68','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('554','68','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('555','68','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('556','68','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('557','68','_elementor_data','[{\"id\":\"1965c1d2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#9BFC8F\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"shape_divider_bottom\":\"zigzag\",\"shape_divider_bottom_negative\":\"yes\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"20\",\"bottom\":\"36\",\"left\":\"20\",\"isLinked\":false},\"shape_divider_bottom_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":184,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[{\"id\":\"4c95a42e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6be0e455\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\"},\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63248444\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_animation\":\"fadeInDown\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#085400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11f85201\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7 \\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 fishgrowth\\u0964 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964 \\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964\\n\\n\",\"align\":\"center\",\"title_color\":\"#22592C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b727d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"far fa-hand-point-down\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#F3DE2C\",\"hover_animation\":\"push\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64e08cfe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#C9FFA9\",\"shape_divider_top\":\"zigzag\",\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":139,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":101,\"sizes\":[]}},\"elements\":[{\"id\":\"2b71f38d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":97.045},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"6972ce1f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":712,\"sizes\":[]}},\"elements\":[{\"id\":\"7d02b5f9\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=mjr8CjmMFL0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"loop\":\"yes\",\"css_filters_css_filter\":\"custom\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":11,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.76)\"},\"image_overlay\":{\"id\":26,\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/placeholder-1-2.png\"},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_border_color\":\"#2F9226\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"a54a337\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008021\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#00360F\",\"button_background_hover_color\":\"#F5F2F1\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"24045da2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#BEFFC3\",\"background_color_b\":\"#D5F4AE\"},\"elements\":[{\"id\":\"1b269c13\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"240f69d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n\",\"align\":\"center\",\"title_color\":\"#135E2C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ee44033\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":95.425},\"min_height\":{\"unit\":\"px\",\"size\":339,\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"78dc954e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"046bfd6\"},{\"text\":\"P H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"1eada04\"},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"6392abe\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"ec2a39c\"},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"f6fc568\"},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"4fdeb75\"},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"01216bf\"},{\"text\":\"* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"2a08443\"},{\"text\":\"* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"7cd6d51\"},{\"text\":\"\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"ca4fa22\"}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_color\":\"#1E5C24\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ee16b0a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#7AE282\",\"background_color_b\":\"#DAFFA8\"},\"elements\":[{\"id\":\"55726d7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#0A5115\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"771cd63b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"4c7f5bb4\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"1ee1986e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":95.425},\"min_height\":{\"unit\":\"px\",\"size\":339,\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7ed5d8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1A6F30\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40e60c24\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"67a32d69\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#106C3F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10efc91f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5de5559a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008013\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#003D06\",\"button_background_hover_color\":\"#FFFFFF\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"65b3891b\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":521,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFD1D1\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"64fcdb68\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\"},\"align\":\"center\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":9,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.77)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"422c73c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"overflow\":\"hidden\",\"background_color\":\"#C9FFA9\",\"width_mobile\":{\"unit\":\"px\",\"size\":307},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"b16432c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"4adda39c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#008024\"},\"elements\":[{\"id\":\"566b5d51\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ud83d\\udca5\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\ud83d\\udca5\",\"header_size\":\"span\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"align_mobile\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"531950b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"4dd017e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"}},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"10306a7\"},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"9fd5518\"},{\"text\":\"4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"d66b4f0\"},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"6d5bd08\"},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"c986e5e\"},{\"text\":\"7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"3acd941\"}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"text_color\":\"#166D08\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1b994605\",\"elType\":\"container\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"df2d8b0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008021\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#00500C\",\"button_background_hover_color\":\"#FFFFFF\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38a84c86\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#045304\",\"shape_divider_top_color\":\"#56FF07\",\"shape_divider_top_flip\":\"yes\",\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"px\",\"size\":1528,\"sizes\":[]},\"css_classes\":\"order\",\"margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_id\":\"checkout\"},\"elements\":[{\"id\":\"2205f14d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#C9FFA9\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#045304\",\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"3485003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color:#00FF48\\\"> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  <\\/span>\\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#045304\",\"title_color\":\"#FFFFFF\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1626b5c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#0E371C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f4afc4\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"4e284e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#03DE91\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"26aaf0b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"72b53444\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F20055\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"49772d91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"flex_justify_content_mobile\":\"center\",\"flex_align_items_mobile\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_flex_align_self_mobile\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#B3FD99\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#777777\"},\"elements\":[{\"id\":\"49368123\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 - 01838 40 40 44\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('558','68','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('559','68','_elementor_controls_usage','a:8:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:6:{s:14:\"_border_radius\";i:1;s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:11;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:5:\"align\";i:8;s:21:\"typography_typography\";i:10;s:22:\"typography_font_family\";i:9;s:22:\"typography_font_weight\";i:9;s:20:\"typography_font_size\";i:9;s:23:\"text_stroke_text_stroke\";i:1;s:11:\"title_color\";i:11;s:22:\"typography_line_height\";i:5;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:2;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:4;s:4:\"link\";i:4;s:4:\"size\";i:4;s:13:\"selected_icon\";i:4;s:10:\"icon_align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:5:\"align\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:16:\"background_color\";i:4;s:11:\"hover_color\";i:4;s:29:\"button_background_hover_color\";i:4;s:15:\"hover_animation\";i:4;s:13:\"border_border\";i:4;s:12:\"border_width\";i:4;s:12:\"border_color\";i:4;s:13:\"border_radius\";i:1;s:21:\"typography_font_style\";i:3;s:17:\"button_text_color\";i:3;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:36:\"background_motion_fx_motion_fx_mouse\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:21:\"section_shape_divider\";a:4:{s:20:\"shape_divider_bottom\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:4:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_video\";a:4:{s:11:\"youtube_url\";i:1;s:8:\"autoplay\";i:1;s:14:\"play_on_mobile\";i:1;s:4:\"loop\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_video_style\";a:1:{s:22:\"css_filters_css_filter\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:6:{s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:22;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:24:\"section_layout_container\";a:7:{s:11:\"boxed_width\";i:4;s:14:\"flex_direction\";i:5;s:13:\"content_width\";i:10;s:5:\"width\";i:3;s:10:\"min_height\";i:2;s:20:\"flex_justify_content\";i:1;s:16:\"flex_align_items\";i:1;}s:33:\"section_layout_additional_options\";a:1:{s:8:\"overflow\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:5:{s:10:\"_flex_size\";i:4;s:6:\"margin\";i:2;s:11:\"css_classes\";i:1;s:11:\"_element_id\";i:1;s:7:\"padding\";i:1;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:8;s:18:\"background_color_b\";i:2;}s:26:\"section_background_overlay\";a:4:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;s:26:\"background_overlay_color_b\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_radius\";i:4;s:12:\"border_width\";i:3;s:13:\"border_border\";i:2;s:12:\"border_color\";i:2;}s:21:\"section_shape_divider\";a:5:{s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:23:\"shape_divider_top_color\";i:1;s:22:\"shape_divider_top_flip\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:2:{s:18:\"section_text_style\";a:7:{s:26:\"icon_typography_typography\";i:4;s:25:\"icon_typography_font_size\";i:4;s:27:\"icon_typography_font_weight\";i:4;s:27:\"icon_typography_font_family\";i:4;s:27:\"icon_typography_line_height\";i:2;s:28:\"text_shadow_text_shadow_type\";i:1;s:10:\"text_color\";i:2;}s:18:\"section_icon_style\";a:4:{s:10:\"icon_color\";i:4;s:9:\"icon_size\";i:4;s:24:\"icon_self_vertical_align\";i:4;s:20:\"icon_vertical_offset\";i:4;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('560','69','_wp_attached_file','2026/06/placeholder-1-2.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('561','69','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2026/06/placeholder-1-2.png\";s:8:\"filesize\";i:5151;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('562','69','_elementor_source_image_hash','9a775357904cf424ea87ac7b105f44710319247a');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('563','70','wcf-flow-id','56');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('564','70','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('565','70','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('566','70','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('567','70','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('568','70','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('569','70','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('570','70','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('571','70','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('572','70','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('573','70','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('574','70','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('575','70','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('576','70','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('577','70','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('578','70','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('579','70','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('580','70','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('581','70','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('582','70','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:28:\"আপনার নামঃ\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:37:\"মোবাইল নম্বরঃ\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:20;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:46:\"ডেলিভারি ঠিকানাঃ\";s:11:\"placeholder\";s:0:\"\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:30;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:40;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:50;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:60;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:70;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:80;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:90;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:100;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('583','70','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('584','70','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('585','70','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('586','70','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('587','70','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('588','70','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('589','70','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('590','70','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('591','70','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('592','70','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('593','70','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('594','70','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('595','70','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('596','70','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('597','70','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('598','70','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('599','70','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('600','70','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('601','70','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('602','70','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('603','70','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('604','70','_edit_lock','1750306588:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('605','70','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('606','70','_elementor_data','[{\"id\":\"731f89b4\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"280939d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f2dd970\",\"settings\":{\"title\":\"\\u09b8\\u09c0\\u09ae\\u09bf\\u09a4 \\u09b8\\u09ae\\u09df\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09ab\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u099c\\n\",\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#00921E\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"37fb909b\",\"settings\":{\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"digits_typography_typography\":\"custom\",\"digits_typography_font_family\":\"Roboto\",\"digits_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":false},\"box_background_color\":\"#00921E\",\"digits_color\":\"#FFFFFF\",\"digits_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"digits_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"label_color\":\"#FFFFFF\",\"container_width_mobile\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":0,\"sizes\":[]},\"box_spacing_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"box_padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"digits_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto Slab\",\"label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInDown\",\"due_date\":\"2024-08-29 19:22\",\"countdown_type\":\"evergreen\",\"evergreen_counter_hours\":1,\"evergreen_counter_minutes\":5,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"countdown\",\"elType\":\"widget\"},{\"id\":\"48248c8b\",\"settings\":{\"background_background\":\"gradient\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#BAF8C7\",\"background_overlay_opacity_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33530621\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ef9cb5f\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"16a82c23\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#00921E\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4bbed449\",\"settings\":{\"before_text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09ed\\u09eb \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"marker_color\":\"#FF0000\",\"title_color\":\"#00921E\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"words_color\":\"#000000\",\"stroke_width\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"above_content\":\"yes\",\"rounded_edges\":\"yes\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"title_typography_font_family\":\"Hind Siliguri\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"marker\":\"x\",\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_element_width\":\"inherit\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"6c94bfcb\",\"settings\":{\"before_text\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09eb\\u09e6 \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"marker_color\":\"#FF001E\",\"title_color\":\"#00921E\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"words_color\":\"#000000\",\"stroke_width\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"above_content\":\"yes\",\"rounded_edges\":\"yes\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"title_typography_font_family\":\"Hind Siliguri\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"marker\":\"x\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\",\"words_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"4157db97\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"\",\"highlighted_text\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#EF0505\",\"stroke_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"rounded_edges\":\"yes\",\"title_color\":\"#672F2F\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"words_color\":\"#FF022D\",\"words_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"title_typography_font_family\":\"Allison\",\"_background_background\":\"classic\",\"words_typography_typography\":\"custom\",\"words_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"10bffc22\",\"settings\":{\"before_text\":\"\\u0995\\u09ae\\u09cd\\u09ac\\u09cb \\u0985\\u09ab\\u09be\\u09b0 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 & \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \",\"highlighted_text\":\"\\u09e7\\u09e6\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"marker_color\":\"#FF0000\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"words_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"stroke_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"above_content\":\"yes\",\"title_color\":\"#39911D\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"marker\":\"underline_zigzag\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"63ed4c2e\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"button_box_shadow_box_shadow_type\":\"yes\",\"_animation\":\"fadeInDown\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=edcb9c8\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"15fbf269\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3530c1b2\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"background_color\":\"#C6FFCA\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78c5ee61\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=Lrdqc3AwV9I\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_overlay\":{\"id\":72,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/placeholder-1.png\"},\"insert_url\":\"yes\",\"external_url\":{\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=9D6P0jDMTJo\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"78f885d7\",\"settings\":{\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#C6FFCA\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45dd859d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38714fbd\",\"settings\":{\"title\":\"\\n\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n<span style=\\\"color:#00FF48\\\">\\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8   <\\/span>?\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#045916\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"66\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2cafa942\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7&nbsp;\\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 <strong>fishgrowth<\\/strong>\\u0964&nbsp;<b>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8<\\/b>&nbsp;\\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964&nbsp;\\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":100.175},\"_flex_align_self\":\"flex-start\",\"typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_element_width\":\"initial\",\"_flex_size\":\"none\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"15a46097\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0  \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"cf2251b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b7264ab\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"P H  \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7fc5b22\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b76666d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"8cdceeb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"51179e9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"64b4248\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"89f6948\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"53766b0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"565c8b9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"1f70568\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"6e78d97\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"left\",\"icon_color\":\"#00921E\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_self_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"445a913d\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C6FFCA\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5833de3b\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1226764\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#045916\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5594c2fa\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54f11e84\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a631c2\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983 \\n\",\"align\":\"center\",\"title_color\":\"#0B6517\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"3c710941\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"typography_line_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1c6e5ab7\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#0B6517\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"text_stroke_text_stroke_type\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"69353b9c\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"59874d85\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"button_box_shadow_box_shadow_type\":\"yes\",\"_animation\":\"fadeInDown\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=edcb9c8\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"2d2ca21e\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u099c\\u09cd\\u099e\\u09a4\\u09be, \\u09b6\\u09bf\\u0995\\u09cd\\u09b7\\u09be \\u0993 \\u09aa\\u09b0\\u09c0\\u0995\\u09cd\\u09b7\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ac\\u09a8\\u09df\\u09c7 fishgrowth \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09ac\\u09cd\\u09af\\u09be\\u09aa\\u09c0 \\u09ae\\u09be\\u099b \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u09b8\\u09c7\\u09ac\\u09be, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6 \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09aa\\u09a3\\u09cd\\u09af \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09c7 \\u0986\\u09b8\\u099b\\u09c7\\u0964 \\u09ae\\u09be\\u099b \\u099b\\u09be\\u09dc\\u09be \\u09b9\\u09a4\\u09c7 \\u09ac\\u09be\\u099c\\u09be\\u09b0\\u099c\\u09be\\u09a4 \\u0995\\u09b0\\u09be \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09c1\\u09a8\\u09bf\\u09aa\\u09c1\\u09a8 \\u09ae\\u09a8\\u09bf\\u099f\\u09b0\\u09bf\\u0982 \\u098f\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09aa\\u09a5\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u0997\\u09a3 \\u09b9\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8\\u0964\\n\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"8e950d3\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#045916\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"48ff8e4d\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"75d92a9\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"789341b\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"_id\":\"d11504e\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\",\"_id\":\"9de7d2f\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"c81d964\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"_id\":\"e523b92\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\",\"_id\":\"5d725c6\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#045916\",\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"011\",\"bottom\":\"0\",\"left\":\"0111\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"1b70727a\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\",\"background_background\":\"classic\",\"background_color\":\"#C6FFCA\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"150ddfda\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#4AAC3F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40a2cb10\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\"> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  <\\/span> \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_css_classes\":\"order\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"563e8658\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964    \\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"31955583\",\"settings\":{\"marker\":\"curly\",\"before_text\":\"\",\"highlighted_text\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"highlight_animation_duration\":1827,\"highlight_iteration_delay\":95,\"marker_color\":\"#C60000\",\"above_content\":\"yes\",\"rounded_edges\":\"yes\",\"title_color\":\"#562222\",\"words_color\":\"#DC0909\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"569c4df4\",\"settings\":{\"title\":\"\",\"align\":\"center\",\"title_color\":\"#FD3535\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5f4afc4\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e284e0\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#03DE91\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"7289cd30\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c87e62a\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F20055\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"2a9e407c\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"707ad36c\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ecafdda\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 fishgrowth| This website made with \\u2764\\ufe0f by <a style=\\\"color: red;\\\" href=\\\"https:\\/\\/itgalaxi.com\\/\\\"><b> itgalaxi<\\/b><\\/a><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('607','70','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('608','70','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('609','70','_oembed_d1ba36e57cf99aabd5db8f13b2e7604c','<iframe title=\"৪০{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} ব্যয় কমিয়ে গড়ে তুলুন লাভজনক ব্যবসা মাছ চাষীদের জন্য সর্বোচ্চ কার্যকরী\" width=\"800\" height=\"600\" src=\"https://www.youtube.com/embed/mjr8CjmMFL0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('610','70','_oembed_time_d1ba36e57cf99aabd5db8f13b2e7604c','1725890253');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('611','70','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('612','70','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('613','70','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('614','70','_oembed_82377f9b7d52306141edf595d15f2297','<iframe title=\"ব্যয় কমিয়ে, উতপাদন বাড়ানোই হচ্ছে লাভবান হবার চাবিকাঠি\" width=\"800\" height=\"600\" src=\"https://www.youtube.com/embed/Lrdqc3AwV9I?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('615','70','_oembed_time_82377f9b7d52306141edf595d15f2297','1725891134');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('617','71','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('618','71','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('619','71','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('620','71','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('621','71','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('622','71','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('623','71','_elementor_data','[{\"id\":\"731f89b4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"280939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f2dd970\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09c0\\u09ae\\u09bf\\u09a4 \\u09b8\\u09ae\\u09df\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09ab\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u099c\\n\",\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#00921E\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37fb909b\",\"elType\":\"widget\",\"settings\":{\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"digits_typography_typography\":\"custom\",\"digits_typography_font_family\":\"Roboto\",\"digits_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":false},\"box_background_color\":\"#00921E\",\"digits_color\":\"#FFFFFF\",\"digits_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"digits_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"label_color\":\"#FFFFFF\",\"container_width_mobile\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":0,\"sizes\":[]},\"box_spacing_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"box_padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"digits_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto Slab\",\"label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInDown\",\"due_date\":\"2024-08-29 19:22\",\"countdown_type\":\"evergreen\",\"evergreen_counter_hours\":1,\"evergreen_counter_minutes\":5},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"48248c8b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#BAF8C7\",\"background_overlay_opacity_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[{\"id\":\"33530621\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"3ef9cb5f\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"16a82c23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#00921E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bbed449\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09ed\\u09eb \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"marker_color\":\"#FF0000\",\"title_color\":\"#00921E\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"words_color\":\"#000000\",\"stroke_width\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"above_content\":\"yes\",\"rounded_edges\":\"yes\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"title_typography_font_family\":\"Hind Siliguri\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"marker\":\"x\",\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"6c94bfcb\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09eb\\u09e6 \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"marker_color\":\"#FF001E\",\"title_color\":\"#00921E\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"words_color\":\"#000000\",\"stroke_width\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"above_content\":\"yes\",\"rounded_edges\":\"yes\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"title_typography_font_family\":\"Hind Siliguri\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"marker\":\"x\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\",\"words_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"4157db97\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"\",\"highlighted_text\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#EF0505\",\"stroke_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"rounded_edges\":\"yes\",\"title_color\":\"#672F2F\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"words_color\":\"#FF022D\",\"words_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"title_typography_font_family\":\"Allison\",\"_background_background\":\"classic\",\"words_typography_typography\":\"custom\",\"words_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"10bffc22\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u0995\\u09ae\\u09cd\\u09ac\\u09cb \\u0985\\u09ab\\u09be\\u09b0 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 & \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \",\"highlighted_text\":\"\\u09e7\\u09e6\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"marker_color\":\"#FF0000\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"words_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"stroke_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"above_content\":\"yes\",\"title_color\":\"#39911D\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"marker\":\"underline_zigzag\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"63ed4c2e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"button_box_shadow_box_shadow_type\":\"yes\",\"_animation\":\"fadeInDown\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=edcb9c8\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15fbf269\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3530c1b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"background_color\":\"#C6FFCA\"},\"elements\":[{\"id\":\"78c5ee61\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=Lrdqc3AwV9I\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_overlay\":{\"id\":30,\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/placeholder.png\"},\"insert_url\":\"yes\",\"external_url\":{\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=9D6P0jDMTJo\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78f885d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#C6FFCA\"},\"elements\":[{\"id\":\"45dd859d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38714fbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n<span style=\\\"color:#00FF48\\\">\\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8   <\\/span>?\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#045916\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"66\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cafa942\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7&nbsp;\\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 <strong>fishgrowth<\\/strong>\\u0964&nbsp;<b>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8<\\/b>&nbsp;\\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964&nbsp;\\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":100.175},\"_flex_align_self\":\"flex-start\",\"typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_element_width\":\"initial\",\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15a46097\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0  \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"cf2251b\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b7264ab\"},{\"text\":\"P H  \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7fc5b22\"},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b76666d\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"8cdceeb\"},{\"text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"51179e9\"},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"64b4248\"},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"89f6948\"},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"53766b0\"},{\"text\":\"* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"565c8b9\"},{\"text\":\"* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"1f70568\"},{\"text\":\"\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"6e78d97\"}],\"icon_align\":\"left\",\"icon_color\":\"#00921E\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_self_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"445a913d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C6FFCA\"},\"elements\":[{\"id\":\"5833de3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"1226764\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#045916\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5594c2fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f11e84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a631c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983 \\n\",\"align\":\"center\",\"title_color\":\"#0B6517\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c710941\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"typography_line_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c6e5ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#0B6517\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"text_stroke_text_stroke_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69353b9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59874d85\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"button_box_shadow_box_shadow_type\":\"yes\",\"_animation\":\"fadeInDown\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=edcb9c8\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2d2ca21e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u099c\\u09cd\\u099e\\u09a4\\u09be, \\u09b6\\u09bf\\u0995\\u09cd\\u09b7\\u09be \\u0993 \\u09aa\\u09b0\\u09c0\\u0995\\u09cd\\u09b7\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ac\\u09a8\\u09df\\u09c7 fishgrowth \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09ac\\u09cd\\u09af\\u09be\\u09aa\\u09c0 \\u09ae\\u09be\\u099b \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u09b8\\u09c7\\u09ac\\u09be, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6 \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09aa\\u09a3\\u09cd\\u09af \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09c7 \\u0986\\u09b8\\u099b\\u09c7\\u0964 \\u09ae\\u09be\\u099b \\u099b\\u09be\\u09dc\\u09be \\u09b9\\u09a4\\u09c7 \\u09ac\\u09be\\u099c\\u09be\\u09b0\\u099c\\u09be\\u09a4 \\u0995\\u09b0\\u09be \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09c1\\u09a8\\u09bf\\u09aa\\u09c1\\u09a8 \\u09ae\\u09a8\\u09bf\\u099f\\u09b0\\u09bf\\u0982 \\u098f\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09aa\\u09a5\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u0997\\u09a3 \\u09b9\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8\\u0964\\n\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8e950d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#045916\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48ff8e4d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"75d92a9\"},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"789341b\"},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"_id\":\"d11504e\"},{\"text\":\"4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\",\"_id\":\"9de7d2f\"},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"c81d964\"},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"_id\":\"e523b92\"},{\"text\":\"7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\",\"_id\":\"5d725c6\"}],\"icon_color\":\"#045916\",\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"011\",\"bottom\":\"0\",\"left\":\"0111\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b70727a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\",\"background_background\":\"classic\",\"background_color\":\"#C6FFCA\"},\"elements\":[{\"id\":\"150ddfda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#4AAC3F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"40a2cb10\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\"> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  <\\/span> \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_css_classes\":\"order\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"563e8658\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964    \\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31955583\",\"elType\":\"widget\",\"settings\":{\"marker\":\"curly\",\"before_text\":\"\",\"highlighted_text\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"highlight_animation_duration\":1827,\"highlight_iteration_delay\":95,\"marker_color\":\"#C60000\",\"above_content\":\"yes\",\"rounded_edges\":\"yes\",\"title_color\":\"#562222\",\"words_color\":\"#DC0909\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"569c4df4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"align\":\"center\",\"title_color\":\"#FD3535\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f4afc4\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"4e284e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#03DE91\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7289cd30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"c87e62a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F20055\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2a9e407c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"707ad36c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ecafdda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 fishgrowth| This website made with \\u2764\\ufe0f by <a style=\\\"color: red;\\\" href=\\\"https:\\/\\/itgalaxi.com\\/\\\"><b> itgalaxi<\\/b><\\/a><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('624','71','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('625','71','_elementor_controls_usage','a:11:{s:7:\"heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:14;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:14;s:21:\"typography_typography\";i:14;s:22:\"typography_font_family\";i:12;s:5:\"align\";i:14;s:20:\"typography_font_size\";i:13;s:22:\"typography_font_weight\";i:11;s:22:\"typography_line_height\";i:7;s:28:\"text_stroke_text_stroke_type\";i:2;}}s:8:\"advanced\";a:4:{s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:9;s:7:\"_margin\";i:6;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:2:{s:14:\"_border_radius\";i:9;s:27:\"_box_shadow_box_shadow_type\";i:4;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:4;}}}}s:9:\"countdown\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:17:\"section_countdown\";a:5:{s:13:\"custom_labels\";i:1;s:8:\"due_date\";i:1;s:14:\"countdown_type\";i:1;s:23:\"evergreen_counter_hours\";i:1;s:25:\"evergreen_counter_minutes\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_box_style\";a:3:{s:17:\"box_border_radius\";i:1;s:11:\"box_spacing\";i:1;s:20:\"box_background_color\";i:1;}s:21:\"section_content_style\";a:10:{s:28:\"digits_typography_typography\";i:1;s:29:\"digits_typography_font_family\";i:1;s:29:\"digits_typography_font_weight\";i:1;s:12:\"digits_color\";i:1;s:27:\"digits_typography_font_size\";i:1;s:29:\"digits_typography_line_height\";i:1;s:11:\"label_color\";i:1;s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_family\";i:1;s:28:\"label_typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:6:{s:11:\"before_text\";i:5;s:16:\"highlighted_text\";i:5;s:10:\"after_text\";i:3;s:6:\"marker\";i:5;s:28:\"highlight_animation_duration\";i:1;s:25:\"highlight_iteration_delay\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_style_text\";a:11:{s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:4;s:11:\"title_color\";i:5;s:28:\"title_typography_line_height\";i:4;s:11:\"words_color\";i:5;s:28:\"title_typography_font_family\";i:4;s:27:\"words_typography_typography\";i:4;s:28:\"words_typography_font_family\";i:2;s:28:\"words_typography_font_weight\";i:2;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"title_typography_font_weight\";i:1;}s:20:\"section_style_marker\";a:4:{s:12:\"marker_color\";i:5;s:12:\"stroke_width\";i:4;s:13:\"above_content\";i:4;s:13:\"rounded_edges\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:3;s:14:\"_element_width\";i:1;s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:2;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:2;s:4:\"size\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:13:\"border_border\";i:2;s:13:\"border_radius\";i:2;s:33:\"button_box_shadow_box_shadow_type\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:8;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:4;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:6;s:18:\"background_color_b\";i:1;s:16:\"background_color\";i:5;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_radius\";i:2;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:2;s:7:\"padding\";i:3;s:11:\"_element_id\";i:1;s:11:\"css_classes\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:3:\"gap\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:3:{s:11:\"youtube_url\";i:1;s:10:\"insert_url\";i:1;s:12:\"external_url\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"_section_border\";a:2:{s:14:\"_border_radius\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:2;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;s:14:\"_element_width\";i:1;s:10:\"_flex_size\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:10:\"icon_align\";i:1;s:17:\"icon_align_mobile\";i:1;}s:18:\"section_icon_style\";a:4:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;s:11:\"text_indent\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:7:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:27:\"icon_typography_line_height\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:13:\"content_width\";i:1;s:14:\"flex_direction\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('626','72','_wp_attached_file','2026/06/placeholder-1.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('627','72','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2026/06/placeholder-1.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('628','72','_elementor_source_image_hash','579693e0334bdc45d05c9587c4fe030764bcc18a');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('629','73','wcf-flow-id','56');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('630','73','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('631','73','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('632','73','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('633','73','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('634','73','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('635','73','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('636','73','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('637','73','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('638','73','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('639','73','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('640','73','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('641','73','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('642','73','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('643','73','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('644','73','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('645','73','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('646','73','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('647','73','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('648','73','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:28:\"আপনার নামঃ\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:37:\"মোবাইল নম্বরঃ\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:20;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:46:\"ডেলিভারি ঠিকানাঃ\";s:11:\"placeholder\";s:0:\"\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:30;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:40;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:50;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:60;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:70;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:80;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:90;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:100;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('649','73','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('650','73','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('651','73','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('652','73','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('653','73','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('654','73','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('655','73','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('656','73','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('657','73','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('658','73','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('659','73','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('660','73','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('661','73','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('662','73','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('663','73','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('664','73','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('665','73','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('666','73','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('667','73','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('668','73','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('669','73','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('670','73','_edit_lock','1725891272:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('671','73','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('672','73','_elementor_data','[{\"id\":\"426fe5a3\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#E7F0E1\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_b\":\"#CF9C9C\",\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"55a46da5\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3194a5a4\",\"settings\":{\"image\":{\"id\":77,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FC7F01\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7f9fff5f\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67371df5\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45f87c79\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n\",\"align_mobile\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"416d7360\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7 \\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 fishgrowth\\u0964 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964 \\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"25035dc7\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"17c205f6\",\"settings\":{\"_column_size\":50,\"_inline_size\":37,\"animation\":\"fadeInRight\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3305e0fa\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"dots_position\":\"inside\",\"image_border_border\":\"groove\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"#FC7F01\",\"navigation\":\"dots\",\"carousel\":[],\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"},{\"id\":\"283e2358\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"73f4a8e9\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFF1F1\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29ded283\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77e611e1\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"3e0b6e57\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09eb\\u09e6 \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"marker_color\":\"#F00000\",\"above_content\":\"yes\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_color\":\"#FF0000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"-46\",\"bottom\":\"-46\",\"left\":\"-46\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"2bcd95b7\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09ed\\u09eb \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"marker_color\":\"#F00000\",\"above_content\":\"yes\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_color\":\"#FF0000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"403bce3a\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 \\u09ac\\u09be \\u0995\\u09b2 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#E57500\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"36cfb15d\",\"settings\":{\"text\":\"01838 40 40 44\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Gotu\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"1d656a1c\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFEEEE\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3dca2454\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#F8D9D9\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a5381b0\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#DC7676\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7935856d\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"9e8f154\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"0fd14a4\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"P H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"d86358c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"0b64308\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"d9486c3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"6b7bbe0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"66b3e27\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"d4560d8\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"20e9bf3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"1b95955\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"c2cfbc0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"91b4ba6\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"5bdb4de6\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5161ca1a\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFF3F3\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10123850\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60bb0de6\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#DC7676\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2db8e9f9\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2d5ffa7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"21dd5e5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"a338827\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"62b8564\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"736c459\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"6ddeb71\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"0eae4fc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0995\\u09cb\\u09a8 \\u09b0\\u0995\\u09ae \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u099b\\u09be\\u09a1\\u09bc\\u09be \\u0998\\u09b0\\u09cb\\u09df\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09b8\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"3f8188b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"space_between_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"6319b594\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FFCECE\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"690fc4d\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#FF5E07\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"2a87f13e\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFECEC\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75a61f63\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":\"50\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3925bb6c\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Screenshot-2024-07-01-134806.webp\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"4fa48cf7\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":\"50\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10157ec0\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#FF8902\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5a54a1e\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"_id\":\"8988ccc\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E98C21\",\"icon_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"17cde51e\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#FF8902\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6e58fa71\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"_id\":\"8988ccc\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E99604\",\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"69a1e688\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFF3F3\",\"_element_id\":\"order\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5cfd06f0\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3DA300\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26271876\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8-\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#DC7676\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5f4afc4\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e284e0\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#03DE91\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"7289cd30\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c87e62a\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F20055\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"28c29389\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"713cda3f\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d1091c1\",\"settings\":{\"title\":\"Copyright \\u00a9 2024  Fish Growth | This website made with <img draggable=\\\"false\\\" role=\\\"img\\\" class=\\\"emoji\\\" alt=\\\"\\u2764\\ufe0f\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/15.0.3\\/svg\\/2764.svg\\\"> by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('673','73','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('674','73','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('675','73','_oembed_d1ba36e57cf99aabd5db8f13b2e7604c','<iframe title=\"৪০{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} ব্যয় কমিয়ে গড়ে তুলুন লাভজনক ব্যবসা মাছ চাষীদের জন্য সর্বোচ্চ কার্যকরী\" width=\"800\" height=\"600\" src=\"https://www.youtube.com/embed/mjr8CjmMFL0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('676','73','_oembed_time_d1ba36e57cf99aabd5db8f13b2e7604c','1725890253');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('677','73','_oembed_82377f9b7d52306141edf595d15f2297','<iframe title=\"ব্যয় কমিয়ে, উতপাদন বাড়ানোই হচ্ছে লাভবান হবার চাবিকাঠি\" width=\"800\" height=\"600\" src=\"https://www.youtube.com/embed/Lrdqc3AwV9I?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('678','73','_oembed_time_82377f9b7d52306141edf595d15f2297','1725890507');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('679','73','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('680','73','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('681','73','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('682','73','_elementor_controls_usage','a:11:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:10;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:10;s:21:\"typography_typography\";i:9;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:9;s:22:\"typography_font_weight\";i:8;s:22:\"typography_line_height\";i:2;s:5:\"align\";i:9;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:6:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;s:28:\"_background_hover_background\";i:3;s:19:\"_background_color_b\";i:3;s:25:\"_background_gradient_type\";i:3;s:26:\"_background_gradient_angle\";i:3;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:3;s:4:\"link\";i:3;s:4:\"size\";i:3;s:13:\"selected_icon\";i:3;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:12:\"align_mobile\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:16:\"background_color\";i:3;s:15:\"hover_animation\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:13:\"border_radius\";i:3;s:5:\"align\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:8;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;s:10:\"navigation\";i:1;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:1:{s:13:\"dots_position\";i:1;}s:19:\"section_style_image\";a:3:{s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:7;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;s:18:\"background_color_b\";i:1;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:5;s:6:\"margin\";i:2;s:11:\"_element_id\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:2;s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:10:\"after_text\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:2:{s:12:\"marker_color\";i:2;s:13:\"above_content\";i:2;}s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_font_weight\";i:2;s:11:\"words_color\";i:2;s:27:\"words_typography_typography\";i:2;s:28:\"words_typography_font_family\";i:2;s:28:\"words_typography_font_weight\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:4;s:9:\"icon_size\";i:4;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:4;s:27:\"icon_typography_font_family\";i:4;s:25:\"icon_typography_font_size\";i:4;s:27:\"icon_typography_font_weight\";i:4;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:14:\"flex_direction\";i:5;s:13:\"content_width\";i:3;s:5:\"width\";i:2;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('683','74','_wp_attached_file','2026/06/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('684','74','_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:68:\"2026/06/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\";s:8:\"filesize\";i:63031;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('685','74','_cartflows_image_hash','f6a0849328eb42b60fdb44a7b3798e6a1ef9122c');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('686','75','_wp_attached_file','2026/06/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('687','75','_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:78:\"2026/06/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg\";s:8:\"filesize\";i:5029;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('688','75','_cartflows_image_hash','02ca7b011e331ca1f14f0fbe9180d13a7aa1e32c');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('689','76','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('690','76','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('691','76','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('692','76','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('693','76','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('694','76','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('695','76','_elementor_data','[{\"id\":\"426fe5a3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#E7F0E1\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_b\":\"#CF9C9C\",\"background_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"55a46da5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3194a5a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FC7F01\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f9fff5f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"67371df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"45f87c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n\",\"align_mobile\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"416d7360\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7 \\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 fishgrowth\\u0964 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964 \\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"25035dc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"17c205f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37,\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"3305e0fa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"dots_position\":\"inside\",\"image_border_border\":\"groove\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"#FC7F01\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"283e2358\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73f4a8e9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFF1F1\"},\"elements\":[{\"id\":\"29ded283\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"77e611e1\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3e0b6e57\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09eb\\u09e6 \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"marker_color\":\"#F00000\",\"above_content\":\"yes\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_color\":\"#FF0000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"-46\",\"bottom\":\"-46\",\"left\":\"-46\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"2bcd95b7\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09ed\\u09eb \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"marker_color\":\"#F00000\",\"above_content\":\"yes\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_color\":\"#FF0000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"403bce3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 \\u09ac\\u09be \\u0995\\u09b2 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#E57500\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36cfb15d\",\"elType\":\"widget\",\"settings\":{\"text\":\"01838 40 40 44\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Gotu\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d656a1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFEEEE\"},\"elements\":[{\"id\":\"3dca2454\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#F8D9D9\"},\"elements\":[{\"id\":\"6a5381b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#DC7676\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7935856d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"9e8f154\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"0fd14a4\"},{\"text\":\"P H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"d86358c\"},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"0b64308\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"d9486c3\"},{\"text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"6b7bbe0\"},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"66b3e27\"},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"d4560d8\"},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"20e9bf3\"},{\"text\":\"* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"1b95955\"},{\"text\":\"* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"c2cfbc0\"},{\"text\":\"\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"91b4ba6\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5bdb4de6\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5161ca1a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFF3F3\"},\"elements\":[{\"id\":\"10123850\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60bb0de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#DC7676\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2db8e9f9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2d5ffa7\"},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"21dd5e5\"},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"a338827\"},{\"text\":\"4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"62b8564\"},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"736c459\"},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"6ddeb71\"},{\"text\":\"7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"0eae4fc\"},{\"text\":\"\\u0995\\u09cb\\u09a8 \\u09b0\\u0995\\u09ae \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u099b\\u09be\\u09a1\\u09bc\\u09be \\u0998\\u09b0\\u09cb\\u09df\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09b8\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"3f8188b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"space_between_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6319b594\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FFCECE\"},\"elements\":[{\"id\":\"690fc4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#FF5E07\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2a87f13e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFECEC\"},\"elements\":[{\"id\":\"75a61f63\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":\"50\"}},\"elements\":[{\"id\":\"3925bb6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fa48cf7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":\"50\"}},\"elements\":[{\"id\":\"10157ec0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#FF8902\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a54a1e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"_id\":\"8988ccc\"}],\"icon_color\":\"#E98C21\",\"icon_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"17cde51e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#FF8902\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e58fa71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"_id\":\"8988ccc\"}],\"icon_color\":\"#E99604\",\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"69a1e688\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFF3F3\",\"_element_id\":\"order\"},\"elements\":[{\"id\":\"5cfd06f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3DA300\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"26271876\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8-\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#DC7676\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f4afc4\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"4e284e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#03DE91\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7289cd30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"c87e62a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F20055\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"28c29389\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"713cda3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1d1091c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024  Fish Growth | This website made with <img draggable=\\\"false\\\" role=\\\"img\\\" class=\\\"emoji\\\" alt=\\\"\\u2764\\ufe0f\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/15.0.3\\/svg\\/2764.svg\\\"> by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('696','76','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('697','76','_elementor_controls_usage','a:11:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:10;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:10;s:21:\"typography_typography\";i:9;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:9;s:22:\"typography_font_weight\";i:8;s:22:\"typography_line_height\";i:2;s:5:\"align\";i:9;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:6:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;s:28:\"_background_hover_background\";i:3;s:19:\"_background_color_b\";i:3;s:25:\"_background_gradient_type\";i:3;s:26:\"_background_gradient_angle\";i:3;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:3;s:4:\"link\";i:3;s:4:\"size\";i:3;s:13:\"selected_icon\";i:3;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:12:\"align_mobile\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:16:\"background_color\";i:3;s:15:\"hover_animation\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:13:\"border_radius\";i:3;s:5:\"align\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:8;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;s:10:\"navigation\";i:1;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:1:{s:13:\"dots_position\";i:1;}s:19:\"section_style_image\";a:3:{s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:7;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;s:18:\"background_color_b\";i:1;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:5;s:6:\"margin\";i:2;s:11:\"_element_id\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:2;s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:10:\"after_text\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:2:{s:12:\"marker_color\";i:2;s:13:\"above_content\";i:2;}s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_font_weight\";i:2;s:11:\"words_color\";i:2;s:27:\"words_typography_typography\";i:2;s:28:\"words_typography_font_family\";i:2;s:28:\"words_typography_font_weight\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:4;s:9:\"icon_size\";i:4;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:4;s:27:\"icon_typography_font_family\";i:4;s:25:\"icon_typography_font_size\";i:4;s:27:\"icon_typography_font_weight\";i:4;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:14:\"flex_direction\";i:5;s:13:\"content_width\";i:3;s:5:\"width\";i:2;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('698','77','_wp_attached_file','2026/06/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('699','77','_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:70:\"2026/06/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\";s:8:\"filesize\";i:63031;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('700','77','_elementor_source_image_hash','f6a0849328eb42b60fdb44a7b3798e6a1ef9122c');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('701','78','wcf-flow-id','56');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('702','78','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('703','78','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('704','78','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('705','78','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('706','78','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('707','78','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('708','78','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('709','78','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('710','78','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('711','78','_edit_lock','1725887005:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('712','78','_elementor_data','[{\"id\":\"516a438\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c757090\",\"settings\":{\"content_width\":\"full\",\"confirmation_message_text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u09b8\\u09ab\\u09b2 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"confirmation_message_alignment\":\"center\",\"payment_details_number\":\"Order Number:\",\"payment_details_date\":\"Order Date:\",\"payment_details_email\":\"Order Email:\",\"payment_details_total\":\"Order Total:\",\"payment_details_payment\":\"Payment Method:\",\"bank_details_text\":\"Our Bank Details\",\"downloads_text\":\"Downloads\",\"order_summary_text\":\"Order Details\",\"billing_details_text\":\"Billing Details\",\"shipping_details_text\":\"Shipping Details\",\"confirmation_message_color\":\"#010101\",\"confirmation_message_typography_typography\":\"custom\",\"confirmation_message_typography_font_family\":\"Hind Siliguri\",\"confirmation_message_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"order_details_button_normal_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"order_details_button_normal_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"order_details_button_normal_background_slideshow_gallery\":[],\"order_details_button_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"order_details_button_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"order_details_button_hover_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"woocommerce-purchase-summary\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('713','78','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('715','58','wcf-checkout-products','a:1:{i:0;a:5:{s:8:\"quantity\";s:1:\"1\";s:13:\"discount_type\";s:0:\"\";s:14:\"discount_value\";s:0:\"\";s:7:\"product\";s:2:\"51\";s:9:\"unique_id\";s:8:\"c154k6w7\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('716','58','wcf-product-options-data','a:1:{s:8:\"c154k6w7\";a:5:{s:11:\"add_to_cart\";s:3:\"yes\";s:16:\"enable_highlight\";s:2:\"no\";s:14:\"highlight_text\";s:0:\"\";s:12:\"product_name\";s:0:\"\";s:15:\"product_subtext\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('719','58','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('720','58','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('721','58','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('723','79','_wcf_flow_id','56');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('727','89','_wcf_flow_id','56');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('728','132','_wcf_flow_id','56');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('737','137','_wcf_flow_id','56');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('755','144','_wp_attached_file','2026/06/ai-image-20260605-123751-a9e804e2ec1e284627804334.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('756','144','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260605-123751-a9e804e2ec1e284627804334.png\";s:8:\"filesize\";i:1260857;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('757','144','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260605-123751-a9e804e2ec1e284627804334.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('759','145','_wp_attached_file','2026/06/ai-image-20260605-123828-064e19bb6c7d8d4e6865e5c3.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('760','145','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260605-123828-064e19bb6c7d8d4e6865e5c3.png\";s:8:\"filesize\";i:1249414;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('761','145','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260605-123828-064e19bb6c7d8d4e6865e5c3.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('765','148','_wp_attached_file','2026/06/ai-image-20260605-124545-be3b0ad69c5007b7b588b281.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('766','148','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260605-124545-be3b0ad69c5007b7b588b281.png\";s:8:\"filesize\";i:1293725;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('767','148','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260605-124545-be3b0ad69c5007b7b588b281.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('769','149','_wp_attached_file','2026/06/ai-image-20260605-124629-83d24b3dcef7f5d430228354.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('770','149','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260605-124629-83d24b3dcef7f5d430228354.png\";s:8:\"filesize\";i:1237894;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('771','149','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260605-124629-83d24b3dcef7f5d430228354.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('773','150','_wp_attached_file','2026/06/ai-image-20260605-124657-dd6f339d70b5a70172bfd3ee.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('774','150','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260605-124657-dd6f339d70b5a70172bfd3ee.png\";s:8:\"filesize\";i:1280722;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('775','150','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260605-124657-dd6f339d70b5a70172bfd3ee.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('793','152','_wp_attached_file','2026/06/ai-image-20260605-130240-34feb85d89b88159126f4be5.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('794','152','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260605-130240-34feb85d89b88159126f4be5.png\";s:8:\"filesize\";i:1119902;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('795','152','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260605-130240-34feb85d89b88159126f4be5.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('798','153','_wp_attached_file','2026/06/ai-image-20260605-130315-1c7a0a64bd76d3b14b3cd60a.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('799','153','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260605-130315-1c7a0a64bd76d3b14b3cd60a.png\";s:8:\"filesize\";i:1276147;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('800','153','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260605-130315-1c7a0a64bd76d3b14b3cd60a.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('823','156','_wp_attached_file','2026/06/ai-image-20260605-132515-e9adec9732b830f2a628d004.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('824','156','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260605-132515-e9adec9732b830f2a628d004.png\";s:8:\"filesize\";i:1255012;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('825','156','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260605-132515-e9adec9732b830f2a628d004.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('827','157','_wp_attached_file','2026/06/ai-image-20260605-132541-7828a2269fadb8578ed0973a.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('828','157','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260605-132541-7828a2269fadb8578ed0973a.png\";s:8:\"filesize\";i:1240565;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('829','157','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260605-132541-7828a2269fadb8578ed0973a.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('831','158','_wp_attached_file','2026/06/ai-image-20260605-132616-11da28055c0f5348e902f99c.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('832','158','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260605-132616-11da28055c0f5348e902f99c.png\";s:8:\"filesize\";i:1210819;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('833','158','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260605-132616-11da28055c0f5348e902f99c.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('851','159','_wp_attached_file','2026/06/ai-image-20260605-143708-1e45d29ddde4218d1655bee7.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('852','159','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260605-143708-1e45d29ddde4218d1655bee7.png\";s:8:\"filesize\";i:1367004;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('853','159','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260605-143708-1e45d29ddde4218d1655bee7.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('854','160','_edit_lock','1780670678:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('855','161','_edit_lock','1780670579:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('857','163','_wp_attached_file','2026/06/ai-image-20260605-144601-d32f4c4003ac5fd9e3967f3a.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('858','163','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260605-144601-d32f4c4003ac5fd9e3967f3a.png\";s:8:\"filesize\";i:1460503;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('859','163','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260605-144601-d32f4c4003ac5fd9e3967f3a.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('863','169','_wp_attached_file','2026/06/ai-image-20260605-145418-b2ecaf45578073409a16a1f1.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('864','169','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260605-145418-b2ecaf45578073409a16a1f1.png\";s:8:\"filesize\";i:1425424;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('865','169','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260605-145418-b2ecaf45578073409a16a1f1.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('871','172','_wp_attached_file','2026/06/ai-image-20260605-145721-c28724a49eb50fabfaeb513f.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('872','172','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260605-145721-c28724a49eb50fabfaeb513f.png\";s:8:\"filesize\";i:1422433;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('873','172','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260605-145721-c28724a49eb50fabfaeb513f.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('883','174','_wp_attached_file','2026/06/ai-image-20260605-150225-0481cc1f38827d63941b2104.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('884','174','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260605-150225-0481cc1f38827d63941b2104.png\";s:8:\"filesize\";i:1117728;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('885','174','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260605-150225-0481cc1f38827d63941b2104.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('886','175','_wp_attached_file','2026/06/ai-image-20260605-150706-117729d31be7cc770c848ac4.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('887','175','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260605-150706-117729d31be7cc770c848ac4.png\";s:8:\"filesize\";i:1388989;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('888','175','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260605-150706-117729d31be7cc770c848ac4.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('889','175','_edit_lock','1780671915:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('890','175','_edit_last','17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('891','176','_wp_attached_file','2026/06/ai-image-20260606-000853-c514dc0f34257359c0c008f7.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('892','176','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260606-000853-c514dc0f34257359c0c008f7.png\";s:8:\"filesize\";i:1261783;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('893','176','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260606-000853-c514dc0f34257359c0c008f7.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('894','176','_edit_lock','1780704421:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('895','177','_wp_attached_file','2026/06/ai-image-20260606-001240-0956846276db06481b8c029e.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('896','177','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260606-001240-0956846276db06481b8c029e.png\";s:8:\"filesize\";i:1613104;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('897','177','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260606-001240-0956846276db06481b8c029e.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('898','178','_edit_lock','1780707196:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('899','181','_wp_attached_file','2026/06/ai-image-20260606-003457-3a19948607f02d3da3579acd.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('900','181','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260606-003457-3a19948607f02d3da3579acd.png\";s:8:\"filesize\";i:1207938;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('901','181','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260606-003457-3a19948607f02d3da3579acd.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('905','182','_wp_attached_file','2026/06/ai-image-20260606-004123-7fe6b894e4f1fba2593241c4.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('906','182','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260606-004123-7fe6b894e4f1fba2593241c4.png\";s:8:\"filesize\";i:1232774;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('907','182','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260606-004123-7fe6b894e4f1fba2593241c4.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('908','183','_wp_attached_file','2026/06/ai-image-20260606-004138-4f8e733e113c9f167c059530.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('909','183','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260606-004138-4f8e733e113c9f167c059530.png\";s:8:\"filesize\";i:1632409;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('910','183','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260606-004138-4f8e733e113c9f167c059530.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('917','188','_wp_attached_file','woocommerce-placeholder.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('918','188','_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:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('919','129','_wp_attached_file','2020/12/img-11-min.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('920','129','_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2020/12/img-11-min.png\";s:8:\"filesize\";i:16991;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('921','129','_elementor_source_image_hash','9f56031a5bf00876c3a183069f659dd233ec6f6d');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('922','129','_elementor_source_image_hash','9f56031a5bf00876c3a183069f659dd233ec6f6d');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('923','129','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('924','332','_wp_attached_file','2020/12/homemade-tasty-beef-burger-FRT5PYB.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('925','332','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:46:\"2020/12/homemade-tasty-beef-burger-FRT5PYB.jpg\";s:8:\"filesize\";i:188537;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('926','332','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('927','463','_wp_attached_file','2020/12/top-view-of-burger-with-french-fries-on-copy-space-PEYG7F6.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('928','463','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1314;s:4:\"file\";s:70:\"2020/12/top-view-of-burger-with-french-fries-on-copy-space-PEYG7F6.jpg\";s:8:\"filesize\";i:439757;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('929','463','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('930','525','_wp_attached_file','2020/12/logo_burg.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('931','525','_wp_attachment_metadata','a:6:{s:5:\"width\";i:220;s:6:\"height\";i:148;s:4:\"file\";s:21:\"2020/12/logo_burg.png\";s:8:\"filesize\";i:2782;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('932','525','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('933','556','_wp_attached_file','2020/12/paula-vermeulen-URjZkhqsuBk-unsplash.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('934','556','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:932;s:4:\"file\";s:48:\"2020/12/paula-vermeulen-URjZkhqsuBk-unsplash.jpg\";s:8:\"filesize\";i:124071;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('936','556','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('937','557','_wp_attached_file','2020/12/kelvin-theseira-AcA8moIiD3g-unsplash.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('938','557','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:48:\"2020/12/kelvin-theseira-AcA8moIiD3g-unsplash.jpg\";s:8:\"filesize\";i:201139;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('940','557','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('941','558','_wp_attached_file','2020/12/louis-hansel-shotsoflouis-4FY6xU05qaQ-unsplash-1.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('942','558','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:989;s:4:\"file\";s:60:\"2020/12/louis-hansel-shotsoflouis-4FY6xU05qaQ-unsplash-1.jpg\";s:8:\"filesize\";i:119517;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('944','558','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('945','559','_wp_attached_file','2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('946','559','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:45:\"2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash.jpg\";s:8:\"filesize\";i:162181;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('948','559','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('949','560','_wp_attached_file','2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('950','560','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:47:\"2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash.jpg\";s:8:\"filesize\";i:245271;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('952','560','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('953','561','_wp_attached_file','2020/12/nathan-dumlao-D4GjwNpXtV0-unsplash.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('954','561','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:934;s:4:\"file\";s:46:\"2020/12/nathan-dumlao-D4GjwNpXtV0-unsplash.jpg\";s:8:\"filesize\";i:93849;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('956','561','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('957','562','_wp_attached_file','2020/12/pablo-merchan-montes-Orz90t6o0e4-unsplash.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('958','562','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:53:\"2020/12/pablo-merchan-montes-Orz90t6o0e4-unsplash.jpg\";s:8:\"filesize\";i:108328;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('960','562','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('961','563','_wp_attached_file','2020/12/wesual-click-y7s_Wby3woo-unsplash.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('962','563','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:935;s:4:\"file\";s:45:\"2020/12/wesual-click-y7s_Wby3woo-unsplash.jpg\";s:8:\"filesize\";i:178907;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('964','563','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('965','634','_wp_attached_file','2020/12/melissa-walker-horn-wcDru6t-aCg-unsplash.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('966','634','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1282;s:4:\"file\";s:52:\"2020/12/melissa-walker-horn-wcDru6t-aCg-unsplash.jpg\";s:8:\"filesize\";i:173835;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('968','634','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('969','642','_wp_attached_file','2020/12/joseph-gonzalez-H1Bd992dIpbI-unsplash-copy.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('970','642','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1318;s:4:\"file\";s:54:\"2020/12/joseph-gonzalez-H1Bd992dIpbI-unsplash-copy.jpg\";s:8:\"filesize\";i:302162;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('972','642','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('973','677','_wp_attached_file','2020/12/category-8.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('974','677','_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2020/12/category-8.jpg\";s:8:\"filesize\";i:27390;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('976','677','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('977','678','_wp_attached_file','2020/12/category-7.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('978','678','_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2020/12/category-7.jpg\";s:8:\"filesize\";i:23756;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('980','678','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('981','679','_wp_attached_file','2020/12/category-6.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('982','679','_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2020/12/category-6.jpg\";s:8:\"filesize\";i:24904;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('984','679','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('985','681','_wp_attached_file','2020/12/category-4.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('986','681','_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2020/12/category-4.jpg\";s:8:\"filesize\";i:34264;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('988','681','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('989','682','_wp_attached_file','2020/12/category-1.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('990','682','_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2020/12/category-1.jpg\";s:8:\"filesize\";i:26862;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('992','682','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('993','683','_wp_attached_file','2020/12/category-2.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('994','683','_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2020/12/category-2.jpg\";s:8:\"filesize\";i:30369;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('996','683','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('997','684','_wp_attached_file','2020/12/category-3.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('998','684','_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2020/12/category-3.jpg\";s:8:\"filesize\";i:18774;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1000','684','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1001','718','_wp_attached_file','2020/12/pizza-2341377_1920.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1002','718','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:30:\"2020/12/pizza-2341377_1920.jpg\";s:8:\"filesize\";i:269363;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1004','718','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1005','721','_wp_attached_file','2020/12/restaurant-690569_1920.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1006','721','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1900;s:6:\"height\";i:1269;s:4:\"file\";s:34:\"2020/12/restaurant-690569_1920.jpg\";s:8:\"filesize\";i:277546;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1008','721','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1009','725','_wp_attached_file','2020/12/cafe-789635_1920.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1010','725','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1900;s:6:\"height\";i:793;s:4:\"file\";s:28:\"2020/12/cafe-789635_1920.jpg\";s:8:\"filesize\";i:203303;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1012','725','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1013','733','_wp_attached_file','2020/12/bar-1869656_1920.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1014','733','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1900;s:6:\"height\";i:859;s:4:\"file\";s:28:\"2020/12/bar-1869656_1920.jpg\";s:8:\"filesize\";i:242889;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1016','733','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1017','735','_wp_attached_file','2020/12/restaurant-691397_1920.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1018','735','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1900;s:6:\"height\";i:856;s:4:\"file\";s:34:\"2020/12/restaurant-691397_1920.jpg\";s:8:\"filesize\";i:171845;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1020','735','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1021','739','_wp_attached_file','2020/12/pizza-3007395_1920.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1022','739','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1900;s:6:\"height\";i:686;s:4:\"file\";s:30:\"2020/12/pizza-3007395_1920.jpg\";s:8:\"filesize\";i:226525;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1024','739','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1025','849','_wp_attached_file','2020/12/salad-2068220_1920.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1026','849','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:696;s:4:\"file\";s:30:\"2020/12/salad-2068220_1920.jpg\";s:8:\"filesize\";i:282263;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1027','849','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1028','851','_wp_attached_file','2020/12/hamburger-2856548_1920.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1029','851','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:832;s:4:\"file\";s:34:\"2020/12/hamburger-2856548_1920.jpg\";s:8:\"filesize\";i:198177;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1030','851','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1031','852','_wp_attached_file','2020/12/breakfast-690128_1920.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1032','852','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:756;s:4:\"file\";s:33:\"2020/12/breakfast-690128_1920.jpg\";s:8:\"filesize\";i:235603;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1033','852','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1034','870','_wp_attached_file','2020/12/food-1081707_1920.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1035','870','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:29:\"2020/12/food-1081707_1920.jpg\";s:8:\"filesize\";i:205978;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1037','870','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1038','875','_wp_attached_file','2020/12/FoodIcons-Converted_03.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1039','875','_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:34:\"2020/12/FoodIcons-Converted_03.png\";s:8:\"filesize\";i:1088;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1041','875','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1042','876','_wp_attached_file','2020/12/FoodIcons-Converted_05.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1043','876','_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:34:\"2020/12/FoodIcons-Converted_05.png\";s:8:\"filesize\";i:1469;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1045','876','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1046','877','_wp_attached_file','2020/12/FoodIcons-Converted_10.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1047','877','_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:34:\"2020/12/FoodIcons-Converted_10.png\";s:8:\"filesize\";i:1698;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1049','877','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1050','878','_wp_attached_file','2020/12/FoodIcons-Converted_13.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1051','878','_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:34:\"2020/12/FoodIcons-Converted_13.png\";s:8:\"filesize\";i:1500;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1053','878','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1054','907','_wp_attached_file','2020/12/fast-background.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1055','907','_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:320;s:4:\"file\";s:27:\"2020/12/fast-background.jpg\";s:8:\"filesize\";i:20589;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1056','907','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1057','955','_wp_attached_file','2020/12/product-13.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1058','955','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1054;s:4:\"file\";s:22:\"2020/12/product-13.jpg\";s:8:\"filesize\";i:123511;s:5:\"sizes\";a:1:{s:24:\"elementor_custom_800x800\";a:4:{s:4:\"file\";s:31:\"elementor/thumbs/product-13.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1060','955','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1061','958','_wp_attached_file','2020/12/product_9.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1062','958','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1054;s:4:\"file\";s:21:\"2020/12/product_9.jpg\";s:8:\"filesize\";i:84261;s:5:\"sizes\";a:1:{s:24:\"elementor_custom_800x800\";a:4:{s:4:\"file\";s:30:\"elementor/thumbs/product_9.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1064','958','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1065','959','_wp_attached_file','2020/12/product_10.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1066','959','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1054;s:4:\"file\";s:22:\"2020/12/product_10.jpg\";s:8:\"filesize\";i:75278;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1068','959','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1069','960','_wp_attached_file','2020/12/product_11.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1070','960','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1054;s:4:\"file\";s:22:\"2020/12/product_11.jpg\";s:8:\"filesize\";i:66727;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1072','960','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1073','961','_wp_attached_file','2020/12/product_12.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1074','961','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1054;s:4:\"file\";s:22:\"2020/12/product_12.jpg\";s:8:\"filesize\";i:77763;s:5:\"sizes\";a:1:{s:24:\"elementor_custom_800x800\";a:4:{s:4:\"file\";s:31:\"elementor/thumbs/product_12.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1076','961','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1077','963','_wp_attached_file','2020/12/product_1.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1078','963','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1054;s:4:\"file\";s:21:\"2020/12/product_1.jpg\";s:8:\"filesize\";i:138402;s:5:\"sizes\";a:1:{s:24:\"elementor_custom_800x800\";a:4:{s:4:\"file\";s:30:\"elementor/thumbs/product_1.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1080','963','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1081','964','_wp_attached_file','2020/12/product_3.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1082','964','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1054;s:4:\"file\";s:21:\"2020/12/product_3.jpg\";s:8:\"filesize\";i:136841;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1084','964','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1085','965','_wp_attached_file','2020/12/product_4.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1086','965','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1054;s:4:\"file\";s:21:\"2020/12/product_4.jpg\";s:8:\"filesize\";i:140294;s:5:\"sizes\";a:1:{s:24:\"elementor_custom_800x800\";a:4:{s:4:\"file\";s:30:\"elementor/thumbs/product_4.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1088','965','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1089','966','_wp_attached_file','2020/12/product_5.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1090','966','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1054;s:4:\"file\";s:21:\"2020/12/product_5.jpg\";s:8:\"filesize\";i:130639;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1092','966','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1093','967','_wp_attached_file','2020/12/product_6.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1094','967','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1054;s:4:\"file\";s:21:\"2020/12/product_6.jpg\";s:8:\"filesize\";i:142449;s:5:\"sizes\";a:1:{s:24:\"elementor_custom_800x800\";a:4:{s:4:\"file\";s:30:\"elementor/thumbs/product_6.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1096','967','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1097','968','_wp_attached_file','2020/12/product_7.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1098','968','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1054;s:4:\"file\";s:21:\"2020/12/product_7.jpg\";s:8:\"filesize\";i:127962;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1100','968','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1101','1037','_wp_attached_file','2020/12/fried-chicken-4977369_1920.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1102','1037','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:38:\"2020/12/fried-chicken-4977369_1920.jpg\";s:8:\"filesize\";i:171584;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1104','1037','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1105','1066','_wp_attached_file','2020/12/pizza-in-take-out-box-isolated-T2DQ9YN.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1106','1066','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1158;s:4:\"file\";s:50:\"2020/12/pizza-in-take-out-box-isolated-T2DQ9YN.png\";s:8:\"filesize\";i:388534;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1108','1066','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1109','1072','_wp_attached_file','2020/12/app-store-black.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1110','1072','_wp_attachment_metadata','a:6:{s:5:\"width\";i:172;s:6:\"height\";i:57;s:4:\"file\";s:27:\"2020/12/app-store-black.png\";s:8:\"filesize\";i:5348;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1112','1072','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1113','1073','_wp_attached_file','2020/12/google-play-black.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1114','1073','_wp_attachment_metadata','a:6:{s:5:\"width\";i:194;s:6:\"height\";i:58;s:4:\"file\";s:29:\"2020/12/google-play-black.png\";s:8:\"filesize\";i:5123;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1116','1073','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1117','1085','_wp_attached_file','2020/12/pizzabox1.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1118','1085','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1120;s:6:\"height\";i:1014;s:4:\"file\";s:21:\"2020/12/pizzabox1.jpg\";s:8:\"filesize\";i:105988;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1120','1085','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1121','1112','_wp_attached_file','2020/12/4-2346237347834.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1122','1112','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1271;s:4:\"file\";s:27:\"2020/12/4-2346237347834.jpg\";s:8:\"filesize\";i:108753;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1124','1112','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1125','1125','_wp_attached_file','2020/12/2.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1126','1125','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:13:\"2020/12/2.jpg\";s:8:\"filesize\";i:63730;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1128','1125','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1129','1134','_wp_attached_file','2020/12/4.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1130','1134','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:13:\"2020/12/4.jpg\";s:8:\"filesize\";i:104597;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1132','1134','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1133','1136','_wp_attached_file','2020/12/6-e1607700582104.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1134','1136','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1120;s:6:\"height\";i:853;s:4:\"file\";s:28:\"2020/12/6-e1607700582104.jpg\";s:8:\"filesize\";i:106167;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1135','1136','_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:5:\"6.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:13:\"6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:13:\"6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:13:\"6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:14:\"6-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:13:\"6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:13:\"6-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:13:\"6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:13:\"6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:13:\"6-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:13:\"6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1137','1136','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1138','1171','_wp_attached_file','2020/12/555.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1139','1171','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:930;s:4:\"file\";s:15:\"2020/12/555.jpg\";s:8:\"filesize\";i:133158;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1141','1171','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1142','1236','_wp_attached_file','2020/12/transparent-img.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1143','1236','_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:61;s:4:\"file\";s:27:\"2020/12/transparent-img.png\";s:8:\"filesize\";i:103;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1145','1236','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1146','1240','_wp_attached_file','2020/12/olga-team-DijH3cxId6w-unsplash.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1147','1240','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1335;s:6:\"height\";i:1024;s:4:\"file\";s:42:\"2020/12/olga-team-DijH3cxId6w-unsplash.png\";s:8:\"filesize\";i:221797;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1149','1240','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1150','1251','_wp_attached_file','2020/12/about-us-img-1.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1151','1251','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:733;s:4:\"file\";s:26:\"2020/12/about-us-img-1.jpg\";s:8:\"filesize\";i:82708;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1153','1251','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1154','1266','_wp_attached_file','2020/12/tomato-2.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1155','1266','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1394;s:6:\"height\";i:1050;s:4:\"file\";s:20:\"2020/12/tomato-2.jpg\";s:8:\"filesize\";i:149483;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1157','1266','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1158','1287','_wp_attached_file','2020/12/4-2346237347834.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1159','1287','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1271;s:4:\"file\";s:27:\"2020/12/4-2346237347834.png\";s:8:\"filesize\";i:148807;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1161','1287','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1162','1293','_wp_attached_file','2020/12/food-2879395_1920.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1163','1293','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1900;s:6:\"height\";i:1258;s:4:\"file\";s:29:\"2020/12/food-2879395_1920.jpg\";s:8:\"filesize\";i:365954;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1165','1293','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1166','1303','_wp_attached_file','2020/12/5-2346237347834.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1167','1303','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1271;s:4:\"file\";s:27:\"2020/12/5-2346237347834.jpg\";s:8:\"filesize\";i:99376;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1169','1303','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1170','1401','_wp_attached_file','2020/12/3563.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1171','1401','_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:16:\"2020/12/3563.jpg\";s:8:\"filesize\";i:26085;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1173','1401','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1174','1402','_wp_attached_file','2020/12/6426.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1175','1402','_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:16:\"2020/12/6426.jpg\";s:8:\"filesize\";i:33635;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1177','1402','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1178','1403','_wp_attached_file','2020/12/23525.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1179','1403','_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:17:\"2020/12/23525.jpg\";s:8:\"filesize\";i:36717;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1181','1403','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1182','1404','_wp_attached_file','2020/12/3246264.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1183','1404','_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:19:\"2020/12/3246264.jpg\";s:8:\"filesize\";i:35634;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1185','1404','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1186','1416','_wp_attached_file','2020/12/signature5fd4f610696d4-e1607792199782.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1187','1416','_wp_attachment_metadata','a:6:{s:5:\"width\";i:228;s:6:\"height\";i:71;s:4:\"file\";s:49:\"2020/12/signature5fd4f610696d4-e1607792199782.png\";s:8:\"filesize\";i:1590;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1188','1416','_wp_attachment_backup_sizes','a:4:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:282;s:6:\"height\";i:97;s:4:\"file\";s:26:\"signature5fd4f610696d4.png\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:33:\"signature5fd4f610696d4-150x97.png\";s:5:\"width\";i:150;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:33:\"signature5fd4f610696d4-100x97.png\";s:5:\"width\";i:100;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:33:\"signature5fd4f610696d4-100x97.png\";s:5:\"width\";i:100;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1190','1416','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1191','1419','_wp_attached_file','2020/12/stefan-c-asafti-9p6pFEwq-wI-unsplash.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1192','1419','_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:48:\"2020/12/stefan-c-asafti-9p6pFEwq-wI-unsplash.jpg\";s:8:\"filesize\";i:54653;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1194','1419','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1195','1420','_wp_attached_file','2020/12/florencia-viadana-Uz1ZeMJ2lsI-unsplash.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1196','1420','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1285;s:4:\"file\";s:50:\"2020/12/florencia-viadana-Uz1ZeMJ2lsI-unsplash.jpg\";s:8:\"filesize\";i:183196;s:5:\"sizes\";a:1:{s:24:\"elementor_custom_400x720\";a:4:{s:4:\"file\";s:59:\"elementor/thumbs/florencia-viadana-Uz1ZeMJ2lsI-unsplash.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1198','1420','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1199','1429','_wp_attached_file','2020/12/6956.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1200','1429','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:16:\"2020/12/6956.jpg\";s:8:\"filesize\";i:64624;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1202','1429','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1203','1430','_wp_attached_file','2020/12/8978.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1204','1430','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:16:\"2020/12/8978.jpg\";s:8:\"filesize\";i:62253;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1206','1430','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1207','1431','_wp_attached_file','2020/12/12341.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1208','1431','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:17:\"2020/12/12341.jpg\";s:8:\"filesize\";i:85745;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1210','1431','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1211','1432','_wp_attached_file','2020/12/36737.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1212','1432','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:17:\"2020/12/36737.jpg\";s:8:\"filesize\";i:106424;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1214','1432','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1215','1433','_wp_attached_file','2020/12/77525.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1216','1433','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:17:\"2020/12/77525.jpg\";s:8:\"filesize\";i:63509;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1218','1433','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1219','1434','_wp_attached_file','2020/12/234565.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1220','1434','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2020/12/234565.jpg\";s:8:\"filesize\";i:117587;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1222','1434','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1223','1435','_wp_attached_file','2020/12/5975954.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1224','1435','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2020/12/5975954.jpg\";s:8:\"filesize\";i:83232;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1226','1435','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1227','1437','_wp_attached_file','2020/12/23511455.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1228','1437','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2020/12/23511455.jpg\";s:8:\"filesize\";i:80802;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1230','1437','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1231','1472','_wp_attached_file','2020/12/team-1.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1232','1472','_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:736;s:4:\"file\";s:18:\"2020/12/team-1.jpg\";s:8:\"filesize\";i:63776;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1234','1472','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1235','4','_wp_attached_file','2021/03/woocommerce-placeholder.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1236','4','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2021/03/woocommerce-placeholder.png\";s:8:\"filesize\";i:102644;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1237','4','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1238','360','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1239','533','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1240','1439','_menu_item_type','custom');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1241','1439','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1242','1439','_menu_item_object_id','1439');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1243','1439','_menu_item_object','custom');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1244','1439','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1245','1439','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1246','1439','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1247','1439','_menu_item_url','#');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1248','1439','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1249','1440','_menu_item_type','custom');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1250','1440','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1251','1440','_menu_item_object_id','1440');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1252','1440','_menu_item_object','custom');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1253','1440','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1254','1440','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1255','1440','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1256','1440','_menu_item_url','#');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1257','1440','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1258','1473','_wp_attached_file','2020/12/team-2.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1259','1473','_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:736;s:4:\"file\";s:18:\"2020/12/team-2.jpg\";s:8:\"filesize\";i:24460;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1261','1473','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1266','1475','_wp_attached_file','2020/12/team-4.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1267','1475','_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:736;s:4:\"file\";s:18:\"2020/12/team-4.jpg\";s:8:\"filesize\";i:36630;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1269','1475','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1270','1515','_wp_attached_file','2020/12/hamburger-5630646_e1920-copy.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1271','1515','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1328;s:4:\"file\";s:40:\"2020/12/hamburger-5630646_e1920-copy.jpg\";s:8:\"filesize\";i:174793;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1273','1515','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1274','1531','_wp_attached_file','2020/12/burger-2559087_192e0.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1275','1531','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:586;s:4:\"file\";s:32:\"2020/12/burger-2559087_192e0.png\";s:8:\"filesize\";i:98922;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1277','1531','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1278','1546','_wp_attached_file','2021/01/woocommerce-placeholder.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1279','1546','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2021/01/woocommerce-placeholder.png\";s:8:\"filesize\";i:102644;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1280','1546','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1281','1548','_menu_item_type','custom');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1282','1548','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1283','1548','_menu_item_object_id','1548');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1284','1548','_menu_item_object','custom');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1285','1548','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1286','1548','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1287','1548','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1288','1548','_menu_item_url','#');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1289','1548','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1290','1549','_menu_item_type','custom');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1291','1549','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1292','1549','_menu_item_object_id','1549');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1293','1549','_menu_item_object','custom');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1294','1549','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1295','1549','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1296','1549','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1297','1549','_menu_item_url','#');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1298','1549','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1299','1550','_menu_item_type','custom');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1300','1550','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1301','1550','_menu_item_object_id','1550');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1302','1550','_menu_item_object','custom');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1303','1550','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1304','1550','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1305','1550','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1306','1550','_menu_item_url','#');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1307','1550','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1308','1551','_menu_item_type','custom');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1309','1551','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1310','1551','_menu_item_object_id','1551');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1311','1551','_menu_item_object','custom');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1312','1551','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1313','1551','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1314','1551','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1315','1551','_menu_item_url','#');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1316','1551','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1327','1567','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1328','1567','_elementor_template_type','kit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1329','1567','_elementor_version','3.1.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1330','1567','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1331','1567','_elementor_page_settings','a:2:{s:13:\"custom_colors\";a:9:{i:0;a:3:{s:3:\"_id\";s:8:\"kadence1\";s:5:\"title\";s:12:\"Theme Accent\";s:5:\"color\";s:7:\"#a5141a\";}i:1;a:3:{s:3:\"_id\";s:8:\"kadence2\";s:5:\"title\";s:18:\"Theme Accent - alt\";s:5:\"color\";s:7:\"#ffb91a\";}i:2;a:3:{s:3:\"_id\";s:8:\"kadence3\";s:5:\"title\";s:14:\"Strongest text\";s:5:\"color\";s:7:\"#0e0e0e\";}i:3;a:3:{s:3:\"_id\";s:8:\"kadence4\";s:5:\"title\";s:11:\"Strong Text\";s:5:\"color\";s:7:\"#383838\";}i:4;a:3:{s:3:\"_id\";s:8:\"kadence5\";s:5:\"title\";s:11:\"Medium text\";s:5:\"color\";s:7:\"#6b6b6b\";}i:5;a:3:{s:3:\"_id\";s:8:\"kadence6\";s:5:\"title\";s:11:\"Subtle Text\";s:5:\"color\";s:7:\"#8d8d8d\";}i:6;a:3:{s:3:\"_id\";s:8:\"kadence7\";s:5:\"title\";s:17:\"Subtle Background\";s:5:\"color\";s:7:\"#eeeeee\";}i:7;a:3:{s:3:\"_id\";s:8:\"kadence8\";s:5:\"title\";s:18:\"Lighter Background\";s:5:\"color\";s:7:\"#f8f8f8\";}i:8;a:3:{s:3:\"_id\";s:8:\"kadence9\";s:5:\"title\";s:17:\"White or offwhite\";s:5:\"color\";s:7:\"#ffffff\";}}s:14:\"kadence_colors\";a:9:{i:0;a:3:{s:3:\"_id\";s:8:\"palette1\";s:5:\"title\";s:12:\"Theme Accent\";s:5:\"color\";s:7:\"#a5141a\";}i:1;a:3:{s:3:\"_id\";s:8:\"palette2\";s:5:\"title\";s:18:\"Theme Accent - alt\";s:5:\"color\";s:7:\"#ffb91a\";}i:2;a:3:{s:3:\"_id\";s:8:\"palette3\";s:5:\"title\";s:14:\"Strongest text\";s:5:\"color\";s:7:\"#0e0e0e\";}i:3;a:3:{s:3:\"_id\";s:8:\"palette4\";s:5:\"title\";s:11:\"Strong Text\";s:5:\"color\";s:7:\"#383838\";}i:4;a:3:{s:3:\"_id\";s:8:\"palette5\";s:5:\"title\";s:11:\"Medium text\";s:5:\"color\";s:7:\"#6b6b6b\";}i:5;a:3:{s:3:\"_id\";s:8:\"palette6\";s:5:\"title\";s:11:\"Subtle Text\";s:5:\"color\";s:7:\"#8d8d8d\";}i:6;a:3:{s:3:\"_id\";s:8:\"palette7\";s:5:\"title\";s:17:\"Subtle Background\";s:5:\"color\";s:7:\"#eeeeee\";}i:7;a:3:{s:3:\"_id\";s:8:\"palette8\";s:5:\"title\";s:18:\"Lighter Background\";s:5:\"color\";s:7:\"#f8f8f8\";}i:8;a:3:{s:3:\"_id\";s:8:\"palette9\";s:5:\"title\";s:17:\"White or offwhite\";s:5:\"color\";s:7:\"#ffffff\";}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1332','1567','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1333','1654','_wp_attached_file','2021/03/category-5.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1334','1654','_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2021/03/category-5.jpg\";s:8:\"filesize\";i:29236;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1336','1654','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1337','15','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1338','15','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1339','15','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1340','15','_kad_pagebuilder_layout_flag','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1341','15','_kad_post_title','hide');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1342','15','_kad_post_content_style','unboxed');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1343','15','_kad_post_vertical_padding','hide');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1344','15','_kad_post_feature','hide');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1345','15','_kad_post_layout','fullwidth');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1346','15','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1347','15','_elementor_data','[{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elegance \\nRedefined\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"exclusive-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"man-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Men\'s Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"stylish \",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"New Arrivals\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Best Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Top Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2C093B\"},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our style\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"title_color\":\"#9C05EC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick &amp; Fashion\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#720091\"},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#27052A\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"id\":1715,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own <span style=\\\"background-color: rgb(47, 5, 54);\\\">Style<\\/span><br>\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#2F0536\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\",\"id\":1714,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Style\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Style\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1348','15','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1351','15','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1352','1562','_menu_item_type','post_type');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1353','1562','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1354','1562','_menu_item_object_id','15');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1355','1562','_menu_item_object','page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1356','1562','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1357','1562','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1358','1562','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1359','1562','_menu_item_url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1360','1562','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1361','1563','_menu_item_type','post_type');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1362','1563','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1363','1563','_menu_item_object_id','14');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1364','1563','_menu_item_object','page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1365','1563','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1366','1563','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1367','1563','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1368','1563','_menu_item_url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1370','1563','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1371','1564','_menu_item_type','post_type');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1372','1564','_menu_item_menu_item_parent','1439');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1373','1564','_menu_item_object_id','865');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1374','1564','_menu_item_object','page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1375','1564','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1376','1564','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1377','1564','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1378','1564','_menu_item_url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1380','1564','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1401','1679','_menu_item_type','post_type');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1402','1679','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1403','1679','_menu_item_object_id','15');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1404','1679','_menu_item_object','page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1405','1679','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1406','1679','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1407','1679','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1408','1679','_menu_item_url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1409','1679','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1410','1680','_menu_item_type','post_type');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1411','1680','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1412','1680','_menu_item_object_id','509');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1413','1680','_menu_item_object','page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1414','1680','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1415','1680','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1416','1680','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1417','1680','_menu_item_url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1419','1680','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1420','1681','_menu_item_type','post_type');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1421','1681','_menu_item_menu_item_parent','1689');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1422','1681','_menu_item_object_id','511');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1423','1681','_menu_item_object','page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1424','1681','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1425','1681','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1426','1681','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1427','1681','_menu_item_url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1429','1681','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1430','1682','_menu_item_type','post_type');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1431','1682','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1432','1682','_menu_item_object_id','14');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1433','1682','_menu_item_object','page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1434','1682','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1435','1682','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1436','1682','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1437','1682','_menu_item_url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1439','1682','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1450','1684','_menu_item_type','post_type');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1451','1684','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1452','1684','_menu_item_object_id','1547');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1453','1684','_menu_item_object','page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1454','1684','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1455','1684','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1456','1684','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1457','1684','_menu_item_url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1459','1684','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1480','1687','_menu_item_type','post_type');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1481','1687','_menu_item_menu_item_parent','1689');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1482','1687','_menu_item_object_id','865');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1483','1687','_menu_item_object','page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1484','1687','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1485','1687','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1486','1687','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1487','1687','_menu_item_url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1489','1687','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1500','1689','_menu_item_type','custom');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1501','1689','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1502','1689','_menu_item_object_id','1689');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1503','1689','_menu_item_object','custom');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1504','1689','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1505','1689','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1506','1689','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1507','1689','_menu_item_url','#');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1508','1689','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1514','6','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1515','7','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1516','8','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1517','14','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1518','14','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1519','14','_elementor_version','3.1.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1520','14','_kad_pagebuilder_layout_flag','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1521','14','_kad_post_title','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1522','14','_kad_post_content_style','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1523','14','_kad_post_vertical_padding','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1524','14','_kad_post_feature','hide');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1525','14','_kad_post_layout','fullwidth');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1526','14','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1527','14','_elementor_data','[{\"id\":\"66f1540e\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":610,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/map.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"63929849\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"284d0ee0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"238c0187\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"top\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"39421a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"288fa2bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"To make requests for further information, contact us via our social channels.\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62f5a990\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We just need a couple of hours!<br \\/>No more than 2 working days since receiving your issue ticket.<\\/p>\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e89608c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d2c642\",\"elType\":\"widget\",\"settings\":{\"form_list\":\"1\",\"labels_switch\":\"\",\"form_submit_button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"form_submit_button_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"40\",\"bottom\":\"13\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"form_submit_button_bg_color_normal\":\"globals\\/colors?id=kadence1\"},\"form_field_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"form_field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"form_field_typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"form_submit_button_align\":\"left\",\"form_submit_button_typography_typography\":\"custom\",\"form_submit_button_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"form_submit_button_width_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"fluent-form-widget\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a794c18\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EEEEEE\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18bcd94c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d426ac1\",\"elType\":\"widget\",\"settings\":{\"title\":\"San Francisco\",\"header_size\":\"h6\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1336dcfd\",\"elType\":\"widget\",\"settings\":{\"title\":\"5 Street #2 San Francisco\",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c886929\",\"elType\":\"widget\",\"settings\":{\"title\":\"+7 (928)-123-45-45\\n\",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7304489\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"#\\\">hello@yourdomain.co<\\/a>\",\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fef51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"437cbecc\",\"elType\":\"widget\",\"settings\":{\"title\":\"New York\\n\",\"header_size\":\"h6\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d388f01\",\"elType\":\"widget\",\"settings\":{\"title\":\"58 Howard Street #2 New York\",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2338ebbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"+7 (928)-123-45-45\\n\",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36c58b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"#\\\">hello@yourdomain.co<\\/a>\",\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4d7634f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36c53499\",\"elType\":\"widget\",\"settings\":{\"title\":\"London\",\"header_size\":\"h6\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21b43806\",\"elType\":\"widget\",\"settings\":{\"title\":\"58 Howard Street #2 London\\n\",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38ea9407\",\"elType\":\"widget\",\"settings\":{\"title\":\"+7 (928)-123-45-45\\n\",\"header_size\":\"h5\",\"align_tablet\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56128b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"#\\\">hello@yourdomain.co<\\/a>\",\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73ce153\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c7f1197\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b402ec0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1528','14','kt_blocks_editor_width','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1529','14','_kad_post_transparent','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1530','14','_kad_post_sidebar_id','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1531','14','_kad_post_feature_position','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1532','14','_kad_post_header','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1533','14','_kad_post_footer','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1534','14','_has_fluentform','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1535','14','_elementor_controls_usage','a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:14;s:11:\"header_size\";i:14;s:12:\"align_tablet\";i:13;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:21:\"typography_typography\";i:5;s:20:\"typography_font_size\";i:4;s:22:\"typography_line_height\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:6;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:12:\"align_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:5;s:16:\"content_position\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:5;s:14:\"padding_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:2;}}}}s:18:\"fluent-form-widget\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"section_fluent_form\";a:2:{s:9:\"form_list\";i:1;s:13:\"labels_switch\";i:1;}}s:5:\"style\";a:2:{s:32:\"section_form_submit_button_style\";a:6:{s:32:\"form_submit_button_border_radius\";i:1;s:26:\"form_submit_button_padding\";i:1;s:24:\"form_submit_button_align\";i:1;s:40:\"form_submit_button_typography_typography\";i:1;s:39:\"form_submit_button_typography_font_size\";i:1;s:31:\"form_submit_button_width_tablet\";i:1;}s:25:\"section_form_fields_style\";a:3:{s:17:\"form_field_radius\";i:1;s:31:\"form_field_typography_font_size\";i:1;s:33:\"form_field_typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:1:{s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;s:6:\"margin\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;s:30:\"background_overlay_size_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1536','14','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1576','509','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1577','509','_elementor_version','3.0.14');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1578','509','_kad_pagebuilder_layout_flag','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1579','509','_kad_post_title','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1580','509','_kad_post_content_style','boxed');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1581','509','_kad_post_vertical_padding','bottom');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1582','509','_kad_post_feature','hide');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1583','509','_kad_post_layout','normal');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1584','509','_kad_post_transparent','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1585','509','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1586','511','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1587','511','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1588','511','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1589','511','_kad_pagebuilder_layout_flag','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1590','511','_kad_post_title','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1591','511','_kad_post_content_style','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1592','511','_kad_post_vertical_padding','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1593','511','_kad_post_feature','hide');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1594','511','_kad_post_layout','fullwidth');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1595','511','kt_blocks_editor_width','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1596','511','_kad_post_transparent','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1597','511','_kad_post_sidebar_id','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1598','511','_kad_post_feature_position','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1599','511','_kad_post_header','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1600','511','_kad_post_footer','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1601','511','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1602','511','_elementor_data','[{\"id\":\"5f186bc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"22\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#14061A\"},\"elements\":[{\"id\":\"a78a2b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"51ff9b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"_margin\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align_tablet\":\"center\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f0b8e95\",\"elType\":\"widget\",\"settings\":{\"title\":\"The story about <br>our SHOP\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744ebba\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c32e1d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":20,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0742b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/\\u2014Pngtree\\u2014letter-t-shopping-logo-alphabet_6953022.png\",\"id\":1723,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"720\"},\"image_box_shadow_box_shadow\":{\"horizontal\":-20,\"vertical\":20,\"blur\":0,\"spread\":0,\"color\":\"#FFE636\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"993ddb0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.png\",\"id\":1287},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ca7559\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"8951d5b\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.png\",\"id\":1287},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"60\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"118e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e06349e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"e5a85e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e4cd2d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"86c7aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d68b61\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"0433fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2741301\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e280ef3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"4978b809\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78d5fab1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"5f900540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"da32baa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1472,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-1.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"434abb3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"78bf26d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"William Smith\\n\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"52d0d2a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61452188\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"2786e6c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b55d091\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1474,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-3.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"317fef3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1472,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-1.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73cb0b42\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"63a68d6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karen Goldsmith\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4819b772\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20650ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"26c02b88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fd05b7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1475,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-4.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d9a434c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"7b844484\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andrew Martinez\\n\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"17bbd378\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"399e39c9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"293e41fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"28a4b189\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1473,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-2.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18c98f34\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"566ebc6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Matthew Anderson\\n\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9881ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a4721\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9e8d18b\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\"},{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\"},{\"id\":1731,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM-1.jpg\"},{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\"}],\"thumbnail_size\":\"full\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1605','511','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1626','865','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1627','865','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1628','865','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1629','865','_kad_pagebuilder_layout_flag','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1630','865','_kad_post_title','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1631','865','_kad_post_content_style','unboxed');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1632','865','_kad_post_vertical_padding','hide');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1633','865','_kad_post_feature','hide');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1634','865','_kad_post_layout','fullwidth');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1635','865','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1636','865','_elementor_data','[{\"id\":\"2c66e6c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"background_position_tablet\":\"center right\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"a9018ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"cf1eb61\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3ea7037\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"803fa42\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa7f0a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"afb6890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Offer Today\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf446b9\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"align\":\"left\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a3964cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12cf9a1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"f0aee7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":20,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/jakub-kapusnak-4f4YZfDMLeU-unsplash.jpg\",\"id\":560},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#272727\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"e805f9b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"96bd556\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"26e9da4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"efece87\",\"elType\":\"widget\",\"settings\":{\"title\":\"EVERY DAY<br> SPECIALS\\n\",\"header_size\":\"h4\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3aef0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"14d8257\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":20,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/paula-vermeulen-URjZkhqsuBk-unsplash.jpg\",\"id\":556},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#272727\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"869c4d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"883412a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"76d01e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_09-PM.png\",\"id\":1726,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a5476d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIZZERIA <br>RESERVATIONS\",\"header_size\":\"h4\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"84405ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9c3381a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":20,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/terry-jaskiw-HSQdIUL3o1s-unsplash.jpg\",\"id\":559},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#272727\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"d053e94\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"0994065\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"e05f62f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c3c5017\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE DELIVER <br>AT YOUR DOOR\",\"header_size\":\"h4\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc47d8c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c311672\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73f8873\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fdb04c6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[{\"id\":\"9a4ac74\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bd51fdc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best style\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c179c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE\\u2019VE GOT YOU COVERED!\\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae01587\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1637','865','kt_blocks_editor_width','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1638','865','_kad_post_transparent','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1639','865','_kad_post_sidebar_id','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1640','865','_kad_post_feature_position','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1641','865','_kad_post_header','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1642','865','_kad_post_footer','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1643','865','_oembed_6cf41a009c03f9a5d4fd5756b853e246','<iframe title=\"Video Placeholder\" width=\"720\" height=\"405\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1644','865','_oembed_time_6cf41a009c03f9a5d4fd5756b853e246','1607709353');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1647','865','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1648','1547','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1649','1547','_elementor_version','3.1.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1650','1547','_kadence_starter_templates_imported_post','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1958','1690','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1959','1690','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1960','1690','_elementor_version','3.1.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1961','1690','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1962','1690','_elementor_data','[{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/homemade-tasty-beef-burger-FRT5PYB.jpg\",\"id\":332},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence2\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"DELIVERY \\nDRIVE-THRU \\nPICKUP\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":681,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-4.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Burger\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":678,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-7.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Pizza\\u200b\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":682,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-1.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Combo\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":679,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-6.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Chicken\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1654,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2021\\/03\\/category-5.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Kids Menu\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":677,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-8.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Dessert\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":683,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-2.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Sauce\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":684,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-3.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Drinks\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/6-e1607700582104.jpg\",\"id\":1136},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet, Eat & Enjoy the <br>true Taste\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/2.jpg\",\"id\":1125},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4.jpg\",\"id\":1134},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/tomato-2.jpg\",\"id\":1266},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our Food\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Texas with American Love\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/salad-2068220_1920.jpg\",\"id\":849},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick & Healthy<br> Dinner\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4183063a\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_repeat\":\"no-repeat\",\"background_size_tablet\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.png\",\"id\":1287},\"background_attachment\":\"fixed\",\"background_overlay_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"34f9fc80\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ECECEC\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[{\"id\":\"57144589\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"shape_divider_top\":\"zigzag\",\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":600,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"shape_divider_bottom\":\"zigzag\",\"shape_divider_bottom_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":600,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=kadence1\",\"background_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[{\"id\":\"2cfa46fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"76711df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tasty & fresh\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c5b9bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Main Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47288f41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast Mood ..... $29.00\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52504737\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"35ab1e81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Drinking Prospect  ..... $9.45\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"704bf48d\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24bdc6d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pizza Time  ..... $12.45\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30488fe1\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c564c60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grilled Chicken ..... $19.45\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ac8ae1\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"52fcee93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fb3674\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/burger-2559087_192e0.png\",\"id\":1531},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-180\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"-40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"-30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7967362c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"12fb63d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49a2a692\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tasty & crunchy\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bef31d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recommended today\",\"align\":\"center\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d97e728\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef24c02\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"2a3ac271\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"65631e82\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"74b937f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"302d4f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_9.jpg\",\"id\":958},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2cd582bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18459d48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"789d7437\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6de4d3\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f23e064\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"59ec85c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"82ca897\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3142757\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"14c20f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_1.jpg\",\"id\":963},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5f26ca3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d9ad0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fdd1c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c0bcab\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d77945\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"faaf493\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"e71d0dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"91ca3f1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3b6c169\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"63b2a39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_4.jpg\",\"id\":965},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2fbb92e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c5c7ad1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa2d722\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2253523\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6909076\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5062f23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"85c2437\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"d092940\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"93cef18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product-13.jpg\",\"id\":955},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"07699a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07db952\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f966a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce2ca1a\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51e3df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_6.jpg\",\"id\":967},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_12.jpg\",\"id\":961},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/food-2879395_1920.jpg\",\"id\":1293},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Order Your <br>Favorite Food\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence2\"},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3538c48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Each\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=kadence1\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ac8f43c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"top right\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/5-2346237347834.jpg\",\"id\":1303},\"background_attachment\":\"fixed\",\"background_overlay_position\":\"top right\",\"background_overlay_size\":\"cover\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"383d3048\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bc6d41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0186323\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Reviews\",\"align\":\"center\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6db08a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80e7026\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b81a5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"aeb8393\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/3246264.jpg\",\"id\":1404},\"testimonial_name\":\"Randall McKnight\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"},{\"id\":\"56cd276\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/6426.jpg\",\"id\":1402},\"testimonial_name\":\"Pamela Stover\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"3be1a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"fa55d08\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/23525.jpg\",\"id\":1403},\"testimonial_name\":\"Regina Good\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"},{\"id\":\"829f6a3\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/3563.jpg\",\"id\":1401},\"testimonial_name\":\"Roberta Taylor\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"563a1912\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"bottom right\",\"background_size\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"350\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"250\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/pizza-in-take-out-box-isolated-T2DQ9YN.png\",\"id\":1066},\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":52,\"sizes\":[]},\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"2b046ade\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"18ddf601\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1fb6609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"cc3d9a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free Delivery\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"110ca69d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Download Our App &<br> Order Online To Get <br>Free Delivery\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"de1c077\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>We are the country\'s no.1 Fast food retailer with 10+ years of reputation. Country\'s best burger and pizza are delivered by us.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"160a8b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"90daec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.945,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"d7727e1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/google-play-black.png\",\"id\":1073},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4373b78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.055,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a7630a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/app-store-black.png\",\"id\":1072},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4297063b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"247f424\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/img-11-min.png\",\"id\":129},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"align_tablet\":\"center\",\"align_mobile\":\"right\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"268830e0\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29158e8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43c08fa7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ed630e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"2bbe3baa\",\"elType\":\"widget\",\"settings\":{\"title\":\"BOOK YOUR TABLE NOW FOR THE BEST CHOW\\n\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"731aaa8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"676db51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download App\",\"align\":\"right\",\"icon_align\":\"right\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\",\"button_text_color\":\"\"},\"align_tablet\":\"center\",\"button_text_color\":\"#ffffff\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#ffb91a\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1963','1690','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1964','1690','_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:38;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:6:{s:5:\"title\";i:38;s:11:\"header_size\";i:30;s:12:\"align_tablet\";i:20;s:4:\"link\";i:3;s:5:\"align\";i:13;s:12:\"align_mobile\";i:23;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:10:{s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:28;s:27:\"typography_font_size_mobile\";i:11;s:11:\"title_color\";i:13;s:25:\"typography_letter_spacing\";i:7;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:19;s:25:\"typography_text_transform\";i:22;s:22:\"typography_font_weight\";i:14;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:25;}s:17:\"_section_position\";a:2:{s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:12;s:12:\"align_tablet\";i:10;s:10:\"icon_align\";i:11;s:5:\"align\";i:9;s:12:\"align_mobile\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:25:\"button_hover_border_color\";i:1;s:12:\"border_color\";i:1;s:16:\"background_color\";i:7;s:29:\"button_background_hover_color\";i:6;s:13:\"border_border\";i:6;s:12:\"border_width\";i:6;s:13:\"border_radius\";i:6;s:12:\"text_padding\";i:6;s:33:\"button_box_shadow_box_shadow_type\";i:6;s:28:\"button_box_shadow_box_shadow\";i:6;s:17:\"button_text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:62;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:62;s:19:\"_inline_size_tablet\";i:51;s:16:\"content_position\";i:19;s:21:\"space_between_widgets\";i:11;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:15;s:7:\"padding\";i:19;s:13:\"margin_tablet\";i:10;s:14:\"padding_tablet\";i:13;s:13:\"margin_mobile\";i:8;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:5:{s:27:\"background_hover_background\";i:8;s:21:\"background_background\";i:21;s:19:\"background_position\";i:5;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:5;}s:14:\"section_border\";a:6:{s:13:\"border_border\";i:8;s:12:\"border_width\";i:9;s:12:\"border_color\";i:9;s:13:\"border_radius\";i:9;s:19:\"border_hover_border\";i:8;s:18:\"border_hover_width\";i:8;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:8:{s:6:\"height\";i:12;s:13:\"custom_height\";i:14;s:20:\"custom_height_tablet\";i:4;s:20:\"custom_height_mobile\";i:2;s:12:\"height_inner\";i:12;s:19:\"custom_height_inner\";i:11;s:13:\"content_width\";i:3;s:16:\"content_position\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:23;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:10:{s:21:\"background_background\";i:24;s:16:\"background_image\";i:9;s:19:\"background_position\";i:18;s:15:\"background_size\";i:18;s:17:\"background_repeat\";i:3;s:16:\"background_color\";i:5;s:22:\"background_size_tablet\";i:2;s:21:\"background_attachment\";i:2;s:19:\"background_bg_width\";i:1;s:26:\"background_bg_width_tablet\";i:1;}s:26:\"section_background_overlay\";a:12:{s:29:\"background_overlay_background\";i:6;s:24:\"background_overlay_color\";i:5;s:26:\"background_overlay_color_b\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;s:26:\"background_overlay_opacity\";i:10;s:27:\"background_overlay_position\";i:8;s:23:\"background_overlay_size\";i:7;s:35:\"background_overlay_hover_transition\";i:1;s:24:\"background_overlay_image\";i:1;s:29:\"background_overlay_attachment\";i:1;s:25:\"background_overlay_repeat\";i:2;s:34:\"background_overlay_position_tablet\";i:1;}s:14:\"section_border\";a:7:{s:13:\"border_radius\";i:10;s:12:\"border_width\";i:7;s:21:\"box_shadow_box_shadow\";i:6;s:13:\"border_border\";i:6;s:12:\"border_color\";i:6;s:19:\"border_hover_border\";i:6;s:18:\"border_hover_width\";i:6;}s:21:\"section_shape_divider\";a:8:{s:24:\"shape_divider_top_height\";i:3;s:22:\"shape_divider_top_flip\";i:1;s:26:\"shape_divider_top_negative\";i:1;s:23:\"shape_divider_top_width\";i:2;s:17:\"shape_divider_top\";i:1;s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:19;s:7:\"padding\";i:24;s:13:\"margin_mobile\";i:10;s:14:\"padding_tablet\";i:17;s:14:\"padding_mobile\";i:15;s:13:\"margin_tablet\";i:7;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:8;s:14:\"thumbnail_size\";i:8;s:10:\"title_text\";i:8;s:16:\"description_text\";i:8;s:10:\"title_size\";i:8;s:4:\"link\";i:8;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:3:{s:11:\"image_space\";i:8;s:10:\"image_size\";i:8;s:15:\"hover_animation\";i:8;}s:21:\"section_style_content\";a:2:{s:26:\"title_typography_font_size\";i:8;s:27:\"title_typography_typography\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:20;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:7;s:12:\"align_tablet\";i:12;s:12:\"align_mobile\";i:14;s:20:\"typography_font_size\";i:13;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:13;s:22:\"typography_line_height\";i:10;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:14;s:8:\"_padding\";i:10;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:8:{s:5:\"image\";i:11;s:12:\"align_tablet\";i:3;s:10:\"image_size\";i:9;s:22:\"image_custom_dimension\";i:6;s:5:\"align\";i:3;s:7:\"link_to\";i:2;s:4:\"link\";i:2;s:12:\"align_mobile\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:5;s:14:\"_margin_mobile\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:3;s:12:\"width_mobile\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:3:{s:13:\"ending_number\";i:3;s:5:\"title\";i:4;s:6:\"suffix\";i:3;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:29:\"typography_number_line_height\";i:4;}s:13:\"section_title\";a:5:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_line_height\";i:4;s:31:\"typography_title_letter_spacing\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:17:\"icon_align_mobile\";i:1;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:4:{s:11:\"text_indent\";i:1;s:27:\"icon_typography_font_family\";i:1;s:27:\"icon_typography_font_weight\";i:1;s:10:\"text_color\";i:1;}}}}s:11:\"testimonial\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_testimonial\";a:3:{s:17:\"testimonial_image\";i:4;s:16:\"testimonial_name\";i:4;s:15:\"testimonial_job\";i:4;}}s:5:\"style\";a:2:{s:33:\"section_style_testimonial_content\";a:2:{s:29:\"content_typography_typography\";i:4;s:28:\"content_typography_font_size\";i:4;}s:30:\"section_style_testimonial_name\";a:4:{s:26:\"name_typography_typography\";i:4;s:25:\"name_typography_font_size\";i:4;s:27:\"name_typography_font_weight\";i:4;s:30:\"name_typography_text_transform\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:4;}s:15:\"_section_border\";a:2:{s:14:\"_border_radius\";i:4;s:22:\"_box_shadow_box_shadow\";i:4;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1971','1692','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1972','1692','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1973','1692','_elementor_version','3.1.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1974','1692','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1975','1692','_elementor_data','[{\"id\":\"5f186bc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"22\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a78a2b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"51ff9b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"_margin\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align_tablet\":\"center\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f0b8e95\",\"elType\":\"widget\",\"settings\":{\"title\":\"The story about <br>our pizzeria\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744ebba\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d2731a5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0b9ab8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fe2ad05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Our Restaurant\\n\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d1e8d4\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c45b467\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/stefan-c-asafti-9p6pFEwq-wI-unsplash.jpg\",\"id\":1419},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30e44bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"333b57c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our family history\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4593654\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59c457a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5179301\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founded in 1973\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89a0e68\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a81383\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/signature5fd4f610696d4-e1607792199782.png\",\"id\":1416},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c32e1d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":20,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0742b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/florencia-viadana-Uz1ZeMJ2lsI-unsplash.jpg\",\"id\":1420},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"720\"},\"image_box_shadow_box_shadow\":{\"horizontal\":-20,\"vertical\":20,\"blur\":0,\"spread\":0,\"color\":\"#FFE636\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"993ddb0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.png\",\"id\":1287},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ca7559\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"8951d5b\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.png\",\"id\":1287},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"60\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"118e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e06349e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"e5a85e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e4cd2d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"86c7aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d68b61\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"0433fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2741301\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176a07f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"05b19ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f39c79c\",\"elType\":\"widget\",\"settings\":{\"title\":\"learn More\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1abf81d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Great Crew\\n\",\"align\":\"center\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995abe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e280ef3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"4978b809\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78d5fab1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"5f900540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"317fef3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1472,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-1.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"434abb3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"78bf26d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"William Smith\\n\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da39a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Chef\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"52d0d2a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61452188\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"2786e6c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b55d091\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1474,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-3.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73cb0b42\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"63a68d6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karen Goldsmith\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55f490ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cook\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4819b772\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20650ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"26c02b88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fd05b7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1475,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-4.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d9a434c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"7b844484\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andrew Martinez\\n\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"598c4a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cook\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"17bbd378\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"399e39c9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"293e41fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"28a4b189\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1473,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-2.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18c98f34\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"566ebc6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Matthew Anderson\\n\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13c126e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cook\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9881ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a4721\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9e8d18b\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":1433,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/77525.jpg\"},{\"id\":1434,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/234565.jpg\"},{\"id\":1437,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/23511455.jpg\"},{\"id\":1435,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/5975954.jpg\"}],\"thumbnail_size\":\"full\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2258ec\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf26b5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"114896d\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":1429,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/6956.jpg\"},{\"id\":1430,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/8978.jpg\"},{\"id\":1431,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/12341.jpg\"},{\"id\":1432,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/36737.jpg\"}],\"thumbnail_size\":\"full\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1976','1692','_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:15;s:12:\"align_mobile\";i:2;s:5:\"align\";i:12;s:12:\"align_tablet\";i:5;s:11:\"header_size\";i:13;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:8;s:25:\"typography_text_transform\";i:4;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;s:27:\"typography_font_size_mobile\";i:2;s:27:\"typography_font_size_tablet\";i:1;s:21:\"typography_typography\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:11;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:22:\"typography_font_family\";i:4;s:25:\"typography_letter_spacing\";i:4;s:22:\"typography_line_height\";i:4;s:12:\"align_tablet\";i:4;s:20:\"typography_font_size\";i:4;s:5:\"align\";i:5;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:7;s:5:\"align\";i:1;s:10:\"image_size\";i:2;s:12:\"align_tablet\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:1;s:7:\"opacity\";i:1;s:27:\"image_box_shadow_box_shadow\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:19;s:21:\"space_between_widgets\";i:2;s:5:\"align\";i:1;s:19:\"_inline_size_tablet\";i:12;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:7:\"padding\";i:6;s:13:\"margin_tablet\";i:7;s:14:\"padding_tablet\";i:3;s:6:\"margin\";i:3;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:7;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:7:\"padding\";i:12;s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:3;s:13:\"margin_mobile\";i:5;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:10;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:2;s:27:\"background_overlay_position\";i:2;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:3:{s:13:\"ending_number\";i:3;s:5:\"title\";i:4;s:6:\"suffix\";i:3;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:29:\"typography_number_line_height\";i:4;}s:13:\"section_title\";a:4:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_line_height\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:1:{s:16:\"social_icon_list\";i:4;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:6:{s:10:\"icon_color\";i:4;s:18:\"icon_primary_color\";i:4;s:20:\"icon_secondary_color\";i:4;s:9:\"icon_size\";i:4;s:12:\"icon_padding\";i:4;s:12:\"icon_spacing\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:4;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:4;}}}}s:13:\"image-gallery\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:2:{s:10:\"wp_gallery\";i:2;s:14:\"thumbnail_size\";i:2;}}s:5:\"style\";a:1:{s:22:\"section_gallery_images\";a:2:{s:13:\"image_spacing\";i:2;s:20:\"image_spacing_custom\";i:2;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1977','1698','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1978','1698','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1979','1698','_elementor_version','3.1.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1980','1698','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1981','1698','_elementor_data','[{\"id\":\"2c66e6c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"background_position_tablet\":\"center right\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"a9018ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"cf1eb61\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/olga-team-DijH3cxId6w-unsplash.png\",\"id\":1240},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3ea7037\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"803fa42\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa7f0a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"afb6890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Offer Today\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf446b9\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"align\":\"left\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"059fb2c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Fresh 100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} meat\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"658e1f3\"},{\"text\":\"Fresh 100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} meat\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"1e6e0ba\"},{\"text\":\"Organic vegetables\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"052a638\"},{\"text\":\"Organic vegetables\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"fdb1441\"},{\"text\":\"Brand new taste!\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"b981288\"},{\"text\":\"Brand new taste!\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"33a769a\"}],\"space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_font_family\":\"Source Sans Pro\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"icon_align_mobile\":\"center\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a3964cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12cf9a1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"f0aee7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":20,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/jakub-kapusnak-4f4YZfDMLeU-unsplash.jpg\",\"id\":560},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#272727\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"e805f9b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"96bd556\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"26e9da4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/jakub-kapusnak-4f4YZfDMLeU-unsplash.jpg\",\"id\":560}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"efece87\",\"elType\":\"widget\",\"settings\":{\"title\":\"EVERY DAY<br> SPECIALS\\n\",\"header_size\":\"h4\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3aef0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"14d8257\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":20,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/paula-vermeulen-URjZkhqsuBk-unsplash.jpg\",\"id\":556},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#272727\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"869c4d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"883412a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"76d01e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/paula-vermeulen-URjZkhqsuBk-unsplash.jpg\",\"id\":556}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a5476d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIZZERIA <br>RESERVATIONS\",\"header_size\":\"h4\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"84405ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9c3381a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":20,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/terry-jaskiw-HSQdIUL3o1s-unsplash.jpg\",\"id\":559},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#272727\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"d053e94\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"0994065\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"e05f62f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/terry-jaskiw-HSQdIUL3o1s-unsplash.jpg\",\"id\":559}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c3c5017\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE DELIVER <br>AT YOUR DOOR\",\"header_size\":\"h4\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc47d8c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8a2c7d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/restaurant-690569_1920.jpg\",\"id\":721},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#00000008\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":0,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"352fe54\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36cd4b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The best burgers you will ever find !\\n\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"536299a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"854016d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8171252\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/transparent-img.png\",\"id\":1236},\"lazy_load\":\"yes\",\"lightbox\":\"yes\",\"play_icon_color\":\"#FFFFFF\",\"play_icon_size_mobile\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c311672\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73f8873\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fdb04c6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[{\"id\":\"9a4ac74\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bd51fdc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Menu\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c179c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE\\u2019VE GOT YOU COVERED!\\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae01587\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe0f409\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a9297ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_hover_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_hover_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"27d57cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/FoodIcons-Converted_05.png\",\"id\":876},\"title_text\":\"FAST DELIVERY\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"0250871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_hover_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_hover_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"707f8a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/FoodIcons-Converted_10.png\",\"id\":877},\"title_text\":\"PICKUP IN STORE\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"ac0a0a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_hover_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_hover_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"1ff51ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/FoodIcons-Converted_03.png\",\"id\":875},\"title_text\":\"SEAT RESERVATION\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"e9a253d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_hover_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_hover_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"b1b67ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/FoodIcons-Converted_13.png\",\"id\":878},\"title_text\":\"CATERING IS AN OPTION\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fa8586c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72f1ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"690b0fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6165df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2aa42f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"BOOK YOUR TABLE NOW FOR THE BEST CHOW\\n\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e20ce65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76c7277\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download App\",\"align\":\"right\",\"icon_align\":\"right\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\",\"button_text_color\":\"\"},\"button_text_color\":\"#ffffff\",\"background_color\":\"#ffb91a\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1982','1698','_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:20;s:19:\"_inline_size_tablet\";i:11;s:16:\"content_position\";i:5;s:21:\"space_between_widgets\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:5:{s:21:\"background_background\";i:8;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:15:\"background_size\";i:3;s:27:\"background_hover_background\";i:4;}s:14:\"section_border\";a:6:{s:26:\"box_shadow_box_shadow_type\";i:3;s:21:\"box_shadow_box_shadow\";i:3;s:12:\"border_width\";i:4;s:12:\"border_color\";i:4;s:13:\"border_radius\";i:4;s:18:\"border_hover_width\";i:4;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_color\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:14;s:6:\"margin\";i:3;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:12:\"align_tablet\";i:3;s:5:\"align\";i:6;s:11:\"header_size\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:10:{s:21:\"typography_typography\";i:3;s:25:\"typography_letter_spacing\";i:2;s:27:\"typography_font_size_mobile\";i:3;s:27:\"typography_font_size_tablet\";i:1;s:20:\"typography_font_size\";i:3;s:11:\"title_color\";i:2;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:7;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:22:\"typography_font_family\";i:1;s:25:\"typography_letter_spacing\";i:1;s:22:\"typography_line_height\";i:1;s:12:\"align_tablet\";i:1;s:20:\"typography_font_size\";i:1;s:5:\"align\";i:5;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:1;s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;s:17:\"icon_align_mobile\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:3:{s:11:\"text_indent\";i:1;s:27:\"icon_typography_font_family\";i:1;s:25:\"icon_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:3;s:10:\"icon_align\";i:2;s:12:\"align_tablet\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:16:\"content_position\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:2;s:20:\"custom_height_tablet\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:7:\"padding\";i:6;s:6:\"margin\";i:6;s:13:\"margin_mobile\";i:1;s:14:\"padding_tablet\";i:3;s:14:\"padding_mobile\";i:4;s:13:\"margin_tablet\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:7;s:19:\"background_position\";i:3;s:15:\"background_size\";i:2;s:26:\"background_position_tablet\";i:1;s:16:\"background_image\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;}s:26:\"section_background_overlay\";a:7:{s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;s:29:\"background_overlay_background\";i:2;s:26:\"background_overlay_color_b\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:21:\"section_image_overlay\";a:4:{s:18:\"show_image_overlay\";i:1;s:13:\"image_overlay\";i:1;s:9:\"lazy_load\";i:1;s:8:\"lightbox\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_video_style\";a:2:{s:15:\"play_icon_color\";i:1;s:21:\"play_icon_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;s:10:\"title_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:11:\"image_space\";i:4;s:10:\"image_size\";i:4;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1989','3','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1990','3','_elementor_page_settings','a:8:{s:25:\"woocommerce_terms_page_id\";s:0:\"\";s:24:\"woocommerce_cart_page_id\";i:6;s:28:\"woocommerce_checkout_page_id\";i:7;s:29:\"woocommerce_myaccount_page_id\";i:8;s:13:\"custom_colors\";a:9:{i:0;a:3:{s:3:\"_id\";s:8:\"kadence1\";s:5:\"title\";s:12:\"Theme Accent\";s:5:\"color\";s:7:\"#420a6e\";}i:1;a:3:{s:3:\"_id\";s:8:\"kadence2\";s:5:\"title\";s:18:\"Theme Accent - alt\";s:5:\"color\";s:7:\"#b47fff\";}i:2;a:3:{s:3:\"_id\";s:8:\"kadence3\";s:5:\"title\";s:14:\"Strongest text\";s:5:\"color\";s:7:\"#f0a0ff\";}i:3;a:3:{s:3:\"_id\";s:8:\"kadence4\";s:5:\"title\";s:11:\"Strong Text\";s:5:\"color\";s:7:\"#f7fafc\";}i:4;a:3:{s:3:\"_id\";s:8:\"kadence5\";s:5:\"title\";s:11:\"Medium text\";s:5:\"color\";s:7:\"#edf2f7\";}i:5;a:3:{s:3:\"_id\";s:8:\"kadence6\";s:5:\"title\";s:11:\"Subtle Text\";s:5:\"color\";s:7:\"#cbd2d9\";}i:6;a:3:{s:3:\"_id\";s:8:\"kadence7\";s:5:\"title\";s:17:\"Subtle Background\";s:5:\"color\";s:7:\"#533656\";}i:7;a:3:{s:3:\"_id\";s:8:\"kadence8\";s:5:\"title\";s:18:\"Lighter Background\";s:5:\"color\";s:7:\"#252c39\";}i:8;a:3:{s:3:\"_id\";s:8:\"kadence9\";s:5:\"title\";s:17:\"White or offwhite\";s:5:\"color\";s:7:\"#1a202c\";}}s:14:\"kadence_colors\";a:9:{i:0;a:3:{s:3:\"_id\";s:8:\"palette1\";s:5:\"title\";s:12:\"Theme Accent\";s:5:\"color\";s:7:\"#420a6e\";}i:1;a:3:{s:3:\"_id\";s:8:\"palette2\";s:5:\"title\";s:18:\"Theme Accent - alt\";s:5:\"color\";s:7:\"#b47fff\";}i:2;a:3:{s:3:\"_id\";s:8:\"palette3\";s:5:\"title\";s:14:\"Strongest text\";s:5:\"color\";s:7:\"#f0a0ff\";}i:3;a:3:{s:3:\"_id\";s:8:\"palette4\";s:5:\"title\";s:11:\"Strong Text\";s:5:\"color\";s:7:\"#f7fafc\";}i:4;a:3:{s:3:\"_id\";s:8:\"palette5\";s:5:\"title\";s:11:\"Medium text\";s:5:\"color\";s:7:\"#edf2f7\";}i:5;a:3:{s:3:\"_id\";s:8:\"palette6\";s:5:\"title\";s:11:\"Subtle Text\";s:5:\"color\";s:7:\"#cbd2d9\";}i:6;a:3:{s:3:\"_id\";s:8:\"palette7\";s:5:\"title\";s:17:\"Subtle Background\";s:5:\"color\";s:7:\"#533656\";}i:7;a:3:{s:3:\"_id\";s:8:\"palette8\";s:5:\"title\";s:18:\"Lighter Background\";s:5:\"color\";s:7:\"#252c39\";}i:8;a:3:{s:3:\"_id\";s:8:\"palette9\";s:5:\"title\";s:17:\"White or offwhite\";s:5:\"color\";s:7:\"#1a202c\";}}s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1140;s:5:\"sizes\";a:0:{}}s:22:\"container_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:700;s:5:\"sizes\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1993','15','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('1995','15','_edit_lock','1781108281:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2000','511','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2003','1704','_customize_restore_dismissed','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2005','1705','_customize_restore_dismissed','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2006','1706','_edit_lock','1780730377:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2007','1706','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2008','1706','_wp_trash_meta_time','1780730389');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2031','1710','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2032','1710','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1254;s:6:\"height\";i:1254;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\";s:8:\"filesize\";i:1810733;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2035','1712','_wp_attached_file','2026/06/kwCPm.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2036','1712','_wp_attachment_metadata','a:6:{s:5:\"width\";i:784;s:6:\"height\";i:1168;s:4:\"file\";s:17:\"2026/06/kwCPm.jpg\";s:8:\"filesize\";i:82309;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2037','1714','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2038','1713','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_26_48-PM.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2039','1714','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1254;s:6:\"height\";i:1254;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\";s:8:\"filesize\";i:342368;s:5:\"sizes\";a:1:{s:24:\"elementor_custom_800x800\";a:4:{s:4:\"file\";s:100:\"elementor/thumbs/ChatGPT-Image-Jun-3-2026-02_27_34-PM-rora3pbas24q2ab1jidw4h7s4w8vsrbyl9i62ckaps.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2040','1713','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1402;s:6:\"height\";i:1122;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-3-2026-02_26_48-PM.jpg\";s:8:\"filesize\";i:327774;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2041','1715','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2042','1715','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1316;s:6:\"height\";i:1195;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\";s:8:\"filesize\";i:423715;s:5:\"sizes\";a:3:{s:24:\"elementor_custom_800x800\";a:4:{s:4:\"file\";s:100:\"elementor/thumbs/ChatGPT-Image-Jun-3-2026-02_27_24-PM-rora3pbas24q2ab1jidw4h7s4w8vsrbyl9i62ckaps.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:48:\"ChatGPT-Image-Jun-3-2026-02_27_24-PM-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29746;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:48:\"ChatGPT-Image-Jun-3-2026-02_27_24-PM-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5119;}}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:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2043','1716','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_27_05-PM.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2044','1716','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1254;s:6:\"height\";i:1254;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-3-2026-02_27_05-PM.jpg\";s:8:\"filesize\";i:240095;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2045','1717','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2046','1717','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1402;s:6:\"height\";i:1122;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\";s:8:\"filesize\";i:2043310;s:5:\"sizes\";a:2:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:48:\"ChatGPT-Image-Jun-3-2026-02_30_47-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138901;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:48:\"ChatGPT-Image-Jun-3-2026-02_30_47-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19437;}}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:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2047','1718','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2048','1718','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1254;s:6:\"height\";i:1254;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\";s:8:\"filesize\";i:1936428;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2049','1719','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2050','1719','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1402;s:6:\"height\";i:1122;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\";s:8:\"filesize\";i:2231384;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2051','1720','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2052','1720','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2053','1720','_elementor_version','3.1.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2054','1720','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2055','1720','_elementor_data','[{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/homemade-tasty-beef-burger-FRT5PYB.jpg\",\"id\":332},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence2\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"DELIVERY \\nDRIVE-THRU \\nPICKUP\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":681,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-4.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Burger\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":678,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-7.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Pizza\\u200b\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":682,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-1.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Combo\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":679,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-6.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Chicken\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1654,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2021\\/03\\/category-5.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Kids Menu\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":677,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-8.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Dessert\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":683,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-2.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Sauce\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":684,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-3.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Drinks\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/6-e1607700582104.jpg\",\"id\":1136},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet, Eat & Enjoy the <br>true Taste\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/2.jpg\",\"id\":1125},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4.jpg\",\"id\":1134},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/tomato-2.jpg\",\"id\":1266},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our Food\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Texas with American Love\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/salad-2068220_1920.jpg\",\"id\":849},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick & Healthy<br> Dinner\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4183063a\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_repeat\":\"no-repeat\",\"background_size_tablet\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.png\",\"id\":1287},\"background_attachment\":\"fixed\",\"background_overlay_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"34f9fc80\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ECECEC\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[{\"id\":\"57144589\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"shape_divider_top\":\"zigzag\",\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":600,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"shape_divider_bottom\":\"zigzag\",\"shape_divider_bottom_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":600,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=kadence1\",\"background_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[{\"id\":\"2cfa46fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"76711df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tasty & fresh\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c5b9bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Main Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47288f41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast Mood ..... $29.00\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52504737\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"35ab1e81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Drinking Prospect  ..... $9.45\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"704bf48d\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24bdc6d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pizza Time  ..... $12.45\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30488fe1\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c564c60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grilled Chicken ..... $19.45\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ac8ae1\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"52fcee93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fb3674\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/burger-2559087_192e0.png\",\"id\":1531},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-180\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"-40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"-30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7967362c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"12fb63d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49a2a692\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tasty & crunchy\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bef31d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recommended today\",\"align\":\"center\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d97e728\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef24c02\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"2a3ac271\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"65631e82\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"74b937f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"302d4f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_9.jpg\",\"id\":958},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2cd582bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18459d48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"789d7437\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6de4d3\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f23e064\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"59ec85c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"82ca897\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3142757\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"14c20f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_1.jpg\",\"id\":963},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5f26ca3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d9ad0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fdd1c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c0bcab\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d77945\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"faaf493\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"e71d0dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"91ca3f1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3b6c169\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"63b2a39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_4.jpg\",\"id\":965},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2fbb92e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c5c7ad1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa2d722\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2253523\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6909076\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5062f23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"85c2437\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"d092940\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"93cef18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product-13.jpg\",\"id\":955},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"07699a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07db952\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f966a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce2ca1a\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51e3df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_6.jpg\",\"id\":967},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_12.jpg\",\"id\":961},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/food-2879395_1920.jpg\",\"id\":1293},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Order Your <br>Favorite Food\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence2\"},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3538c48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Each\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=kadence1\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ac8f43c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"top right\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/5-2346237347834.jpg\",\"id\":1303},\"background_attachment\":\"fixed\",\"background_overlay_position\":\"top right\",\"background_overlay_size\":\"cover\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"383d3048\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bc6d41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0186323\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Reviews\",\"align\":\"center\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6db08a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80e7026\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b81a5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"aeb8393\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/3246264.jpg\",\"id\":1404},\"testimonial_name\":\"Randall McKnight\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"},{\"id\":\"56cd276\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/6426.jpg\",\"id\":1402},\"testimonial_name\":\"Pamela Stover\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"3be1a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"fa55d08\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/23525.jpg\",\"id\":1403},\"testimonial_name\":\"Regina Good\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"},{\"id\":\"829f6a3\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/3563.jpg\",\"id\":1401},\"testimonial_name\":\"Roberta Taylor\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"563a1912\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"bottom right\",\"background_size\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"350\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"250\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/pizza-in-take-out-box-isolated-T2DQ9YN.png\",\"id\":1066},\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":52,\"sizes\":[]},\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"2b046ade\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"18ddf601\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1fb6609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"cc3d9a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free Delivery\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"110ca69d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Download Our App &<br> Order Online To Get <br>Free Delivery\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"de1c077\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>We are the country\'s no.1 Fast food retailer with 10+ years of reputation. Country\'s best burger and pizza are delivered by us.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"160a8b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"90daec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.945,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"d7727e1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/google-play-black.png\",\"id\":1073},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4373b78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.055,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a7630a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/app-store-black.png\",\"id\":1072},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4297063b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"247f424\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/img-11-min.png\",\"id\":129},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"align_tablet\":\"center\",\"align_mobile\":\"right\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"268830e0\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29158e8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43c08fa7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ed630e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"2bbe3baa\",\"elType\":\"widget\",\"settings\":{\"title\":\"BOOK YOUR TABLE NOW FOR THE BEST CHOW\\n\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"731aaa8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"676db51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download App\",\"align\":\"right\",\"icon_align\":\"right\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\",\"button_text_color\":\"\"},\"align_tablet\":\"center\",\"button_text_color\":\"#ffffff\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#ffb91a\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2056','1720','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2057','1720','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2058','1721','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2059','1721','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2060','1721','_elementor_version','3.1.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2061','1721','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2062','1721','_elementor_data','[{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/homemade-tasty-beef-burger-FRT5PYB.jpg\",\"id\":332},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence2\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"DELIVERY \\nDRIVE-THRU \\nPICKUP\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":681,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-4.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Burger\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":678,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-7.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Pizza\\u200b\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":682,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-1.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Combo\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":679,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-6.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Chicken\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1654,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2021\\/03\\/category-5.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Kids Menu\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":677,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-8.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Dessert\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":683,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-2.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Sauce\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":684,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-3.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Drinks\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/6-e1607700582104.jpg\",\"id\":1136},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet, Eat & Enjoy the <br>true Taste\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/2.jpg\",\"id\":1125},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4.jpg\",\"id\":1134},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/tomato-2.jpg\",\"id\":1266},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our Food\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Texas with American Love\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/salad-2068220_1920.jpg\",\"id\":849},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick & Healthy<br> Dinner\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4183063a\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_repeat\":\"no-repeat\",\"background_size_tablet\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.png\",\"id\":1287},\"background_attachment\":\"fixed\",\"background_overlay_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"34f9fc80\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ECECEC\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[{\"id\":\"57144589\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"shape_divider_top\":\"zigzag\",\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":600,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"shape_divider_bottom\":\"zigzag\",\"shape_divider_bottom_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":600,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=kadence1\",\"background_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[{\"id\":\"2cfa46fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"76711df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tasty & fresh\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c5b9bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Main Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47288f41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast Mood ..... $29.00\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52504737\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"35ab1e81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Drinking Prospect  ..... $9.45\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"704bf48d\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24bdc6d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pizza Time  ..... $12.45\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30488fe1\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c564c60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grilled Chicken ..... $19.45\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ac8ae1\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"52fcee93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fb3674\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/burger-2559087_192e0.png\",\"id\":1531},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-180\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"-40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"-30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7967362c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"12fb63d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49a2a692\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tasty & crunchy\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bef31d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recommended today\",\"align\":\"center\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d97e728\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef24c02\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"2a3ac271\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"65631e82\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"74b937f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"302d4f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_9.jpg\",\"id\":958},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2cd582bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18459d48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"789d7437\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6de4d3\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f23e064\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"59ec85c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"82ca897\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3142757\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"14c20f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_1.jpg\",\"id\":963},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5f26ca3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d9ad0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fdd1c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c0bcab\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d77945\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"faaf493\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"e71d0dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"91ca3f1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3b6c169\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"63b2a39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_4.jpg\",\"id\":965},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2fbb92e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c5c7ad1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa2d722\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2253523\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6909076\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5062f23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"85c2437\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"d092940\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"93cef18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product-13.jpg\",\"id\":955},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"07699a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07db952\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f966a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce2ca1a\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51e3df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_6.jpg\",\"id\":967},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_12.jpg\",\"id\":961},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/food-2879395_1920.jpg\",\"id\":1293},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Order Your <br>Favorite Food\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence2\"},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3538c48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Each\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=kadence1\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ac8f43c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"top right\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/5-2346237347834.jpg\",\"id\":1303},\"background_attachment\":\"fixed\",\"background_overlay_position\":\"top right\",\"background_overlay_size\":\"cover\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"383d3048\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bc6d41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0186323\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Reviews\",\"align\":\"center\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6db08a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80e7026\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b81a5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"aeb8393\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/3246264.jpg\",\"id\":1404},\"testimonial_name\":\"Randall McKnight\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"},{\"id\":\"56cd276\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/6426.jpg\",\"id\":1402},\"testimonial_name\":\"Pamela Stover\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"3be1a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"fa55d08\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/23525.jpg\",\"id\":1403},\"testimonial_name\":\"Regina Good\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"},{\"id\":\"829f6a3\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/3563.jpg\",\"id\":1401},\"testimonial_name\":\"Roberta Taylor\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"563a1912\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"bottom right\",\"background_size\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"350\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"250\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/pizza-in-take-out-box-isolated-T2DQ9YN.png\",\"id\":1066},\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":52,\"sizes\":[]},\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"2b046ade\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"18ddf601\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1fb6609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"cc3d9a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free Delivery\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"110ca69d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Download Our App &<br> Order Online To Get <br>Free Delivery\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"de1c077\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>We are the country\'s no.1 Fast food retailer with 10+ years of reputation. Country\'s best burger and pizza are delivered by us.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"160a8b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"90daec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.945,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"d7727e1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/google-play-black.png\",\"id\":1073},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4373b78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.055,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a7630a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/app-store-black.png\",\"id\":1072},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4297063b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"247f424\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/img-11-min.png\",\"id\":129},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"align_tablet\":\"center\",\"align_mobile\":\"right\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"268830e0\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29158e8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43c08fa7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ed630e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"2bbe3baa\",\"elType\":\"widget\",\"settings\":{\"title\":\"BOOK YOUR TABLE NOW FOR THE BEST CHOW\\n\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"731aaa8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"676db51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download App\",\"align\":\"right\",\"icon_align\":\"right\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\",\"button_text_color\":\"\"},\"align_tablet\":\"center\",\"button_text_color\":\"#ffffff\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#ffb91a\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2063','1721','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2064','1721','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2065','1722','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2066','1722','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2067','1722','_elementor_version','3.1.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2068','1722','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2069','1722','_elementor_data','[{\"id\":\"41da9d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[],\"isInner\":false},{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"DELIVERY \\nDRIVE-THRU \\nPICKUP\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Burger\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Pizza\\u200b\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Combo\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":679,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-6.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Chicken\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1654,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2021\\/03\\/category-5.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Kids Menu\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":677,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-8.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Dessert\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":683,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-2.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Sauce\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":684,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-3.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Drinks\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/6-e1607700582104.jpg\",\"id\":1136},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet, Eat & Enjoy the <br>true Taste\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/2.jpg\",\"id\":1125},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4.jpg\",\"id\":1134},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/tomato-2.jpg\",\"id\":1266},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our Food\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Texas with American Love\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/salad-2068220_1920.jpg\",\"id\":849},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick & Healthy<br> Dinner\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4183063a\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_repeat\":\"no-repeat\",\"background_size_tablet\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.png\",\"id\":1287},\"background_attachment\":\"fixed\",\"background_overlay_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"34f9fc80\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ECECEC\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[{\"id\":\"57144589\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"shape_divider_top\":\"zigzag\",\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":600,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"shape_divider_bottom\":\"zigzag\",\"shape_divider_bottom_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":600,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=kadence1\",\"background_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[{\"id\":\"2cfa46fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"76711df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tasty & fresh\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c5b9bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Main Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47288f41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast Mood ..... $29.00\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52504737\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"35ab1e81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Drinking Prospect  ..... $9.45\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"704bf48d\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24bdc6d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pizza Time  ..... $12.45\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30488fe1\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c564c60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grilled Chicken ..... $19.45\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ac8ae1\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"52fcee93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fb3674\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/burger-2559087_192e0.png\",\"id\":1531},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-180\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"-40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"-30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7967362c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"12fb63d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49a2a692\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tasty & crunchy\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bef31d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recommended today\",\"align\":\"center\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d97e728\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef24c02\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"2a3ac271\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"65631e82\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"74b937f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"302d4f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_9.jpg\",\"id\":958},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2cd582bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18459d48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"789d7437\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6de4d3\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f23e064\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"59ec85c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"82ca897\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3142757\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"14c20f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_1.jpg\",\"id\":963},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5f26ca3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d9ad0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fdd1c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c0bcab\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d77945\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"faaf493\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"e71d0dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"91ca3f1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3b6c169\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"63b2a39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_4.jpg\",\"id\":965},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2fbb92e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c5c7ad1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa2d722\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2253523\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6909076\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5062f23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"85c2437\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"d092940\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"93cef18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product-13.jpg\",\"id\":955},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"07699a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07db952\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f966a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce2ca1a\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51e3df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_6.jpg\",\"id\":967},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_12.jpg\",\"id\":961},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/food-2879395_1920.jpg\",\"id\":1293},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Order Your <br>Favorite Food\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence2\"},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3538c48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Each\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=kadence1\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ac8f43c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"top right\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/5-2346237347834.jpg\",\"id\":1303},\"background_attachment\":\"fixed\",\"background_overlay_position\":\"top right\",\"background_overlay_size\":\"cover\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"383d3048\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bc6d41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0186323\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Reviews\",\"align\":\"center\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6db08a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80e7026\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b81a5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"aeb8393\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/3246264.jpg\",\"id\":1404},\"testimonial_name\":\"Randall McKnight\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"},{\"id\":\"56cd276\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/6426.jpg\",\"id\":1402},\"testimonial_name\":\"Pamela Stover\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"3be1a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"fa55d08\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/23525.jpg\",\"id\":1403},\"testimonial_name\":\"Regina Good\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"},{\"id\":\"829f6a3\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/3563.jpg\",\"id\":1401},\"testimonial_name\":\"Roberta Taylor\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"563a1912\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"bottom right\",\"background_size\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"350\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"250\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/pizza-in-take-out-box-isolated-T2DQ9YN.png\",\"id\":1066},\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":52,\"sizes\":[]},\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"2b046ade\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"18ddf601\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1fb6609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"cc3d9a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free Delivery\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"110ca69d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Download Our App &<br> Order Online To Get <br>Free Delivery\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"de1c077\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>We are the country\'s no.1 Fast food retailer with 10+ years of reputation. Country\'s best burger and pizza are delivered by us.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"160a8b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"90daec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.945,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"d7727e1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/google-play-black.png\",\"id\":1073},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4373b78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.055,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a7630a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/app-store-black.png\",\"id\":1072},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4297063b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"247f424\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/img-11-min.png\",\"id\":129},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"align_tablet\":\"center\",\"align_mobile\":\"right\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"268830e0\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29158e8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43c08fa7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ed630e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"2bbe3baa\",\"elType\":\"widget\",\"settings\":{\"title\":\"BOOK YOUR TABLE NOW FOR THE BEST CHOW\\n\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"731aaa8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"676db51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download App\",\"align\":\"right\",\"icon_align\":\"right\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\",\"button_text_color\":\"\"},\"align_tablet\":\"center\",\"button_text_color\":\"#ffffff\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#ffb91a\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2070','1722','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2071','1722','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2072','15','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2074','1723','_wp_attached_file','2026/06/—Pngtree—letter-t-shopping-logo-alphabet_6953022.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2075','1723','_wp_attachment_metadata','a:6:{s:5:\"width\";i:3000;s:6:\"height\";i:3000;s:4:\"file\";s:64:\"2026/06/—Pngtree—letter-t-shopping-logo-alphabet_6953022.png\";s:8:\"filesize\";i:103020;s:5:\"sizes\";a:1:{s:24:\"elementor_custom_400x720\";a:4:{s:4:\"file\";s:73:\"elementor/thumbs/—Pngtree—letter-t-shopping-logo-alphabet_6953022.png\";s:5:\"width\";i:400;s:6:\"height\";i:720;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:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2076','1724','_edit_lock','1780798249:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2077','1724','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2078','1724','_wp_trash_meta_time','1780798283');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2082','1725','_edit_lock','1780798357:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2083','1726','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_27_09-PM.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2084','1726','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1254;s:6:\"height\";i:1254;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-3-2026-02_27_09-PM.png\";s:8:\"filesize\";i:2075577;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2085','1727','_wp_attached_file','2026/06/kwCPm-1.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2086','1727','_wp_attachment_metadata','a:6:{s:5:\"width\";i:784;s:6:\"height\";i:1168;s:4:\"file\";s:19:\"2026/06/kwCPm-1.jpg\";s:8:\"filesize\";i:82309;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2087','1728','_wp_attached_file','2026/06/p5xa7.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2088','1729','_wp_attached_file','2026/06/2a17e542-1c39-42c9-9553-55e59acbf196.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2089','1728','_wp_attachment_metadata','a:6:{s:5:\"width\";i:784;s:6:\"height\";i:1168;s:4:\"file\";s:17:\"2026/06/p5xa7.jpg\";s:8:\"filesize\";i:64559;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2090','1729','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:48:\"2026/06/2a17e542-1c39-42c9-9553-55e59acbf196.jpg\";s:8:\"filesize\";i:125469;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2091','1730','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2092','1730','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1254;s:6:\"height\";i:1254;s:4:\"file\";s:50:\"2026/06/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\";s:8:\"filesize\";i:240095;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2093','1731','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM-1.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2094','1731','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1254;s:6:\"height\";i:1254;s:4:\"file\";s:50:\"2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM-1.jpg\";s:8:\"filesize\";i:342368;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2095','1732','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2096','1732','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1254;s:6:\"height\";i:1254;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\";s:8:\"filesize\";i:549660;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2097','1733','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2098','1734','_wp_attached_file','2026/06/2wIeE.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2099','1735','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2100','1734','_wp_attachment_metadata','a:6:{s:5:\"width\";i:784;s:6:\"height\";i:1168;s:4:\"file\";s:17:\"2026/06/2wIeE.jpg\";s:8:\"filesize\";i:115779;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2101','1733','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1402;s:6:\"height\";i:1122;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\";s:8:\"filesize\";i:308387;s:5:\"sizes\";a:2:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:48:\"ChatGPT-Image-Jun-3-2026-02_26_42-PM-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22395;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:48:\"ChatGPT-Image-Jun-3-2026-02_26_42-PM-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4211;}}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:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2102','1735','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1254;s:6:\"height\";i:1254;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\";s:8:\"filesize\";i:374406;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2103','1736','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2104','1736','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1402;s:6:\"height\";i:1122;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.jpg\";s:8:\"filesize\";i:277245;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2105','1737','_wp_attached_file','2026/06/ge3rC.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2106','1737','_wp_attachment_metadata','a:6:{s:5:\"width\";i:784;s:6:\"height\";i:1168;s:4:\"file\";s:17:\"2026/06/ge3rC.jpg\";s:8:\"filesize\";i:165357;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2107','1738','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_30_38-PM.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2108','1738','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1402;s:6:\"height\";i:1122;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-3-2026-02_30_38-PM.jpg\";s:8:\"filesize\";i:235450;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2109','1739','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2110','1740','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2111','1739','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1254;s:6:\"height\";i:1254;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\";s:8:\"filesize\";i:268422;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2112','1740','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1254;s:6:\"height\";i:1254;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.jpg\";s:8:\"filesize\";i:209586;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2113','1741','_wp_attached_file','2026/06/TTfyC.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2114','1741','_wp_attachment_metadata','a:6:{s:5:\"width\";i:784;s:6:\"height\";i:1168;s:4:\"file\";s:17:\"2026/06/TTfyC.jpg\";s:8:\"filesize\";i:152072;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2115','1742','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2116','1742','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1254;s:6:\"height\";i:1254;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\";s:8:\"filesize\";i:302398;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2117','1743','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2118','1743','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1183;s:6:\"height\";i:1330;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\";s:8:\"filesize\";i:317044;s:5:\"sizes\";a:2:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:48:\"ChatGPT-Image-Jun-3-2026-02_27_38-PM-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22246;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:48:\"ChatGPT-Image-Jun-3-2026-02_27_38-PM-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4165;}}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:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2119','1744','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM-1.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2120','1744','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1316;s:6:\"height\";i:1195;s:4:\"file\";s:50:\"2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM-1.jpg\";s:8:\"filesize\";i:423715;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:50:\"ChatGPT-Image-Jun-3-2026-02_27_24-PM-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29746;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2121','1745','_wp_attached_file','2026/06/ChatGPT-Image-Jun-3-2026-02_26_48-PM-1.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2122','1745','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1402;s:6:\"height\";i:1122;s:4:\"file\";s:50:\"2026/06/ChatGPT-Image-Jun-3-2026-02_26_48-PM-1.jpg\";s:8:\"filesize\";i:327774;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2123','1746','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2124','1746','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2125','1746','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2126','1746','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2127','1746','_elementor_data','[{\"id\":\"41da9d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[],\"isInner\":false},{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"DELIVERY \\nDRIVE-THRU \\nPICKUP\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Burger\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Pizza\\u200b\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Combo\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":679,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-6.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Chicken\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1654,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2021\\/03\\/category-5.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Kids Menu\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":677,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-8.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Dessert\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":683,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-2.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Sauce\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":684,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-3.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Drinks\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/6-e1607700582104.jpg\",\"id\":1136},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet, Eat & Enjoy the <br>true Taste\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/2.jpg\",\"id\":1125},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4.jpg\",\"id\":1134},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/tomato-2.jpg\",\"id\":1266},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our Food\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Texas with American Love\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/salad-2068220_1920.jpg\",\"id\":849},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick & Healthy<br> Dinner\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4183063a\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_repeat\":\"no-repeat\",\"background_size_tablet\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.png\",\"id\":1287},\"background_attachment\":\"fixed\",\"background_overlay_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"34f9fc80\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ECECEC\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[{\"id\":\"57144589\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"shape_divider_top\":\"zigzag\",\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":600,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"shape_divider_bottom\":\"zigzag\",\"shape_divider_bottom_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":600,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=kadence1\",\"background_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[{\"id\":\"2cfa46fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"76711df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tasty & fresh\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c5b9bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Main Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47288f41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast Mood ..... $29.00\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52504737\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"35ab1e81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Drinking Prospect  ..... $9.45\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"704bf48d\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24bdc6d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pizza Time  ..... $12.45\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30488fe1\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c564c60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grilled Chicken ..... $19.45\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ac8ae1\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"52fcee93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fb3674\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/burger-2559087_192e0.png\",\"id\":1531},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-180\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"-40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"-30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7967362c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"12fb63d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49a2a692\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tasty & crunchy\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bef31d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recommended today\",\"align\":\"center\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d97e728\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef24c02\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"2a3ac271\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"65631e82\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"74b937f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"302d4f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_9.jpg\",\"id\":958},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2cd582bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18459d48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"789d7437\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6de4d3\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f23e064\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"59ec85c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"82ca897\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3142757\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"14c20f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_1.jpg\",\"id\":963},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5f26ca3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d9ad0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fdd1c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c0bcab\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d77945\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"faaf493\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"e71d0dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"91ca3f1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3b6c169\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"63b2a39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_4.jpg\",\"id\":965},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2fbb92e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c5c7ad1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa2d722\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2253523\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6909076\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5062f23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"85c2437\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"d092940\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"93cef18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product-13.jpg\",\"id\":955},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"07699a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07db952\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f966a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce2ca1a\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51e3df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_6.jpg\",\"id\":967},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_12.jpg\",\"id\":961},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/food-2879395_1920.jpg\",\"id\":1293},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Order Your <br>Favorite Food\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence2\"},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3538c48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Each\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=kadence1\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ac8f43c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"top right\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/5-2346237347834.jpg\",\"id\":1303},\"background_attachment\":\"fixed\",\"background_overlay_position\":\"top right\",\"background_overlay_size\":\"cover\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"383d3048\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bc6d41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0186323\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Reviews\",\"align\":\"center\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6db08a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80e7026\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b81a5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"aeb8393\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/3246264.jpg\",\"id\":1404},\"testimonial_name\":\"Randall McKnight\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"},{\"id\":\"56cd276\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/6426.jpg\",\"id\":1402},\"testimonial_name\":\"Pamela Stover\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"3be1a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"fa55d08\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/23525.jpg\",\"id\":1403},\"testimonial_name\":\"Regina Good\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"},{\"id\":\"829f6a3\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/3563.jpg\",\"id\":1401},\"testimonial_name\":\"Roberta Taylor\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"563a1912\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"bottom right\",\"background_size\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"350\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"250\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/pizza-in-take-out-box-isolated-T2DQ9YN.png\",\"id\":1066},\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":52,\"sizes\":[]},\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"2b046ade\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"18ddf601\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1fb6609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"cc3d9a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free Delivery\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"110ca69d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Download Our App &<br> Order Online To Get <br>Free Delivery\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"de1c077\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>We are the country\'s no.1 Fast food retailer with 10+ years of reputation. Country\'s best burger and pizza are delivered by us.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"160a8b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"90daec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.945,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"d7727e1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/google-play-black.png\",\"id\":1073},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4373b78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.055,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a7630a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/app-store-black.png\",\"id\":1072},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4297063b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"247f424\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/img-11-min.png\",\"id\":129},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"align_tablet\":\"center\",\"align_mobile\":\"right\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"268830e0\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29158e8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43c08fa7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ed630e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"2bbe3baa\",\"elType\":\"widget\",\"settings\":{\"title\":\"BOOK YOUR TABLE NOW FOR THE BEST CHOW\\n\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"731aaa8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"676db51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download App\",\"align\":\"right\",\"icon_align\":\"right\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\",\"button_text_color\":\"\"},\"align_tablet\":\"center\",\"button_text_color\":\"#ffffff\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#ffb91a\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2128','1746','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2129','1746','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2130','1746','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2133','1747','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2134','1747','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2135','1747','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2136','1747','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2137','1747','_elementor_data','[{\"id\":\"41da9d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[],\"isInner\":false},{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"DELIVERY \\nDRIVE-THRU \\nPICKUP\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Burger\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Pizza\\u200b\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Combo\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":679,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-6.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Chicken\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1654,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2021\\/03\\/category-5.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Kids Menu\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":677,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-8.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Dessert\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":683,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-2.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Sauce\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":684,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/category-3.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Drinks\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/6-e1607700582104.jpg\",\"id\":1136},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet, Eat & Enjoy the <br>true Taste\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/2.jpg\",\"id\":1125},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4.jpg\",\"id\":1134},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/tomato-2.jpg\",\"id\":1266},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our Food\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Texas with American Love\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/salad-2068220_1920.jpg\",\"id\":849},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick & Healthy<br> Dinner\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4183063a\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"background_repeat\":\"no-repeat\",\"background_size_tablet\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.png\",\"id\":1287},\"background_attachment\":\"fixed\",\"background_overlay_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"34f9fc80\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ECECEC\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[{\"id\":\"57144589\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"shape_divider_top\":\"zigzag\",\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":600,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"shape_divider_bottom\":\"zigzag\",\"shape_divider_bottom_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":600,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=kadence1\",\"background_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[{\"id\":\"2cfa46fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"76711df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tasty & fresh\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c5b9bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Main Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47288f41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast Mood ..... $29.00\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52504737\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"35ab1e81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Drinking Prospect  ..... $9.45\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"704bf48d\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24bdc6d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pizza Time  ..... $12.45\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30488fe1\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c564c60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grilled Chicken ..... $19.45\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"title_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ac8ae1\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"center\",\"text_color\":\"#ECECEC\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"52fcee93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fb3674\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/burger-2559087_192e0.png\",\"id\":1531},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-180\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"-40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"-30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7967362c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"12fb63d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49a2a692\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tasty & crunchy\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bef31d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recommended today\",\"align\":\"center\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d97e728\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef24c02\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"2a3ac271\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"65631e82\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"74b937f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"302d4f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_9.jpg\",\"id\":958},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2cd582bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18459d48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"789d7437\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6de4d3\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f23e064\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"59ec85c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"82ca897\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3142757\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"14c20f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_1.jpg\",\"id\":963},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5f26ca3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d9ad0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fdd1c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c0bcab\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d77945\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"faaf493\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"e71d0dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"91ca3f1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3b6c169\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"63b2a39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_4.jpg\",\"id\":965},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2fbb92e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c5c7ad1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa2d722\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2253523\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6909076\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5062f23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"85c2437\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"d092940\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"93cef18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product-13.jpg\",\"id\":955},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"07699a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07db952\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f966a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce2ca1a\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51e3df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_6.jpg\",\"id\":967},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_12.jpg\",\"id\":961},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/food-2879395_1920.jpg\",\"id\":1293},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Order Your <br>Favorite Food\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence2\"},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3538c48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Each\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=kadence1\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ac8f43c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"top right\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/5-2346237347834.jpg\",\"id\":1303},\"background_attachment\":\"fixed\",\"background_overlay_position\":\"top right\",\"background_overlay_size\":\"cover\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"383d3048\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bc6d41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0186323\",\"elType\":\"widget\",\"settings\":{\"title\":\"Customer Reviews\",\"align\":\"center\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6db08a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80e7026\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b81a5a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"aeb8393\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/3246264.jpg\",\"id\":1404},\"testimonial_name\":\"Randall McKnight\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"},{\"id\":\"56cd276\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/6426.jpg\",\"id\":1402},\"testimonial_name\":\"Pamela Stover\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"3be1a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"fa55d08\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/23525.jpg\",\"id\":1403},\"testimonial_name\":\"Regina Good\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"},{\"id\":\"829f6a3\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/3563.jpg\",\"id\":1401},\"testimonial_name\":\"Roberta Taylor\",\"testimonial_job\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":70,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=kadence1\",\"_background_color\":\"globals\\/colors?id=kadence9\"},\"name_typography_font_weight\":\"bold\",\"name_typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"563a1912\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"bottom right\",\"background_size\":\"initial\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"350\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"250\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/pizza-in-take-out-box-isolated-T2DQ9YN.png\",\"id\":1066},\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":52,\"sizes\":[]},\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":532,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"2b046ade\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"18ddf601\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1fb6609\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"cc3d9a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free Delivery\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"110ca69d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Download Our App &<br> Order Online To Get <br>Free Delivery\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"de1c077\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>We are the country\'s no.1 Fast food retailer with 10+ years of reputation. Country\'s best burger and pizza are delivered by us.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"160a8b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"90daec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.945,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"d7727e1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/google-play-black.png\",\"id\":1073},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4373b78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.055,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a7630a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/app-store-black.png\",\"id\":1072},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4297063b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"247f424\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/img-11-min.png\",\"id\":129},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"align_tablet\":\"center\",\"align_mobile\":\"right\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"268830e0\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29158e8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43c08fa7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ed630e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"2bbe3baa\",\"elType\":\"widget\",\"settings\":{\"title\":\"BOOK YOUR TABLE NOW FOR THE BEST CHOW\\n\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"731aaa8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"676db51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download App\",\"align\":\"right\",\"icon_align\":\"right\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\",\"button_text_color\":\"\"},\"align_tablet\":\"center\",\"button_text_color\":\"#ffffff\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#ffb91a\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2138','1747','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2139','1747','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2140','1747','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2143','1748','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2144','1748','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2145','1748','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2146','1748','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2147','1748','_elementor_data','[{\"id\":\"41da9d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[],\"isInner\":false},{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"DELIVERY \\nDRIVE-THRU \\nPICKUP\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Burger\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Pizza\\u200b\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Combo\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Chicken\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Kids Menu\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Dessert\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Sauce\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Drinks\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet, Eat & Enjoy the <br>true Taste\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our Food\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Texas with American Love\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick & Healthy<br> Dinner\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef24c02\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"2a3ac271\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"65631e82\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"74b937f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"302d4f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_9.jpg\",\"id\":958},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2cd582bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18459d48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"789d7437\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6de4d3\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f23e064\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"59ec85c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"82ca897\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3142757\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"14c20f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_1.jpg\",\"id\":963},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5f26ca3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d9ad0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fdd1c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c0bcab\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d77945\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"faaf493\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"e71d0dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"91ca3f1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3b6c169\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"63b2a39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_4.jpg\",\"id\":965},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2fbb92e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c5c7ad1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa2d722\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2253523\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6909076\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5062f23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"85c2437\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"d092940\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"93cef18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product-13.jpg\",\"id\":955},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"07699a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07db952\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f966a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce2ca1a\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51e3df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_6.jpg\",\"id\":967},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_12.jpg\",\"id\":961},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Order Your <br>Favorite Food\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2148','1748','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2149','1748','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2150','1748','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2156','1725','_customize_restore_dismissed','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2157','1749','_edit_lock','1780799704:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2158','1749','_customize_restore_dismissed','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2159','1750','_edit_lock','1780799788:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2160','1750','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2161','1750','_wp_trash_meta_time','1780799795');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2162','1751','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2163','1751','_wp_trash_meta_time','1780799819');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2164','1752','_edit_lock','1780799848:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2165','1752','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2166','1752','_wp_trash_meta_time','1780799860');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2169','14','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2263','1753','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2264','1753','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2265','1753','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2266','1753','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2267','1753','_elementor_data','[{\"id\":\"41da9d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[],\"isInner\":false},{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"DELIVERY \\nDRIVE-THRU \\nPICKUP\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Burger\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Pizza\\u200b\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Combo\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Chicken\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Kids Menu\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Dessert\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Sauce\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Drinks\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet, Eat & Enjoy the <br>true Taste\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our Food\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Texas with American Love\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick & Healthy<br> Dinner\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef24c02\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"2a3ac271\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"65631e82\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"74b937f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"302d4f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_9.jpg\",\"id\":958},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2cd582bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18459d48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"789d7437\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6de4d3\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f23e064\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"59ec85c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"82ca897\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3142757\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"14c20f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_1.jpg\",\"id\":963},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5f26ca3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d9ad0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fdd1c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c0bcab\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d77945\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"faaf493\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"e71d0dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"91ca3f1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3b6c169\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"63b2a39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_4.jpg\",\"id\":965},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2fbb92e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c5c7ad1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa2d722\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2253523\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6909076\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5062f23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"85c2437\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"d092940\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"93cef18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product-13.jpg\",\"id\":955},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"07699a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07db952\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f966a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce2ca1a\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51e3df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_6.jpg\",\"id\":967},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_12.jpg\",\"id\":961},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Order Your <br>Favorite Food\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2268','1753','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2269','1753','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2270','1753','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2273','1754','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2274','1754','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2275','1754','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2276','1754','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2277','1754','_elementor_data','[{\"id\":\"41da9d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[],\"isInner\":false},{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"DELIVERY \\nDRIVE-THRU \\nPICKUP\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Burger\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Pizza\\u200b\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Combo\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Chicken\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Kids Menu\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Dessert\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Sauce\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Drinks\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet, Eat & Enjoy the <br>true Taste\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our Food\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Texas with American Love\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick & Healthy<br> Dinner\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef24c02\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"2a3ac271\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"65631e82\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"74b937f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"302d4f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_9.jpg\",\"id\":958},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2cd582bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18459d48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"789d7437\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6de4d3\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f23e064\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"59ec85c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"82ca897\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3142757\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"14c20f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_1.jpg\",\"id\":963},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5f26ca3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d9ad0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4fdd1c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c0bcab\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d77945\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"faaf493\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"e71d0dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"91ca3f1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3b6c169\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"63b2a39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_4.jpg\",\"id\":965},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2fbb92e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c5c7ad1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa2d722\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2253523\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6909076\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5062f23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"85c2437\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"d092940\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"93cef18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product-13.jpg\",\"id\":955},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"07699a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07db952\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f966a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce2ca1a\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51e3df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_6.jpg\",\"id\":967},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/product_12.jpg\",\"id\":961},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Burger\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Order Your <br>Favorite Food\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2278','1754','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2279','1754','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2280','1754','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2283','1755','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2284','1755','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2285','1755','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2286','1755','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2287','1755','_elementor_data','[{\"id\":\"41da9d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[],\"isInner\":false},{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elegance \\nRedefined\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"exclusive-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"man-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Men\'s Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"stylish \",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"New Arrivals\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Best Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Top Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our Food\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick &amp; Fashion\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#720091\"},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#27052A\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"id\":1715,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own <span style=\\\"background-color: rgb(47, 5, 54);\\\">Style<\\/span><br>\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#2F0536\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\",\"id\":1714,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Style\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Style\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2288','1755','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2289','1755','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2290','1755','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2296','1756','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2297','1756','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2298','1756','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2299','1756','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2300','1756','_elementor_data','[{\"id\":\"41da9d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[],\"isInner\":false},{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elegance \\nRedefined\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"exclusive-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"man-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Men\'s Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"stylish \",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"New Arrivals\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Best Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Top Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our Food\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick &amp; Fashion\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#720091\"},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#27052A\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"id\":1715,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own <span style=\\\"background-color: rgb(47, 5, 54);\\\">Style<\\/span><br>\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#2F0536\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\",\"id\":1714,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Style\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Style\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2301','1756','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2302','1756','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2303','1756','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2306','1757','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2307','1757','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2308','1757','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2309','1757','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2310','1757','_elementor_data','[{\"id\":\"41da9d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[],\"isInner\":false},{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elegance \\nRedefined\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"exclusive-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"man-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Men\'s Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"stylish \",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"New Arrivals\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Best Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Top Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our Food\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick &amp; Fashion\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#720091\"},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#27052A\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"id\":1715,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own <span style=\\\"background-color: rgb(47, 5, 54);\\\">Style<\\/span><br>\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#2F0536\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\",\"id\":1714,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Style\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Style\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2311','1757','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2312','1757','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2313','1757','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2316','1758','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2317','1758','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2318','1758','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2319','1758','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2320','1758','_elementor_data','[{\"id\":\"41da9d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[],\"isInner\":false},{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elegance \\nRedefined\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"exclusive-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"man-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Men\'s Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"stylish \",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"New Arrivals\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Best Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Top Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our style\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"title_color\":\"#9C05EC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick &amp; Fashion\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#720091\"},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#27052A\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"id\":1715,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own <span style=\\\"background-color: rgb(47, 5, 54);\\\">Style<\\/span><br>\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#2F0536\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\",\"id\":1714,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Style\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Style\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2321','1758','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2322','1758','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2323','1758','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2327','1759','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2328','1759','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2329','1759','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2330','1759','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2331','1759','_elementor_data','[{\"id\":\"41da9d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[],\"isInner\":false},{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elegance \\nRedefined\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"exclusive-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"man-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Men\'s Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"stylish \",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"New Arrivals\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Best Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Top Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our style\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"title_color\":\"#9C05EC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick &amp; Fashion\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#720091\"},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#27052A\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"id\":1715,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own <span style=\\\"background-color: rgb(47, 5, 54);\\\">Style<\\/span><br>\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#2F0536\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\",\"id\":1714,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Style\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Style\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2332','1759','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2333','1759','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2334','1759','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2335','1760','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2336','1760','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2337','1760','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2338','1760','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2339','1760','_elementor_data','[{\"id\":\"41da9d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[],\"isInner\":false},{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elegance \\nRedefined\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"exclusive-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"man-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Men\'s Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"stylish \",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"New Arrivals\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Best Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Top Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our style\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"title_color\":\"#9C05EC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick &amp; Fashion\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#720091\"},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#27052A\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"id\":1715,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own <span style=\\\"background-color: rgb(47, 5, 54);\\\">Style<\\/span><br>\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#2F0536\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\",\"id\":1714,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Style\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Style\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2340','1760','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2341','1760','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2342','1760','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2343','1761','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2344','1761','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2345','1761','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2346','1761','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2347','1761','_elementor_data','[{\"id\":\"41da9d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[],\"isInner\":false},{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elegance \\nRedefined\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"exclusive-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"man-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Men\'s Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"stylish \",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"New Arrivals\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Best Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Top Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2C093B\"},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our style\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"title_color\":\"#9C05EC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick &amp; Fashion\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#720091\"},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#27052A\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"id\":1715,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own <span style=\\\"background-color: rgb(47, 5, 54);\\\">Style<\\/span><br>\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#2F0536\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\",\"id\":1714,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Style\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Style\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2348','1761','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2349','1761','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2350','1761','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2354','1762','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2355','1762','_wp_trash_meta_time','1780802721');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2356','1763','_edit_lock','1780803073:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2366','1765','_menu_item_type','post_type');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2367','1765','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2368','1765','_menu_item_object_id','8');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2369','1765','_menu_item_object','page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2370','1765','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2371','1765','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2372','1765','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2373','1765','_menu_item_url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2375','1766','_menu_item_type','post_type');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2376','1766','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2377','1766','_menu_item_object_id','6');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2378','1766','_menu_item_object','page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2379','1766','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2380','1766','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2381','1766','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2382','1766','_menu_item_url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2393','1768','_edit_lock','1780831496:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2394','1768','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2395','1768','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2396','1768','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2397','1768','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2400','1771','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2401','1771','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2402','1771','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2403','1771','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2404','1771','_elementor_data','[{\"id\":\"41da9d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[],\"isInner\":false},{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elegance \\nRedefined\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"exclusive-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"man-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Men\'s Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"stylish \",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"New Arrivals\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Best Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Top Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2C093B\"},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our style\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"title_color\":\"#9C05EC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick &amp; Fashion\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#720091\"},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#27052A\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"id\":1715,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own <span style=\\\"background-color: rgb(47, 5, 54);\\\">Style<\\/span><br>\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#2F0536\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\",\"id\":1714,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Style\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Style\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2405','1771','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2406','1771','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2407','1771','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2410','1772','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2411','1772','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2412','1772','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2413','1772','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2414','1772','_elementor_data','[{\"id\":\"41da9d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[],\"isInner\":false},{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elegance \\nRedefined\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"exclusive-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"man-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Men\'s Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"stylish \",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"New Arrivals\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Best Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Top Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2C093B\"},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our style\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"title_color\":\"#9C05EC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick &amp; Fashion\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#720091\"},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#27052A\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"id\":1715,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own <span style=\\\"background-color: rgb(47, 5, 54);\\\">Style<\\/span><br>\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#2F0536\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\",\"id\":1714,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Style\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Style\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2415','1772','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2416','1772','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2417','1772','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2420','1773','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2421','1773','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2422','1773','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2423','1773','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2424','1773','_elementor_data','[{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elegance \\nRedefined\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"exclusive-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"man-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Men\'s Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"stylish \",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"New Arrivals\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Best Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Top Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2C093B\"},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our style\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"title_color\":\"#9C05EC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick &amp; Fashion\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#720091\"},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#27052A\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"id\":1715,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own <span style=\\\"background-color: rgb(47, 5, 54);\\\">Style<\\/span><br>\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#2F0536\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\",\"id\":1714,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Style\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Style\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2425','1773','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2426','1773','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2427','1773','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2440','1775','_edit_last','17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2441','1775','_edit_lock','1780804359:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2442','1775','_thumbnail_id','1735');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2443','1775','cartflows_redirect_flow_id','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2444','1775','cartflows_add_to_cart_text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2445','1775','total_sales','5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2446','1775','_tax_status','taxable');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2447','1775','_tax_class','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2448','1775','_manage_stock','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2449','1775','_backorders','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2450','1775','_sold_individually','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2451','1775','_virtual','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2452','1775','_downloadable','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2453','1775','_download_limit','-1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2454','1775','_download_expiry','-1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2455','1775','_stock',NULL);
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2456','1775','_stock_status','instock');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2457','1775','_wc_average_rating','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2458','1775','_wc_review_count','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2459','1775','_product_version','9.2.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2460','1775','_regular_price','900');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2461','1775','_price','900');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2462','1775','_kad_post_transparent','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2463','1775','_kad_post_layout','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2464','1775','_kad_post_content_style','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2465','1775','_kad_post_vertical_padding','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2466','1776','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2467','1776','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2468','1776','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2469','1776','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2470','1777','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2471','1777','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2472','1777','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2473','1777','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2474','1768','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2475','1768','_elementor_data','[{\"id\":\"6b188cf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"0c210c9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"wp-widget-woocommerce_products\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2476','1778','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2477','1778','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2478','1778','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2479','1778','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2480','1778','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2481','1778','_elementor_data','[{\"id\":\"6b188cf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"0c210c9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"wp-widget-woocommerce_products\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2482','1768','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2483','1768','_elementor_controls_usage','a:2:{s:30:\"wp-widget-woocommerce_products\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2488','1779','_menu_item_type','post_type');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2489','1779','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2490','1779','_menu_item_object_id','511');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2491','1779','_menu_item_object','page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2492','1779','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2493','1779','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2494','1779','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2495','1779','_menu_item_url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2497','1780','_menu_item_type','post_type');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2498','1780','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2499','1780','_menu_item_object_id','7');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2500','1780','_menu_item_object','page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2501','1780','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2502','1780','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2503','1780','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2504','1780','_menu_item_url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2506','1781','_menu_item_type','post_type');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2507','1781','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2508','1781','_menu_item_object_id','1768');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2509','1781','_menu_item_object','page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2510','1781','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2511','1781','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2512','1781','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2513','1781','_menu_item_url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2515','1782','_menu_item_type','post_type');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2516','1782','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2517','1782','_menu_item_object_id','14');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2518','1782','_menu_item_object','page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2519','1782','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2520','1782','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2521','1782','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2522','1782','_menu_item_url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2524','1783','_edit_last','17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2525','1783','_edit_lock','1780804201:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2526','1783','_thumbnail_id','1744');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2527','1783','cartflows_redirect_flow_id','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2528','1783','cartflows_add_to_cart_text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2529','1783','total_sales','2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2530','1783','_tax_status','taxable');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2531','1783','_tax_class','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2532','1783','_manage_stock','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2533','1783','_backorders','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2534','1783','_sold_individually','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2535','1783','_virtual','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2536','1783','_downloadable','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2537','1783','_download_limit','-1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2538','1783','_download_expiry','-1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2539','1783','_stock',NULL);
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2540','1783','_stock_status','instock');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2541','1783','_wc_average_rating','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2542','1783','_wc_review_count','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2543','1783','_product_version','9.2.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2544','1783','_regular_price','900');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2545','1783','_price','900');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2546','1783','_kad_post_transparent','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2547','1783','_kad_post_layout','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2548','1783','_kad_post_content_style','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2549','1783','_kad_post_vertical_padding','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2550','1784','_edit_last','17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2551','1784','_edit_lock','1780804276:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2552','1784','_thumbnail_id','1717');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2553','1784','cartflows_redirect_flow_id','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2554','1784','cartflows_add_to_cart_text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2555','1784','total_sales','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2556','1784','_tax_status','taxable');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2557','1784','_tax_class','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2558','1784','_manage_stock','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2559','1784','_backorders','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2560','1784','_sold_individually','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2561','1784','_virtual','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2562','1784','_downloadable','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2563','1784','_download_limit','-1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2564','1784','_download_expiry','-1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2565','1784','_stock',NULL);
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2566','1784','_stock_status','instock');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2567','1784','_wc_average_rating','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2568','1784','_wc_review_count','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2569','1784','_product_version','9.2.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2570','1784','_regular_price','900');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2571','1784','_price','900');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2572','1784','_kad_post_transparent','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2573','1784','_kad_post_layout','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2574','1784','_kad_post_content_style','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2575','1784','_kad_post_vertical_padding','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2576','1785','_edit_last','17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2577','1785','_thumbnail_id','1739');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2578','1785','cartflows_redirect_flow_id','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2579','1785','cartflows_add_to_cart_text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2580','1785','total_sales','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2581','1785','_tax_status','taxable');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2582','1785','_tax_class','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2583','1785','_manage_stock','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2584','1785','_backorders','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2585','1785','_sold_individually','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2586','1785','_virtual','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2587','1785','_downloadable','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2588','1785','_download_limit','-1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2589','1785','_download_expiry','-1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2590','1785','_stock',NULL);
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2591','1785','_stock_status','instock');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2592','1785','_wc_average_rating','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2593','1785','_wc_review_count','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2594','1785','_product_version','9.2.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2595','1785','_regular_price','900');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2596','1785','_price','900');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2597','1785','_kad_post_transparent','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2598','1785','_kad_post_layout','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2599','1785','_kad_post_content_style','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2600','1785','_kad_post_vertical_padding','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2601','1785','_edit_lock','1780804952:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2607','1763','_customize_restore_dismissed','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2608','1787','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2609','1787','_wp_trash_meta_time','1780804985');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2610','1788','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2611','1788','_wp_trash_meta_time','1780805219');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2621','1790','_menu_item_type','post_type');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2622','1790','_menu_item_menu_item_parent','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2623','1790','_menu_item_object_id','15');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2624','1790','_menu_item_object','page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2625','1790','_menu_item_target','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2626','1790','_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2627','1790','_menu_item_xfn','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2628','1790','_menu_item_url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2630','1791','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2631','1791','_wp_trash_meta_time','1780805636');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2644','1793','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2645','1793','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2646','1793','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2647','1793','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2648','1793','_elementor_data','[{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elegance \\nRedefined\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"exclusive-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"man-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Men\'s Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"stylish \",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"New Arrivals\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Best Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Top Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2C093B\"},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our style\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"title_color\":\"#9C05EC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick &amp; Fashion\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#720091\"},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#27052A\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"id\":1715,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own <span style=\\\"background-color: rgb(47, 5, 54);\\\">Style<\\/span><br>\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#2F0536\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\",\"id\":1714,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Style\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Style\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2649','1793','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2650','1793','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2651','1793','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2654','1794','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2655','1794','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2656','1794','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2657','1794','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2658','1794','_elementor_data','[{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elegance \\nRedefined\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"exclusive-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"man-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Men\'s Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"stylish \",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"New Arrivals\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Best Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Top Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2C093B\"},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our style\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"title_color\":\"#9C05EC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick &amp; Fashion\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#720091\"},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#27052A\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"id\":1715,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own <span style=\\\"background-color: rgb(47, 5, 54);\\\">Style<\\/span><br>\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#2F0536\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\",\"id\":1714,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Style\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Style\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2659','1794','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2660','1794','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2661','1794','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2664','1795','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2665','1795','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2666','1795','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2667','1795','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2668','1795','_elementor_data','[{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elegance \\nRedefined\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"exclusive-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"man-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Men\'s Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"stylish \",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"New Arrivals\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Best Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Top Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2C093B\"},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our style\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"title_color\":\"#9C05EC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick &amp; Fashion\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#720091\"},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#27052A\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"id\":1715,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own <span style=\\\"background-color: rgb(47, 5, 54);\\\">Style<\\/span><br>\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#2F0536\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\",\"id\":1714,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Style\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Style\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2669','1795','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2670','1795','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2671','1795','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2679','14','_edit_lock','1780818569:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2680','511','_edit_lock','1780818745:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2681','1796','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2682','1796','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2683','1796','_elementor_version','3.1.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2684','1796','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2685','1796','_elementor_data','[{\"id\":\"5f186bc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"22\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a78a2b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"51ff9b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"_margin\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align_tablet\":\"center\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f0b8e95\",\"elType\":\"widget\",\"settings\":{\"title\":\"The story about <br>our pizzeria\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744ebba\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d2731a5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0b9ab8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fe2ad05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Our Restaurant\\n\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d1e8d4\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c45b467\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/stefan-c-asafti-9p6pFEwq-wI-unsplash.jpg\",\"id\":1419},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30e44bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"333b57c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our family history\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4593654\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59c457a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5179301\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founded in 1973\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89a0e68\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a81383\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/signature5fd4f610696d4-e1607792199782.png\",\"id\":1416},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c32e1d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":20,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0742b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/florencia-viadana-Uz1ZeMJ2lsI-unsplash.jpg\",\"id\":1420},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"720\"},\"image_box_shadow_box_shadow\":{\"horizontal\":-20,\"vertical\":20,\"blur\":0,\"spread\":0,\"color\":\"#FFE636\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"993ddb0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.png\",\"id\":1287},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ca7559\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"8951d5b\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.png\",\"id\":1287},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"60\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"118e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e06349e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"e5a85e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e4cd2d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"86c7aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d68b61\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"0433fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2741301\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176a07f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"05b19ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f39c79c\",\"elType\":\"widget\",\"settings\":{\"title\":\"learn More\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1abf81d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Great Crew\\n\",\"align\":\"center\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995abe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e280ef3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"4978b809\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78d5fab1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"5f900540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"317fef3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1472,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-1.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"434abb3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"78bf26d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"William Smith\\n\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da39a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Chef\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"52d0d2a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61452188\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"2786e6c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b55d091\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1474,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-3.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73cb0b42\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"63a68d6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karen Goldsmith\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55f490ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cook\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4819b772\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20650ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"26c02b88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fd05b7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1475,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-4.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d9a434c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"7b844484\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andrew Martinez\\n\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"598c4a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cook\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"17bbd378\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"399e39c9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"293e41fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"28a4b189\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1473,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-2.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18c98f34\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"566ebc6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Matthew Anderson\\n\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13c126e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cook\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9881ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a4721\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9e8d18b\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":1433,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/77525.jpg\"},{\"id\":1434,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/234565.jpg\"},{\"id\":1437,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/23511455.jpg\"},{\"id\":1435,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/5975954.jpg\"}],\"thumbnail_size\":\"full\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2258ec\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf26b5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"114896d\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":1429,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/6956.jpg\"},{\"id\":1430,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/8978.jpg\"},{\"id\":1431,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/12341.jpg\"},{\"id\":1432,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/36737.jpg\"}],\"thumbnail_size\":\"full\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2686','1796','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2689','1797','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2690','1797','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2691','1797','_elementor_version','3.1.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2692','1797','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2693','1797','_elementor_data','[{\"id\":\"5f186bc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"22\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a78a2b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"51ff9b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"_margin\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align_tablet\":\"center\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f0b8e95\",\"elType\":\"widget\",\"settings\":{\"title\":\"The story about <br>our pizzeria\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744ebba\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d2731a5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0b9ab8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fe2ad05\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Our Restaurant\\n\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d1e8d4\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c45b467\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/stefan-c-asafti-9p6pFEwq-wI-unsplash.jpg\",\"id\":1419},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30e44bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"333b57c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our family history\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4593654\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59c457a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5179301\",\"elType\":\"widget\",\"settings\":{\"title\":\"Founded in 1973\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89a0e68\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a81383\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/signature5fd4f610696d4-e1607792199782.png\",\"id\":1416},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c32e1d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":20,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0742b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/florencia-viadana-Uz1ZeMJ2lsI-unsplash.jpg\",\"id\":1420},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"720\"},\"image_box_shadow_box_shadow\":{\"horizontal\":-20,\"vertical\":20,\"blur\":0,\"spread\":0,\"color\":\"#FFE636\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"993ddb0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.png\",\"id\":1287},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ca7559\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"8951d5b\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.png\",\"id\":1287},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"60\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"118e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e06349e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"e5a85e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e4cd2d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"86c7aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d68b61\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"0433fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2741301\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"176a07f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"05b19ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f39c79c\",\"elType\":\"widget\",\"settings\":{\"title\":\"learn More\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1abf81d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Great Crew\\n\",\"align\":\"center\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995abe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e280ef3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"4978b809\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78d5fab1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"5f900540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"317fef3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1472,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-1.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"434abb3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"78bf26d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"William Smith\\n\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10da39a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Chef\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"52d0d2a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61452188\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"2786e6c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b55d091\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1474,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-3.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73cb0b42\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"63a68d6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karen Goldsmith\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55f490ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cook\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4819b772\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20650ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"26c02b88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fd05b7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1475,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-4.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d9a434c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"7b844484\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andrew Martinez\\n\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"598c4a79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cook\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"17bbd378\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"399e39c9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"293e41fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"28a4b189\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1473,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-2.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18c98f34\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"566ebc6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Matthew Anderson\\n\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13c126e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cook\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9881ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a4721\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9e8d18b\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":1433,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/77525.jpg\"},{\"id\":1434,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/234565.jpg\"},{\"id\":1437,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/23511455.jpg\"},{\"id\":1435,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/5975954.jpg\"}],\"thumbnail_size\":\"full\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2258ec\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"cf26b5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"114896d\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":1429,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/6956.jpg\"},{\"id\":1430,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/8978.jpg\"},{\"id\":1431,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/12341.jpg\"},{\"id\":1432,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/36737.jpg\"}],\"thumbnail_size\":\"full\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2694','1797','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2697','1798','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2698','1798','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2699','1798','_elementor_version','3.1.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2700','1798','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2701','1798','_elementor_data','[{\"id\":\"5f186bc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"22\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#14061A\"},\"elements\":[{\"id\":\"a78a2b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"51ff9b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"_margin\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align_tablet\":\"center\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f0b8e95\",\"elType\":\"widget\",\"settings\":{\"title\":\"The story about <br>our SHOP\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744ebba\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c32e1d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":20,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0742b0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/\\u2014Pngtree\\u2014letter-t-shopping-logo-alphabet_6953022.png\",\"id\":1723,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"720\"},\"image_box_shadow_box_shadow\":{\"horizontal\":-20,\"vertical\":20,\"blur\":0,\"spread\":0,\"color\":\"#FFE636\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"993ddb0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.png\",\"id\":1287},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"},\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ca7559\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"8951d5b\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.png\",\"id\":1287},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"60\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"118e70f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e06349e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"e5a85e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e4cd2d1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"86c7aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d68b61\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"0433fc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2741301\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e280ef3\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"4978b809\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78d5fab1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"5f900540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"da32baa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1472,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-1.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"434abb3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"78bf26d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"William Smith\\n\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"52d0d2a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61452188\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"2786e6c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b55d091\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1474,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-3.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"317fef3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1472,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-1.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73cb0b42\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"63a68d6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karen Goldsmith\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4819b772\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20650ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"26c02b88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7fd05b7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1475,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-4.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d9a434c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"7b844484\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andrew Martinez\\n\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"17bbd378\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"399e39c9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"293e41fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"28a4b189\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1473,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-2.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18c98f34\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ff22a73\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"409ef6a\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"b8a65e0\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(255, 255, 255, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"\",\"_background_color\":\"globals\\/colors?id=kadence1\",\"hover_secondary_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"566ebc6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Matthew Anderson\\n\",\"header_size\":\"h5\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9881ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a4721\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9e8d18b\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\"},{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\"},{\"id\":1731,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM-1.jpg\"},{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\"}],\"thumbnail_size\":\"full\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2702','1798','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2705','511','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2706','511','_elementor_controls_usage','a:8:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:25:\"typography_text_transform\";i:2;s:5:\"align\";i:6;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:6;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:22:\"typography_font_family\";i:1;s:25:\"typography_letter_spacing\";i:1;s:22:\"typography_line_height\";i:1;s:20:\"typography_font_size\";i:1;s:5:\"align\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:15;s:21:\"space_between_widgets\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:6;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:27:\"image_box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:6;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:6:\"layout\";i:2;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:9;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:9;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:2;s:27:\"background_overlay_position\";i:2;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:3:{s:13:\"ending_number\";i:3;s:5:\"title\";i:4;s:6:\"suffix\";i:2;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:29:\"typography_number_line_height\";i:4;}s:13:\"section_title\";a:4:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_line_height\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:1:{s:16:\"social_icon_list\";i:4;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:6:{s:10:\"icon_color\";i:4;s:18:\"icon_primary_color\";i:4;s:20:\"icon_secondary_color\";i:4;s:9:\"icon_size\";i:4;s:12:\"icon_padding\";i:4;s:12:\"icon_spacing\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:4;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:4;}}}}s:13:\"image-gallery\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:2:{s:10:\"wp_gallery\";i:1;s:14:\"thumbnail_size\";i:1;}}s:5:\"style\";a:1:{s:22:\"section_gallery_images\";a:2:{s:13:\"image_spacing\";i:1;s:20:\"image_spacing_custom\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2709','865','_edit_lock','1780818837:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2710','1799','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2711','1799','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2712','1799','_elementor_version','3.1.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2713','1799','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2714','1799','_elementor_data','[{\"id\":\"2c66e6c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"background_position_tablet\":\"center right\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"a9018ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"cf1eb61\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/olga-team-DijH3cxId6w-unsplash.png\",\"id\":1240},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3ea7037\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"803fa42\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa7f0a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"afb6890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Offer Today\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf446b9\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"align\":\"left\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"059fb2c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Fresh 100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} meat\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"658e1f3\"},{\"text\":\"Fresh 100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} meat\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"1e6e0ba\"},{\"text\":\"Organic vegetables\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"052a638\"},{\"text\":\"Organic vegetables\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"fdb1441\"},{\"text\":\"Brand new taste!\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"b981288\"},{\"text\":\"Brand new taste!\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"33a769a\"}],\"space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_font_family\":\"Source Sans Pro\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"icon_align_mobile\":\"center\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a3964cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12cf9a1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"f0aee7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":20,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/jakub-kapusnak-4f4YZfDMLeU-unsplash.jpg\",\"id\":560},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#272727\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"e805f9b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"96bd556\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"26e9da4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/jakub-kapusnak-4f4YZfDMLeU-unsplash.jpg\",\"id\":560}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"efece87\",\"elType\":\"widget\",\"settings\":{\"title\":\"EVERY DAY<br> SPECIALS\\n\",\"header_size\":\"h4\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3aef0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"14d8257\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":20,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/paula-vermeulen-URjZkhqsuBk-unsplash.jpg\",\"id\":556},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#272727\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"869c4d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"883412a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"76d01e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/paula-vermeulen-URjZkhqsuBk-unsplash.jpg\",\"id\":556}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a5476d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIZZERIA <br>RESERVATIONS\",\"header_size\":\"h4\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"84405ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9c3381a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":20,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/terry-jaskiw-HSQdIUL3o1s-unsplash.jpg\",\"id\":559},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#272727\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"d053e94\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"0994065\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"e05f62f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/terry-jaskiw-HSQdIUL3o1s-unsplash.jpg\",\"id\":559}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c3c5017\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE DELIVER <br>AT YOUR DOOR\",\"header_size\":\"h4\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc47d8c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8a2c7d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/restaurant-690569_1920.jpg\",\"id\":721},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#00000008\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":0,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"352fe54\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36cd4b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The best burgers you will ever find !\\n\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"536299a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"854016d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8171252\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/transparent-img.png\",\"id\":1236},\"lazy_load\":\"yes\",\"lightbox\":\"yes\",\"play_icon_color\":\"#FFFFFF\",\"play_icon_size_mobile\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c311672\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73f8873\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fdb04c6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[{\"id\":\"9a4ac74\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bd51fdc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Menu\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c179c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE\\u2019VE GOT YOU COVERED!\\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae01587\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe0f409\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a9297ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_hover_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_hover_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"27d57cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/FoodIcons-Converted_05.png\",\"id\":876},\"title_text\":\"FAST DELIVERY\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"0250871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_hover_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_hover_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"707f8a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/FoodIcons-Converted_10.png\",\"id\":877},\"title_text\":\"PICKUP IN STORE\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"ac0a0a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_hover_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_hover_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"1ff51ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/FoodIcons-Converted_03.png\",\"id\":875},\"title_text\":\"SEAT RESERVATION\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"e9a253d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_hover_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_hover_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"b1b67ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/FoodIcons-Converted_13.png\",\"id\":878},\"title_text\":\"CATERING IS AN OPTION\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fa8586c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72f1ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"690b0fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6165df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2aa42f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"BOOK YOUR TABLE NOW FOR THE BEST CHOW\\n\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e20ce65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76c7277\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download App\",\"align\":\"right\",\"icon_align\":\"right\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\",\"button_text_color\":\"\"},\"button_text_color\":\"#ffffff\",\"background_color\":\"#ffb91a\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2715','1800','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2716','1800','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2717','1800','_elementor_version','3.1.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2718','1800','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2719','1800','_elementor_data','[{\"id\":\"2c66e6c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"background_position_tablet\":\"center right\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"a9018ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"cf1eb61\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/olga-team-DijH3cxId6w-unsplash.png\",\"id\":1240},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3ea7037\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"803fa42\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa7f0a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"afb6890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Offer Today\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf446b9\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"align\":\"left\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"059fb2c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Fresh 100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} meat\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"658e1f3\"},{\"text\":\"Fresh 100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} meat\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"1e6e0ba\"},{\"text\":\"Organic vegetables\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"052a638\"},{\"text\":\"Organic vegetables\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"fdb1441\"},{\"text\":\"Brand new taste!\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"b981288\"},{\"text\":\"Brand new taste!\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"33a769a\"}],\"space_between\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_font_family\":\"Source Sans Pro\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"icon_align_mobile\":\"center\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a3964cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12cf9a1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"f0aee7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":20,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/jakub-kapusnak-4f4YZfDMLeU-unsplash.jpg\",\"id\":560},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#272727\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"e805f9b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"96bd556\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"26e9da4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/jakub-kapusnak-4f4YZfDMLeU-unsplash.jpg\",\"id\":560}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"efece87\",\"elType\":\"widget\",\"settings\":{\"title\":\"EVERY DAY<br> SPECIALS\\n\",\"header_size\":\"h4\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3aef0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"14d8257\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":20,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/paula-vermeulen-URjZkhqsuBk-unsplash.jpg\",\"id\":556},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#272727\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"869c4d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"883412a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"76d01e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/paula-vermeulen-URjZkhqsuBk-unsplash.jpg\",\"id\":556}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a5476d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIZZERIA <br>RESERVATIONS\",\"header_size\":\"h4\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"84405ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9c3381a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":20,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/terry-jaskiw-HSQdIUL3o1s-unsplash.jpg\",\"id\":559},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#272727\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"d053e94\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"0994065\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"e05f62f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/terry-jaskiw-HSQdIUL3o1s-unsplash.jpg\",\"id\":559}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c3c5017\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE DELIVER <br>AT YOUR DOOR\",\"header_size\":\"h4\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc47d8c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8a2c7d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/restaurant-690569_1920.jpg\",\"id\":721},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#00000008\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":0,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"352fe54\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36cd4b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The best burgers you will ever find !\\n\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"536299a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"854016d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8171252\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/transparent-img.png\",\"id\":1236},\"lazy_load\":\"yes\",\"lightbox\":\"yes\",\"play_icon_color\":\"#FFFFFF\",\"play_icon_size_mobile\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c311672\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73f8873\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fdb04c6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[{\"id\":\"9a4ac74\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bd51fdc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Menu\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c179c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE\\u2019VE GOT YOU COVERED!\\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae01587\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe0f409\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a9297ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_hover_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_hover_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"27d57cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/FoodIcons-Converted_05.png\",\"id\":876},\"title_text\":\"FAST DELIVERY\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"0250871\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_hover_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_hover_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"707f8a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/FoodIcons-Converted_10.png\",\"id\":877},\"title_text\":\"PICKUP IN STORE\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"ac0a0a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_hover_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_hover_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"1ff51ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/FoodIcons-Converted_03.png\",\"id\":875},\"title_text\":\"SEAT RESERVATION\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"e9a253d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_hover_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_hover_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"b1b67ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/FoodIcons-Converted_13.png\",\"id\":878},\"title_text\":\"CATERING IS AN OPTION\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fa8586c\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72f1ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"690b0fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6165df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2aa42f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"BOOK YOUR TABLE NOW FOR THE BEST CHOW\\n\",\"typography_font_family\":\"Oswald\",\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e20ce65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76c7277\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download App\",\"align\":\"right\",\"icon_align\":\"right\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence2\",\"button_text_color\":\"\"},\"button_text_color\":\"#ffffff\",\"background_color\":\"#ffb91a\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2720','1801','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2721','1801','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2722','1801','_elementor_version','3.1.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2723','1801','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2724','1801','_elementor_data','[{\"id\":\"2c66e6c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"background_position_tablet\":\"center right\",\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"a9018ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"cf1eb61\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3ea7037\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"803fa42\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"aa7f0a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"afb6890\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Offer Today\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"typography_font_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf446b9\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"align\":\"left\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a3964cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12cf9a1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence8\"}},\"elements\":[{\"id\":\"f0aee7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":20,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/jakub-kapusnak-4f4YZfDMLeU-unsplash.jpg\",\"id\":560},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#272727\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"e805f9b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"96bd556\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"26e9da4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"efece87\",\"elType\":\"widget\",\"settings\":{\"title\":\"EVERY DAY<br> SPECIALS\\n\",\"header_size\":\"h4\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f3aef0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"14d8257\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":20,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/paula-vermeulen-URjZkhqsuBk-unsplash.jpg\",\"id\":556},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#272727\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"869c4d4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"883412a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"76d01e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_09-PM.png\",\"id\":1726,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a5476d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIZZERIA <br>RESERVATIONS\",\"header_size\":\"h4\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"84405ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9c3381a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":20,\"blur\":60,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/terry-jaskiw-HSQdIUL3o1s-unsplash.jpg\",\"id\":559},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#272727\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"d053e94\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence9\"}},\"elements\":[{\"id\":\"0994065\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"e05f62f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c3c5017\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE DELIVER <br>AT YOUR DOOR\",\"header_size\":\"h4\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc47d8c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c311672\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73f8873\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fdb04c6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[{\"id\":\"9a4ac74\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bd51fdc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best style\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c179c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE\\u2019VE GOT YOU COVERED!\\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae01587\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2725','865','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2726','865','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2727','865','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:11;s:16:\"content_position\";i:2;s:21:\"space_between_widgets\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:4:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:15:\"background_size\";i:3;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:3;s:21:\"box_shadow_box_shadow\";i:3;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_color\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:8;s:6:\"margin\";i:3;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:2;s:25:\"typography_letter_spacing\";i:1;s:5:\"align\";i:6;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:22:\"typography_font_family\";i:1;s:25:\"typography_letter_spacing\";i:1;s:22:\"typography_line_height\";i:1;s:20:\"typography_font_size\";i:1;s:5:\"align\";i:5;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:10:\"icon_align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:12:\"align_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:16:\"content_position\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:5;s:19:\"background_position\";i:2;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;}s:26:\"section_background_overlay\";a:5:{s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2743','1803','_edit_lock','1780819147:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2744','1806','_wp_attached_file','2026/06/ai-image-20260607-075852-46d713133d9ab3faadc9dcb4.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2745','1806','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260607-075852-46d713133d9ab3faadc9dcb4.png\";s:8:\"filesize\";i:1441937;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2746','1806','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260607-075852-46d713133d9ab3faadc9dcb4.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2747','1803','_thumbnail_id','1806');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2748','1803','_encloseme','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2749','1803','_edit_last','17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2750','1803','_wp_old_slug','{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}ab{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a7{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}8d{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}af{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}be{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}b6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a8-{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}b8{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a7{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}8d{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}9f{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}be{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}87{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}b2-{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}86{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a7{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a7{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}81{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a8{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}bf{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}95-{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}af{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a7{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}81{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}97');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2751','1807','_wp_attached_file','2026/06/Elementor.zip');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2752','1807','_wp_attachment_context','upgrader');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2760','1811','wcf-flow-id','1810');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2761','1811','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2762','1811','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2763','1811','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2764','1811','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2765','1811','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2766','1811','wcf-product-options','multiple-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2767','1811','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2768','1811','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2769','1811','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2770','1811','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2771','1811','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2772','1811','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2773','1811','_elementor_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2774','1811','_elementor_pro_version','3.7.7');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2775','1811','_edit_lock','1710323659:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2776','1811','wcf-pro-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2777','1811','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2778','1811','_elementor_data','[{\"id\":\"21a3086\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#670202\",\"background_overlay_background\":\"classic\",\"shape_divider_top\":\"mountains\",\"shape_divider_top_color\":\"#C15D00\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":72,\"sizes\":[]},\"flex_gap\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":280,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom\":\"wave-brush\",\"shape_divider_bottom_color\":\"#E37A21\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42c4642\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1cafb3c\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"711331f\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u09b6\\u09c0\\u09a4\\u09c7 \\u09b0\\u09be\\u099c\\u09b6\\u09be\\u09b9\\u09c0\\u09b0 \\u0990\\u09a4\\u09bf\\u09b9\\u09cd\\u09af\\u09ac\\u09be\\u09b9\\u09c0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0997\\u09c1\\u09a1\\u09bc\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tiro Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":3,\"vertical\":3,\"blur\":2,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"-6\",\"bottom\":\"-6\",\"left\":\"-6\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"e739820\",\"settings\":{\"editor\":\"<p><strong>\\u09ad\\u09c7\\u099c\\u09be\\u09b2\\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u0997\\u09c1\\u09dc<\\/strong><b><b> \\u09ae\\u09be\\u09a8\\u09c7 \\u09ac\\u09be\\u0999\\u09be\\u09b2\\u09bf\\u09b0 \\u0995\\u09be\\u099b\\u09c7, \\u09b8\\u09be\\u09b9\\u09be\\u09ac\\u09be \\u09ab\\u09c1\\u09a1-\\u098f\\u09b0 \\u0997\\u09c1\\u09dc \\u099b\\u09be\\u09dc\\u09be \\u0986\\u09b0 \\u0995\\u09bf \\u0986\\u099b\\u09c7<\\/b><\\/b><\\/p>\",\"align\":\"center\",\"text_color\":\"#F9E47C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"-41\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"ace5688\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":903,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f68e209\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/iMpHa3OlAWQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FF6000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"image_overlay\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"8098392\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_background\":\"gradient\",\"background_color\":\"#D48200\",\"background_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#F41000\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":2,\"vertical\":2,\"blur\":2,\"color\":\"rgba(0,0,0,0.3)\"},\"_animation\":\"bounceIn\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_padding\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"ca040c6\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#7B0101\",\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#E37A21\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":99.583},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"padding\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b706dea\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":1338,\"sizes\":[]},\"flex_direction\":\"row\",\"shape_divider_bottom\":\"mountains\",\"shape_divider_bottom_color\":\"#E58618\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":72,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"807ce5e\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"px\",\"size\":1331,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9c0802b\",\"settings\":{\"title\":\"\\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09a1\\u09bc \\u099a\\u09c7\\u09a8\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09df \\u2b07\\ufe0f\",\"align\":\"center\",\"title_color\":\"#FEFEFB\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"13\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B80404\",\"_mask_shape\":\"custom\",\"text_shadow_text_shadow_type\":\"yes\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"86b478b\",\"settings\":{\"editor\":\"<p><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/> \\u0996\\u09be\\u0981\\u099f\\u09bf \\u0997\\u09c1\\u09a1\\u09bc\\u09c7 \\u09a8\\u09cd\\u09af\\u09be\\u099a\\u09be\\u09b0\\u09be\\u09b2 \\u09b8\\u09c1\\u0998\\u09cd\\u09b0\\u09be\\u09a3 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u0964<\\/strong><br \\/><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/>\\u00a0\\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0997\\u09be\\u09dd\\u09cb \\u09b2\\u09be\\u09b2\\u099a\\u09c7 \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u09b9\\u09ac\\u09c7\\u0964<\\/strong><br \\/><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/> \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u0997\\u09c1\\u09dc \\u099a\\u09be\\u09aa \\u09a6\\u09bf\\u09b2\\u09c7 \\u09ad\\u09c7\\u0999\\u09c7 \\u09af\\u09be\\u09ac\\u09c7\\u0964<\\/strong><br \\/><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/>\\u00a0\\u09a6\\u09be\\u09a8\\u09be \\u0997\\u09c1\\u09dc \\u0985\\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a8 \\u09a6\\u09be\\u09a8\\u09be\\u09a6\\u09be\\u09b0 \\u09b9\\u09ac\\u09c7\\u0964<\\/strong><br \\/><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/> \\u099d\\u09cb\\u09b2\\u09be \\u0997\\u09c1\\u09dc \\u09ae\\u09bf\\u09b7\\u09cd\\u099f \\u0993 \\u09b8\\u09c1\\u0998\\u09cd\\u09b0\\u09be\\u09a3 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u0964<\\/strong><br \\/><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/> \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b0 \\u09b2\\u09ac\\u09a3\\u09be\\u0995\\u09cd\\u09a4 \\u09b2\\u09be\\u0997\\u09ac\\u09c7 \\u09a8\\u09be\\u0964<\\/strong><\\/p>\",\"text_columns\":\"1\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"align\":\"left\",\"text_color\":\"#FFFAFA\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"4670577\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1331,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5675a17\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8? <img draggable=\\\"false\\\" role=\\\"img\\\" class=\\\"emoji\\\" alt=\\\"\\u2b07\\ufe0f\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2b07.svg\\\">\",\"align\":\"center\",\"title_color\":\"#FEFEFB\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#B80404\",\"text_shadow_text_shadow_type\":\"yes\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"88a93a5\",\"settings\":{\"editor\":\"<p><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/>\\u00a0<\\/strong><b>\\u0985\\u09a5\\u09c7\\u09a8\\u09cd\\u099f\\u09bf\\u0995 \\u09ad\\u09c7\\u099c\\u09be\\u09b2\\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09a1\\u09bc \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be\\u0964<\\/b><br \\/><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/>\\u00a0\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09c0\\u09ae \\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964<\\/strong><br \\/><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/>\\u00a0\\u0997\\u09c1\\u09a1\\u09bc \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09af\\u09bc\\u09cb\\u099c\\u09a8\\u09c7 \\u0996\\u09c7\\u09af\\u09bc\\u09c7 \\u09b0\\u09bf\\u09b8\\u09bf\\u09ad \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964<\\/strong><br \\/><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/> \\u0985\\u09a5\\u09c7\\u09a8\\u09cd\\u099f\\u09bf\\u0995 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09a8\\u09be \\u09aa\\u09c7\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09a5\\u09be\\u0995\\u099b\\u09c7\\u0964<\\/strong><\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFAFA\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"7ebe0a8\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a78f0ae\",\"settings\":{\"title\":\"\\u09b8\\u09ae\\u09cd\\u09ae\\u09be\\u09a8\\u09bf\\u09a4 \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0\\u09c7\\u09b0 \\u09ae\\u09a4\\u09be\\u09ae\\u09a4\\u0983\",\"size\":\"medium\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_background\":\"gradient\",\"_background_hover_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":8,\"sizes\":[]},\"_background_hover_color_b\":\"#ADADAD\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_animation\":\"none\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"41\",\"bottom\":\"41\",\"left\":\"41\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"242af3c\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6dc7049\",\"settings\":{\"slides\":[{\"background_color\":\"#F3F4F3\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_size\":\"contain\",\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"_id\":\"5b29dc8\",\"background_ken_burns\":\"\",\"zoom_direction\":\"in\",\"background_overlay\":\"\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"background_overlay_blend_mode\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\",\"repeater_text_shadow_text_shadow_type\":\"\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"background_color\":\"#F3F4F3\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_size\":\"contain\",\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"_id\":\"711e03a\",\"background_ken_burns\":\"\",\"zoom_direction\":\"in\",\"background_overlay\":\"\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"background_overlay_blend_mode\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\",\"repeater_text_shadow_text_shadow_type\":\"\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"background_color\":\"#F3F4F3\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_size\":\"contain\",\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"_id\":\"75d3c45\",\"background_ken_burns\":\"\",\"zoom_direction\":\"in\",\"background_overlay\":\"\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"background_overlay_blend_mode\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\",\"repeater_text_shadow_text_shadow_type\":\"\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"transition_speed\":1500,\"content_max_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":42,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":101.652},\"_flex_size\":\"none\",\"transition\":\"fade\",\"content_animation\":\"fadeInLeft\",\"slides_padding\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-29\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"button_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_slideshow_gallery\":[],\"button_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_hover_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"slides\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"52ec720\",\"settings\":{\"content_width\":\"full\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"089fcd4\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_background\":\"gradient\",\"background_color\":\"#D48200\",\"background_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#F41000\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":2,\"vertical\":2,\"blur\":2,\"color\":\"rgba(0, 0, 0, 0.45)\"},\"_animation\":\"pulse\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"738d33a\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0f99ea1\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#790000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#E85727\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"overlay_blend_mode\":\"color\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#E6BF69\",\"border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"shape_divider_top\":\"mountains\",\"shape_divider_top_color\":\"#8C0505\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"boxed_width\":{\"unit\":\"px\",\"size\":1043,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":179,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"393c4c7\",\"settings\":{\"title\":\"\\u0985\\u09ab\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u099c\",\"align\":\"center\",\"title_color\":\"#FCAD0F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tiro Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5981dbd\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":24,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":5.4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"style\":\"wavy\",\"pattern_height\":{\"unit\":\"px\",\"size\":21.6,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":24.1,\"sizes\":[]},\"sticky_offset\":2,\"_animation\":\"bounceIn\",\"_animation_delay\":2,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"7732983\",\"settings\":{\"editor\":\"<p>\\ud83d\\udc49\\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u0997\\u09c1\\u09dc <span style=\\\"color: #f9e47c;\\\">(\\u09e9\\u0995\\u09c7\\u099c\\u09bf) \\u2192 \\u09e7\\u09e9\\u09eb\\u09e6\\u099f\\u09be\\u0995\\u09be<\\/span><br \\/>\\ud83d\\udc49\\u09a6\\u09be\\u09a8\\u09be\\u09a6\\u09be\\u09b0 \\u0997\\u09c1\\u09dc <span style=\\\"color: #f9e47c;\\\">(\\u09e9\\u0995\\u09c7\\u099c\\u09bf) \\u2192 \\u09e7\\u09e9\\u09eb\\u09e6\\u099f\\u09be\\u0995\\u09be\\u00a0<\\/span><br \\/>\\ud83d\\udc49\\u099a\\u0995\\u09b2\\u09c7\\u099f\\/\\u09b8\\u09a8\\u09cd\\u09a6\\u09c7\\u09b6 \\u0997\\u09c1\\u09dc <span style=\\\"color: #f9e47c;\\\">(\\u09e8\\u0995\\u09c7\\u099c\\u09bf) \\u2192 \\u09e7\\u09e9\\u09e6\\u09e6\\u099f\\u09be\\u0995\\u09be<\\/span><br \\/>\\ud83d\\udc49\\u099d\\u09cb\\u09b2\\u09be \\u0997\\u09c1\\u09dc <span style=\\\"color: #f9e47c;\\\">(\\u09e9\\u0995\\u09c7\\u099c\\u09bf) \\u2192 \\u09e7\\u09e9\\u09e8\\u09e6<\\/span><span style=\\\"color: #f9e47c;\\\">\\u099f\\u09be\\u0995\\u09be<\\/span><\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"25\",\"bottom\":\"6\",\"left\":\"15\",\"isLinked\":false},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"65ce039\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":54,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":4.6,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"style\":\"dotted\",\"_padding\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"-7\",\"bottom\":\"-7\",\"left\":\"-7\",\"isLinked\":true},\"_animation\":\"fadeInDown\",\"_margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"f9ee3f6\",\"settings\":{\"editor\":\"<p>&gt;&gt; \\u09ab\\u09cd\\u09b0\\u09bf \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 &lt;&lt;<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"-38\",\"bottom\":\"-38\",\"left\":\"-38\",\"isLinked\":true},\"_animation\":\"jello\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"b216099\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":99.583},\"background_background\":\"classic\",\"background_color\":\"#7D0000\",\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#480000\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d717bd4\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"094b087\",\"settings\":{\"title\":\"\\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u099b\\u09be\\u09dc\\u09be\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":2,\"blur\":3,\"color\":\"rgba(0, 0, 0, 0.56)\"},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"df489a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"classic\",\"global_primary_color\":\"#E10000\",\"global_text_color\":\"#FFFFFF\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"global_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"500\",\"heading_text_color\":\"#FDFDFD\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"input_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_color\":\"#FFFFFF\",\"input_bgcolor\":\"#FFFFFF\",\"input_color\":\"#F30606\",\"input_border_style\":\"solid\",\"input_border_size\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"8\",\"isLinked\":false},\"input_border_color\":\"#FF0707\",\"input_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Anek Bangla\",\"buttons_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"buttons_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#FF8800\",\"payment_section_text_color\":\"#B80202\",\"payment_section_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"product_text_color\":\"#E60707\",\"product_bg_color\":\"#F2F7F2\",\"_padding\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":16,\"blur\":10,\"spread\":14,\"color\":\"rgba(250.18331604003905, 48.31715576416258, 2.0093216040668747, 0.5)\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_id\":\"order\",\"product_options_images\":\"yes\",\"btn_hover_color\":\"#FFFFFF\",\"button_background_hover_color_background\":\"classic\",\"button_background_hover_color_color\":\"#C00000\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"0af4728\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f1cf38\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7fb8b83\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"7434960\",\"settings\":{\"title\":\"\\u00a9 2023 SahabaFoodbd.com\",\"header_size\":\"p\",\"align_mobile\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inria Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"783242c\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Refund policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5e9a798\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4e2c037\"},{\"text\":\"Terms of service\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f8d50c\"}],\"space_between\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"space_between_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#4959FF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text_color\":\"#002876\",\"text_color_hover\":\"#1A1E23\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\",\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_color\":\"#A3A3A3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2779','1811','_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2780','1811','_yoast_wpseo_estimated-reading-time-minutes','5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2781','1811','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2782','1811','_yoast_wpseo_content_score','60');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2783','1811','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2784','1811','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2785','1811','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2786','1811','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2787','1811','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2788','1811','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2789','1811','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:28:\"আপনার নামঃ\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:44:\"এখানে নাম লিখুন...\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:37:\"আপনার ঠিকানাঃ\";s:11:\"placeholder\";s:78:\"এখানে সম্পুর্ণ ঠিকানা লিখুন...\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:20;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:50:\"আপনার ফোন নাম্বারঃ\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:30;s:5:\"width\";i:100;s:11:\"placeholder\";s:66:\"এখানে ফোন নাম্বার লিখুন...\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:40;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:50;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:60;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:70;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:80;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:90;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:100;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2790','1811','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2791','1811','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2792','1811','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2793','1811','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2794','1811','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2795','1811','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2796','1811','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2797','1811','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2798','1811','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2799','1811','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2800','1811','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2801','1811','wcf-checkout-rules-option','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2802','1811','wcf-checkout-rules-default-step','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2803','1811','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2804','1811','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2805','1811','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2808','1810','wcf-steps','a:2:{i:0;a:3:{s:2:\"id\";i:1811;s:5:\"title\";s:50:\"সাহাবা ফুড স্পেশাল\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:1813;s:5:\"title\";s:9:\"Thank You\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2809','1812','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2810','1812','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2811','1812','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2812','1812','_elementor_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2813','1812','_elementor_pro_version','3.7.7');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2814','1812','_elementor_data','[{\"id\":\"21a3086\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#670202\",\"background_overlay_background\":\"classic\",\"shape_divider_top\":\"mountains\",\"shape_divider_top_color\":\"#C15D00\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":72,\"sizes\":[]},\"flex_gap\":{\"column\":\"2\",\"row\":\"2\",\"isLinked\":true,\"unit\":\"px\",\"size\":2},\"shape_divider_top_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":280,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":69,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_bottom\":\"wave-brush\",\"shape_divider_bottom_color\":\"#E37A21\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42c4642\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1cafb3c\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"711331f\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u09b6\\u09c0\\u09a4\\u09c7 \\u09b0\\u09be\\u099c\\u09b6\\u09be\\u09b9\\u09c0\\u09b0 \\u0990\\u09a4\\u09bf\\u09b9\\u09cd\\u09af\\u09ac\\u09be\\u09b9\\u09c0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0997\\u09c1\\u09a1\\u09bc\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tiro Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"800\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":3,\"vertical\":3,\"blur\":2,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"-6\",\"bottom\":\"-6\",\"left\":\"-6\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"e739820\",\"settings\":{\"editor\":\"<p><strong>\\u09ad\\u09c7\\u099c\\u09be\\u09b2\\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u0997\\u09c1\\u09dc<\\/strong><b><b> \\u09ae\\u09be\\u09a8\\u09c7 \\u09ac\\u09be\\u0999\\u09be\\u09b2\\u09bf\\u09b0 \\u0995\\u09be\\u099b\\u09c7, \\u09b8\\u09be\\u09b9\\u09be\\u09ac\\u09be \\u09ab\\u09c1\\u09a1-\\u098f\\u09b0 \\u0997\\u09c1\\u09dc \\u099b\\u09be\\u09dc\\u09be \\u0986\\u09b0 \\u0995\\u09bf \\u0986\\u099b\\u09c7<\\/b><\\/b><\\/p>\",\"align\":\"center\",\"text_color\":\"#F9E47C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"-41\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"ace5688\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":903,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f68e209\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/iMpHa3OlAWQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FF6000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"image_overlay\":{\"id\":93,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder.png\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"8098392\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_background\":\"gradient\",\"background_color\":\"#D48200\",\"background_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#F41000\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":2,\"vertical\":2,\"blur\":2,\"color\":\"rgba(0,0,0,0.3)\"},\"_animation\":\"bounceIn\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_padding\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"ca040c6\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#7B0101\",\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#E37A21\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":99.583},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"padding\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b706dea\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":1338,\"sizes\":[]},\"flex_direction\":\"row\",\"shape_divider_bottom\":\"mountains\",\"shape_divider_bottom_color\":\"#E58618\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":72,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"807ce5e\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"px\",\"size\":1331,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9c0802b\",\"settings\":{\"title\":\"\\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09a1\\u09bc \\u099a\\u09c7\\u09a8\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09df \\u2b07\\ufe0f\",\"align\":\"center\",\"title_color\":\"#FEFEFB\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"13\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B80404\",\"_mask_shape\":\"custom\",\"text_shadow_text_shadow_type\":\"yes\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"86b478b\",\"settings\":{\"editor\":\"<p><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/> \\u0996\\u09be\\u0981\\u099f\\u09bf \\u0997\\u09c1\\u09a1\\u09bc\\u09c7 \\u09a8\\u09cd\\u09af\\u09be\\u099a\\u09be\\u09b0\\u09be\\u09b2 \\u09b8\\u09c1\\u0998\\u09cd\\u09b0\\u09be\\u09a3 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u0964<\\/strong><br \\/><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/>\\u00a0\\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0997\\u09be\\u09dd\\u09cb \\u09b2\\u09be\\u09b2\\u099a\\u09c7 \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u09b9\\u09ac\\u09c7\\u0964<\\/strong><br \\/><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/> \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u0997\\u09c1\\u09dc \\u099a\\u09be\\u09aa \\u09a6\\u09bf\\u09b2\\u09c7 \\u09ad\\u09c7\\u0999\\u09c7 \\u09af\\u09be\\u09ac\\u09c7\\u0964<\\/strong><br \\/><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/>\\u00a0\\u09a6\\u09be\\u09a8\\u09be \\u0997\\u09c1\\u09dc \\u0985\\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a8 \\u09a6\\u09be\\u09a8\\u09be\\u09a6\\u09be\\u09b0 \\u09b9\\u09ac\\u09c7\\u0964<\\/strong><br \\/><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/> \\u099d\\u09cb\\u09b2\\u09be \\u0997\\u09c1\\u09dc \\u09ae\\u09bf\\u09b7\\u09cd\\u099f \\u0993 \\u09b8\\u09c1\\u0998\\u09cd\\u09b0\\u09be\\u09a3 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u0964<\\/strong><br \\/><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/> \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b0 \\u09b2\\u09ac\\u09a3\\u09be\\u0995\\u09cd\\u09a4 \\u09b2\\u09be\\u0997\\u09ac\\u09c7 \\u09a8\\u09be\\u0964<\\/strong><\\/p>\",\"text_columns\":\"1\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"align\":\"left\",\"text_color\":\"#FFFAFA\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"4670577\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1331,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5675a17\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8? <img draggable=\\\"false\\\" role=\\\"img\\\" class=\\\"emoji\\\" alt=\\\"\\u2b07\\ufe0f\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2b07.svg\\\">\",\"align\":\"center\",\"title_color\":\"#FEFEFB\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#B80404\",\"text_shadow_text_shadow_type\":\"yes\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"88a93a5\",\"settings\":{\"editor\":\"<p><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/>\\u00a0<\\/strong><b>\\u0985\\u09a5\\u09c7\\u09a8\\u09cd\\u099f\\u09bf\\u0995 \\u09ad\\u09c7\\u099c\\u09be\\u09b2\\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09a1\\u09bc \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be\\u0964<\\/b><br \\/><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/>\\u00a0\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09c0\\u09ae \\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964<\\/strong><br \\/><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/>\\u00a0\\u0997\\u09c1\\u09a1\\u09bc \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09af\\u09bc\\u09cb\\u099c\\u09a8\\u09c7 \\u0996\\u09c7\\u09af\\u09bc\\u09c7 \\u09b0\\u09bf\\u09b8\\u09bf\\u09ad \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964<\\/strong><br \\/><strong><img class=\\\"emoji\\\" role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"\\u2705\\\" \\/> \\u0985\\u09a5\\u09c7\\u09a8\\u09cd\\u099f\\u09bf\\u0995 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09a8\\u09be \\u09aa\\u09c7\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09a5\\u09be\\u0995\\u099b\\u09c7\\u0964<\\/strong><\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFAFA\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"7ebe0a8\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a78f0ae\",\"settings\":{\"title\":\"\\u09b8\\u09ae\\u09cd\\u09ae\\u09be\\u09a8\\u09bf\\u09a4 \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0\\u09c7\\u09b0 \\u09ae\\u09a4\\u09be\\u09ae\\u09a4\\u0983\",\"size\":\"medium\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_background\":\"gradient\",\"_background_hover_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":8,\"sizes\":[]},\"_background_hover_color_b\":\"#ADADAD\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_animation\":\"none\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"41\",\"bottom\":\"41\",\"left\":\"41\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"242af3c\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6dc7049\",\"settings\":{\"slides\":[{\"background_color\":\"#F3F4F3\",\"background_image\":{\"id\":94,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Screenshot_46.jpg\"},\"background_size\":\"contain\",\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"_id\":\"5b29dc8\",\"background_ken_burns\":\"\",\"zoom_direction\":\"in\",\"background_overlay\":\"\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"background_overlay_blend_mode\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\",\"repeater_text_shadow_text_shadow_type\":\"\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"background_color\":\"#F3F4F3\",\"background_image\":{\"id\":95,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Screenshot_45.jpg\"},\"background_size\":\"contain\",\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"_id\":\"711e03a\",\"background_ken_burns\":\"\",\"zoom_direction\":\"in\",\"background_overlay\":\"\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"background_overlay_blend_mode\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\",\"repeater_text_shadow_text_shadow_type\":\"\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"background_color\":\"#F3F4F3\",\"background_image\":{\"id\":96,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Screenshot_47.jpg\"},\"background_size\":\"contain\",\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"_id\":\"75d3c45\",\"background_ken_burns\":\"\",\"zoom_direction\":\"in\",\"background_overlay\":\"\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"background_overlay_blend_mode\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\",\"repeater_text_shadow_text_shadow_type\":\"\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"transition_speed\":1500,\"content_max_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":42,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":101.652},\"_flex_size\":\"none\",\"transition\":\"fade\",\"content_animation\":\"fadeInLeft\",\"slides_padding\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-29\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"button_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_slideshow_gallery\":[],\"button_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_hover_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"slides\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"52ec720\",\"settings\":{\"content_width\":\"full\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"089fcd4\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_background\":\"gradient\",\"background_color\":\"#D48200\",\"background_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":35,\"sizes\":[]},\"background_color_b\":\"#F41000\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":2,\"vertical\":2,\"blur\":2,\"color\":\"rgba(0, 0, 0, 0.45)\"},\"_animation\":\"pulse\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"738d33a\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_overlay_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0f99ea1\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#790000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#E85727\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"overlay_blend_mode\":\"color\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#E6BF69\",\"border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"shape_divider_top\":\"mountains\",\"shape_divider_top_color\":\"#8C0505\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"boxed_width\":{\"unit\":\"px\",\"size\":1043,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":179,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"393c4c7\",\"settings\":{\"title\":\"\\u0985\\u09ab\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u099c\",\"align\":\"center\",\"title_color\":\"#FCAD0F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tiro Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5981dbd\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":24,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":5.4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"style\":\"wavy\",\"pattern_height\":{\"unit\":\"px\",\"size\":21.6,\"sizes\":[]},\"pattern_size\":{\"unit\":\"px\",\"size\":24.1,\"sizes\":[]},\"sticky_offset\":2,\"_animation\":\"bounceIn\",\"_animation_delay\":2,\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"7732983\",\"settings\":{\"editor\":\"<p>\\ud83d\\udc49\\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u0997\\u09c1\\u09dc <span style=\\\"color: #f9e47c;\\\">(\\u09e9\\u0995\\u09c7\\u099c\\u09bf) \\u2192 \\u09e7\\u09e9\\u09eb\\u09e6\\u099f\\u09be\\u0995\\u09be<\\/span><br \\/>\\ud83d\\udc49\\u09a6\\u09be\\u09a8\\u09be\\u09a6\\u09be\\u09b0 \\u0997\\u09c1\\u09dc <span style=\\\"color: #f9e47c;\\\">(\\u09e9\\u0995\\u09c7\\u099c\\u09bf) \\u2192 \\u09e7\\u09e9\\u09eb\\u09e6\\u099f\\u09be\\u0995\\u09be\\u00a0<\\/span><br \\/>\\ud83d\\udc49\\u099a\\u0995\\u09b2\\u09c7\\u099f\\/\\u09b8\\u09a8\\u09cd\\u09a6\\u09c7\\u09b6 \\u0997\\u09c1\\u09dc <span style=\\\"color: #f9e47c;\\\">(\\u09e8\\u0995\\u09c7\\u099c\\u09bf) \\u2192 \\u09e7\\u09e9\\u09e6\\u09e6\\u099f\\u09be\\u0995\\u09be<\\/span><br \\/>\\ud83d\\udc49\\u099d\\u09cb\\u09b2\\u09be \\u0997\\u09c1\\u09dc <span style=\\\"color: #f9e47c;\\\">(\\u09e9\\u0995\\u09c7\\u099c\\u09bf) \\u2192 \\u09e7\\u09e9\\u09e8\\u09e6<\\/span><span style=\\\"color: #f9e47c;\\\">\\u099f\\u09be\\u0995\\u09be<\\/span><\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"25\",\"bottom\":\"6\",\"left\":\"15\",\"isLinked\":false},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_flex_align_self\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"65ce039\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":54,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":4.6,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"style\":\"dotted\",\"_padding\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"-7\",\"bottom\":\"-7\",\"left\":\"-7\",\"isLinked\":true},\"_animation\":\"fadeInDown\",\"_margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"f9ee3f6\",\"settings\":{\"editor\":\"<p>&gt;&gt; \\u09ab\\u09cd\\u09b0\\u09bf \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 &lt;&lt;<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"-38\",\"bottom\":\"-38\",\"left\":\"-38\",\"isLinked\":true},\"_animation\":\"jello\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"b216099\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":99.583},\"background_background\":\"classic\",\"background_color\":\"#7D0000\",\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#480000\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d717bd4\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"094b087\",\"settings\":{\"title\":\"\\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u099b\\u09be\\u09dc\\u09be\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":2,\"blur\":3,\"color\":\"rgba(0, 0, 0, 0.56)\"},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"df489a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"classic\",\"global_primary_color\":\"#E10000\",\"global_text_color\":\"#FFFFFF\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"global_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"500\",\"heading_text_color\":\"#FDFDFD\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"input_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_color\":\"#FFFFFF\",\"input_bgcolor\":\"#FFFFFF\",\"input_color\":\"#F30606\",\"input_border_style\":\"solid\",\"input_border_size\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"8\",\"isLinked\":false},\"input_border_color\":\"#FF0707\",\"input_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Anek Bangla\",\"buttons_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"buttons_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#FF8800\",\"payment_section_text_color\":\"#B80202\",\"payment_section_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"product_text_color\":\"#E60707\",\"product_bg_color\":\"#F2F7F2\",\"_padding\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":16,\"blur\":10,\"spread\":14,\"color\":\"rgba(250.18331604003905, 48.31715576416258, 2.0093216040668747, 0.5)\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_id\":\"order\",\"product_options_images\":\"yes\",\"btn_hover_color\":\"#FFFFFF\",\"button_background_hover_color_background\":\"classic\",\"button_background_hover_color_color\":\"#C00000\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"0af4728\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f1cf38\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7fb8b83\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"7434960\",\"settings\":{\"title\":\"\\u00a9 2023 SahabaFoodbd.com\",\"header_size\":\"p\",\"align_mobile\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inria Serif\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"783242c\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Refund policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5e9a798\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4e2c037\"},{\"text\":\"Terms of service\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f8d50c\"}],\"space_between\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"space_between_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#4959FF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text_color\":\"#002876\",\"text_color_hover\":\"#1A1E23\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\",\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_color\":\"#A3A3A3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2815','1812','_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2817','1812','_elementor_controls_usage','a:9:{s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:13:{s:5:\"align\";i:7;s:11:\"title_color\";i:7;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:6;s:28:\"text_shadow_text_shadow_type\";i:4;s:23:\"text_shadow_text_shadow\";i:2;s:26:\"typography_text_decoration\";i:1;s:22:\"typography_line_height\";i:3;s:28:\"text_stroke_text_stroke_type\";i:1;s:23:\"text_stroke_text_stroke\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:3;}s:19:\"_section_background\";a:6:{s:22:\"_background_background\";i:2;s:17:\"_background_color\";i:2;s:28:\"_background_hover_background\";i:1;s:28:\"_background_hover_color_stop\";i:1;s:25:\"_background_hover_color_b\";i:1;s:28:\"_background_hover_transition\";i:1;}s:16:\"_section_masking\";a:1:{s:11:\"_mask_shape\";i:1;}s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:4;s:18:\"animation_duration\";i:2;s:16:\"_animation_delay\";i:2;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:3:{s:6:\"editor\";i:5;s:12:\"text_columns\";i:1;s:10:\"column_gap\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:5;s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:2;s:21:\"typography_font_style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:16:\"_flex_align_self\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:8:{s:11:\"boxed_width\";i:6;s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:6;s:8:\"flex_gap\";i:1;s:5:\"width\";i:3;s:10:\"min_height\";i:2;s:20:\"flex_justify_content\";i:1;s:16:\"flex_align_items\";i:1;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:4;}s:26:\"section_background_overlay\";a:4:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:21:\"section_shape_divider\";a:9:{s:17:\"shape_divider_top\";i:4;s:23:\"shape_divider_top_color\";i:4;s:23:\"shape_divider_top_width\";i:4;s:24:\"shape_divider_top_height\";i:4;s:22:\"shape_divider_top_flip\";i:3;s:20:\"shape_divider_bottom\";i:2;s:26:\"shape_divider_bottom_color\";i:2;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:2;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:3:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:10:\"_flex_size\";i:2;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:2;s:4:\"link\";i:2;s:4:\"size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:16:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:21:\"background_color_stop\";i:2;s:18:\"background_color_b\";i:2;s:24:\"background_gradient_type\";i:2;s:28:\"background_gradient_position\";i:2;s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:13:\"border_radius\";i:2;s:28:\"text_shadow_text_shadow_type\";i:2;s:23:\"text_shadow_text_shadow\";i:2;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:1;s:16:\"_animation_delay\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"slides\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_slides\";a:1:{s:6:\"slides\";i:1;}s:22:\"section_slider_options\";a:3:{s:16:\"transition_speed\";i:1;s:10:\"transition\";i:1;s:17:\"content_animation\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_style_slides\";a:2:{s:17:\"content_max_width\";i:1;s:14:\"slides_padding\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"width\";i:2;s:5:\"align\";i:2;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:5:{s:5:\"color\";i:2;s:6:\"weight\";i:2;s:3:\"gap\";i:2;s:14:\"pattern_height\";i:1;s:12:\"pattern_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:3:{s:13:\"sticky_offset\";i:1;s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:1;}s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:1;s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:6:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;s:17:\"icon_align_mobile\";i:1;s:7:\"divider\";i:1;s:14:\"divider_weight\";i:1;s:13:\"divider_color\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:5:{s:10:\"text_color\";i:1;s:16:\"text_color_hover\";i:1;s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:25:\"icon_typography_font_size\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2818','1813','wcf-flow-id','1810');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2819','1813','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2820','1813','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2821','1813','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2822','1813','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2823','1813','_elementor_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2824','1813','_elementor_pro_version','3.7.7');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2825','1813','wcf-dynamic-css-version','1702303007');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2826','1813','_edit_lock','1705185340:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2827','1813','_elementor_data','[{\"id\":\"02f711a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0e24aba\",\"elType\":\"widget\",\"settings\":{\"heading_align\":\"center\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Anek Bangla\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"section_customer_details_heading_color\":\"#050505\"},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2828','1813','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2829','1813','_yoast_wpseo_content_score','90');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2830','1813','_yoast_wpseo_estimated-reading-time-minutes','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2831','1813','wcf-show-overview-section','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2832','1813','wcf-show-details-section','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2833','1813','wcf-show-billing-section','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2834','1813','wcf-show-shipping-section','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2835','1813','wcf-show-tq-redirect-section','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2836','1813','wcf-tq-redirect-link','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2837','1813','wcf-tq-text','Thank you. Your order has been received.');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2838','1813','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2839','1813','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2840','1813','wcf-dynamic-css','\n				.woocommerce-order .woocommerce-customer-details .woocommerce-column--shipping-address{\n					display: none;\n				}\n				');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2841','1813','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2843','1814','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2844','1814','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2845','1814','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2846','1814','_elementor_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2847','1814','_elementor_pro_version','3.7.7');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2848','1814','_elementor_data','[{\"id\":\"02f711a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0e24aba\",\"elType\":\"widget\",\"settings\":{\"heading_align\":\"center\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Anek Bangla\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"section_customer_details_heading_color\":\"#050505\"},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2849','1814','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2850','1814','_elementor_controls_usage','a:1:{s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2851','1816','wcf-flow-id','1815');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2852','1816','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2853','1816','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2854','1815','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1816;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1818;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1820;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2855','1818','wcf-flow-id','1815');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2856','1818','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2857','1818','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2858','1818','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2859','1818','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2860','1818','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2861','1818','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2862','1818','_edit_lock','1717964666:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2863','1818','wcf-pro-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2864','1818','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2865','1818','_elementor_data','[{\"id\":\"c5a5ce4\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#3498DB\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"666e328\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1632fd6\",\"settings\":{\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"digits_typography_typography\":\"custom\",\"digits_typography_font_family\":\"Roboto\",\"digits_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":false},\"box_background_color\":\"#FFFF00\",\"digits_color\":\"#000000\",\"digits_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"digits_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"label_color\":\"#000000\",\"container_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"box_spacing_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"box_padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"digits_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto Slab\",\"label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInDown\",\"due_date\":\"2024-05-23 19:22\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"countdown\",\"elType\":\"widget\"},{\"id\":\"bbde019\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"284c050\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b78435\",\"settings\":{\"title\":\"\\u099a\\u09cb\\u0996\\u09c7\\u09b0 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09be\\u09df <span style=\\\"color:yellow\\\"> \\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be\\u09b0 <\\/span> \\u09ac\\u09bf\\u0995\\u09b2\\u09cd\\u09aa \\u0986\\u09b0 \\u0995\\u09bf\\u099b\\u09c1 \\u09a8\\u09c7\\u0987!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"9c51151\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u098f \\u0997\\u09cd\\u09b0\\u09c7\\u09a1 \\u098f\\u09b0 \\u0985\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u0986\\u0987 \\u09aa\\u09cd\\u09b0\\u09cb \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1\\u09c7\\u09b0 \\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u0997\\u09cd\\u09b2\\u09be\\u09b8\\u0964 \\u09b8\\u09be\\u09a5\\u09c7 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09ab\\u09cd\\u09b0\\u09c7\\u09ae\\u0964\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"f6824ca\",\"settings\":{\"title\":\"*\\u09b8\\u09cd\\u099f\\u0995 \\u09b6\\u09c7\\u09b7 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u0986\\u0997\\u09c7 \\u098f\\u0996\\u09a8\\u09bf \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8*\",\"align\":\"center\",\"title_color\":\"#FFFF00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"a98724f\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46c71f9\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a19a0b\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=SdoquBK0ceQ&ab_channel=EyeProtectionBD\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_overlay\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"5da8d61\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"button_box_shadow_box_shadow_type\":\"yes\",\"_animation\":\"fadeInDown\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=edcb9c8\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"a525304\",\"settings\":{\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ff2e9d0\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f649bb5\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 <span style=\\\"color:#2196F3\\\">\\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c\\u09c7 <\\/span>\\u09af\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8\\u0983\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7f6458e\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0993\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u0986\\u0987-\\u09aa\\u09cd\\u09b0\\u09cb \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 \\u09b2\\u09c7\\u09a8\\u09cd\\u09b8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"cf2251b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09b2\\u09be\\u0987\\u099f-\\u0993\\u09df\\u09c7\\u099f \\u09ab\\u09cd\\u09b0\\u09c7\\u09ae\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"9f64f18\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u0995\\u099f\\u09bf \\u09b2\\u09c7\\u09a8\\u09cd\\u09b8 \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09be\\u09b0 \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5bd4bee\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a6\\u09c1\\u0987\\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09bf\\u0982 \\u0995\\u099f\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0e665ee\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b2\\u09c7\\u099c\\u09be\\u09b0 \\u099f\\u09c7\\u09b8\\u09cd\\u099f\\u09bf\\u0982 \\u0995\\u09bf\\u099f\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b026d4e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u0995\\u099f\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4\\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u099a\\u09b6\\u09ae\\u09be \\u099c\\u09bf\\u09aa\\u09be\\u09b0 \\u09ac\\u0995\\u09cd\\u09b8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"88370d8\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"left\",\"icon_color\":\"#2196F3\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_self_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"b682034\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dad6403\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c8f9014\",\"settings\":{\"title\":\"\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u09b8 <s style=\\\"color:yellow\\\">\\u09e7\\u09eb\\u09eb\\u09e6 <\\/s> \\u099f\\u09be\\u0995\\u09be\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"30a81e4\",\"settings\":{\"title\":\"\\u0985\\u09ab\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u09b8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 <u style=\\\"color:yellow\\\"> \\u09ef\\u09ef\\u09e6 <\\/u> \\u099f\\u09be\\u0995\\u09be\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"8b2188e\",\"settings\":{\"title\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be!\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"1a38cca\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c5ba803\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f6af685\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#2196F3\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5a17fc3\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e4875f\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b45d67\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2<\\/span> \\u09ac\\u09be <span style=\\\"color:red\\\">\\u0995\\u09ae\\u09cd\\u09aa\\u09bf\\u0989\\u099f\\u09be\\u09b0<\\/span> \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u09b0 \\u09b9\\u0993\\u09df\\u09be \\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09b0 \\u0986\\u09b2\\u09cb \\u09a5\\u09c7\\u0995\\u09c7 \\u099a\\u09cb\\u0996 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u09a8 \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2f2fb49\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\">\\u0998\\u09a8\\u0998\\u09a8 \\u09ae\\u09be\\u09a5\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09a5\\u09be, \\u099a\\u09cb\\u0996 \\u09b2\\u09be\\u09b2 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u0993\\u09df\\u09be<\\/span> \\u09ac\\u09be <span style=\\\"color:red\\\">\\u099a\\u09cb\\u0996 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09aa\\u09be\\u09a8\\u09bf \\u09aa\\u09a1\\u09bc\\u09be<\\/span> \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"ce84137\",\"settings\":{\"title\":\"\\u099a\\u09b6\\u09ae\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09ab\\u09b2\\u09c7 \\u09ac\\u09cd\\u09b2\\u09c1-\\u09b2\\u09be\\u0987\\u099f \\u09aa\\u09cd\\u09b0\\u099f\\u09c7\\u0995\\u09cd\\u099f \\u09b9\\u09ac\\u09c7, \\u09af\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 <span style=\\\"color:red\\\"> \\u0998\\u09c1\\u09ae\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df<\\/span> \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09c0 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"ba49bab\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09a6\\u09c0\\u09b0\\u09cd\\u0998 \\u09ae\\u09c7\\u09df\\u09be\\u09a6\\u09c0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09be\\u0981\\u099a\\u09be\\u09b0\\u09c7\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5a42605\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 <span style=\\\"color:red\\\">\\u099a\\u09cb\\u0996\\u09c7\\u09b0 \\u0989\\u09aa\\u09b0 \\u099a\\u09be\\u09aa<\\/span> \\u0995\\u09ae\\u09be\\u09df\\u0964 \\u09af\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u0985\\u09a8\\u09c1\\u09ad\\u09ac \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"996b46f\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 <span style=\\\"color:red\\\">\\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf-\\u09b6\\u0995\\u09cd\\u09a4\\u09bf<\\/span> \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"687b775\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"button_box_shadow_box_shadow_type\":\"yes\",\"_animation\":\"fadeInDown\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=edcb9c8\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"be570b3\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order-form\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4bea656d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#2196F3\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37676298\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#3C494E\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a03de62\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"product_options_position\":\"before-customer\",\"__globals__\":{\"btn_background_color_color\":\"\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\",\"button_hover_border_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color_color\":\"globals\\/colors?id=secondary\"},\"product_options_skin\":\"cards\",\"button_text_color\":\"#FFFFFF\",\"btn_background_color_color\":\"#2196F3\",\"button_background_hover_color_background\":\"classic\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"62ac697\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d12cb75\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b037eab\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2866','1818','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2867','1818','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2868','1818','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2869','1818','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2870','1818','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2871','1818','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2872','1818','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2873','1818','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2874','1818','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2875','1818','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2876','1818','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:28:\"আপনার নামঃ\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:46:\"সম্পুর্ন ঠিকানাঃ\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:34:\"ফোন নাম্বারঃ\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2877','1818','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2878','1818','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2879','1818','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2880','1818','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2881','1818','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2882','1818','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2883','1818','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2884','1818','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2885','1818','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2886','1818','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2887','1818','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2888','1818','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2889','1818','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2890','1818','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2891','1818','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2892','1818','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2893','1818','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2894','1818','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2895','1818','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2896','1818','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2897','1818','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2898','1818','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2899','1818','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2900','1818','wcf_field_order_shipping','a:9:{s:19:\"shipping_first_name\";a:11:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_1\";a:11:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"shipping_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:14:\"shipping_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"shipping_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2901','1818','_oembed_8cfb1c5a55403a6930dc940aec65a9e4','<iframe title=\"Blue Cut Photosun Sunglasses | What Is photosun | Blue cut Photochromic | Sunglasses | eyewear\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/SdoquBK0ceQ?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2902','1818','_oembed_time_8cfb1c5a55403a6930dc940aec65a9e4','1711395950');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2903','1818','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2904','1818','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2905','1818','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2906','1818','_oembed_0da771d8cfc6349be29b75a03971b1ce','<iframe title=\"Blue Cut Photosun Sunglasses | What Is photosun | Blue cut Photochromic | Sunglasses | eyewear\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/SdoquBK0ceQ?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2907','1818','_oembed_time_0da771d8cfc6349be29b75a03971b1ce','1717964682');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2910','1819','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2911','1819','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2912','1819','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2913','1819','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2914','1819','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2915','1819','_elementor_data','[{\"id\":\"c5a5ce4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#3498DB\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"666e328\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1632fd6\",\"elType\":\"widget\",\"settings\":{\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"digits_typography_typography\":\"custom\",\"digits_typography_font_family\":\"Roboto\",\"digits_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":false},\"box_background_color\":\"#FFFF00\",\"digits_color\":\"#000000\",\"digits_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"digits_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"label_color\":\"#000000\",\"container_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"box_spacing_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"box_padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"digits_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto Slab\",\"label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInDown\",\"due_date\":\"2024-05-23 19:22\"},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"bbde019\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"284c050\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"3b78435\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u099a\\u09cb\\u0996\\u09c7\\u09b0 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09be\\u09df <span style=\\\"color:yellow\\\"> \\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be\\u09b0 <\\/span> \\u09ac\\u09bf\\u0995\\u09b2\\u09cd\\u09aa \\u0986\\u09b0 \\u0995\\u09bf\\u099b\\u09c1 \\u09a8\\u09c7\\u0987!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=26ec5dd\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c51151\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u098f \\u0997\\u09cd\\u09b0\\u09c7\\u09a1 \\u098f\\u09b0 \\u0985\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u0986\\u0987 \\u09aa\\u09cd\\u09b0\\u09cb \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1\\u09c7\\u09b0 \\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u0997\\u09cd\\u09b2\\u09be\\u09b8\\u0964 \\u09b8\\u09be\\u09a5\\u09c7 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09ab\\u09cd\\u09b0\\u09c7\\u09ae\\u0964\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6824ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"*\\u09b8\\u09cd\\u099f\\u0995 \\u09b6\\u09c7\\u09b7 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u0986\\u0997\\u09c7 \\u098f\\u0996\\u09a8\\u09bf \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8*\",\"align\":\"center\",\"title_color\":\"#FFFF00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a98724f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"46c71f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"4a19a0b\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=SdoquBK0ceQ&ab_channel=EyeProtectionBD\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_overlay\":{\"id\":107,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"5da8d61\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"button_box_shadow_box_shadow_type\":\"yes\",\"_animation\":\"fadeInDown\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=edcb9c8\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a525304\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ff2e9d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f649bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 <span style=\\\"color:#2196F3\\\">\\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c\\u09c7 <\\/span>\\u09af\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8\\u0983\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f6458e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0993\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u0986\\u0987-\\u09aa\\u09cd\\u09b0\\u09cb \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 \\u09b2\\u09c7\\u09a8\\u09cd\\u09b8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"cf2251b\"},{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09b2\\u09be\\u0987\\u099f-\\u0993\\u09df\\u09c7\\u099f \\u09ab\\u09cd\\u09b0\\u09c7\\u09ae\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"9f64f18\"},{\"text\":\"\\u098f\\u0995\\u099f\\u09bf \\u09b2\\u09c7\\u09a8\\u09cd\\u09b8 \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09be\\u09b0 \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5bd4bee\"},{\"text\":\"\\u09a6\\u09c1\\u0987\\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09bf\\u0982 \\u0995\\u099f\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0e665ee\"},{\"text\":\"\\u09b2\\u09c7\\u099c\\u09be\\u09b0 \\u099f\\u09c7\\u09b8\\u09cd\\u099f\\u09bf\\u0982 \\u0995\\u09bf\\u099f\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b026d4e\"},{\"text\":\"\\u098f\\u0995\\u099f\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4\\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u099a\\u09b6\\u09ae\\u09be \\u099c\\u09bf\\u09aa\\u09be\\u09b0 \\u09ac\\u0995\\u09cd\\u09b8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"88370d8\"}],\"icon_align\":\"left\",\"icon_color\":\"#2196F3\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_self_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b682034\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"dad6403\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c8f9014\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u09b8 <s style=\\\"color:yellow\\\">\\u09e7\\u09eb\\u09eb\\u09e6 <\\/s> \\u099f\\u09be\\u0995\\u09be\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30a81e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09ab\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u09b8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 <u style=\\\"color:yellow\\\"> \\u09ef\\u09ef\\u09e6 <\\/u> \\u099f\\u09be\\u0995\\u09be\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b2188e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be!\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a38cca\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c5ba803\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"f6af685\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#2196F3\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a17fc3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e4875f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b45d67\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2<\\/span> \\u09ac\\u09be <span style=\\\"color:red\\\">\\u0995\\u09ae\\u09cd\\u09aa\\u09bf\\u0989\\u099f\\u09be\\u09b0<\\/span> \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u09b0 \\u09b9\\u0993\\u09df\\u09be \\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09b0 \\u0986\\u09b2\\u09cb \\u09a5\\u09c7\\u0995\\u09c7 \\u099a\\u09cb\\u0996 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u09a8 \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f2fb49\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\">\\u0998\\u09a8\\u0998\\u09a8 \\u09ae\\u09be\\u09a5\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09a5\\u09be, \\u099a\\u09cb\\u0996 \\u09b2\\u09be\\u09b2 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u0993\\u09df\\u09be<\\/span> \\u09ac\\u09be <span style=\\\"color:red\\\">\\u099a\\u09cb\\u0996 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09aa\\u09be\\u09a8\\u09bf \\u09aa\\u09a1\\u09bc\\u09be<\\/span> \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce84137\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u099a\\u09b6\\u09ae\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09ab\\u09b2\\u09c7 \\u09ac\\u09cd\\u09b2\\u09c1-\\u09b2\\u09be\\u0987\\u099f \\u09aa\\u09cd\\u09b0\\u099f\\u09c7\\u0995\\u09cd\\u099f \\u09b9\\u09ac\\u09c7, \\u09af\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 <span style=\\\"color:red\\\"> \\u0998\\u09c1\\u09ae\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df<\\/span> \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09c0 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba49bab\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09a6\\u09c0\\u09b0\\u09cd\\u0998 \\u09ae\\u09c7\\u09df\\u09be\\u09a6\\u09c0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09be\\u0981\\u099a\\u09be\\u09b0\\u09c7\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a42605\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 <span style=\\\"color:red\\\">\\u099a\\u09cb\\u0996\\u09c7\\u09b0 \\u0989\\u09aa\\u09b0 \\u099a\\u09be\\u09aa<\\/span> \\u0995\\u09ae\\u09be\\u09df\\u0964 \\u09af\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u0985\\u09a8\\u09c1\\u09ad\\u09ac \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"996b46f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 <span style=\\\"color:red\\\">\\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf-\\u09b6\\u0995\\u09cd\\u09a4\\u09bf<\\/span> \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"687b775\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"button_box_shadow_box_shadow_type\":\"yes\",\"_animation\":\"fadeInDown\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=edcb9c8\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be570b3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order-form\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\"},\"elements\":[{\"id\":\"4bea656d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#2196F3\"},\"elements\":[{\"id\":\"37676298\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#3C494E\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a03de62\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"product_options_position\":\"before-customer\",\"__globals__\":{\"btn_background_color_color\":\"\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\",\"button_hover_border_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color_color\":\"globals\\/colors?id=secondary\"},\"product_options_skin\":\"cards\",\"button_text_color\":\"#FFFFFF\",\"btn_background_color_color\":\"#2196F3\",\"button_background_hover_color_background\":\"classic\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62ac697\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1d12cb75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6b037eab\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2916','1819','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2918','1819','_elementor_controls_usage','a:8:{s:9:\"countdown\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:17:\"section_countdown\";a:2:{s:13:\"custom_labels\";i:1;s:8:\"due_date\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_box_style\";a:3:{s:17:\"box_border_radius\";i:1;s:11:\"box_spacing\";i:1;s:20:\"box_background_color\";i:1;}s:21:\"section_content_style\";a:10:{s:28:\"digits_typography_typography\";i:1;s:29:\"digits_typography_font_family\";i:1;s:29:\"digits_typography_font_weight\";i:1;s:12:\"digits_color\";i:1;s:27:\"digits_typography_font_size\";i:1;s:29:\"digits_typography_line_height\";i:1;s:11:\"label_color\";i:1;s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_family\";i:1;s:28:\"label_typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:15;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:15;s:21:\"typography_typography\";i:15;s:22:\"typography_font_family\";i:15;s:20:\"typography_font_size\";i:15;s:22:\"typography_font_weight\";i:15;s:22:\"typography_line_height\";i:2;s:11:\"title_color\";i:14;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:9;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:15:\"_section_border\";a:1:{s:27:\"_box_shadow_box_shadow_type\";i:6;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:5;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:4:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_radius\";i:1;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:3;s:11:\"_element_id\";i:1;s:11:\"css_classes\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:3:\"gap\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:2;s:4:\"size\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:13:\"border_border\";i:2;s:13:\"border_radius\";i:2;s:33:\"button_box_shadow_box_shadow_type\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:10:\"icon_align\";i:1;s:17:\"icon_align_mobile\";i:1;}s:18:\"section_icon_style\";a:4:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;s:11:\"text_indent\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;s:27:\"icon_typography_line_height\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2919','1820','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2920','1820','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2921','1820','wcf-dynamic-css-version','1710879359');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2922','1820','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2923','1820','_elementor_data','[{\"id\":\"544a9410\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#3498DB\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73127f30\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f66c4a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"263fdaed\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"5e1d0b7a\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"20ba40ed\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"18716410\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"387b344\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"749ebec\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fffb705\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"550f666d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2dce0932\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"246ae515\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Business Name | This website made with \\u2764\\ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2924','1820','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2925','1820','_elementor_version','3.20.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2926','1820','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2927','1820','_edit_lock','1711396275:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2928','1820','wcf-flow-id','1815');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2929','1820','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2930','1820','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2931','1820','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2933','1822','wcf-flow-id','1821');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2934','1822','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2935','1822','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2936','1821','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1822;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1824;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1848;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2937','1824','wcf-flow-id','1821');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2938','1824','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2939','1824','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2940','1824','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2941','1824','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2942','1824','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2943','1824','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2944','1824','_edit_lock','1716482588:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2945','1824','wcf-pro-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2946','1824','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2947','1824','_elementor_data','[{\"id\":\"3e1d91f2\",\"settings\":{\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100},\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"top_section\",\"html_tag\":\"section\",\"background_overlay_color\":\"#00153d\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"overlay_blend_mode\":\"lighten\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"da1456\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5709f376\",\"settings\":{\"title\":\"\\u099a\\u09cb\\u0996\\u09c7\\u09b0 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09be\\u09df  \\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be\\u09b0  \\u09ac\\u09bf\\u0995\\u09b2\\u09cd\\u09aa \\u0986\\u09b0 \\u0995\\u09bf\\u099b\\u09c1 \\u09a8\\u09c7\\u0987!\\n\",\"size\":\"xxl\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4.4},\"typography_font_weight\":\"300\",\"_animation\":\"fadeInUp\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.1},\"header_size\":\"h1\",\"typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7f0e35d9\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u098f \\u0997\\u09cd\\u09b0\\u09c7\\u09a1 \\u098f\\u09b0 \\u0985\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u0986\\u0987 \\u09aa\\u09cd\\u09b0\\u09cb \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1\\u09c7\\u09b0 \\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u0997\\u09cd\\u09b2\\u09be\\u09b8\\u0964 \\u09b8\\u09be\\u09a5\\u09c7 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09ab\\u09cd\\u09b0\\u09c7\\u09ae\\u0964\\n\\n\\n\\n\",\"header_size\":\"span\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"2\",\"right\":\"20\",\"bottom\":\"2\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"3035c5f6\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInUp\",\"animation_delay\":600,\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"35c15a1c\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21f5e374\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"right\",\"size\":\"md\",\"background_color\":\"#4054b2\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#4054b2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"typography_typography\":\"custom\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"7fe5ac89\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54c9172\",\"settings\":{\"text\":\"Call Now\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"hover_color\":\"#0c0c0c\",\"button_background_hover_color\":\"#ffffff\",\"button_hover_border_color\":\"#7a7a7a\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_animation\":\"grow\",\"border_color\":\"rgba(0,0,0,0.33)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"link\":{\"url\":\"tel:01723624**\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"4b12b820\",\"settings\":{\"gap\":\"wider\",\"height\":\"min-height\",\"column_position\":\"stretch\",\"structure\":\"20\",\"background_position\":\"center left\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"section\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_color\":\"Daniel Johnson  <em>Director<\\/em>\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"428175f\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5507b01\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0    \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c\\u09c7  \\u09af\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8\\u0983\",\"align\":\"left\",\"title_color\":\"#0c0c0c\",\"typography_typography\":\"custom\",\"_animation\":\"fadeInLeft\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2},\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.5},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1d761246\",\"settings\":{\"editor\":\"<ul><li>\\u0993\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u0986\\u0987-\\u09aa\\u09cd\\u09b0\\u09cb \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 \\u09b2\\u09c7\\u09a8\\u09cd\\u09b8<\\/li><li>\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09b2\\u09be\\u0987\\u099f-\\u0993\\u09df\\u09c7\\u099f \\u09ab\\u09cd\\u09b0\\u09c7\\u09ae<br \\/>\\u098f\\u0995\\u099f\\u09bf \\u09b2\\u09c7\\u09a8\\u09cd\\u09b8 \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09be\\u09b0 \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7<\\/li><li>\\u09a6\\u09c1\\u0987\\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09bf\\u0982 \\u0995\\u099f\\u09a8<br \\/>\\u09b2\\u09c7\\u099c\\u09be\\u09b0 \\u099f\\u09c7\\u09b8\\u09cd\\u099f\\u09bf\\u0982 \\u0995\\u09bf\\u099f<\\/li><li>\\u098f\\u0995\\u099f\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4\\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u099a\\u09b6\\u09ae\\u09be \\u099c\\u09bf\\u09aa\\u09be\\u09b0 \\u09ac\\u0995\\u09cd\\u09b8<\\/li><\\/ul>\",\"text_color\":\"#7a7a7a\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"align\":\"left\",\"align_tablet\":\"left\",\"typography_font_family\":\"Poppins\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6},\"align_mobile\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"1b676333\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"background_position\":\"bottom right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"rgba(12,12,12,0.09)\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00153d\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"overlay_blend_mode\":\"lighten\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50ceeb13\",\"settings\":{\"carousel\":[],\"thumbnail_size\":\"custom\",\"slides_to_show\":\"1\",\"slides_to_scroll\":\"1\",\"_animation\":\"headShake\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"thumbnail_custom_dimension\":{\"width\":\"700\",\"height\":\"500\"},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2bcec476\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":60},\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":200},\"shape_divider_bottom_negative\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"html_tag\":\"section\",\"background_position_tablet\":\"center center\",\"background_overlay_color\":\"#00153d\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":300},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"269a9c62\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d00543f\",\"settings\":{\"title\":\"\\u0985\\u09ab\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u09b8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ef\\u09ef\\u09e6 \\u099f\\u09be\\u0995\\u09be\\n\",\"size\":\"xl\",\"title_color\":\"#ffffff\",\"_animation\":\"fadeInLeft\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2},\"align\":\"left\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.5},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_element_width_mobile\":\"inherit\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"326e5a25\",\"settings\":{\"editor\":\"<p>\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be!<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"align\":\"left\",\"typography_font_family\":\"Poppins\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"1b98667b\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInUp\",\"animation_delay\":600,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4bb046b8\",\"settings\":{\"_column_size\":50,\"_inline_size\":23.273,\"_inline_size_tablet\":40,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"100c599f\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"right\",\"size\":\"xs\",\"background_color\":\"#4054b2\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#4054b2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":30,\"spread\":-2,\"color\":\"rgba(64,84,178,0.65)\"},\"align_mobile\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"2b1d5654\",\"settings\":{\"_column_size\":50,\"_inline_size\":76.719,\"_inline_size_tablet\":60,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74a27dc2\",\"settings\":{\"text\":\"Contact\",\"size\":\"xs\",\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(255,255,255,0)\",\"hover_color\":\"#ffffff\",\"button_hover_border_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_color\":\"#ffffff\",\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"align_mobile\":\"justify\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"381135e2\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_video_link\":\"https:\\/\\/youtu.be\\/m5WvcXp2dqU?t=35\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00153d\",\"shape_divider_top\":\"triangle\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":70},\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":70},\"shape_divider_bottom_negative\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"structure\":\"20\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29f80f80\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"620e309c\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\\n\",\"size\":\"xxl\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4.5},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":3.2},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2},\"header_size\":\"span\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"455ee95e\",\"settings\":{\"title\":\"\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09ac\\u09be \\u0995\\u09ae\\u09cd\\u09aa\\u09bf\\u0989\\u099f\\u09be\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u09b0 \\u09b9\\u0993\\u09df\\u09be \\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09b0 \\u0986\\u09b2\\u09cb \\u09a5\\u09c7\\u0995\\u09c7 \\u099a\\u09cb\\u0996 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u09a8 \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4\\u0964\\n\",\"size\":\"large\",\"header_size\":\"span\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"c5ba803\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a17fc3\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e4875f\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b45d67\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2<\\/span> \\u09ac\\u09be <span style=\\\"color:red\\\">\\u0995\\u09ae\\u09cd\\u09aa\\u09bf\\u0989\\u099f\\u09be\\u09b0<\\/span> \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u09b0 \\u09b9\\u0993\\u09df\\u09be \\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09b0 \\u0986\\u09b2\\u09cb \\u09a5\\u09c7\\u0995\\u09c7 \\u099a\\u09cb\\u0996 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u09a8 \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2f2fb49\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\">\\u0998\\u09a8\\u0998\\u09a8 \\u09ae\\u09be\\u09a5\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09a5\\u09be, \\u099a\\u09cb\\u0996 \\u09b2\\u09be\\u09b2 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u0993\\u09df\\u09be<\\/span> \\u09ac\\u09be <span style=\\\"color:red\\\">\\u099a\\u09cb\\u0996 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09aa\\u09be\\u09a8\\u09bf \\u09aa\\u09a1\\u09bc\\u09be<\\/span> \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"ce84137\",\"settings\":{\"title\":\"\\u099a\\u09b6\\u09ae\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09ab\\u09b2\\u09c7 \\u09ac\\u09cd\\u09b2\\u09c1-\\u09b2\\u09be\\u0987\\u099f \\u09aa\\u09cd\\u09b0\\u099f\\u09c7\\u0995\\u09cd\\u099f \\u09b9\\u09ac\\u09c7, \\u09af\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 <span style=\\\"color:red\\\"> \\u0998\\u09c1\\u09ae\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df<\\/span> \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09c0 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"ba49bab\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09a6\\u09c0\\u09b0\\u09cd\\u0998 \\u09ae\\u09c7\\u09df\\u09be\\u09a6\\u09c0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09be\\u0981\\u099a\\u09be\\u09b0\\u09c7\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5a42605\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 <span style=\\\"color:red\\\">\\u099a\\u09cb\\u0996\\u09c7\\u09b0 \\u0989\\u09aa\\u09b0 \\u099a\\u09be\\u09aa<\\/span> \\u0995\\u09ae\\u09be\\u09df\\u0964 \\u09af\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u0985\\u09a8\\u09c1\\u09ad\\u09ac \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"996b46f\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 <span style=\\\"color:red\\\">\\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf-\\u09b6\\u0995\\u09cd\\u09a4\\u09bf<\\/span> \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"be570b3\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order-form\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4bea656d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#2196F3\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37676298\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#3C494E\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a03de62\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"product_options_position\":\"before-customer\",\"__globals__\":{\"btn_background_color_color\":\"\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\",\"button_hover_border_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color_color\":\"globals\\/colors?id=secondary\"},\"product_options_skin\":\"cards\",\"button_text_color\":\"#FFFFFF\",\"btn_background_color_color\":\"#2196F3\",\"button_background_hover_color_background\":\"classic\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"62ac697\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d12cb75\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b037eab\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2948','1824','_elementor_page_assets','a:1:{s:6:\"styles\";a:19:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2949','1824','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2950','1824','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2951','1824','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2952','1824','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2953','1824','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2954','1824','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2955','1824','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2956','1824','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2957','1824','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2958','1824','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:28:\"আপনার নামঃ\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:46:\"সম্পুর্ন ঠিকানাঃ\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:34:\"ফোন নাম্বারঃ\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2959','1824','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2960','1824','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2961','1824','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2962','1824','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2963','1824','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2964','1824','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2965','1824','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2966','1824','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2967','1824','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2968','1824','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2969','1824','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2970','1824','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2971','1824','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2972','1824','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2973','1824','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2974','1824','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2975','1824','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2976','1824','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2977','1824','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2978','1824','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2979','1824','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2980','1824','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2981','1824','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2982','1824','wcf_field_order_shipping','a:9:{s:19:\"shipping_first_name\";a:11:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_1\";a:11:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"shipping_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:14:\"shipping_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"shipping_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2983','1824','_oembed_8cfb1c5a55403a6930dc940aec65a9e4','<iframe title=\"Blue Cut Photosun Sunglasses | What Is photosun | Blue cut Photochromic | Sunglasses | eyewear\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/SdoquBK0ceQ?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2984','1824','_oembed_time_8cfb1c5a55403a6930dc940aec65a9e4','1711395950');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2985','1824','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2986','1824','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2987','1824','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2990','1825','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2991','1825','_elementor_data','[{\"id\":\"544a9410\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#3498DB\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73127f30\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f66c4a\",\"settings\":{\"image\":{\"id\":113,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo-1.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"263fdaed\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"5e1d0b7a\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"20ba40ed\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"18716410\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"387b344\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"749ebec\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fffb705\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"550f666d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2dce0932\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"246ae515\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Business Name | This website made with \\u2764\\ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2992','1825','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2993','1825','_elementor_version','3.20.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2994','1825','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2995','1825','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2996','1825','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2997','1825','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2998','1827','wcf-flow-id','1826');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('2999','1827','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3000','1827','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3001','1827','wcf-remove-product-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3002','1827','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3003','1827','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3004','1827','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3005','1827','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3006','1827','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3007','1827','_astra_content_layout_flag','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3008','1827','site-post-title','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3009','1827','ast-title-bar-display','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3010','1827','ast-featured-img','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3011','1827','site-content-layout','page-builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3012','1827','site-sidebar-layout','no-sidebar');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3013','1827','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3014','1827','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3015','1827','_elementor_data','[{\"id\":\"d360dab\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00F7F7\",\"shape_divider_bottom\":\"mountains\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"063a7ad\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a8f807\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a0263e\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"07d43da\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9800953\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dd1e068\",\"settings\":{\"title\":\"\\u099a\\u09bf\\u0982\\u09dc\\u09bf \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"d7af012\",\"settings\":{\"title\":\"\\u201c\\u099a\\u09bf\\u0982\\u09dc\\u09bf \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993\\u201d \\u0996\\u09c1\\u09ac\\u0987 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09a6\\u09c1 \\u0993 \\u09ae\\u09c1\\u0996\\u09b0\\u09cb\\u099a\\u0995 \\u098f\\u0995\\u099f\\u09bf \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964 \\u09a8\\u09be\\u09ae\\u099f\\u09be \\u09af\\u09c7\\u09ae\\u09a8 \\u0985\\u09a8\\u09cd\\u09af\\u09b0\\u0995\\u09ae, \\u0996\\u09c7\\u09a4\\u09c7\\u0993 \\u0985\\u09b8\\u09ae\\u09cd\\u09ad\\u09ac \\u09ae\\u099c\\u09be\\u09a6\\u09be\\u09b0\\u0964 \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u098f\\u0995 \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b0 \\u09b0\\u09c7\\u09a1\\u09bf \\u099f\\u09c1 \\u0987\\u099f \\u09ab\\u09c1\\u09a1, \\u09af\\u09be \\u09ae\\u09c1\\u09b2\\u09a4 \\u099a\\u09bf\\u0982\\u09a1\\u09bc\\u09bf, \\u09aa\\u09c7\\u09af\\u09bc\\u09be\\u099c , \\u09b0\\u09b8\\u09c1\\u09a8, \\u09b6\\u09c1\\u0995\\u09a8\\u09cb \\u09ae\\u09b0\\u09bf\\u099a \\u0993 \\u09ae\\u09b6\\u09b2\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3\\u0964 \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u0995\\u0995\\u09cd\\u09b8\\u09ac\\u09be\\u099c\\u09be\\u09b0 \\u0993 \\u099a\\u099f\\u09cd\\u099f\\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09df \\u0990\\u09a4\\u09bf\\u09b9\\u09cd\\u09af\\u09ac\\u09be\\u09b9\\u09c0 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"37a0807\",\"settings\":{\"title\":\"\\u09b9\\u09cb\\u09ae \\u09ae\\u09c7\\u0987\\u09a1 \\u098f\\u09ac\\u0982 \\u09b0\\u09c7\\u09a1\\u09bf \\u099f\\u09c1 \\u0987\\u099f \\u09ab\\u09c1\\u09a1\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a95dc69\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"500\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#00B22C\",\"hover_color\":\"#00B22C\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#00B22C\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"05\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"1b406b0\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cca248f\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":2,\"vertical\":2,\"blur\":30,\"spread\":0,\"color\":\"#000000\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":70,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"44bb505\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f858e67\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56ec4f8\",\"settings\":{\"title\":\"\\u0995\\u09bf \\u0995\\u09bf \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf?\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"57af82f\",\"settings\":{\"structure\":\"50\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69ae077\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e196775\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"f8f8163\",\"settings\":{\"title\":\"\\u099a\\u09bf\\u0982\\u09a1\\u09bc\\u09bf \\u09b6\\u09c1\\u099f\\u0995\\u09bf\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#00F7F7\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"61cbbae\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d2b31c\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"924ecfb\",\"settings\":{\"title\":\"\\u09aa\\u09c7\\u0981\\u09af\\u09bc\\u09be\\u099c \\u09ac\\u09c7\\u09b0\\u09c7\\u09b8\\u09cd\\u09a4\\u09be\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#00F7F7\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"9318374\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a12e660\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"4531179\",\"settings\":{\"title\":\"\\u09b0\\u09b8\\u09c1\\u09a8 \\u09ad\\u09be\\u099c\\u09be\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#00F7F7\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"3fc3249\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33631c7\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"cf8e0fb\",\"settings\":{\"title\":\"\\u09ae\\u09b0\\u09bf\\u099a\\u09c7\\u09b0 \\u0997\\u09c1\\u0981\\u09dc\\u09be\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#00F7F7\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"70e8374\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5adcfea\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"b07ec71\",\"settings\":{\"title\":\"\\u09b8\\u09bf\\u0995\\u09cd\\u09b0\\u09c7\\u099f \\u09ae\\u09b6\\u09b2\\u09be\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#00F7F7\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"99153fe\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"96f2333\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c746378\",\"settings\":{\"title\":\"\\u09af\\u09c7\\u09ad\\u09be\\u09ac\\u09c7 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09af\\u09bc\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"ef20178\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3c71c4c\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e5992bb\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ae\\u09c1\\u09dc\\u09bf \\u09ae\\u09be\\u0996\\u09be \\u09ac\\u09be \\u09ae\\u09c1\\u09dc\\u09bf \\u09ad\\u09b0\\u09cd\\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7\\u0964\",\"_id\":\"e0a8129\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09b2\\u09c1 \\u09ad\\u09b0\\u09cd\\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u09b6\\u09bf\\u09df\\u09c7\\u0964\",\"_id\":\"6e0e316\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ac\\u09c7\\u0997\\u09c1\\u09a8 \\u09ad\\u09b0\\u09cd\\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u09b6\\u09bf\\u09df\\u09c7\\u0964\",\"_id\":\"365de09\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0997\\u09b0\\u09ae \\u09a7\\u09cb\\u09df\\u09be \\u0993\\u09a0\\u09be \\u09b8\\u09be\\u09a6\\u09be \\u09ad\\u09be\\u09a4\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7\\u0964\",\"_id\":\"c0c8fa0\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u099a\\u09be\\u09a8\\u09be\\u099a\\u09c1\\u09b0\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b8\\u09b0\\u09be\\u09b8\\u09b0\\u09bf\\u0964\",\"_id\":\"d095d8e\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0997\\u09b0\\u09ae \\u0997\\u09b0\\u09ae \\u0996\\u09c1\\u09a6\\u09c7\\u09b0 \\u09ad\\u09be\\u09a4\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7\\u0964\",\"_id\":\"bbf7c71\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ad\\u09c2\\u09a8\\u09be \\u0996\\u09bf\\u099a\\u09c1\\u09dc\\u09bf \\u0993 \\u09aa\\u09cb\\u09b2\\u09be\\u0993\\u09df\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7\\u0964\",\"_id\":\"c072653\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#FFFFFF\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"0f69eb6\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cb24452\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"086665d\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"500\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#00B22C\",\"hover_color\":\"#00B22C\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#00B22C\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"05\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"359ec5d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4422e03\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"029f8ce\",\"settings\":{\"title\":\"\\u09eb\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u098f\\u09b0 \\u09aa\\u09c2\\u09b0\\u09cd\\u09ac\\u09ae\\u09c2\\u09b2\\u09cd\\u09af <span style=\\\"color: #ff0000; text-decoration: line-through; ;\\\">\\u09ef\\u09eb\\u09e6<\\/span> \\u098f\\u0996\\u09a8 \\u099b\\u09be\\u09dc\\u09c7 \\u09ee\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a1112ef\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":25,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"style\":\"curved\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"f9481cb\",\"settings\":{\"title\":\"\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u098f\\u09b0 \\u09aa\\u09c2\\u09b0\\u09cd\\u09ac\\u09ae\\u09c2\\u09b2\\u09cd\\u09af <span style=\\\"color: #ff0000; text-decoration: line-through; ;\\\">\\u09e7\\u09ee\\u09e6\\u09e6<\\/span> \\u098f\\u0996\\u09a8 \\u099b\\u09be\\u09dc\\u09c7 \\u09e7\\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"8a27d02\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00F7F7\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ad30fd9\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a06a370\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8 ?\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"edab5a8\",\"settings\":{\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dc19911\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"#000000\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c7d23c7\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"ec9b944\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u099c\\u09cd\\u099e \\u09ac\\u09be\\u09ac\\u09c1\\u09b0\\u09cd\\u099a\\u09bf\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c1\\u09b2\\u09be\\u09df \\u09a4\\u09c8\\u09b0\\u09bf\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_color\":\"#FFE600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"69fe5e1\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"#000000\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"98becf7\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"f53d900\",\"settings\":{\"title\":\"\\u09b9\\u09cb\\u09ae\\u09ae\\u09c7\\u0987\\u09a1 \\u09aa\\u09cd\\u09b0\\u0995\\u09cd\\u09b0\\u09bf\\u09df\\u09be\\u09df \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_color\":\"#FFE600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"34525bc\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"#000000\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ac48577\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"d826888\",\"settings\":{\"title\":\"\\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09ac\\u09be\\u09b2\\u09c1\\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u099a\\u09bf\\u0982\\u09dc\\u09bf \\u09b6\\u09c1\\u099f\\u0995\\u09bf\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_color\":\"#FFE600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"4c08417\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"#000000\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"476dfa4\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"31629e7\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993 \\u098f\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_color\":\"#FFE600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"0397245\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f14e11\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"782c295\",\"settings\":{\"title\":\"\\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2d90bf6\",\"settings\":{\"carousel\":[],\"thumbnail_size\":\"medium_large\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"lazyload\":\"yes\",\"autoplay_speed\":6000,\"speed\":600,\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#000000\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"ab204be\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#E1FFEF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b7b1f74\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e1d8f5a\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#EEEEEE\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#773D00\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"header_size\":\"div\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"3896c04\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u099f\\u09be\\u0995\\u09be \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964 \\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a6\\u09c7\\u09df\\u09be \\u09b9\\u09df\\u0964\",\"align\":\"center\",\"title_color\":\"#773D00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"50bfeb0b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"_border_color\":\"#00F7F7\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"global_text_color\":\"#000000\",\"heading_text_color\":\"#000000\",\"label_color\":\"#000000\",\"input_color\":\"#000000\",\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"buttons_typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#00B22C\",\"btn_hover_color\":\"#00B22C\",\"button_background_hover_color_background\":\"classic\",\"button_background_hover_color_color\":\"#FFFFFF\",\"payment_section_text_color\":\"#000000\",\"payment_section_desc_color\":\"#000000\",\"product_text_color\":\"#000000\",\"_element_id\":\"order-form\",\"buttons_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":2,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"#000000\"}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5d94ef44\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"815e69c\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"787300d6\",\"settings\":{\"editor\":\"  Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3016','1827','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3017','1827','_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3018','1827','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3019','1827','wcf-product-options','multiple-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3020','1827','wcf-enable-product-variation','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3021','1827','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3022','1827','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3023','1827','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3024','1827','enable-to-import','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3025','1827','_thumbnail_id','53787');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3026','1827','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3027','1827','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3028','1827','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3029','1827','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3030','1827','cartflows_imported_step','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3031','1827','_edit_lock','1717964868:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3032','1827','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3033','1827','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3034','1827','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3035','1827','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3036','1827','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3037','1827','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3038','1827','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3039','1827','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3040','1827','wcf-checkout-place-order-button-text','অর্ডার করুন');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3041','1827','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3042','1827','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3043','1827','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3044','1827','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3045','1827','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3046','1827','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3047','1827','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3048','1827','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3049','1827','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3050','1827','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:28:\"আপনার নামঃ\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:46:\"সম্পুর্ন ঠিকানাঃ\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:34:\"ফোন নাম্বারঃ\";s:8:\"required\";b:0;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3051','1827','wcf_field_order_shipping','a:9:{s:19:\"shipping_first_name\";a:11:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_1\";a:11:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"shipping_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:14:\"shipping_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"shipping_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3052','1827','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3053','1827','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3054','1827','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3057','1826','wcf-steps','a:2:{i:0;a:3:{s:2:\"id\";i:1827;s:5:\"title\";s:17:\"Store Checkout 02\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:1933;s:5:\"title\";s:27:\"Store Checkout Thank You 02\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3058','1828','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3059','1828','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3060','1828','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3061','1828','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3062','1828','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3063','1828','_elementor_data','[{\"id\":\"3e1d91f2\",\"settings\":{\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100},\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"top_section\",\"html_tag\":\"section\",\"background_overlay_color\":\"#00153d\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"overlay_blend_mode\":\"lighten\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"da1456\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5709f376\",\"settings\":{\"title\":\"\\u099a\\u09cb\\u0996\\u09c7\\u09b0 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09be\\u09df  \\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be\\u09b0  \\u09ac\\u09bf\\u0995\\u09b2\\u09cd\\u09aa \\u0986\\u09b0 \\u0995\\u09bf\\u099b\\u09c1 \\u09a8\\u09c7\\u0987!\\n\",\"size\":\"xxl\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4.4},\"typography_font_weight\":\"300\",\"_animation\":\"fadeInUp\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.1},\"header_size\":\"h1\",\"typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7f0e35d9\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u098f \\u0997\\u09cd\\u09b0\\u09c7\\u09a1 \\u098f\\u09b0 \\u0985\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u0986\\u0987 \\u09aa\\u09cd\\u09b0\\u09cb \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1\\u09c7\\u09b0 \\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u0997\\u09cd\\u09b2\\u09be\\u09b8\\u0964 \\u09b8\\u09be\\u09a5\\u09c7 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09ab\\u09cd\\u09b0\\u09c7\\u09ae\\u0964\\n\\n\\n\\n\",\"header_size\":\"span\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"200\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"2\",\"right\":\"20\",\"bottom\":\"2\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"3035c5f6\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInUp\",\"animation_delay\":600,\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"35c15a1c\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21f5e374\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"right\",\"size\":\"md\",\"background_color\":\"#4054b2\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#4054b2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"typography_typography\":\"custom\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"7fe5ac89\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54c9172\",\"settings\":{\"text\":\"Call Now\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"hover_color\":\"#0c0c0c\",\"button_background_hover_color\":\"#ffffff\",\"button_hover_border_color\":\"#7a7a7a\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_animation\":\"grow\",\"border_color\":\"rgba(0,0,0,0.33)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"link\":{\"url\":\"tel:01723624**\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"4b12b820\",\"settings\":{\"gap\":\"wider\",\"height\":\"min-height\",\"column_position\":\"stretch\",\"structure\":\"20\",\"background_position\":\"center left\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"section\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_color\":\"Daniel Johnson  <em>Director<\\/em>\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"428175f\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"content_position\":\"center\",\"background_image\":{\"id\":121,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/modern-black-drone.png\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5507b01\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0    \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c\\u09c7  \\u09af\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8\\u0983\",\"align\":\"left\",\"title_color\":\"#0c0c0c\",\"typography_typography\":\"custom\",\"_animation\":\"fadeInLeft\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2},\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.5},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1d761246\",\"settings\":{\"editor\":\"<ul><li>\\u0993\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u0986\\u0987-\\u09aa\\u09cd\\u09b0\\u09cb \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 \\u09b2\\u09c7\\u09a8\\u09cd\\u09b8<\\/li><li>\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09b2\\u09be\\u0987\\u099f-\\u0993\\u09df\\u09c7\\u099f \\u09ab\\u09cd\\u09b0\\u09c7\\u09ae<br \\/>\\u098f\\u0995\\u099f\\u09bf \\u09b2\\u09c7\\u09a8\\u09cd\\u09b8 \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09be\\u09b0 \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7<\\/li><li>\\u09a6\\u09c1\\u0987\\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09bf\\u0982 \\u0995\\u099f\\u09a8<br \\/>\\u09b2\\u09c7\\u099c\\u09be\\u09b0 \\u099f\\u09c7\\u09b8\\u09cd\\u099f\\u09bf\\u0982 \\u0995\\u09bf\\u099f<\\/li><li>\\u098f\\u0995\\u099f\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4\\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u099a\\u09b6\\u09ae\\u09be \\u099c\\u09bf\\u09aa\\u09be\\u09b0 \\u09ac\\u0995\\u09cd\\u09b8<\\/li><\\/ul>\",\"text_color\":\"#7a7a7a\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"align\":\"left\",\"align_tablet\":\"left\",\"typography_font_family\":\"Poppins\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6},\"align_mobile\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"1b676333\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"background_position\":\"bottom right\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"rgba(12,12,12,0.09)\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00153d\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"overlay_blend_mode\":\"lighten\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50ceeb13\",\"settings\":{\"carousel\":[{\"id\":122,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/unnamed.jpg\"},{\"id\":123,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Blue-Modern-New-Product-Facebook-Ad.jpg\"}],\"thumbnail_size\":\"custom\",\"slides_to_show\":\"1\",\"slides_to_scroll\":\"1\",\"_animation\":\"headShake\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"thumbnail_custom_dimension\":{\"width\":\"700\",\"height\":\"500\"},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2bcec476\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":123,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Blue-Modern-New-Product-Facebook-Ad.jpg\"},\"background_position\":\"center right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":60},\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":200},\"shape_divider_bottom_negative\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"html_tag\":\"section\",\"background_position_tablet\":\"center center\",\"background_overlay_color\":\"#00153d\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":300},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"269a9c62\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d00543f\",\"settings\":{\"title\":\"\\u0985\\u09ab\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u09b8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ef\\u09ef\\u09e6 \\u099f\\u09be\\u0995\\u09be\\n\",\"size\":\"xl\",\"title_color\":\"#ffffff\",\"_animation\":\"fadeInLeft\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2},\"align\":\"left\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.5},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_element_width_mobile\":\"inherit\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"326e5a25\",\"settings\":{\"editor\":\"<p>\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be!<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_font_weight\":\"200\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_animation\":\"fadeInUp\",\"_animation_delay\":400,\"align\":\"left\",\"typography_font_family\":\"Poppins\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"1b98667b\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInUp\",\"animation_delay\":600,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4bb046b8\",\"settings\":{\"_column_size\":50,\"_inline_size\":23.273,\"_inline_size_tablet\":40,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"100c599f\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"right\",\"size\":\"xs\",\"background_color\":\"#4054b2\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#4054b2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":30,\"spread\":-2,\"color\":\"rgba(64,84,178,0.65)\"},\"align_mobile\":\"justify\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"2b1d5654\",\"settings\":{\"_column_size\":50,\"_inline_size\":76.719,\"_inline_size_tablet\":60,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74a27dc2\",\"settings\":{\"text\":\"Contact\",\"size\":\"xs\",\"button_text_color\":\"#ffffff\",\"background_color\":\"rgba(255,255,255,0)\",\"hover_color\":\"#ffffff\",\"button_hover_border_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_color\":\"#ffffff\",\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"align_mobile\":\"justify\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"381135e2\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":123,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Blue-Modern-New-Product-Facebook-Ad.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_video_link\":\"https:\\/\\/youtu.be\\/m5WvcXp2dqU?t=35\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00153d\",\"shape_divider_top\":\"triangle\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":70},\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":70},\"shape_divider_bottom_negative\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"structure\":\"20\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29f80f80\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"620e309c\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\\n\",\"size\":\"xxl\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4.5},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":3.2},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2},\"header_size\":\"span\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"455ee95e\",\"settings\":{\"title\":\"\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09ac\\u09be \\u0995\\u09ae\\u09cd\\u09aa\\u09bf\\u0989\\u099f\\u09be\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u09b0 \\u09b9\\u0993\\u09df\\u09be \\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09b0 \\u0986\\u09b2\\u09cb \\u09a5\\u09c7\\u0995\\u09c7 \\u099a\\u09cb\\u0996 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u09a8 \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4\\u0964\\n\",\"size\":\"large\",\"header_size\":\"span\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"c5ba803\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a17fc3\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e4875f\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b45d67\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2<\\/span> \\u09ac\\u09be <span style=\\\"color:red\\\">\\u0995\\u09ae\\u09cd\\u09aa\\u09bf\\u0989\\u099f\\u09be\\u09b0<\\/span> \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u09b0 \\u09b9\\u0993\\u09df\\u09be \\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09b0 \\u0986\\u09b2\\u09cb \\u09a5\\u09c7\\u0995\\u09c7 \\u099a\\u09cb\\u0996 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u09a8 \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2f2fb49\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\">\\u0998\\u09a8\\u0998\\u09a8 \\u09ae\\u09be\\u09a5\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09a5\\u09be, \\u099a\\u09cb\\u0996 \\u09b2\\u09be\\u09b2 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u0993\\u09df\\u09be<\\/span> \\u09ac\\u09be <span style=\\\"color:red\\\">\\u099a\\u09cb\\u0996 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09aa\\u09be\\u09a8\\u09bf \\u09aa\\u09a1\\u09bc\\u09be<\\/span> \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"ce84137\",\"settings\":{\"title\":\"\\u099a\\u09b6\\u09ae\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09ab\\u09b2\\u09c7 \\u09ac\\u09cd\\u09b2\\u09c1-\\u09b2\\u09be\\u0987\\u099f \\u09aa\\u09cd\\u09b0\\u099f\\u09c7\\u0995\\u09cd\\u099f \\u09b9\\u09ac\\u09c7, \\u09af\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 <span style=\\\"color:red\\\"> \\u0998\\u09c1\\u09ae\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df<\\/span> \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09c0 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"ba49bab\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09a6\\u09c0\\u09b0\\u09cd\\u0998 \\u09ae\\u09c7\\u09df\\u09be\\u09a6\\u09c0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09be\\u0981\\u099a\\u09be\\u09b0\\u09c7\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5a42605\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 <span style=\\\"color:red\\\">\\u099a\\u09cb\\u0996\\u09c7\\u09b0 \\u0989\\u09aa\\u09b0 \\u099a\\u09be\\u09aa<\\/span> \\u0995\\u09ae\\u09be\\u09df\\u0964 \\u09af\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u0985\\u09a8\\u09c1\\u09ad\\u09ac \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"996b46f\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 <span style=\\\"color:red\\\">\\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf-\\u09b6\\u0995\\u09cd\\u09a4\\u09bf<\\/span> \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"be570b3\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order-form\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4bea656d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#2196F3\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37676298\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#3C494E\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a03de62\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"product_options_position\":\"before-customer\",\"__globals__\":{\"btn_background_color_color\":\"\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\",\"button_hover_border_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color_color\":\"globals\\/colors?id=secondary\"},\"product_options_skin\":\"cards\",\"button_text_color\":\"#FFFFFF\",\"btn_background_color_color\":\"#2196F3\",\"button_background_hover_color_background\":\"classic\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"62ac697\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d12cb75\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b037eab\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3064','1828','_elementor_page_assets','a:1:{s:6:\"styles\";a:19:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3065','1828','_elementor_controls_usage','a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:13;s:4:\"size\";i:4;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:5:\"align\";i:11;s:11:\"title_color\";i:13;s:21:\"typography_typography\";i:13;s:20:\"typography_font_size\";i:12;s:22:\"typography_font_weight\";i:12;s:25:\"typography_letter_spacing\";i:4;s:22:\"typography_line_height\";i:4;s:22:\"typography_font_family\";i:12;s:25:\"typography_text_transform\";i:4;s:21:\"typography_font_style\";i:4;s:26:\"typography_text_decoration\";i:4;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:10;s:16:\"_animation_delay\";i:1;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:7;s:21:\"_element_width_mobile\";i:1;s:7:\"_margin\";i:6;}s:15:\"_section_border\";a:1:{s:27:\"_box_shadow_box_shadow_type\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:4:\"size\";i:4;s:4:\"link\";i:2;s:11:\"icon_indent\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:14:{s:5:\"align\";i:2;s:16:\"background_color\";i:4;s:13:\"border_border\";i:4;s:12:\"border_width\";i:4;s:12:\"border_color\";i:4;s:13:\"border_radius\";i:4;s:21:\"typography_typography\";i:1;s:15:\"hover_animation\";i:4;s:17:\"button_text_color\";i:2;s:11:\"hover_color\";i:2;s:29:\"button_background_hover_color\";i:1;s:25:\"button_hover_border_color\";i:2;s:28:\"button_box_shadow_box_shadow\";i:1;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:13;s:21:\"space_between_widgets\";i:1;s:16:\"content_position\";i:2;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:6:{s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:21:\"background_background\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:13:\"border_radius\";i:1;}s:26:\"section_background_overlay\";a:4:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;s:18:\"overlay_blend_mode\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:7:\"padding\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}s:14:\"section_layout\";a:5:{s:15:\"column_position\";i:2;s:8:\"html_tag\";i:3;s:3:\"gap\";i:2;s:6:\"height\";i:2;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:15:\"animation_delay\";i:2;}s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:7;s:11:\"css_classes\";i:2;s:6:\"margin\";i:1;s:11:\"_element_id\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:4;s:19:\"background_position\";i:3;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:3;s:16:\"background_image\";i:2;s:21:\"background_video_link\";i:1;}s:21:\"section_shape_divider\";a:7:{s:26:\"shape_divider_bottom_width\";i:2;s:24:\"shape_divider_top_height\";i:2;s:26:\"shape_divider_top_negative\";i:2;s:27:\"shape_divider_bottom_height\";i:2;s:29:\"shape_divider_bottom_negative\";i:2;s:20:\"shape_divider_bottom\";i:2;s:17:\"shape_divider_top\";i:1;}s:26:\"section_background_overlay\";a:4:{s:24:\"background_overlay_color\";i:5;s:26:\"background_overlay_opacity\";i:3;s:18:\"overlay_blend_mode\";i:1;s:29:\"background_overlay_background\";i:3;}s:14:\"section_border\";a:2:{s:13:\"border_radius\";i:1;s:13:\"border_border\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:10:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:2;s:5:\"align\";i:3;s:22:\"typography_font_family\";i:3;s:25:\"typography_text_transform\";i:1;s:21:\"typography_font_style\";i:1;s:26:\"typography_text_decoration\";i:1;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:5:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;s:16:\"slides_to_scroll\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;s:16:\"_animation_delay\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3066','1830','wcf-flow-id','1829');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3067','1830','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3068','1830','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3069','1829','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1830;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1832;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1842;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3070','1832','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3071','1832','_oembed_94620249a73cc10a0679692ba61fad2b','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3072','1832','_oembed_047ec1a1e4732153f83b573bd07c0e6f','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3073','1832','_oembed_time_047ec1a1e4732153f83b573bd07c0e6f','1708497492');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3074','1832','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3075','1832','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3076','1832','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3077','1832','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3078','1832','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3079','1832','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3080','1832','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3081','1832','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3082','1832','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3083','1832','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3084','1832','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3085','1832','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3086','1832','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3087','1832','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3088','1832','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3089','1832','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3090','1832','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3091','1832','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3092','1832','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3093','1832','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3094','1832','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3095','1832','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3096','1832','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3097','1832','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3098','1832','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3099','1832','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3100','1832','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3101','1832','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3102','1832','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3103','1832','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3104','1832','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3105','1832','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3106','1832','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3107','1832','_oembed_time_94620249a73cc10a0679692ba61fad2b','1710927601');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3108','1832','wcf-flow-id','1829');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3109','1832','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3110','1832','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3111','1832','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3112','1832','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3113','1832','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3114','1832','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3115','1832','_edit_lock','1717804443:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3116','1832','wcf-pro-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3117','1832','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3118','1832','_elementor_data','[{\"id\":\"687de3c\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ea2357f\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51ca6fa\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"bdee780\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09af\\u09bc\\u09a4 \\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09b8\\u09be\\u09b0, \\u09b0\\u0995\\u09cd\\u09a4\\u09c7 \\u0995\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2, \\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u0987\\u09a4\\u09cd\\u09af\\u09be\\u09a6\\u09bf \\u09ae\\u09b0\\u09a3\\u09ac\\u09cd\\u09af\\u09be\\u09a7\\u09bf \\u09b0\\u09cb\\u0997\\u09c7 \\u0986\\u0995\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a4 \\u09b9\\u099a\\u09cd\\u099b\\u09bf\\u0964 \\u09ac\\u099b\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u09df \\u09e8 \\u09b2\\u09be\\u0995\\u09cd\\u09b7 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7 \\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09b8\\u09be\\u09b0\\u09c7 \\u0986\\u0995\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a4 \\u09b9\\u099a\\u09cd\\u099b\\u09c7\\u09a8\\u0964  \\u09e7\\u09e6 \\u09b6\\u09a4\\u09be\\u0982\\u09b6 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7 \\u09ae\\u09be\\u09b0\\u09be \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7\\u0964 \\u09b0\\u0995\\u09cd\\u09a4\\u09c7 \\u0995\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09df\\u09a4 \\u0998\\u09b0\\u09c7 \\u0998\\u09b0\\u09c7 \\u09ac\\u09c7\\u09dc\\u09c7 \\u099a\\u09b2\\u09c7\\u099b\\u09c7\\u0964 \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"f03f8c3\",\"settings\":{\"editor\":\"<p>\\u0986\\u09b0 \\u098f\\u09b8\\u09ac \\u09b0\\u09cb\\u0997 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09ac\\u09be\\u09b8\\u09be \\u09ac\\u09be\\u0981\\u09a7\\u09be\\u09b0 \\u09aa\\u09c2\\u09b0\\u09cd\\u09ac\\u09c7\\u0987 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0989\\u099a\\u09bf\\u09a4 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u099c\\u09be\\u09a4\\u09c0\\u09af\\u09bc \\u0993 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09ac\\u09be \\u0986\\u0981\\u09b6\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u0964 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ab\\u09b2\\u09ae\\u09c2\\u09b2 \\u098f\\u09ac\\u0982 \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09df \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u09a4\\u09ac\\u09c7 \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u09b6\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09b8\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u0993 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 (\\u0986\\u0981\\u09b6) \\u09aa\\u09be\\u0993\\u09df\\u09be \\u09af\\u09be\\u09df \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09df\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#F8F8F8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"eb7ceb4\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/rU4nqtt5yns\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"double\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_color\":\"#A0A0A0\",\"image_overlay\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"62cff2e\",\"settings\":{\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#E9E9E9\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e110860\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b5d8766\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"background_color\":\"#000000\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"fcb5ccc\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"052a6da\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bcbe848\",\"settings\":{\"title\":\"\\u09a6\\u09c8\\u09a8\\u09bf\\u0995 \\u0995\\u09a4\\u099f\\u09c1\\u0995\\u09c1 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09be \\u0989\\u099a\\u09bf\\u09a4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#3F3F3F\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"fa7c948\",\"settings\":{\"editor\":\"<table><tbody><tr><th>\\u09ac\\u09df\\u09b8<\\/th><th>\\u09a6\\u09c8\\u09a8\\u09bf\\u0995 \\u09af\\u09a4\\u099f\\u09c1\\u0995\\u09c1 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0996\\u09be\\u0993\\u09df\\u09be \\u0989\\u099a\\u09bf\\u09a4<\\/th><\\/tr><tr><td>2-5 \\u09ac\\u099b\\u09b0<\\/td><td>15 \\u0997\\u09cd\\u09b0\\u09be\\u09ae<\\/td><\\/tr><tr><td>5-11 \\u09ac\\u099b\\u09b0<\\/td><td>20 \\u0997\\u09cd\\u09b0\\u09be\\u09ae<\\/td><\\/tr><tr><td>11-15 \\u09ac\\u099b\\u09b0<\\/td><td>25 \\u0997\\u09cd\\u09b0\\u09be\\u09ae<\\/td><\\/tr><tr><td>17 \\u09ac\\u099b\\u09b0 \\u09ac\\u09be \\u09a4\\u09a6\\u09c2\\u09b0\\u09cd\\u09a7<\\/td><td>30 \\u0997\\u09cd\\u09b0\\u09be\\u09ae<\\/td><\\/tr><\\/tbody><\\/table>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"tsize\",\"custom_css\":\".tsize table {\\r\\n  \\r\\n  border-collapse: collapse;\\r\\n  width: 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n}\\r\\n\\r\\n.tsize th {\\r\\n    padding: 15px 0 !important;\\r\\n}\\r\\n\\r\\n.tsize td, .tsize th {\\r\\n  border: 1px solid #dddddd !important;\\r\\n  text-align: left;\\r\\n  padding: 8px;\\r\\n}\\r\\n\\r\\n.tsize tr:nth-child(odd) {\\r\\n  background-color: #f1f1f1;\\r\\n}\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"bee3fb2\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e23f02\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e48d4e4\",\"settings\":{\"title\":\"\\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09b0 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u0997\\u09c1\\u09a3\\u0983 <\\/br>\\n\\u09e7\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09b0 \\u09b0\\u09c1\\u099f\\u09bf \\u09ac\\u09be \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#323232\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"37e50f5\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#BABABA\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ba887ad\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"930f163\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09b8\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8- B6 = \\u09e6.\\u09ed \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0432241\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09ac\\u09be \\u0986\\u0981\\u09b6 \\u09b0\\u09df\\u09c7\\u099b\\u09c7= \\u09e7\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e7\\u09eb \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"42e8b4f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09cb\\u09b0\\u09bf \\u09b0\\u09df\\u09c7\\u099b\\u09c7 =  \\u09e9\\u09ea\\u09e6 \\u0995\\u09bf\\u09b2\\u09cb \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09cb\\u09b0\\u09bf\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"33db9ee\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b0\\u09df\\u09c7\\u099b\\u09c7= \\u09e7\\u09e9 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e7\\u09eb \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ea16571\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b6\\u09bf\\u09df\\u09be\\u09ae = \\u09eb\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ec\\u09e6 \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"9e4d9cc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"left\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Anek Bangla\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"icon_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"ebd72f8\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f519691\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0995\\u09be\\u09b0\\u09cd\\u09ac\\u09cb\\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f = \\u09ed\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ed\\u09eb \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"f3f5480\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09df\\u09b0\\u09a8 = \\u09e8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e9 \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3e6f9bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b6\\u09bf\\u09df\\u09be\\u09ae = \\u09eb\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ec\\u09e6 \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"9e4d9cc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ab\\u09b8\\u09ab\\u09b0\\u09be\\u09b8 = \\u09e9\\u09e6\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e9\\u09eb\\u09e6 \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"f961e7c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u099c\\u09bf\\u0982\\u0995= \\u09e8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e9 \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"83b709b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"left\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Anek Bangla\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":2.1,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"icon_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"divider_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"592390d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#101010\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f3fb203\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f710d6\",\"settings\":{\"title\":\"\\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 \\u09b0\\u09df\\u09c7\\u099b\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#3F3F3F\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a62d8e9\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8- B1= \\u09e6.\\u09eb \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0432241\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8- B2= \\u09e6.\\u09e8 \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"42e8b4f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8- B3= \\u09eb \\u09a5\\u09c7\\u0995\\u09c7 \\u09ed \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"33db9ee\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8- B9= \\u09ea\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ec\\u09e6 \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ea16571\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"left\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Anek Bangla\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"icon_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"92f63cc\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a97a62a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bcdb490\",\"settings\":{\"title\":\"\\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#323232\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"1324a4f\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4082a61\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23b66ce\",\"settings\":{\"title\":\"\\u0996\\u09be\\u09ac\\u09cb \\u0995\\u09cb\\u09a8\\u099f\\u09be?  <span style=\\\"color:red\\\">\\u09b2\\u09be\\u09b2<\\/span> \\u0986\\u099f\\u09be \\u09a8\\u09be\\u0995\\u09bf \\u09b8\\u09be\\u09a6\\u09be \\u0986\\u099f\\u09be? \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#353535\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a623c98\",\"settings\":{\"editor\":\"<p>\\u09b8\\u09cb\\u099c\\u09be \\u0995\\u09a5\\u09be\\u09df \\u09ac\\u09b2\\u09a4\\u09c7 \\u0997\\u09c7\\u09b2\\u09c7, \\u09b8\\u09be\\u09a6\\u09be \\u0986\\u099f\\u09be\\u09df \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u0997\\u09c1\\u09a8 \\u0985\\u09a8\\u09c7\\u0995 \\u0985\\u09a8\\u09c7\\u0995 \\u0995\\u09ae\\u0964 \\u0995\\u09c7\\u09a8\\u09a8\\u09be, \\u0997\\u09ae \\u09ad\\u09c7\\u0999\\u09cd\\u0997\\u09c7 \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7\\u09a8 \\u0995\\u09b0\\u09c7 \\u09af\\u0996\\u09a8 \\u09b8\\u09be\\u09a6\\u09be \\u0986\\u099f\\u09be \\u09aa\\u09cd\\u09b0\\u09b8\\u09cd\\u09a4\\u09c1\\u09a4 \\u0995\\u09b0\\u09be \\u09b9\\u09df,\\u09a4\\u0996\\u09a8 \\u0997\\u09ae\\u09c7 \\u09a5\\u09be\\u0995\\u09be \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u0996\\u09a8\\u09bf\\u099c \\u098f\\u09ac\\u0982 \\u0986\\u09ae\\u09bf\\u09b7 \\u09a8\\u09b7\\u09cd\\u099f \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09df\\u0964 \\u09b8\\u09be\\u09a6\\u09be \\u0986\\u099f\\u09be\\u09df \\u0986\\u0981\\u09b6 \\u0996\\u09c1\\u09ac\\u0987 \\u0995\\u09ae \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u0986\\u09b0 \\u09ad\\u09c2\\u09b8\\u09bf\\u09b8\\u09b9 \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09df \\u0986\\u0981\\u09b6\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u0985\\u09a8\\u09c7\\u0995 \\u0985\\u09a8\\u09c7\\u0995 \\u0997\\u09c1\\u09a8 \\u09ac\\u09c7\\u09b6\\u09bf\\u0964 \\u09b8\\u0995\\u09be\\u09b2-\\u09ac\\u09bf\\u0995\\u09be\\u09b2 \\u09a8\\u09be\\u09b8\\u09cd\\u09a4\\u09be\\u09df \\u09af\\u09be\\u09b0\\u09be \\u09b0\\u09c1\\u099f\\u09bf \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c7\\u09a8,\\u09a4\\u09be\\u09b0\\u09be \\u09b8\\u09be\\u09a6\\u09be \\u0986\\u099f\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09c7 \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/p>\",\"text_color\":\"#D1D1D1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2f34b7d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a8b2ca\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f4236d8\",\"settings\":{\"title\":\"\\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09a6\\u09cd\\u09ac\\u09be\\u09df\\u09bf\\u09a4\\u09cd\\u09ac\\u0983 \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#373737\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"bce0d2a\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u09ac\\u09be\\u09ac\\u09be \\u09ae\\u09be\\u09df\\u09c7\\u09b0 \\u09ac\\u09be \\u0995\\u09b0\\u09cd\\u09a4\\u09be\\u09b0 \\u0989\\u099a\\u09bf\\u09a4 \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b8\\u099a\\u09c7\\u09a4\\u09a8 \\u09b9\\u0993\\u09df\\u09be\\u0964 \\u0986\\u09aa\\u09a8\\u09bf \\u09b8\\u099a\\u09c7\\u09a4\\u09a8 \\u09b9\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09a6\\u09b8\\u09cd\\u09af\\u09b0\\u09be \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u0964\\u0986\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09a6\\u09b8\\u09cd\\u09af\\u09b0\\u09be \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09a5\\u09be\\u0995\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u099a\\u09bf\\u09a8\\u09cd\\u09a4\\u09be \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09ac\\u09be \\u09ad\\u09df \\u09a5\\u09c7\\u0995\\u09c7 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u09a8\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d17053e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u099a\\u09bf\\u09a4,\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09ac\\u09be \\u0986\\u0981\\u09b6\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09b0\\u09be\\u0996\\u09be\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09a6\\u09c7\\u09b0 \\u09ac\\u09b2\\u09ac\\u09cb \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u09b8\\u0995\\u09be\\u09b2- \\u09ac\\u09bf\\u0995\\u09c7\\u09b2\\u09c7\\u09b0 \\u09a8\\u09be\\u09b8\\u09cd\\u09a4\\u09be\\u09df \\u09b6\\u09bf\\u09b6\\u09c1 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7 \\u09b8\\u09ac\\u09be\\u0987\\u0995\\u09c7 \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09b0 \\u09b0\\u09c1\\u099f\\u09bf \\u0996\\u09c7\\u09a4\\u09c7 \\u09a6\\u09bf\\u09a8\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"42e8b4f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09aa\\u09a8\\u09bf \\u099f\\u09be\\u0995\\u09be \\u09a6\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0995\\u09bf\\u09a8\\u099b\\u09c7\\u09a8 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1, \\u0986\\u09aa\\u09a8\\u09bf \\u09ac\\u09c1\\u099d\\u09a4\\u09c7\\u099b\\u09c7\\u09a8 \\u09a8\\u09be \\u09b8\\u09c7\\u0987 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09a4\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be \\u0985\\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09a4\\u09be? \\u09ae\\u09a8\\u09c7 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u09a8 \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6, \\u09ad\\u09c7\\u099c\\u09be\\u09b2\\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0994\\u09b7\\u09a7\\u09c7\\u09b0 \\u09ac\\u09bf\\u0995\\u09b2\\u09cd\\u09aa\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"33db9ee\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"left\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#F3F3F3\",\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e1cf690\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"892ebd6\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cc5de74\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8\\u0983\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#2D2D2D\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"e460214\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09a6\\u09c7\\u09b0 \\u09ac\\u09b2\\u09ac\\u09cb \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u0986\\u0981\\u09b6\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09b0 \\u09b0\\u09c1\\u099f\\u09bf \\u0996\\u09be\\u09a8\\u0964 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0\\u09be \\u0997\\u09ae \\u0995\\u09bf\\u09a8\\u09c7 \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be \\u09ac\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a8\\u09bf\\u09a8\\u0964 \\u0986\\u09b0 \\u09af\\u09be\\u09b0\\u09be \\u098f\\u0987 \\u099d\\u09be\\u09ae\\u09c7\\u09b2\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u09a8 \\u09a8\\u09be, \\u09a4\\u09be\\u09b0\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"d17053e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u0997\\u09cd\\u09b0 \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09c1\\u09a6\\u0995\\u09cd\\u09b7 \\u099f\\u09bf\\u09ae \\u09ae\\u09c7\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u0997\\u09a8 \\u09a6\\u09c7\\u09b6\\u09bf \\u0997\\u09ae \\u099d\\u09c7\\u09dc\\u09c7,\\u09ac\\u09c7\\u099b\\u09c7, \\u09aa\\u09be\\u09a8\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\u09a7\\u09c1\\u09df\\u09c7 \\u09b0\\u09cb\\u09a6\\u09c7 \\u09b6\\u09c1\\u0995\\u09bf\\u09af\\u09bc\\u09c7 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u0995\\u09b0  \\u09ad\\u09be\\u09ac\\u09c7 \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u099b\\u09c7\\u0964 \",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"6371685\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a4\\u09be\\u0987 \\u0986\\u09b0 \\u09a6\\u09c7\\u09b0\\u09bf \\u09a8\\u09be \\u0995\\u09b0\\u09c7 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u0995\\u09b0 \\u0986\\u0981\\u09b6\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u098f\\u0996\\u09a8\\u09bf\\u0987\\u0964\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"b1d51ec\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"left\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#E9E9E9\",\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#004B23\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72090b7\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#3A3A3A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#004B23\",\"_element_id\":\"order\",\"global_primary_color\":\"#FFFFFF\",\"global_text_color\":\"#FFFFFF\",\"heading_text_color\":\"#FFFFFF\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#FFFFFF\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fe090f7\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3119','1832','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3120','1832','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3121','1832','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3124','1833','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3125','1833','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3126','1833','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3127','1833','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3128','1833','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3129','1833','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3130','1833','_elementor_data','[{\"id\":\"687de3c\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ea2357f\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51ca6fa\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\"},\"width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"bdee780\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09af\\u09bc\\u09a4 \\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09b8\\u09be\\u09b0, \\u09b0\\u0995\\u09cd\\u09a4\\u09c7 \\u0995\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2, \\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u0987\\u09a4\\u09cd\\u09af\\u09be\\u09a6\\u09bf \\u09ae\\u09b0\\u09a3\\u09ac\\u09cd\\u09af\\u09be\\u09a7\\u09bf \\u09b0\\u09cb\\u0997\\u09c7 \\u0986\\u0995\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a4 \\u09b9\\u099a\\u09cd\\u099b\\u09bf\\u0964 \\u09ac\\u099b\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u09df \\u09e8 \\u09b2\\u09be\\u0995\\u09cd\\u09b7 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7 \\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09b8\\u09be\\u09b0\\u09c7 \\u0986\\u0995\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a4 \\u09b9\\u099a\\u09cd\\u099b\\u09c7\\u09a8\\u0964  \\u09e7\\u09e6 \\u09b6\\u09a4\\u09be\\u0982\\u09b6 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7 \\u09ae\\u09be\\u09b0\\u09be \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7\\u0964 \\u09b0\\u0995\\u09cd\\u09a4\\u09c7 \\u0995\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09df\\u09a4 \\u0998\\u09b0\\u09c7 \\u0998\\u09b0\\u09c7 \\u09ac\\u09c7\\u09dc\\u09c7 \\u099a\\u09b2\\u09c7\\u099b\\u09c7\\u0964 \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"f03f8c3\",\"settings\":{\"editor\":\"<p>\\u0986\\u09b0 \\u098f\\u09b8\\u09ac \\u09b0\\u09cb\\u0997 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09ac\\u09be\\u09b8\\u09be \\u09ac\\u09be\\u0981\\u09a7\\u09be\\u09b0 \\u09aa\\u09c2\\u09b0\\u09cd\\u09ac\\u09c7\\u0987 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0989\\u099a\\u09bf\\u09a4 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u099c\\u09be\\u09a4\\u09c0\\u09af\\u09bc \\u0993 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09ac\\u09be \\u0986\\u0981\\u09b6\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u0964 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ab\\u09b2\\u09ae\\u09c2\\u09b2 \\u098f\\u09ac\\u0982 \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09df \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u09a4\\u09ac\\u09c7 \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u09b6\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09b8\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u0993 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 (\\u0986\\u0981\\u09b6) \\u09aa\\u09be\\u0993\\u09df\\u09be \\u09af\\u09be\\u09df \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09df\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#F8F8F8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"eb7ceb4\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/rU4nqtt5yns\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"double\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_color\":\"#A0A0A0\",\"image_overlay\":{\"id\":\"823\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-2-1-1-1.png\"},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"62cff2e\",\"settings\":{\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#E9E9E9\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_flip\":\"yes\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e110860\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b5d8766\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"background_color\":\"#000000\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"fcb5ccc\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"052a6da\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bcbe848\",\"settings\":{\"title\":\"\\u09a6\\u09c8\\u09a8\\u09bf\\u0995 \\u0995\\u09a4\\u099f\\u09c1\\u0995\\u09c1 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09be \\u0989\\u099a\\u09bf\\u09a4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#3F3F3F\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"fa7c948\",\"settings\":{\"editor\":\"<table><tbody><tr><th>\\u09ac\\u09df\\u09b8<\\/th><th>\\u09a6\\u09c8\\u09a8\\u09bf\\u0995 \\u09af\\u09a4\\u099f\\u09c1\\u0995\\u09c1 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0996\\u09be\\u0993\\u09df\\u09be \\u0989\\u099a\\u09bf\\u09a4<\\/th><\\/tr><tr><td>2-5 \\u09ac\\u099b\\u09b0<\\/td><td>15 \\u0997\\u09cd\\u09b0\\u09be\\u09ae<\\/td><\\/tr><tr><td>5-11 \\u09ac\\u099b\\u09b0<\\/td><td>20 \\u0997\\u09cd\\u09b0\\u09be\\u09ae<\\/td><\\/tr><tr><td>11-15 \\u09ac\\u099b\\u09b0<\\/td><td>25 \\u0997\\u09cd\\u09b0\\u09be\\u09ae<\\/td><\\/tr><tr><td>17 \\u09ac\\u099b\\u09b0 \\u09ac\\u09be \\u09a4\\u09a6\\u09c2\\u09b0\\u09cd\\u09a7<\\/td><td>30 \\u0997\\u09cd\\u09b0\\u09be\\u09ae<\\/td><\\/tr><\\/tbody><\\/table>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"tsize\",\"custom_css\":\".tsize table {\\r\\n  \\r\\n  border-collapse: collapse;\\r\\n  width: 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n}\\r\\n\\r\\n.tsize th {\\r\\n    padding: 15px 0 !important;\\r\\n}\\r\\n\\r\\n.tsize td, .tsize th {\\r\\n  border: 1px solid #dddddd !important;\\r\\n  text-align: left;\\r\\n  padding: 8px;\\r\\n}\\r\\n\\r\\n.tsize tr:nth-child(odd) {\\r\\n  background-color: #f1f1f1;\\r\\n}\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"bee3fb2\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e23f02\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e48d4e4\",\"settings\":{\"title\":\"\\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09b0 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u0997\\u09c1\\u09a3\\u0983 <\\/br>\\n\\u09e7\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09b0 \\u09b0\\u09c1\\u099f\\u09bf \\u09ac\\u09be \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#323232\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"37e50f5\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#BABABA\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ba887ad\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"930f163\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09b8\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8- B6 = \\u09e6.\\u09ed \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0432241\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09ac\\u09be \\u0986\\u0981\\u09b6 \\u09b0\\u09df\\u09c7\\u099b\\u09c7= \\u09e7\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e7\\u09eb \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"42e8b4f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09cb\\u09b0\\u09bf \\u09b0\\u09df\\u09c7\\u099b\\u09c7 =  \\u09e9\\u09ea\\u09e6 \\u0995\\u09bf\\u09b2\\u09cb \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09cb\\u09b0\\u09bf\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"33db9ee\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b0\\u09df\\u09c7\\u099b\\u09c7= \\u09e7\\u09e9 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e7\\u09eb \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ea16571\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b6\\u09bf\\u09df\\u09be\\u09ae = \\u09eb\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ec\\u09e6 \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"9e4d9cc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"left\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Anek Bangla\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"icon_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"ebd72f8\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f519691\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0995\\u09be\\u09b0\\u09cd\\u09ac\\u09cb\\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f = \\u09ed\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ed\\u09eb \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"f3f5480\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09df\\u09b0\\u09a8 = \\u09e8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e9 \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3e6f9bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b6\\u09bf\\u09df\\u09be\\u09ae = \\u09eb\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ec\\u09e6 \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"9e4d9cc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ab\\u09b8\\u09ab\\u09b0\\u09be\\u09b8 = \\u09e9\\u09e6\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e9\\u09eb\\u09e6 \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"f961e7c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u099c\\u09bf\\u0982\\u0995= \\u09e8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e9 \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"83b709b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"left\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Anek Bangla\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":2.1,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"icon_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"divider_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"592390d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#101010\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f3fb203\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f710d6\",\"settings\":{\"title\":\"\\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 \\u09b0\\u09df\\u09c7\\u099b\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#3F3F3F\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a62d8e9\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8- B1= \\u09e6.\\u09eb \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0432241\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8- B2= \\u09e6.\\u09e8 \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"42e8b4f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8- B3= \\u09eb \\u09a5\\u09c7\\u0995\\u09c7 \\u09ed \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"33db9ee\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8- B9= \\u09ea\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ec\\u09e6 \\u09ae\\u09bf\\u09b2\\u09bf \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ea16571\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"left\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Anek Bangla\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"icon_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"92f63cc\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a97a62a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bcdb490\",\"settings\":{\"title\":\"\\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#323232\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"1324a4f\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4082a61\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23b66ce\",\"settings\":{\"title\":\"\\u0996\\u09be\\u09ac\\u09cb \\u0995\\u09cb\\u09a8\\u099f\\u09be?  <span style=\\\"color:red\\\">\\u09b2\\u09be\\u09b2<\\/span> \\u0986\\u099f\\u09be \\u09a8\\u09be\\u0995\\u09bf \\u09b8\\u09be\\u09a6\\u09be \\u0986\\u099f\\u09be? \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#353535\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a623c98\",\"settings\":{\"editor\":\"<p>\\u09b8\\u09cb\\u099c\\u09be \\u0995\\u09a5\\u09be\\u09df \\u09ac\\u09b2\\u09a4\\u09c7 \\u0997\\u09c7\\u09b2\\u09c7, \\u09b8\\u09be\\u09a6\\u09be \\u0986\\u099f\\u09be\\u09df \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u0997\\u09c1\\u09a8 \\u0985\\u09a8\\u09c7\\u0995 \\u0985\\u09a8\\u09c7\\u0995 \\u0995\\u09ae\\u0964 \\u0995\\u09c7\\u09a8\\u09a8\\u09be, \\u0997\\u09ae \\u09ad\\u09c7\\u0999\\u09cd\\u0997\\u09c7 \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7\\u09a8 \\u0995\\u09b0\\u09c7 \\u09af\\u0996\\u09a8 \\u09b8\\u09be\\u09a6\\u09be \\u0986\\u099f\\u09be \\u09aa\\u09cd\\u09b0\\u09b8\\u09cd\\u09a4\\u09c1\\u09a4 \\u0995\\u09b0\\u09be \\u09b9\\u09df,\\u09a4\\u0996\\u09a8 \\u0997\\u09ae\\u09c7 \\u09a5\\u09be\\u0995\\u09be \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u0996\\u09a8\\u09bf\\u099c \\u098f\\u09ac\\u0982 \\u0986\\u09ae\\u09bf\\u09b7 \\u09a8\\u09b7\\u09cd\\u099f \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09df\\u0964 \\u09b8\\u09be\\u09a6\\u09be \\u0986\\u099f\\u09be\\u09df \\u0986\\u0981\\u09b6 \\u0996\\u09c1\\u09ac\\u0987 \\u0995\\u09ae \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u0986\\u09b0 \\u09ad\\u09c2\\u09b8\\u09bf\\u09b8\\u09b9 \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09df \\u0986\\u0981\\u09b6\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u0985\\u09a8\\u09c7\\u0995 \\u0985\\u09a8\\u09c7\\u0995 \\u0997\\u09c1\\u09a8 \\u09ac\\u09c7\\u09b6\\u09bf\\u0964 \\u09b8\\u0995\\u09be\\u09b2-\\u09ac\\u09bf\\u0995\\u09be\\u09b2 \\u09a8\\u09be\\u09b8\\u09cd\\u09a4\\u09be\\u09df \\u09af\\u09be\\u09b0\\u09be \\u09b0\\u09c1\\u099f\\u09bf \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c7\\u09a8,\\u09a4\\u09be\\u09b0\\u09be \\u09b8\\u09be\\u09a6\\u09be \\u0986\\u099f\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09c7 \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/p>\",\"text_color\":\"#D1D1D1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2f34b7d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a8b2ca\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f4236d8\",\"settings\":{\"title\":\"\\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09a6\\u09cd\\u09ac\\u09be\\u09df\\u09bf\\u09a4\\u09cd\\u09ac\\u0983 \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#373737\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"bce0d2a\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u09ac\\u09be\\u09ac\\u09be \\u09ae\\u09be\\u09df\\u09c7\\u09b0 \\u09ac\\u09be \\u0995\\u09b0\\u09cd\\u09a4\\u09be\\u09b0 \\u0989\\u099a\\u09bf\\u09a4 \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b8\\u099a\\u09c7\\u09a4\\u09a8 \\u09b9\\u0993\\u09df\\u09be\\u0964 \\u0986\\u09aa\\u09a8\\u09bf \\u09b8\\u099a\\u09c7\\u09a4\\u09a8 \\u09b9\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09a6\\u09b8\\u09cd\\u09af\\u09b0\\u09be \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u0964\\u0986\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09a6\\u09b8\\u09cd\\u09af\\u09b0\\u09be \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09a5\\u09be\\u0995\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u099a\\u09bf\\u09a8\\u09cd\\u09a4\\u09be \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09ac\\u09be \\u09ad\\u09df \\u09a5\\u09c7\\u0995\\u09c7 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u09a8\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d17053e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u099a\\u09bf\\u09a4,\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09ac\\u09be \\u0986\\u0981\\u09b6\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09b0\\u09be\\u0996\\u09be\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09a6\\u09c7\\u09b0 \\u09ac\\u09b2\\u09ac\\u09cb \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u09b8\\u0995\\u09be\\u09b2- \\u09ac\\u09bf\\u0995\\u09c7\\u09b2\\u09c7\\u09b0 \\u09a8\\u09be\\u09b8\\u09cd\\u09a4\\u09be\\u09df \\u09b6\\u09bf\\u09b6\\u09c1 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7 \\u09b8\\u09ac\\u09be\\u0987\\u0995\\u09c7 \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09b0 \\u09b0\\u09c1\\u099f\\u09bf \\u0996\\u09c7\\u09a4\\u09c7 \\u09a6\\u09bf\\u09a8\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"42e8b4f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09aa\\u09a8\\u09bf \\u099f\\u09be\\u0995\\u09be \\u09a6\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0995\\u09bf\\u09a8\\u099b\\u09c7\\u09a8 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1, \\u0986\\u09aa\\u09a8\\u09bf \\u09ac\\u09c1\\u099d\\u09a4\\u09c7\\u099b\\u09c7\\u09a8 \\u09a8\\u09be \\u09b8\\u09c7\\u0987 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09a4\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be \\u0985\\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09a4\\u09be? \\u09ae\\u09a8\\u09c7 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u09a8 \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6, \\u09ad\\u09c7\\u099c\\u09be\\u09b2\\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0994\\u09b7\\u09a7\\u09c7\\u09b0 \\u09ac\\u09bf\\u0995\\u09b2\\u09cd\\u09aa\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"33db9ee\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"left\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#F3F3F3\",\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e1cf690\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"892ebd6\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cc5de74\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8\\u0983\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#2D2D2D\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"e460214\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09a6\\u09c7\\u09b0 \\u09ac\\u09b2\\u09ac\\u09cb \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u0986\\u0981\\u09b6\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be\\u09b0 \\u09b0\\u09c1\\u099f\\u09bf \\u0996\\u09be\\u09a8\\u0964 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0\\u09be \\u0997\\u09ae \\u0995\\u09bf\\u09a8\\u09c7 \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be \\u09ac\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a8\\u09bf\\u09a8\\u0964 \\u0986\\u09b0 \\u09af\\u09be\\u09b0\\u09be \\u098f\\u0987 \\u099d\\u09be\\u09ae\\u09c7\\u09b2\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u09a8 \\u09a8\\u09be, \\u09a4\\u09be\\u09b0\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"d17053e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u0997\\u09cd\\u09b0 \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09c1\\u09a6\\u0995\\u09cd\\u09b7 \\u099f\\u09bf\\u09ae \\u09ae\\u09c7\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u0997\\u09a8 \\u09a6\\u09c7\\u09b6\\u09bf \\u0997\\u09ae \\u099d\\u09c7\\u09dc\\u09c7,\\u09ac\\u09c7\\u099b\\u09c7, \\u09aa\\u09be\\u09a8\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\u09a7\\u09c1\\u09df\\u09c7 \\u09b0\\u09cb\\u09a6\\u09c7 \\u09b6\\u09c1\\u0995\\u09bf\\u09af\\u09bc\\u09c7 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u0995\\u09b0  \\u09ad\\u09be\\u09ac\\u09c7 \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u099b\\u09c7\\u0964 \",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"6371685\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a4\\u09be\\u0987 \\u0986\\u09b0 \\u09a6\\u09c7\\u09b0\\u09bf \\u09a8\\u09be \\u0995\\u09b0\\u09c7 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u0995\\u09b0 \\u0986\\u0981\\u09b6\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b2\\u09be\\u09b2 \\u0986\\u099f\\u09be \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u098f\\u0996\\u09a8\\u09bf\\u0987\\u0964\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"b1d51ec\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"left\",\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#E9E9E9\",\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#004B23\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72090b7\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#3A3A3A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#004B23\",\"_element_id\":\"order\",\"global_primary_color\":\"#FFFFFF\",\"global_text_color\":\"#FFFFFF\",\"heading_text_color\":\"#FFFFFF\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#FFFFFF\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fe090f7\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3132','1833','_elementor_controls_usage','a:8:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:9;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:5:\"align\";i:9;s:11:\"title_color\";i:9;s:21:\"typography_typography\";i:9;s:22:\"typography_font_family\";i:9;s:20:\"typography_font_size\";i:9;s:22:\"typography_font_weight\";i:9;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:7;s:8:\"_padding\";i:8;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:8;s:17:\"_background_color\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:3;s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:13;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:11;s:16:\"background_color\";i:11;}s:21:\"section_shape_divider\";a:5:{s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:22:\"shape_divider_top_flip\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:3;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:4:\"size\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:16:\"background_color\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:5;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:5:{s:10:\"icon_align\";i:5;s:7:\"divider\";i:5;s:14:\"divider_weight\";i:5;s:13:\"divider_width\";i:3;s:13:\"divider_color\";i:1;}s:18:\"section_icon_style\";a:5:{s:15:\"icon_self_align\";i:5;s:24:\"icon_self_vertical_align\";i:5;s:9:\"icon_size\";i:5;s:11:\"text_indent\";i:3;s:10:\"icon_color\";i:2;}s:18:\"section_text_style\";a:6:{s:26:\"icon_typography_typography\";i:5;s:27:\"icon_typography_font_family\";i:5;s:25:\"icon_typography_font_size\";i:5;s:27:\"icon_typography_font_weight\";i:5;s:27:\"icon_typography_line_height\";i:4;s:10:\"text_color\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3133','1835','wcf-flow-id','1834');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3134','1835','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3135','1835','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3136','1834','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1835;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1837;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1863;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3137','1837','wcf-flow-id','1834');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3138','1837','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3139','1837','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3140','1837','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3141','1837','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3142','1837','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3143','1837','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3144','1837','_edit_lock','1717890089:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3145','1837','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3146','1837','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3147','1837','_elementor_data','[{\"id\":\"547188c4\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70ee83e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27e746aa\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"custom_css\":\"p#billing_country_field {\\r\\n    display: none;\\r\\n}\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"236b84b3\",\"settings\":{\"title\":\"\\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\",\"align\":\"center\",\"title_color\":\"#07AF00\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_animation\":\"bounceIn\",\"animation_duration\":\"fast\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5ad041da\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"461bf7de\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"44dc169b\",\"settings\":{\"gap\":\"no\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d217dc2\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f8e8602\",\"settings\":{\"title\":\"\\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0995\\u09c7\\u09a8 \\u0996\\u09be\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"18\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"54448d37\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"13558f81\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"279c60d1\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0, \\u0986\\u09df\\u09b0\\u09a8, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae\\u09b8\\u09b9 \\u09a8\\u09be\\u09a8\\u09be\\u09a8 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3\\u0964 \\u098f\\u09b8\\u09ac \\u0996\\u09be\\u09a6\\u09cd\\u09af \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u0985\\u09a4\\u09c0\\u09ac \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09b9\\u09df\\u09c7 \\u0993\\u09a0\\u09c7 \\u09af\\u0996\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09df\\u09b8 \\u09aa\\u09cc\\u0981\\u099b\\u09be\\u09ac\\u09c7 \\u09e9\\u09e6-\\u098f\\u09b0 \\u0995\\u09cb\\u09a0\\u09be\\u09df\\u0964\",\"align\":\"center\",\"title_color\":\"#FE0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"9346196\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2\\u09cb \\u0989\\u09ce\\u09b8, \\u09af\\u09be \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d2eaf79\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2 \\u0989\\u09a4\\u09cd\\u09b8, \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u098f\\u09ac\\u0982 \\u09a4\\u09c3\\u09aa\\u09cd\\u09a4 \\u09ac\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d420d6c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09af\\u09bc: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09af\\u09be \\u09b9\\u09be\\u09b0\\u09cd\\u099f\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf\\u09a4\\u09c7 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u0993 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7, \\u09af\\u09be \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"3e5bd2a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u0996\\u09a8\\u09bf\\u099c, \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09df\\u09be\\u09ae \\u0993 \\u09aa\\u099f\\u09be\\u09b6\\u09bf\\u09df\\u09be\\u0964 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09be \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09be\\u09dc\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b240c08\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u09b9\\u09be\\u09a1\\u09bc \\u0993 \\u09a6\\u09be\\u0981\\u09a4: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u0993 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09a5\\u09be\\u0995\\u09c7 \\u09af\\u09be \\u09b9\\u09be\\u09a1\\u09bc \\u0993 \\u09a6\\u09be\\u0981\\u09a4\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2592254\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09ae\\u09b8\\u09cd\\u09a4\\u09bf\\u09b7\\u09cd\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u0996\\u09a8\\u09bf\\u099c \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09af\\u09be \\u09ae\\u09b8\\u09cd\\u09a4\\u09bf\\u09b7\\u09cd\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3, \\u09af\\u09c7\\u09ae\\u09a8 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09ac\\u09bf\\u09ec \\u098f\\u09ac\\u0982 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"924a60d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b0\\u0995\\u09cd\\u09a4\\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be\\u09df \\u09ad\\u09cb\\u0997\\u09be \\u09b0\\u09cb\\u0997\\u09c0\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u098f\\u0995\\u099c\\u09a8 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09af\\u09a4\\u099f\\u09c1\\u0995\\u09c1 \\u0986\\u09df\\u09b0\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8, \\u09a4\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09df \\u09e7\\u09e7 \\u09ad\\u09be\\u0997 \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c67dfa7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09b0\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09bf\\u099c\\u09bf\\u09df\\u09c7 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964 \\u09aa\\u09b0 \\u09a6\\u09bf\\u09a8 \\u09b8\\u0995\\u09be\\u09b2\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09c7\\u099c\\u09be\\u09a8\\u09cb \\u09aa\\u09be\\u09a8\\u09bf \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u09a6\\u09c2\\u09b0 \\u09b9\\u09ac\\u09c7 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"607f39a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09b9\\u099c\\u09ae: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0989\\u099a\\u09cd\\u099a \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b9\\u099c\\u09ae\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u09ac\\u0982 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d971aea\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09e8\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e8\\u09eb \\u09ae\\u09bf\\u09b2\\u09bf\\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae, \\u09af\\u09be \\u0989\\u099a\\u09cd\\u099a \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"7d5622cb\",\"settings\":{\"title\":\"\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u09ee\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\",\"align\":\"center\",\"title_color\":\"#07AF00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"bounceIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5e06460d\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"7caafb81\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72380d3f\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e3333a3\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"195edaef\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"725fccf4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6410ccf5\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0  \\u0995\\u09b0\\u09a4\\u09c7  \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"727b43f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"25ca027\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09a3\\u09cd\\u09af \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0996\\u09c7\\u09df\\u09c7 \\u09b0\\u09bf\\u09b8\\u09bf\\u09ad \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"2a45dc3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u098f\\u0987 \\u09b8\\u09c0\\u099c\\u09a8\\u09c7\\u09b0 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u098f \\u0995\\u09cb\\u09a8\\u09cb \\u09aa\\u09cb\\u0995\\u09be \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09a8\\u09be \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"7dcd5f8\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09a5\\u09be \\u09ae\\u09a4 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09a8\\u09be \\u09aa\\u09c7\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u09bf\\u09b0\\u09cd\\u099f\\u09be\\u09a8 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09a5\\u09be\\u0995\\u099b\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"d1dec1a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"37f3da9f\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"},\"space\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":90,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"46ec3f6a\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77705a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e45ea19\",\"settings\":{\"title\":\"\\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8    01819000000\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"be570b3\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4bea656d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#07AF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37676298\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#07AF00\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a03de62\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"62ac697\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d12cb75\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b037eab\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3148','1837','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3149','1837','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3150','1837','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3151','1837','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3152','1837','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3153','1837','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3154','1837','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3155','1837','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3156','1837','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3157','1837','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3158','1837','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:69:\"আপনার ফোন নাম্বারটি লেখুন\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3159','1837','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3160','1837','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3161','1837','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3162','1837','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3163','1837','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3164','1837','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3165','1837','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3166','1837','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3167','1837','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3168','1837','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3169','1837','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3170','1837','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3171','1837','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3172','1837','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3173','1837','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3174','1837','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3175','1837','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3176','1837','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3177','1837','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3178','1837','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3179','1837','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3180','1837','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3181','1837','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3182','1837','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3183','1837','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3184','1837','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3187','1839','wcf-flow-id','1838');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3188','1839','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3189','1839','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3190','1838','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1839;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1841;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1860;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3191','1841','wcf-flow-id','1838');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3192','1841','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3193','1841','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3194','1841','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3195','1841','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3196','1841','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3197','1841','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3198','1841','_edit_lock','1717803313:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3199','1841','wcf-pro-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3200','1841','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3201','1841','_elementor_data','[{\"id\":\"547188c4\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#A5FF94\",\"shape_divider_top\":\"clouds\",\"shape_divider_top_color\":\"#3B814F\",\"shape_divider_top_flip\":\"yes\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70ee83e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27e746aa\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"custom_css\":\"p#billing_country_field {\\r\\n    display: none;\\r\\n}\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"236b84b3\",\"settings\":{\"title\":\"\\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\",\"align\":\"center\",\"title_color\":\"#07AF00\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_animation\":\"bounceIn\",\"animation_duration\":\"fast\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5ad041da\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"461bf7de\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#3F914B\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"44dc169b\",\"settings\":{\"gap\":\"no\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d217dc2\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f8e8602\",\"settings\":{\"title\":\"\\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0995\\u09c7\\u09a8 \\u0996\\u09be\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"18\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"54448d37\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#A5FF94\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"13558f81\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"279c60d1\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0, \\u0986\\u09df\\u09b0\\u09a8, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae\\u09b8\\u09b9 \\u09a8\\u09be\\u09a8\\u09be\\u09a8 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3\\u0964 \\u098f\\u09b8\\u09ac \\u0996\\u09be\\u09a6\\u09cd\\u09af \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u0985\\u09a4\\u09c0\\u09ac \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09b9\\u09df\\u09c7 \\u0993\\u09a0\\u09c7 \\u09af\\u0996\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09df\\u09b8 \\u09aa\\u09cc\\u0981\\u099b\\u09be\\u09ac\\u09c7 \\u09e9\\u09e6-\\u098f\\u09b0 \\u0995\\u09cb\\u09a0\\u09be\\u09df\\u0964\",\"align\":\"center\",\"title_color\":\"#FE0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"9346196\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2\\u09cb \\u0989\\u09ce\\u09b8, \\u09af\\u09be \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d2eaf79\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2 \\u0989\\u09a4\\u09cd\\u09b8, \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u098f\\u09ac\\u0982 \\u09a4\\u09c3\\u09aa\\u09cd\\u09a4 \\u09ac\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d420d6c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09af\\u09bc: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09af\\u09be \\u09b9\\u09be\\u09b0\\u09cd\\u099f\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf\\u09a4\\u09c7 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u0993 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7, \\u09af\\u09be \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"3e5bd2a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u0996\\u09a8\\u09bf\\u099c, \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09df\\u09be\\u09ae \\u0993 \\u09aa\\u099f\\u09be\\u09b6\\u09bf\\u09df\\u09be\\u0964 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09be \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09be\\u09dc\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b240c08\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u09b9\\u09be\\u09a1\\u09bc \\u0993 \\u09a6\\u09be\\u0981\\u09a4: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u0993 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09a5\\u09be\\u0995\\u09c7 \\u09af\\u09be \\u09b9\\u09be\\u09a1\\u09bc \\u0993 \\u09a6\\u09be\\u0981\\u09a4\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2592254\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09ae\\u09b8\\u09cd\\u09a4\\u09bf\\u09b7\\u09cd\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u0996\\u09a8\\u09bf\\u099c \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09af\\u09be \\u09ae\\u09b8\\u09cd\\u09a4\\u09bf\\u09b7\\u09cd\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3, \\u09af\\u09c7\\u09ae\\u09a8 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09ac\\u09bf\\u09ec \\u098f\\u09ac\\u0982 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"924a60d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b0\\u0995\\u09cd\\u09a4\\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be\\u09df \\u09ad\\u09cb\\u0997\\u09be \\u09b0\\u09cb\\u0997\\u09c0\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u098f\\u0995\\u099c\\u09a8 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09af\\u09a4\\u099f\\u09c1\\u0995\\u09c1 \\u0986\\u09df\\u09b0\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8, \\u09a4\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09df \\u09e7\\u09e7 \\u09ad\\u09be\\u0997 \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c67dfa7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09b0\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09bf\\u099c\\u09bf\\u09df\\u09c7 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964 \\u09aa\\u09b0 \\u09a6\\u09bf\\u09a8 \\u09b8\\u0995\\u09be\\u09b2\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09c7\\u099c\\u09be\\u09a8\\u09cb \\u09aa\\u09be\\u09a8\\u09bf \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u09a6\\u09c2\\u09b0 \\u09b9\\u09ac\\u09c7 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"607f39a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09b9\\u099c\\u09ae: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0989\\u099a\\u09cd\\u099a \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b9\\u099c\\u09ae\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u09ac\\u0982 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d971aea\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09e8\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e8\\u09eb \\u09ae\\u09bf\\u09b2\\u09bf\\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae, \\u09af\\u09be \\u0989\\u099a\\u09cd\\u099a \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"7d5622cb\",\"settings\":{\"title\":\"\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u09ee\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\",\"align\":\"center\",\"title_color\":\"#07AF00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"bounceIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5e06460d\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"7caafb81\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72380d3f\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e3333a3\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"195edaef\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#A5FF94\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"725fccf4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6410ccf5\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0  \\u0995\\u09b0\\u09a4\\u09c7  \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"727b43f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"25ca027\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09a3\\u09cd\\u09af \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0996\\u09c7\\u09df\\u09c7 \\u09b0\\u09bf\\u09b8\\u09bf\\u09ad \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"2a45dc3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u098f\\u0987 \\u09b8\\u09c0\\u099c\\u09a8\\u09c7\\u09b0 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u098f \\u0995\\u09cb\\u09a8\\u09cb \\u09aa\\u09cb\\u0995\\u09be \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09a8\\u09be \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"7dcd5f8\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09a5\\u09be \\u09ae\\u09a4 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09a8\\u09be \\u09aa\\u09c7\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u09bf\\u09b0\\u09cd\\u099f\\u09be\\u09a8 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09a5\\u09be\\u0995\\u099b\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"d1dec1a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"37f3da9f\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"},\"space\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":90,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"46ec3f6a\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77705a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e45ea19\",\"settings\":{\"title\":\"\\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8    01819000000\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"be570b3\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\",\"background_background\":\"classic\",\"background_color\":\"#A5FF94\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4bea656d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#07AF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37676298\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#07AF00\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a03de62\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"input_border_size\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"input_border_color\":\"#19BC00\",\"input_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"62ac697\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d12cb75\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b037eab\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3202','1841','_elementor_page_assets','a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3203','1841','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3204','1841','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3205','1841','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3206','1841','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3207','1841','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3208','1841','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3209','1841','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3210','1841','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3211','1841','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3212','1841','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:69:\"আপনার ফোন নাম্বারটি লেখুন\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3213','1841','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3214','1841','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3215','1841','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3216','1841','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3217','1841','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3218','1841','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3219','1841','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3220','1841','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3221','1841','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3222','1841','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3223','1841','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3224','1841','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3225','1841','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3226','1841','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3227','1841','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3228','1841','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3229','1841','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3230','1841','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3231','1841','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3232','1841','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3233','1841','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3234','1841','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3235','1841','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3236','1841','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3237','1841','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3238','1841','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3241','1842','wcf-flow-id','1829');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3242','1842','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3243','1842','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3244','1842','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3245','1842','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3246','1842','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3247','1842','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3248','1842','_edit_lock','1717804509:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3249','1842','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3250','1842','wcf-dynamic-css-version','1716442215');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3251','1842','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3252','1842','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Business Name | This website made with \\u2764\\ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3253','1842','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3255','1843','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3256','1843','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3257','1843','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3258','1843','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3259','1843','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3260','1843','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Business Name | This website made with \\u2764\\ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3261','1843','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3262','1843','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3263','1845','wcf-flow-id','1844');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3264','1845','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3265','1845','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3266','1844','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1845;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1847;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1879;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3267','1847','wcf-flow-id','1844');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3268','1847','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3269','1847','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3270','1847','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3271','1847','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3272','1847','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3273','1847','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3274','1847','_edit_lock','1716491845:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3275','1847','wcf-pro-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3276','1847','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3277','1847','_elementor_data','[{\"id\":\"380fb1d1\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#272738\",\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":\"\"},\"background_color_b\":\"#F2295B\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"custom_height\":{\"unit\":\"vh\",\"size\":30,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"overlay_blend_mode\":\"luminosity\",\"layout\":\"full_width\",\"height\":\"min-height\",\"background_xpos\":{\"unit\":\"px\",\"size\":-551,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"80ee4fd\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f05334d\",\"settings\":{\"style\":\"squared\",\"text\":\"Divider\",\"color\":\"#EFE9D8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"71a53762\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e8544e3\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size\":50.702,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f855b49\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-122\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"24d2183e\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"content_position\":\"top\",\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size\":49.298,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56d22f27\",\"settings\":{\"title\":\"Taste <br>Dalmatia\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#EFE9D8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.1,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5ec0f77a\",\"settings\":{\"editor\":\"<p>Of\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"typography_font_style\":\"italic\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":239,\"unit\":\"px\"},\"_offset_y\":{\"size\":5,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"6dc0712e\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"left\",\"align_tablet\":\"center\",\"text_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"5a31b499\",\"settings\":{\"text\":\"Order Now\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#E39B44\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"1\"},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"30\",\"bottom\":\"16\",\"left\":\"30\",\"isLinked\":\"\"},\"align\":\"left\",\"button_background_hover_color\":\"#EFE9D8\",\"align_tablet\":\"center\",\"hover_color\":\"#272738\",\"button_hover_border_color\":\"#EFE9D8\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"-5\",\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#EFE9D8\"},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"lg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"56f5fbdc\",\"settings\":{\"text\":\"Contact\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(227, 155, 68, 0)\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EFE9D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"30\",\"bottom\":\"16\",\"left\":\"30\",\"isLinked\":\"\"},\"align\":\"left\",\"button_background_hover_color\":\"#272738\",\"align_tablet\":\"center\",\"hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#272738\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"5\",\"vertical\":5,\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#EFE9D8\"},\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"_element_width\":\"auto\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"4b79cd52\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22cebb58\",\"settings\":{\"_column_size\":50,\"_inline_size_tablet\":\"100\",\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size\":55.357,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75a3e2f7\",\"settings\":{\"editor\":\"Home Of The\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"5c2accfe\",\"settings\":{\"title\":\"best food\",\"align\":\"left\",\"title_color\":\"#EFE9D8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"59cb0de\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p><p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"6b7a0a42\",\"settings\":{\"text\":\"Get directions\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(227, 155, 68, 0)\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EFE9D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"30\",\"bottom\":\"16\",\"left\":\"30\",\"isLinked\":\"\"},\"align\":\"left\",\"button_background_hover_color\":\"#272738\",\"align_tablet\":\"center\",\"hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#272738\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"5\",\"vertical\":5,\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#EFE9D8\"},\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"455d1915\",\"settings\":{\"_column_size\":50,\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"content_position\":\"bottom\",\"_inline_size\":44.643,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"462bb48\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"600\",\"height\":\"400\"},\"image_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"1\"},\"image_border_color\":\"#EFE9D8\",\"image_box_shadow_box_shadow\":{\"horizontal\":-30,\"vertical\":-20,\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#efedd8\"},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"4bf412a4\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"700\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2512b4e0\",\"settings\":{\"_column_size\":\"100\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ea6fa73\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":45,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-leaf\",\"library\":\"fa-solid\"},\"color\":\"#EFE9D8\",\"primary_color\":\"#E39B44\",\"style\":\"squared\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"2ead1c9a\",\"settings\":{\"title\":\"Our Food Menu\",\"align\":\"center\",\"title_color\":\"#EFE9D8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.8,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"78fc62b7\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#ffffff\",\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"57f17164\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"5ae798b\",\"settings\":{\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dbe884b\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_tablet\":\"100\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a789771\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"70\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":107,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"5779fa04\",\"settings\":{\"title\":\"Dinner\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_weight\":\"400\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"11a72714\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_font_weight\":\"200\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"585e4274\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"499f5fe5\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"70\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"3462df80\",\"settings\":{\"title\":\"Lunch\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_weight\":\"400\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"70f3077b\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_font_weight\":\"200\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"392a44bb\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bcd6300\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"70\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"5dcd4166\",\"settings\":{\"title\":\"Breakfast\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_weight\":\"400\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2662c4ff\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_font_weight\":\"200\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"4f214b1c\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b473024\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"70\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7fd7d680\",\"settings\":{\"title\":\"To Go\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_weight\":\"400\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7e45d327\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_font_weight\":\"200\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"2cf17d2c\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"74939e93\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1206bb64\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1aedd4f1\",\"settings\":{\"editor\":\"<p>Consectetur adipiscing elit w\\/ iste natus \\u200b\\/ $10.95<\\/p>\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"615ff926\",\"settings\":{\"editor\":\"Aliquet lectus proin nibh nisl condimentum id venenatis.\\nw\\/Vegetables \\/ 10.95\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"31f8718c\",\"settings\":{\"editor\":\"<p>Urna condimentum mattis pellentesque id \\/ 7:95<\\/p>\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"46733c67\",\"settings\":{\"editor\":\"Mediterranean Style Braised Goat\\/ $10.95\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"33559e99\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7988f6ef\",\"settings\":{\"editor\":\"<p>Consectetur adipiscing elit w\\/ iste natus \\u200b\\/ $10.95<\\/p>\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"421c1315\",\"settings\":{\"editor\":\"Aliquet lectus proin nibh nisl condimentum id venenatis.\\nw\\/Vegetables \\/ 10.95\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"3dac1651\",\"settings\":{\"editor\":\"<p>Urna condimentum mattis pellentesque id \\/ 7:95<\\/p>\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"b77bb07\",\"settings\":{\"editor\":\"Mediterranean Style Braised Goat\\/ $10.95\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"2347091a\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"21be6042\",\"settings\":{\"text\":\"Full Menu list\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(227, 155, 68, 0)\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EFE9D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"30\",\"bottom\":\"16\",\"left\":\"30\",\"isLinked\":\"\"},\"align\":\"center\",\"button_background_hover_color\":\"#272738\",\"hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#272738\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"5\",\"vertical\":5,\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#EFE9D8\"},\"align_tablet\":\"center\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"55419b2d\",\"settings\":{\"style\":\"squared\",\"text\":\"Divider\",\"color\":\"#EFE9D8\",\"gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#E9E9E9\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_color_b\":\"#104F5B\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#A4A4A4\",\"css_classes\":\"order\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#6EC1E4\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#6EC1E4\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3278','1847','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3279','1847','_oembed_94620249a73cc10a0679692ba61fad2b','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3280','1847','_oembed_047ec1a1e4732153f83b573bd07c0e6f','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3281','1847','_oembed_time_047ec1a1e4732153f83b573bd07c0e6f','1708497492');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3282','1847','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3283','1847','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3284','1847','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3285','1847','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3286','1847','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3287','1847','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3288','1847','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3289','1847','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3290','1847','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3291','1847','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3292','1847','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3293','1847','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3294','1847','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3295','1847','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3296','1847','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3297','1847','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3298','1847','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3299','1847','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3300','1847','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3301','1847','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3302','1847','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3303','1847','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3304','1847','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3305','1847','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3306','1847','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3307','1847','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3308','1847','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3309','1847','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3310','1847','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3311','1847','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3312','1847','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3313','1847','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3314','1847','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3315','1847','_oembed_time_94620249a73cc10a0679692ba61fad2b','1710927601');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3316','1847','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3317','1847','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3318','1847','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3321','1848','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3322','1848','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3323','1848','wcf-dynamic-css-version','1716442215');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3324','1848','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3325','1848','_elementor_data','[{\"id\":\"544a9410\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#3498DB\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73127f30\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f66c4a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"263fdaed\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"5e1d0b7a\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"20ba40ed\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"18716410\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"387b344\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"749ebec\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fffb705\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"550f666d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2dce0932\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"246ae515\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Business Name | This website made with \\u2764\\ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3326','1848','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3327','1848','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3328','1848','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3329','1848','_edit_lock','1716481287:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3330','1848','wcf-flow-id','1821');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3331','1848','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3332','1848','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3333','1848','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3335','1849','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3336','1849','_elementor_data','[{\"id\":\"544a9410\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#3498DB\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73127f30\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f66c4a\",\"settings\":{\"image\":{\"id\":126,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/dfgdfg.webp\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"263fdaed\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"5e1d0b7a\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"20ba40ed\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"18716410\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"387b344\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"749ebec\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fffb705\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"550f666d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2dce0932\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"246ae515\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Business Name | This website made with \\u2764\\ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3337','1849','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3338','1849','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3339','1849','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3340','1849','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3341','1849','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3342','1849','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3343','1850','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3344','1850','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3345','1850','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3346','1850','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3347','1850','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3348','1850','_elementor_data','[{\"id\":\"547188c4\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#A5FF94\",\"shape_divider_top\":\"clouds\",\"shape_divider_top_color\":\"#3B814F\",\"shape_divider_top_flip\":\"yes\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70ee83e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27e746aa\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"custom_css\":\"p#billing_country_field {\\r\\n    display: none;\\r\\n}\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"236b84b3\",\"settings\":{\"title\":\"\\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\",\"align\":\"center\",\"title_color\":\"#07AF00\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_animation\":\"bounceIn\",\"animation_duration\":\"fast\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5ad041da\",\"settings\":{\"image\":{\"id\":853,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Irani-Khajur-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"461bf7de\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#3F914B\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"44dc169b\",\"settings\":{\"gap\":\"no\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d217dc2\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f8e8602\",\"settings\":{\"title\":\"\\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0995\\u09c7\\u09a8 \\u0996\\u09be\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"18\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"54448d37\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#A5FF94\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"13558f81\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"279c60d1\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0, \\u0986\\u09df\\u09b0\\u09a8, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae\\u09b8\\u09b9 \\u09a8\\u09be\\u09a8\\u09be\\u09a8 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3\\u0964 \\u098f\\u09b8\\u09ac \\u0996\\u09be\\u09a6\\u09cd\\u09af \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u0985\\u09a4\\u09c0\\u09ac \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09b9\\u09df\\u09c7 \\u0993\\u09a0\\u09c7 \\u09af\\u0996\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09df\\u09b8 \\u09aa\\u09cc\\u0981\\u099b\\u09be\\u09ac\\u09c7 \\u09e9\\u09e6-\\u098f\\u09b0 \\u0995\\u09cb\\u09a0\\u09be\\u09df\\u0964\",\"align\":\"center\",\"title_color\":\"#FE0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"9346196\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2\\u09cb \\u0989\\u09ce\\u09b8, \\u09af\\u09be \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d2eaf79\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2 \\u0989\\u09a4\\u09cd\\u09b8, \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u098f\\u09ac\\u0982 \\u09a4\\u09c3\\u09aa\\u09cd\\u09a4 \\u09ac\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d420d6c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09af\\u09bc: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09af\\u09be \\u09b9\\u09be\\u09b0\\u09cd\\u099f\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf\\u09a4\\u09c7 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u0993 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7, \\u09af\\u09be \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"3e5bd2a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u0996\\u09a8\\u09bf\\u099c, \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09df\\u09be\\u09ae \\u0993 \\u09aa\\u099f\\u09be\\u09b6\\u09bf\\u09df\\u09be\\u0964 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09be \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09be\\u09dc\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b240c08\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u09b9\\u09be\\u09a1\\u09bc \\u0993 \\u09a6\\u09be\\u0981\\u09a4: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u0993 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09a5\\u09be\\u0995\\u09c7 \\u09af\\u09be \\u09b9\\u09be\\u09a1\\u09bc \\u0993 \\u09a6\\u09be\\u0981\\u09a4\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2592254\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09ae\\u09b8\\u09cd\\u09a4\\u09bf\\u09b7\\u09cd\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u0996\\u09a8\\u09bf\\u099c \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09af\\u09be \\u09ae\\u09b8\\u09cd\\u09a4\\u09bf\\u09b7\\u09cd\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3, \\u09af\\u09c7\\u09ae\\u09a8 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09ac\\u09bf\\u09ec \\u098f\\u09ac\\u0982 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"924a60d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b0\\u0995\\u09cd\\u09a4\\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be\\u09df \\u09ad\\u09cb\\u0997\\u09be \\u09b0\\u09cb\\u0997\\u09c0\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u098f\\u0995\\u099c\\u09a8 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09af\\u09a4\\u099f\\u09c1\\u0995\\u09c1 \\u0986\\u09df\\u09b0\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8, \\u09a4\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09df \\u09e7\\u09e7 \\u09ad\\u09be\\u0997 \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c67dfa7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09b0\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09bf\\u099c\\u09bf\\u09df\\u09c7 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964 \\u09aa\\u09b0 \\u09a6\\u09bf\\u09a8 \\u09b8\\u0995\\u09be\\u09b2\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09c7\\u099c\\u09be\\u09a8\\u09cb \\u09aa\\u09be\\u09a8\\u09bf \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u09a6\\u09c2\\u09b0 \\u09b9\\u09ac\\u09c7 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"607f39a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09b9\\u099c\\u09ae: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0989\\u099a\\u09cd\\u099a \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b9\\u099c\\u09ae\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u09ac\\u0982 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d971aea\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09e8\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e8\\u09eb \\u09ae\\u09bf\\u09b2\\u09bf\\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae, \\u09af\\u09be \\u0989\\u099a\\u09cd\\u099a \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"7d5622cb\",\"settings\":{\"title\":\"\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u09ee\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\",\"align\":\"center\",\"title_color\":\"#07AF00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"bounceIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5e06460d\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"7caafb81\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72380d3f\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e3333a3\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"195edaef\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#A5FF94\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"725fccf4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6410ccf5\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0  \\u0995\\u09b0\\u09a4\\u09c7  \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"727b43f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"25ca027\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09a3\\u09cd\\u09af \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0996\\u09c7\\u09df\\u09c7 \\u09b0\\u09bf\\u09b8\\u09bf\\u09ad \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"2a45dc3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u098f\\u0987 \\u09b8\\u09c0\\u099c\\u09a8\\u09c7\\u09b0 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u098f \\u0995\\u09cb\\u09a8\\u09cb \\u09aa\\u09cb\\u0995\\u09be \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09a8\\u09be \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"7dcd5f8\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09a5\\u09be \\u09ae\\u09a4 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09a8\\u09be \\u09aa\\u09c7\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u09bf\\u09b0\\u09cd\\u099f\\u09be\\u09a8 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09a5\\u09be\\u0995\\u099b\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"d1dec1a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"37f3da9f\",\"settings\":{\"image\":{\"id\":854,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Untitled-design.webp\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"},\"space\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":90,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"46ec3f6a\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77705a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e45ea19\",\"settings\":{\"title\":\"\\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8    01819000000\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"be570b3\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\",\"background_background\":\"classic\",\"background_color\":\"#A5FF94\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4bea656d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#07AF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37676298\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#07AF00\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a03de62\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"input_border_size\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"input_border_color\":\"#19BC00\",\"input_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"62ac697\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d12cb75\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b037eab\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3349','1850','_elementor_page_assets','a:1:{s:6:\"styles\";a:6:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3350','1850','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:3;s:10:\"image_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:7:{s:5:\"width\";i:3;s:19:\"image_border_radius\";i:3;s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:2;s:18:\"image_border_color\";i:2;s:5:\"space\";i:1;s:6:\"height\";i:1;}}s:8:\"advanced\";a:1:{s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:7;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:7;s:11:\"title_color\";i:7;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:3;s:17:\"_background_color\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:2;s:4:\"link\";i:2;s:4:\"size\";i:2;s:13:\"selected_icon\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:29:\"button_background_hover_color\";i:2;s:15:\"hover_animation\";i:2;s:22:\"typography_font_family\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:8;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:3;s:3:\"gap\";i:6;s:6:\"layout\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:5;s:11:\"_element_id\";i:1;s:11:\"css_classes\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:8;}s:21:\"section_shape_divider\";a:3:{s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;s:22:\"shape_divider_top_flip\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_border\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:2;s:7:\"divider\";i:2;}s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;s:24:\"icon_self_vertical_align\";i:2;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3351','1852','wcf-flow-id','1851');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3352','1852','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3353','1852','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3354','1851','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1852;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1854;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1881;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3355','1854','wcf-flow-id','1851');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3356','1854','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3357','1854','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3358','1854','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3359','1854','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3360','1854','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3361','1854','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3362','1854','_edit_lock','1716491845:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3363','1854','wcf-pro-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3364','1854','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3365','1854','_elementor_data','[{\"id\":\"380fb1d1\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#272738\",\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":\"\"},\"background_color_b\":\"#F2295B\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"custom_height\":{\"unit\":\"vh\",\"size\":30,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"overlay_blend_mode\":\"luminosity\",\"layout\":\"full_width\",\"height\":\"min-height\",\"background_xpos\":{\"unit\":\"px\",\"size\":-551,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"80ee4fd\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f05334d\",\"settings\":{\"style\":\"squared\",\"text\":\"Divider\",\"color\":\"#EFE9D8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"71a53762\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e8544e3\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size\":50.702,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f855b49\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-122\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"24d2183e\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"content_position\":\"top\",\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size\":49.298,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56d22f27\",\"settings\":{\"title\":\"Taste <br>Dalmatia\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#EFE9D8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.1,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5ec0f77a\",\"settings\":{\"editor\":\"<p>Of\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"typography_font_style\":\"italic\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":239,\"unit\":\"px\"},\"_offset_y\":{\"size\":5,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"6dc0712e\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"left\",\"align_tablet\":\"center\",\"text_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"5a31b499\",\"settings\":{\"text\":\"Order Now\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#E39B44\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"1\"},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"30\",\"bottom\":\"16\",\"left\":\"30\",\"isLinked\":\"\"},\"align\":\"left\",\"button_background_hover_color\":\"#EFE9D8\",\"align_tablet\":\"center\",\"hover_color\":\"#272738\",\"button_hover_border_color\":\"#EFE9D8\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"-5\",\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#EFE9D8\"},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"lg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"56f5fbdc\",\"settings\":{\"text\":\"Contact\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(227, 155, 68, 0)\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EFE9D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"30\",\"bottom\":\"16\",\"left\":\"30\",\"isLinked\":\"\"},\"align\":\"left\",\"button_background_hover_color\":\"#272738\",\"align_tablet\":\"center\",\"hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#272738\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"5\",\"vertical\":5,\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#EFE9D8\"},\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"_element_width\":\"auto\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"4b79cd52\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22cebb58\",\"settings\":{\"_column_size\":50,\"_inline_size_tablet\":\"100\",\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size\":55.357,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75a3e2f7\",\"settings\":{\"editor\":\"Home Of The\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"5c2accfe\",\"settings\":{\"title\":\"best food\",\"align\":\"left\",\"title_color\":\"#EFE9D8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"59cb0de\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p><p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"6b7a0a42\",\"settings\":{\"text\":\"Get directions\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(227, 155, 68, 0)\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EFE9D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"30\",\"bottom\":\"16\",\"left\":\"30\",\"isLinked\":\"\"},\"align\":\"left\",\"button_background_hover_color\":\"#272738\",\"align_tablet\":\"center\",\"hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#272738\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"5\",\"vertical\":5,\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#EFE9D8\"},\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"455d1915\",\"settings\":{\"_column_size\":50,\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"content_position\":\"bottom\",\"_inline_size\":44.643,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"462bb48\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"600\",\"height\":\"400\"},\"image_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"1\"},\"image_border_color\":\"#EFE9D8\",\"image_box_shadow_box_shadow\":{\"horizontal\":-30,\"vertical\":-20,\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#efedd8\"},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"4bf412a4\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"700\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2512b4e0\",\"settings\":{\"_column_size\":\"100\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ea6fa73\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":45,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-leaf\",\"library\":\"fa-solid\"},\"color\":\"#EFE9D8\",\"primary_color\":\"#E39B44\",\"style\":\"squared\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"2ead1c9a\",\"settings\":{\"title\":\"Our Food Menu\",\"align\":\"center\",\"title_color\":\"#EFE9D8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.8,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"78fc62b7\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#ffffff\",\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"57f17164\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"5ae798b\",\"settings\":{\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dbe884b\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_tablet\":\"100\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a789771\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"70\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":107,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"5779fa04\",\"settings\":{\"title\":\"Dinner\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_weight\":\"400\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"11a72714\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_font_weight\":\"200\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"585e4274\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"499f5fe5\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"70\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"3462df80\",\"settings\":{\"title\":\"Lunch\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_weight\":\"400\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"70f3077b\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_font_weight\":\"200\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"392a44bb\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bcd6300\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"70\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"5dcd4166\",\"settings\":{\"title\":\"Breakfast\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_weight\":\"400\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2662c4ff\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_font_weight\":\"200\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"4f214b1c\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b473024\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"70\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7fd7d680\",\"settings\":{\"title\":\"To Go\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_weight\":\"400\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7e45d327\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_font_weight\":\"200\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"2cf17d2c\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"74939e93\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1206bb64\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1aedd4f1\",\"settings\":{\"editor\":\"<p>Consectetur adipiscing elit w\\/ iste natus \\u200b\\/ $10.95<\\/p>\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"615ff926\",\"settings\":{\"editor\":\"Aliquet lectus proin nibh nisl condimentum id venenatis.\\nw\\/Vegetables \\/ 10.95\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"31f8718c\",\"settings\":{\"editor\":\"<p>Urna condimentum mattis pellentesque id \\/ 7:95<\\/p>\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"46733c67\",\"settings\":{\"editor\":\"Mediterranean Style Braised Goat\\/ $10.95\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"33559e99\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7988f6ef\",\"settings\":{\"editor\":\"<p>Consectetur adipiscing elit w\\/ iste natus \\u200b\\/ $10.95<\\/p>\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"421c1315\",\"settings\":{\"editor\":\"Aliquet lectus proin nibh nisl condimentum id venenatis.\\nw\\/Vegetables \\/ 10.95\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"3dac1651\",\"settings\":{\"editor\":\"<p>Urna condimentum mattis pellentesque id \\/ 7:95<\\/p>\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"b77bb07\",\"settings\":{\"editor\":\"Mediterranean Style Braised Goat\\/ $10.95\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"2347091a\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"21be6042\",\"settings\":{\"text\":\"Full Menu list\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(227, 155, 68, 0)\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EFE9D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"30\",\"bottom\":\"16\",\"left\":\"30\",\"isLinked\":\"\"},\"align\":\"center\",\"button_background_hover_color\":\"#272738\",\"hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#272738\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"5\",\"vertical\":5,\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#EFE9D8\"},\"align_tablet\":\"center\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"55419b2d\",\"settings\":{\"style\":\"squared\",\"text\":\"Divider\",\"color\":\"#EFE9D8\",\"gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#E9E9E9\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_color_b\":\"#104F5B\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#A4A4A4\",\"css_classes\":\"order\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#6EC1E4\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#6EC1E4\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3366','1854','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3367','1854','_oembed_94620249a73cc10a0679692ba61fad2b','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3368','1854','_oembed_047ec1a1e4732153f83b573bd07c0e6f','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3369','1854','_oembed_time_047ec1a1e4732153f83b573bd07c0e6f','1708497492');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3370','1854','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3371','1854','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3372','1854','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3373','1854','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3374','1854','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3375','1854','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3376','1854','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3377','1854','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3378','1854','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3379','1854','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3380','1854','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3381','1854','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3382','1854','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3383','1854','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3384','1854','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3385','1854','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3386','1854','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3387','1854','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3388','1854','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3389','1854','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3390','1854','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3391','1854','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3392','1854','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3393','1854','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3394','1854','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3395','1854','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3396','1854','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3397','1854','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3398','1854','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3399','1854','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3400','1854','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3401','1854','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3402','1854','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3403','1854','_oembed_time_94620249a73cc10a0679692ba61fad2b','1710927601');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3404','1854','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3405','1854','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3406','1854','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3409','1856','wcf-flow-id','1855');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3410','1856','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3411','1856','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3412','1855','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1856;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1858;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1874;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3413','1858','wcf-flow-id','1855');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3414','1858','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3415','1858','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3416','1858','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3417','1858','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3418','1858','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3419','1858','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3420','1858','_edit_lock','1716495021:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3421','1858','wcf-pro-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3422','1858','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3423','1858','_elementor_data','[{\"id\":\"700a010\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"background_background\":\"gradient\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_color\":\"#ede8d7\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"gap\":\"no\",\"column_position\":\"stretch\",\"background_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":14,\"sizes\":[]},\"background_color_b\":\"#f4e2d2\",\"background_gradient_type\":\"radial\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":61,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-363,\"sizes\":[]},\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.06,\"sizes\":[]},\"overlay_blend_mode\":\"darken\",\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":-138,\"sizes\":[]},\"background_overlay_size\":\"cover\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6592b7ae\",\"settings\":{\"_column_size\":50,\"margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"animation\":\"none\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size\":48.267,\"motion_fx_translateX_effect\":\"yes\",\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f4aeb97\",\"settings\":{\"background_color\":\"#9ab7ab\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.12,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_overlay_attachment\":\"fixed\",\"animation\":\"fadeInRight\",\"animation_delay\":600,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b8bb42e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2187830b\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u099c\\u09c8\\u09ac \\u099a\\u09be\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":3.6,\"sizes\":[]},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4c6400ff\",\"settings\":{\"title\":\"\\u09b8\\u09bf\\u09b2\\u09c7\\u099f\\u09c7\\u09b0 \\u09ac\\u09be\\u0997\\u09be\\u09a8\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u099a\\u09be-\\u09aa\\u09be\\u09a4\\u09be \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09a4\\u09c7 \\u0986\\u099c\\u09bf \\u09a8\\u09bf\\u099a\\u09c7 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Cormorant Infant\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":5.2},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2},\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.3,\"sizes\":[]},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c0e9719\",\"settings\":{\"editor\":\"<p>\\u09b8\\u09bf\\u09b2\\u09c7\\u099f\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0993 \\u0996\\u09be\\u099f\\u09bf \\u099a\\u09be \\u09b8\\u0995\\u09b2 \\u099a\\u09be \\u09aa\\u09cd\\u09b0\\u09c7\\u09ae\\u09bf\\u09a6\\u09c7\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6\\u09c7\\u09b0 \\u09b6\\u09c0\\u09b0\\u09cd\\u09b7\\u09c7! \\u0995\\u09be\\u09b0\\u09a3 \\u09b8\\u09bf\\u09b2\\u09c7\\u099f\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0985\\u09b0\\u09cd\\u0997\\u09be\\u09a8\\u09bf\\u0995 \\u099a\\u09be\\u09df\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u09b8\\u09ac \\u099a\\u09be\\u09df\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0986\\u09b2\\u09be\\u09a6\\u09be\\u0964 \\u09b8\\u09bf\\u09b2\\u09c7\\u099f\\u09c7\\u09b0 \\u09ae\\u09be\\u099f\\u09bf\\u09a4\\u09c7 \\u09af\\u09c7 \\u099a\\u09be \\u0989\\u09ce\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df, \\u09a4\\u09be \\u0996\\u09c1\\u09ac\\u0987 \\u0989\\u09ce\\u0995\\u09c3\\u09b7\\u09cd\\u099f \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u099a\\u09be \\u098f\\u09ac\\u0982 \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u09b8\\u09c7\\u09b0\\u09be \\u099a\\u09be\\u0964 \\u098f\\u0995\\u09a6\\u09ae \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u099a\\u09be \\u09aa\\u09be\\u09a4\\u09be\\u0964<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"7ba2ad56\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.4)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"hover_color\":\"#93c47f\",\"button_hover_border_color\":\"#93c47f\",\"align_mobile\":\"justify\",\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"3d926615\",\"settings\":{\"text\":\"Contact\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#ffffff\",\"background_color\":\"#93c47f\",\"button_background_hover_color\":\"#7aa36a\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#93c47f\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_element_width\":\"auto\",\"align\":\"center\",\"align_mobile\":\"justify\",\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"49433ad2\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"align\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_inline_size\":51.733,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f6218d7\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"76f7b72b\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"motion_fx_translateY_effect\":\"yes\",\"_offset_x\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"size\":-444,\"unit\":\"px\"},\"image_size\":\"full\",\"_z_index\":11,\"align\":\"left\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"4e4f5e90\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\"},\"image_border_color\":\"rgba(0,0,0,0.66)\",\"image_box_shadow_box_shadow\":{\"horizontal\":67,\"vertical\":10,\"blur\":29,\"spread\":-16,\"color\":\"rgba(0,0,0,0.26)\"},\"_animation\":\"fadeInUp\",\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":98,\"sizes\":[]},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"600\"},\"align\":\"left\",\"_z_index\":44,\"motion_fx_translateX_effect\":\"yes\",\"motion_fx_translateX_direction\":\"negative\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":34,\"unit\":\"px\"},\"_offset_y\":{\"size\":575,\"unit\":\"px\"},\"image_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":168,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":-458,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":941,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"6d4b1e5f\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":62},\"image_border_color\":\"rgba(0,0,0,0.66)\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":15,\"spread\":2,\"color\":\"rgba(0,0,0,0.21)\"},\"_animation\":\"fadeInUp\",\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":98,\"sizes\":[]},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"600\"},\"align\":\"left\",\"_z_index\":44,\"motion_fx_translateX_effect\":\"yes\",\"motion_fx_translateX_direction\":\"negative\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":322,\"unit\":\"px\"},\"_offset_y\":{\"size\":587.672,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":117,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":184,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":447.672,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":390.672,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7e7e5a9a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":63},\"image_border_color\":\"rgba(0,0,0,0.66)\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":15,\"spread\":2,\"color\":\"rgba(0,0,0,0.21)\"},\"_animation\":\"fadeInUp\",\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":98,\"sizes\":[]},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"600\"},\"align\":\"left\",\"_z_index\":4,\"motion_fx_translateX_effect\":\"yes\",\"motion_fx_translateX_direction\":\"negative\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":456,\"unit\":\"px\"},\"_offset_y\":{\"size\":386,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2b773412\",\"settings\":{\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":51,\"sizes\":[]},\"column_position\":\"stretch\",\"html_tag\":\"section\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.72},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"2\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33401479\",\"settings\":{\"_column_size\":100,\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#ede8d7\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23731220\",\"settings\":{\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ee1c187\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1655bef0\",\"settings\":{\"title\":\"\\u0995\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u09a8\\u09cd\\u09a1\\u09a8\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"42015541\",\"settings\":{\"editor\":\"<p>\\u09ad\\u09bf\\u09ad\\u09be\\u09ae\\u09be\\u09b8 \\u09b8\\u09b2\\u09bf\\u09b8\\u09bf\\u099f\\u09c1\\u09a1\\u09bf\\u09a8<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"24166645\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"33a940ab\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin ullamcorper massa, ut euismod est.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"21ab0371\",\"settings\":{\"text\":\"Order\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"23597c72\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"446440e4\",\"settings\":{\"title\":\"\\u099c\\u09c1\\u0981\\u0987 \\u09b8\\u09c1\\u0996\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"dc9fb2a\",\"settings\":{\"editor\":\"<p>\\u09ad\\u09bf\\u09ad\\u09be\\u09ae\\u09be\\u09b8 \\u09b8\\u09b2\\u09bf\\u09b8\\u09bf\\u099f\\u09c1\\u09a1\\u09bf\\u09a8<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"112f7537\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2ea232d8\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin ullamcorper massa, ut euismod est.&nbsp;<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"16171764\",\"settings\":{\"text\":\"Order\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"79b56242\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17445721\",\"settings\":{\"title\":\"\\u09b0\\u09be\\u09a4\\u09c7\\u09b0 \\u09ac\\u09c7\\u09b2\\u09be\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"39dcf920\",\"settings\":{\"editor\":\"<p>\\u09ad\\u09bf\\u09ad\\u09be\\u09ae\\u09be\\u09b8 \\u09b8\\u09b2\\u09bf\\u09b8\\u09bf\\u099f\\u09c1\\u09a1\\u09bf\\u09a8<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"2158b8e3\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2f4f5625\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin ullamcorper massa, ut euismod est.&nbsp;<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"7218c040\",\"settings\":{\"text\":\"Order\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"63be3e00\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b6220c3\",\"settings\":{\"title\":\"\\u0995\\u09a8\\u09ab\\u09c7\\u099f\\u09bf\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"905f5e7\",\"settings\":{\"editor\":\"<p>\\u09ad\\u09bf\\u09ad\\u09be\\u09ae\\u09be\\u09b8 \\u09b8\\u09b2\\u09bf\\u09b8\\u09bf\\u099f\\u09c1\\u09a1\\u09bf\\u09a8<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"291f0941\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2131cf66\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin ullamcorper massa, ut euismod est.&nbsp;<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"6e51fa6c\",\"settings\":{\"text\":\"Order\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5d118c85\",\"settings\":{\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"169a01da\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#222222\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1497b217\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a7f0924\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67bd417e\",\"settings\":{\"title\":\"\\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09bf\\u09a4 \\u09b8\\u09a4\\u09c7\\u099c\\u09a4\\u09be\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"header_size\":\"h5\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3.6,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5dd20936\",\"settings\":{\"title\":\"\\u09ad\\u09c7\\u09b7\\u099c \\u09ab\\u09c1\\u09b2\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3\",\"title_color\":\"#1e1e1e\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Cormorant Infant\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.1},\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.3,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6c26df8d\",\"settings\":{\"editor\":\"<div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u09ab\\u09c1\\u09b2 \\u099a\\u09be\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0993 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u099a\\u09be \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09df\\u09a4\\u09be\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u098f\\u0987 \\u099a\\u09be \\u09aa\\u09be\\u09a4\\u09be \\u09a6\\u09c1\\u099f\\u09bf \\u09aa\\u09be\\u09a4\\u09be \\u0993 \\u098f\\u0995\\u099f\\u09bf \\u0995\\u099a\\u09bf \\u0995\\u09c1\\u09dc\\u09bf \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u099a\\u09be\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u0993 \\u09ab\\u09cd\\u09b2\\u09c7\\u09ad\\u09be\\u09b0 \\u0985\\u09a8\\u09cd\\u09af \\u099a\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0986\\u09b2\\u09be\\u09a6\\u09be\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u0985\\u09b2\\u09cd\\u09aa \\u09aa\\u09be\\u09a4\\u09be\\u09df \\u0985\\u09a7\\u09bf\\u0995 \\u0998\\u09a8 \\u09b2\\u09bf\\u0995\\u09be\\u09b0 \\u09b9\\u0993\\u09df\\u09be\\u09df \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09b8\\u09be\\u09b6\\u09cd\\u09b0\\u09df\\u09c0\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u098f\\u0987 \\u099a\\u09be \\u09aa\\u09be\\u09a4\\u09be \\u098f\\u0995\\u09cd\\u09b8\\u09aa\\u09cb\\u09b0\\u09cd\\u099f \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u09b0 \\u099a\\u09be\\u0964 \\u09af\\u09be \\u09b2\\u09cb\\u0995\\u09be\\u09b2 \\u09ae\\u09be\\u09b0\\u09cd\\u0995\\u09c7\\u099f\\u09c7 \\u09aa\\u09be\\u0993\\u09df\\u09be \\u09af\\u09be\\u09df \\u09a8\\u09be\\u0964<\\/div>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"align_mobile\":\"justify\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"62dd421c\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22b82cd9\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"470e6c69\",\"settings\":{\"background_color\":\"#ede8d7\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"content_position\":\"middle\",\"gap\":\"no\",\"structure\":\"20\",\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"column_position\":\"stretch\",\"background_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":14,\"sizes\":[]},\"background_color_b\":\"#f4e2d2\",\"background_gradient_type\":\"radial\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":61,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3839d686\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.043,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54f1339\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"7fc3648\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.575,\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#222222\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"_inline_size_tablet\":50,\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#e6efdc\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4844eba\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"align_tablet\":\"left\",\"typography_font_weight\":\"bold\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6d665a62\",\"settings\":{\"title\":\"\\u099f\\u09c7\\u0995\\u09b8\\u0987 \\u0985\\u09a8\\u09c1\\u09b6\\u09c0\\u09b2\\u09a8\\u0964\",\"title_color\":\"#2d2d2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Cormorant Infant\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6},\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_stroke_text_stroke_type\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"525a2f8a\",\"settings\":{\"editor\":\"<div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u099a\\u09be\\u09df\\u09c7\\u09b0 \\u0986\\u09b8\\u09b2 \\u0998\\u09cd\\u09b0\\u09be\\u09a3 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u098f\\u0987 \\u099a\\u09be \\u09aa\\u09be\\u09a4\\u09be\\u09df\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u0985\\u09a8\\u09cd\\u09af \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u09a4\\u09c1\\u09b2\\u09a8\\u09be\\u09df \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8\\u09c7 \\u0996\\u09c1\\u09ac\\u0987 \\u0995\\u09ae \\u09b2\\u09be\\u0997\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u09b8\\u0995\\u09b2 \\u0995\\u09c3\\u09a4\\u09cd\\u09b0\\u09bf\\u09ae \\u09b0\\u0999, \\u09ab\\u09cd\\u09b2\\u09c7\\u09ad\\u09be\\u09b0 \\u0993 \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u09ad\\u09c7\\u099c\\u09be\\u09b2 \\u09aa\\u09cd\\u09b0\\u09ae\\u09be\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09b2\\u09c7 \\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u09ae\\u09be\\u09a8\\u09bf\\u09ac\\u09cd\\u09af\\u09be\\u0995 \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u09ad\\u09c7\\u099c\\u09be\\u09b2\\u09c7\\u09b0 \\u09ad\\u09bf\\u09dc\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u099a\\u09be \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09df\\u09a4\\u09be \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u0964<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align\":\"left\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"align_mobile\":\"justify\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2067eb88\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23f75ea0\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bdc41c9\",\"settings\":{\"background_color\":\"#f6f6f6\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"content_position\":\"middle\",\"gap\":\"no\",\"structure\":\"20\",\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"column_position\":\"stretch\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72847ffc\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.096,\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#f6f7ea\",\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c9285e3\",\"settings\":{\"title\":\"Visit our shop.\",\"title_color\":\"#2d2d2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Cormorant Infant\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.3},\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.6},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"405b0424\",\"settings\":{\"editor\":\"<div class=\\\"x11i5rnm xat24cr x1mh8g0r x1vvkbs xtlvy1s x126k92a\\\"><div dir=\\\"auto\\\">\\u0985\\u0997\\u09cd\\u09b0\\u09c0\\u09ae \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u09a8\\u09be! \\u099a\\u09be \\u09aa\\u09be\\u09a4\\u09be \\u09ac\\u09c1\\u099d\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09ae\\u09cd\\u09af\\u09be\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09ac\\u09bf\\u09b2 \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09aa\\u09cd\\u09a8 \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u0995\\u09c7 \\u09b8\\u09bf\\u09b2\\u09c7\\u099f\\u09c7\\u09b0 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u099a\\u09be \\u0996\\u09be\\u0993\\u09df\\u09be\\u09ac\\u09cb\\u0964<\\/div><\\/div><div class=\\\"x11i5rnm xat24cr x1mh8g0r x1vvkbs xtlvy1s x126k92a\\\"><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t69\\/1\\/16\\/1f331.png\\\" alt=\\\"\\ud83c\\udf31\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 \\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7?<\\/div><\\/div><div class=\\\"x11i5rnm xat24cr x1mh8g0r x1vvkbs xtlvy1s x126k92a\\\"><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8, \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be , \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0 \\u09b8\\u09b9 \\u0989\\u09b2\\u09cd\\u09b2\\u09c7\\u0996 \\u0995\\u09b0\\u09c7 \\u0987\\u09a8\\u09ac\\u0995\\u09cd\\u09b8(Message) \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u09af\\u09c7\\u0995\\u09cb\\u09a8\\u09cb \\u099c\\u09be\\u09df\\u0997\\u09be\\u09df \\u0995\\u09c1\\u09b0\\u09bf\\u09df\\u09be\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ad\\u09bf\\u09b8\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6\\u09c7\\u09b0 \\u099a\\u09be-\\u09aa\\u09be\\u09a4\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09bf\\u0995\\u099f\\u09c7 \\u09aa\\u09be\\u09a0\\u09bf\\u09df\\u09c7 \\u09a6\\u09c7\\u09df\\u09be \\u09b9\\u09ac\\u09c7,<\\/div><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align\":\"left\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"align_mobile\":\"justify\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"79c336c9\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.904,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top right\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"px\",\"size\":-24,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-800,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7165249e\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":376},\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#E9E9E9\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#6EC1E4\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#6EC1E4\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3424','1858','_elementor_page_assets','a:1:{s:6:\"styles\";a:20:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3425','1858','_oembed_94620249a73cc10a0679692ba61fad2b','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3426','1858','_oembed_047ec1a1e4732153f83b573bd07c0e6f','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3427','1858','_oembed_time_047ec1a1e4732153f83b573bd07c0e6f','1708497492');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3428','1858','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3429','1858','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3430','1858','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3431','1858','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3432','1858','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3433','1858','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3434','1858','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3435','1858','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3436','1858','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3437','1858','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3438','1858','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3439','1858','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3440','1858','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3441','1858','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3442','1858','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3443','1858','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3444','1858','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3445','1858','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3446','1858','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3447','1858','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3448','1858','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3449','1858','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3450','1858','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3451','1858','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3452','1858','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3453','1858','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3454','1858','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3455','1858','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3456','1858','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3457','1858','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3458','1858','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3459','1858','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3460','1858','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3461','1858','_oembed_time_94620249a73cc10a0679692ba61fad2b','1710927601');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3462','1858','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3463','1858','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3464','1858','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3467','1859','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3468','1859','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3469','1859','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3470','1859','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3471','1859','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3472','1859','_elementor_data','[{\"id\":\"700a010\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":60},\"background_background\":\"gradient\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_color\":\"#ede8d7\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"gap\":\"no\",\"column_position\":\"stretch\",\"background_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":14,\"sizes\":[]},\"background_color_b\":\"#f4e2d2\",\"background_gradient_type\":\"radial\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":61,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":893,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/tealeaf-flower.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-363,\"sizes\":[]},\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.06,\"sizes\":[]},\"overlay_blend_mode\":\"darken\",\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":-138,\"sizes\":[]},\"background_overlay_size\":\"cover\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6592b7ae\",\"settings\":{\"_column_size\":50,\"margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"animation\":\"none\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size\":48.267,\"motion_fx_translateX_effect\":\"yes\",\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f4aeb97\",\"settings\":{\"background_color\":\"#9ab7ab\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_image\":{\"id\":\"780\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/leafs.jpeg\"},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.12,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_overlay_attachment\":\"fixed\",\"animation\":\"fadeInRight\",\"animation_delay\":600,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b8bb42e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2187830b\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u099c\\u09c8\\u09ac \\u099a\\u09be\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":3.6,\"sizes\":[]},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4c6400ff\",\"settings\":{\"title\":\"\\u09b8\\u09bf\\u09b2\\u09c7\\u099f\\u09c7\\u09b0 \\u09ac\\u09be\\u0997\\u09be\\u09a8\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u099a\\u09be-\\u09aa\\u09be\\u09a4\\u09be \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09a4\\u09c7 \\u0986\\u099c\\u09bf \\u09a8\\u09bf\\u099a\\u09c7 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Cormorant Infant\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":5.2},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2},\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.3,\"sizes\":[]},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c0e9719\",\"settings\":{\"editor\":\"<p>\\u09b8\\u09bf\\u09b2\\u09c7\\u099f\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0993 \\u0996\\u09be\\u099f\\u09bf \\u099a\\u09be \\u09b8\\u0995\\u09b2 \\u099a\\u09be \\u09aa\\u09cd\\u09b0\\u09c7\\u09ae\\u09bf\\u09a6\\u09c7\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6\\u09c7\\u09b0 \\u09b6\\u09c0\\u09b0\\u09cd\\u09b7\\u09c7! \\u0995\\u09be\\u09b0\\u09a3 \\u09b8\\u09bf\\u09b2\\u09c7\\u099f\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0985\\u09b0\\u09cd\\u0997\\u09be\\u09a8\\u09bf\\u0995 \\u099a\\u09be\\u09df\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u09b8\\u09ac \\u099a\\u09be\\u09df\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0986\\u09b2\\u09be\\u09a6\\u09be\\u0964 \\u09b8\\u09bf\\u09b2\\u09c7\\u099f\\u09c7\\u09b0 \\u09ae\\u09be\\u099f\\u09bf\\u09a4\\u09c7 \\u09af\\u09c7 \\u099a\\u09be \\u0989\\u09ce\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df, \\u09a4\\u09be \\u0996\\u09c1\\u09ac\\u0987 \\u0989\\u09ce\\u0995\\u09c3\\u09b7\\u09cd\\u099f \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u099a\\u09be \\u098f\\u09ac\\u0982 \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u09b8\\u09c7\\u09b0\\u09be \\u099a\\u09be\\u0964 \\u098f\\u0995\\u09a6\\u09ae \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u099a\\u09be \\u09aa\\u09be\\u09a4\\u09be\\u0964<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"7ba2ad56\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.4)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"hover_color\":\"#93c47f\",\"button_hover_border_color\":\"#93c47f\",\"align_mobile\":\"justify\",\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"3d926615\",\"settings\":{\"text\":\"Contact\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#ffffff\",\"background_color\":\"#93c47f\",\"button_background_hover_color\":\"#7aa36a\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#93c47f\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_element_width\":\"auto\",\"align\":\"center\",\"align_mobile\":\"justify\",\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"49433ad2\",\"settings\":{\"_column_size\":50,\"content_position\":\"center\",\"align\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_inline_size\":51.733,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f6218d7\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"76f7b72b\",\"settings\":{\"image\":{\"id\":889,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/teapot-illustrated.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"motion_fx_translateY_effect\":\"yes\",\"_offset_x\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"size\":-444,\"unit\":\"px\"},\"image_size\":\"full\",\"_z_index\":11,\"align\":\"left\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"4e4f5e90\",\"settings\":{\"image\":{\"id\":890,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/lemon2.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\"},\"image_border_color\":\"rgba(0,0,0,0.66)\",\"image_box_shadow_box_shadow\":{\"horizontal\":67,\"vertical\":10,\"blur\":29,\"spread\":-16,\"color\":\"rgba(0,0,0,0.26)\"},\"_animation\":\"fadeInUp\",\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":98,\"sizes\":[]},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"600\"},\"align\":\"left\",\"_z_index\":44,\"motion_fx_translateX_effect\":\"yes\",\"motion_fx_translateX_direction\":\"negative\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":34,\"unit\":\"px\"},\"_offset_y\":{\"size\":575,\"unit\":\"px\"},\"image_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":168,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":-458,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":941,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"6d4b1e5f\",\"settings\":{\"image\":{\"id\":891,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/tealeaves.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":62},\"image_border_color\":\"rgba(0,0,0,0.66)\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":15,\"spread\":2,\"color\":\"rgba(0,0,0,0.21)\"},\"_animation\":\"fadeInUp\",\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":98,\"sizes\":[]},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"600\"},\"align\":\"left\",\"_z_index\":44,\"motion_fx_translateX_effect\":\"yes\",\"motion_fx_translateX_direction\":\"negative\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":322,\"unit\":\"px\"},\"_offset_y\":{\"size\":587.672,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":117,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":184,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":447.672,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":390.672,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7e7e5a9a\",\"settings\":{\"image\":{\"id\":892,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/flowers-left.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":63},\"image_border_color\":\"rgba(0,0,0,0.66)\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":15,\"spread\":2,\"color\":\"rgba(0,0,0,0.21)\"},\"_animation\":\"fadeInUp\",\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":98,\"sizes\":[]},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"600\"},\"align\":\"left\",\"_z_index\":4,\"motion_fx_translateX_effect\":\"yes\",\"motion_fx_translateX_direction\":\"negative\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":456,\"unit\":\"px\"},\"_offset_y\":{\"size\":386,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2b773412\",\"settings\":{\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":51,\"sizes\":[]},\"column_position\":\"stretch\",\"html_tag\":\"section\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.72},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"2\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33401479\",\"settings\":{\"_column_size\":100,\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#ede8d7\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23731220\",\"settings\":{\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ee1c187\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1655bef0\",\"settings\":{\"title\":\"\\u0995\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u09a8\\u09cd\\u09a1\\u09a8\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"42015541\",\"settings\":{\"editor\":\"<p>\\u09ad\\u09bf\\u09ad\\u09be\\u09ae\\u09be\\u09b8 \\u09b8\\u09b2\\u09bf\\u09b8\\u09bf\\u099f\\u09c1\\u09a1\\u09bf\\u09a8<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"24166645\",\"settings\":{\"image\":{\"id\":894,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/tea1.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"33a940ab\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin ullamcorper massa, ut euismod est.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"21ab0371\",\"settings\":{\"text\":\"Order\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"23597c72\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"446440e4\",\"settings\":{\"title\":\"\\u099c\\u09c1\\u0981\\u0987 \\u09b8\\u09c1\\u0996\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"dc9fb2a\",\"settings\":{\"editor\":\"<p>\\u09ad\\u09bf\\u09ad\\u09be\\u09ae\\u09be\\u09b8 \\u09b8\\u09b2\\u09bf\\u09b8\\u09bf\\u099f\\u09c1\\u09a1\\u09bf\\u09a8<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"112f7537\",\"settings\":{\"image\":{\"id\":895,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/tea3.png\"},\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2ea232d8\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin ullamcorper massa, ut euismod est.&nbsp;<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"16171764\",\"settings\":{\"text\":\"Order\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"79b56242\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17445721\",\"settings\":{\"title\":\"\\u09b0\\u09be\\u09a4\\u09c7\\u09b0 \\u09ac\\u09c7\\u09b2\\u09be\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"39dcf920\",\"settings\":{\"editor\":\"<p>\\u09ad\\u09bf\\u09ad\\u09be\\u09ae\\u09be\\u09b8 \\u09b8\\u09b2\\u09bf\\u09b8\\u09bf\\u099f\\u09c1\\u09a1\\u09bf\\u09a8<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"2158b8e3\",\"settings\":{\"image\":{\"id\":896,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/tea7.png\"},\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2f4f5625\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin ullamcorper massa, ut euismod est.&nbsp;<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"7218c040\",\"settings\":{\"text\":\"Order\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"63be3e00\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b6220c3\",\"settings\":{\"title\":\"\\u0995\\u09a8\\u09ab\\u09c7\\u099f\\u09bf\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"905f5e7\",\"settings\":{\"editor\":\"<p>\\u09ad\\u09bf\\u09ad\\u09be\\u09ae\\u09be\\u09b8 \\u09b8\\u09b2\\u09bf\\u09b8\\u09bf\\u099f\\u09c1\\u09a1\\u09bf\\u09a8<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"291f0941\",\"settings\":{\"image\":{\"id\":897,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/tea6.png\"},\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2131cf66\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin ullamcorper massa, ut euismod est.&nbsp;<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"6e51fa6c\",\"settings\":{\"text\":\"Order\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5d118c85\",\"settings\":{\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"169a01da\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"id\":898,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-10-1.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#222222\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1497b217\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a7f0924\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67bd417e\",\"settings\":{\"title\":\"\\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09bf\\u09a4 \\u09b8\\u09a4\\u09c7\\u099c\\u09a4\\u09be\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"header_size\":\"h5\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3.6,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5dd20936\",\"settings\":{\"title\":\"\\u09ad\\u09c7\\u09b7\\u099c \\u09ab\\u09c1\\u09b2\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3\",\"title_color\":\"#1e1e1e\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Cormorant Infant\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.1},\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.3,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6c26df8d\",\"settings\":{\"editor\":\"<div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u09ab\\u09c1\\u09b2 \\u099a\\u09be\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0993 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u099a\\u09be \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09df\\u09a4\\u09be\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u098f\\u0987 \\u099a\\u09be \\u09aa\\u09be\\u09a4\\u09be \\u09a6\\u09c1\\u099f\\u09bf \\u09aa\\u09be\\u09a4\\u09be \\u0993 \\u098f\\u0995\\u099f\\u09bf \\u0995\\u099a\\u09bf \\u0995\\u09c1\\u09dc\\u09bf \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u099a\\u09be\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u0993 \\u09ab\\u09cd\\u09b2\\u09c7\\u09ad\\u09be\\u09b0 \\u0985\\u09a8\\u09cd\\u09af \\u099a\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0986\\u09b2\\u09be\\u09a6\\u09be\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u0985\\u09b2\\u09cd\\u09aa \\u09aa\\u09be\\u09a4\\u09be\\u09df \\u0985\\u09a7\\u09bf\\u0995 \\u0998\\u09a8 \\u09b2\\u09bf\\u0995\\u09be\\u09b0 \\u09b9\\u0993\\u09df\\u09be\\u09df \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09b8\\u09be\\u09b6\\u09cd\\u09b0\\u09df\\u09c0\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u098f\\u0987 \\u099a\\u09be \\u09aa\\u09be\\u09a4\\u09be \\u098f\\u0995\\u09cd\\u09b8\\u09aa\\u09cb\\u09b0\\u09cd\\u099f \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u09b0 \\u099a\\u09be\\u0964 \\u09af\\u09be \\u09b2\\u09cb\\u0995\\u09be\\u09b2 \\u09ae\\u09be\\u09b0\\u09cd\\u0995\\u09c7\\u099f\\u09c7 \\u09aa\\u09be\\u0993\\u09df\\u09be \\u09af\\u09be\\u09df \\u09a8\\u09be\\u0964<\\/div>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"align_mobile\":\"justify\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"62dd421c\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22b82cd9\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"470e6c69\",\"settings\":{\"background_color\":\"#ede8d7\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"content_position\":\"middle\",\"gap\":\"no\",\"structure\":\"20\",\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"column_position\":\"stretch\",\"background_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":14,\"sizes\":[]},\"background_color_b\":\"#f4e2d2\",\"background_gradient_type\":\"radial\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":61,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3839d686\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.043,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":899,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/tsaiga-qhQEyyHWrAQ-unsplash.jpg\"},\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54f1339\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"7fc3648\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.575,\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#222222\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"_inline_size_tablet\":50,\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#e6efdc\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4844eba\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"align_tablet\":\"left\",\"typography_font_weight\":\"bold\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6d665a62\",\"settings\":{\"title\":\"\\u099f\\u09c7\\u0995\\u09b8\\u0987 \\u0985\\u09a8\\u09c1\\u09b6\\u09c0\\u09b2\\u09a8\\u0964\",\"title_color\":\"#2d2d2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Cormorant Infant\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6},\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_stroke_text_stroke_type\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"525a2f8a\",\"settings\":{\"editor\":\"<div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u099a\\u09be\\u09df\\u09c7\\u09b0 \\u0986\\u09b8\\u09b2 \\u0998\\u09cd\\u09b0\\u09be\\u09a3 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u098f\\u0987 \\u099a\\u09be \\u09aa\\u09be\\u09a4\\u09be\\u09df\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u0985\\u09a8\\u09cd\\u09af \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u09a4\\u09c1\\u09b2\\u09a8\\u09be\\u09df \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8\\u09c7 \\u0996\\u09c1\\u09ac\\u0987 \\u0995\\u09ae \\u09b2\\u09be\\u0997\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u09b8\\u0995\\u09b2 \\u0995\\u09c3\\u09a4\\u09cd\\u09b0\\u09bf\\u09ae \\u09b0\\u0999, \\u09ab\\u09cd\\u09b2\\u09c7\\u09ad\\u09be\\u09b0 \\u0993 \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u09ad\\u09c7\\u099c\\u09be\\u09b2 \\u09aa\\u09cd\\u09b0\\u09ae\\u09be\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09b2\\u09c7 \\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u09ae\\u09be\\u09a8\\u09bf\\u09ac\\u09cd\\u09af\\u09be\\u0995 \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u09ad\\u09c7\\u099c\\u09be\\u09b2\\u09c7\\u09b0 \\u09ad\\u09bf\\u09dc\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u099a\\u09be \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09df\\u09a4\\u09be \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u0964<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align\":\"left\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"align_mobile\":\"justify\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2067eb88\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23f75ea0\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bdc41c9\",\"settings\":{\"background_color\":\"#f6f6f6\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"content_position\":\"middle\",\"gap\":\"no\",\"structure\":\"20\",\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"column_position\":\"stretch\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72847ffc\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.096,\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#f6f7ea\",\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c9285e3\",\"settings\":{\"title\":\"Visit our shop.\",\"title_color\":\"#2d2d2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Cormorant Infant\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.3},\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.6},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"405b0424\",\"settings\":{\"editor\":\"<div class=\\\"x11i5rnm xat24cr x1mh8g0r x1vvkbs xtlvy1s x126k92a\\\"><div dir=\\\"auto\\\">\\u0985\\u0997\\u09cd\\u09b0\\u09c0\\u09ae \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u09a8\\u09be! \\u099a\\u09be \\u09aa\\u09be\\u09a4\\u09be \\u09ac\\u09c1\\u099d\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09ae\\u09cd\\u09af\\u09be\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09ac\\u09bf\\u09b2 \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09aa\\u09cd\\u09a8 \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u0995\\u09c7 \\u09b8\\u09bf\\u09b2\\u09c7\\u099f\\u09c7\\u09b0 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u099a\\u09be \\u0996\\u09be\\u0993\\u09df\\u09be\\u09ac\\u09cb\\u0964<\\/div><\\/div><div class=\\\"x11i5rnm xat24cr x1mh8g0r x1vvkbs xtlvy1s x126k92a\\\"><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t69\\/1\\/16\\/1f331.png\\\" alt=\\\"\\ud83c\\udf31\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 \\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7?<\\/div><\\/div><div class=\\\"x11i5rnm xat24cr x1mh8g0r x1vvkbs xtlvy1s x126k92a\\\"><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8, \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be , \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0 \\u09b8\\u09b9 \\u0989\\u09b2\\u09cd\\u09b2\\u09c7\\u0996 \\u0995\\u09b0\\u09c7 \\u0987\\u09a8\\u09ac\\u0995\\u09cd\\u09b8(Message) \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u09af\\u09c7\\u0995\\u09cb\\u09a8\\u09cb \\u099c\\u09be\\u09df\\u0997\\u09be\\u09df \\u0995\\u09c1\\u09b0\\u09bf\\u09df\\u09be\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ad\\u09bf\\u09b8\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6\\u09c7\\u09b0 \\u099a\\u09be-\\u09aa\\u09be\\u09a4\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09bf\\u0995\\u099f\\u09c7 \\u09aa\\u09be\\u09a0\\u09bf\\u09df\\u09c7 \\u09a6\\u09c7\\u09df\\u09be \\u09b9\\u09ac\\u09c7,<\\/div><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align\":\"left\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"align_mobile\":\"justify\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"79c336c9\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.904,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_image\":{\"id\":900,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/image-from-rawpixel-id-88589-jpeg.jpg\"},\"background_position\":\"top right\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"px\",\"size\":-24,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-800,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7165249e\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":376},\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#E9E9E9\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#6EC1E4\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#6EC1E4\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3473','1859','_elementor_page_assets','a:1:{s:6:\"styles\";a:20:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3475','1859','_elementor_controls_usage','a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:12;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:12:{s:11:\"title_color\";i:11;s:21:\"typography_typography\";i:12;s:22:\"typography_font_family\";i:12;s:20:\"typography_font_size\";i:12;s:5:\"align\";i:8;s:22:\"typography_line_height\";i:6;s:22:\"typography_font_weight\";i:10;s:21:\"typography_font_style\";i:5;s:26:\"typography_text_decoration\";i:5;s:25:\"typography_letter_spacing\";i:4;s:25:\"typography_text_transform\";i:5;s:28:\"text_stroke_text_stroke_type\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:11;s:8:\"_padding\";i:5;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:10:{s:10:\"text_color\";i:12;s:21:\"typography_typography\";i:12;s:22:\"typography_font_family\";i:12;s:20:\"typography_font_size\";i:12;s:22:\"typography_font_weight\";i:12;s:25:\"typography_text_transform\";i:12;s:21:\"typography_font_style\";i:12;s:26:\"typography_text_decoration\";i:12;s:22:\"typography_line_height\";i:12;s:5:\"align\";i:12;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:12;s:8:\"_padding\";i:12;}s:19:\"_section_background\";a:4:{s:17:\"_background_color\";i:12;s:20:\"_background_position\";i:12;s:18:\"_background_repeat\";i:12;s:16:\"_background_size\";i:12;}s:15:\"_section_border\";a:1:{s:22:\"_box_shadow_box_shadow\";i:12;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:8;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:6;s:4:\"size\";i:6;s:10:\"icon_align\";i:6;s:11:\"icon_indent\";i:6;s:13:\"selected_icon\";i:6;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:19:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:25:\"typography_text_transform\";i:6;s:22:\"typography_line_height\";i:6;s:25:\"typography_letter_spacing\";i:6;s:17:\"button_text_color\";i:6;s:16:\"background_color\";i:6;s:29:\"button_background_hover_color\";i:6;s:13:\"border_border\";i:6;s:12:\"border_width\";i:6;s:12:\"border_color\";i:6;s:13:\"border_radius\";i:6;s:12:\"text_padding\";i:6;s:11:\"hover_color\";i:1;s:25:\"button_hover_border_color\";i:1;s:12:\"align_mobile\";i:2;s:5:\"align\";i:5;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:6;s:14:\"_element_width\";i:2;s:21:\"_element_width_mobile\";i:2;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:15;s:21:\"space_between_widgets\";i:8;s:16:\"content_position\";i:5;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:8;s:7:\"padding\";i:9;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:27:\"motion_fx_translateX_effect\";i:1;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:8:{s:21:\"background_background\";i:9;s:16:\"background_color\";i:7;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:4;s:15:\"background_xpos\";i:1;s:15:\"background_ypos\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:5;s:27:\"background_overlay_position\";i:4;s:25:\"background_overlay_repeat\";i:4;s:23:\"background_overlay_size\";i:4;s:26:\"background_overlay_opacity\";i:6;s:24:\"background_overlay_color\";i:2;}s:14:\"section_border\";a:4:{s:13:\"border_radius\";i:4;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:11:{s:16:\"background_color\";i:8;s:19:\"background_position\";i:6;s:21:\"background_attachment\";i:2;s:17:\"background_repeat\";i:6;s:15:\"background_size\";i:6;s:21:\"background_background\";i:5;s:21:\"background_color_stop\";i:2;s:18:\"background_color_b\";i:2;s:24:\"background_gradient_type\";i:2;s:25:\"background_gradient_angle\";i:2;s:19:\"background_bg_width\";i:2;}s:26:\"section_background_overlay\";a:11:{s:24:\"background_overlay_image\";i:2;s:27:\"background_overlay_position\";i:3;s:26:\"background_overlay_opacity\";i:5;s:29:\"background_overlay_attachment\";i:2;s:29:\"background_overlay_background\";i:2;s:23:\"background_overlay_xpos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:18:\"overlay_blend_mode\";i:1;s:23:\"background_overlay_ypos\";i:1;s:23:\"background_overlay_size\";i:1;s:24:\"background_overlay_color\";i:2;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:5;s:7:\"padding\";i:10;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:15:\"animation_delay\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:8:{s:6:\"height\";i:2;s:13:\"custom_height\";i:4;s:13:\"content_width\";i:2;s:3:\"gap\";i:7;s:15:\"column_position\";i:4;s:6:\"layout\";i:5;s:8:\"html_tag\";i:1;s:16:\"content_position\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:8;s:10:\"image_size\";i:5;s:22:\"image_custom_dimension\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:9:{s:5:\"width\";i:8;s:5:\"align\";i:4;s:18:\"image_border_color\";i:3;s:27:\"image_box_shadow_box_shadow\";i:3;s:19:\"image_border_radius\";i:1;s:32:\"image_box_shadow_box_shadow_type\";i:1;s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;s:15:\"css_filters_hue\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:4:{s:27:\"motion_fx_translateY_effect\";i:1;s:10:\"_animation\";i:7;s:27:\"motion_fx_translateX_effect\";i:3;s:30:\"motion_fx_translateX_direction\";i:3;}s:14:\"_section_style\";a:7:{s:9:\"_offset_x\";i:4;s:9:\"_offset_y\";i:4;s:8:\"_z_index\";i:4;s:8:\"_padding\";i:1;s:9:\"_position\";i:3;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3476','1860','wcf-flow-id','1838');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3477','1860','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3478','1860','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3479','1860','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3480','1860','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3481','1860','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3482','1860','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3483','1860','_edit_lock','1717803544:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3484','1860','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3485','1860','wcf-dynamic-css-version','1716442215');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3486','1860','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3487','1860','_elementor_data','[{\"id\":\"544a9410\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73127f30\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f66c4a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"263fdaed\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"5e1d0b7a\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"20ba40ed\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"18716410\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"387b344\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"749ebec\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fffb705\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"550f666d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2dce0932\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"246ae515\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3488','1860','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3490','1861','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3491','1861','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3492','1861','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3493','1861','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3494','1861','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3495','1861','_elementor_data','[{\"id\":\"544a9410\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73127f30\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f66c4a\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"263fdaed\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"5e1d0b7a\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"20ba40ed\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"18716410\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"387b344\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"749ebec\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fffb705\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"550f666d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2dce0932\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"246ae515\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3496','1861','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3497','1861','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3498','1862','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3499','1862','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3500','1862','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3501','1862','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3502','1862','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3503','1862','_elementor_data','[{\"id\":\"547188c4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70ee83e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"27e746aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"custom_css\":\"p#billing_country_field {\\r\\n    display: none;\\r\\n}\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"236b84b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\",\"align\":\"center\",\"title_color\":\"#07AF00\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_animation\":\"bounceIn\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ad041da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":842,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Sugai-01-1-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"461bf7de\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44dc169b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7d217dc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8e8602\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0995\\u09c7\\u09a8 \\u0996\\u09be\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"18\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54448d37\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"13558f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"279c60d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0, \\u0986\\u09df\\u09b0\\u09a8, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae\\u09b8\\u09b9 \\u09a8\\u09be\\u09a8\\u09be\\u09a8 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3\\u0964 \\u098f\\u09b8\\u09ac \\u0996\\u09be\\u09a6\\u09cd\\u09af \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u0985\\u09a4\\u09c0\\u09ac \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09b9\\u09df\\u09c7 \\u0993\\u09a0\\u09c7 \\u09af\\u0996\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09df\\u09b8 \\u09aa\\u09cc\\u0981\\u099b\\u09be\\u09ac\\u09c7 \\u09e9\\u09e6-\\u098f\\u09b0 \\u0995\\u09cb\\u09a0\\u09be\\u09df\\u0964\",\"align\":\"center\",\"title_color\":\"#FE0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9346196\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2\\u09cb \\u0989\\u09ce\\u09b8, \\u09af\\u09be \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d2eaf79\"},{\"text\":\"\\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2 \\u0989\\u09a4\\u09cd\\u09b8, \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u098f\\u09ac\\u0982 \\u09a4\\u09c3\\u09aa\\u09cd\\u09a4 \\u09ac\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d420d6c\"},{\"text\":\"\\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09af\\u09bc: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09af\\u09be \\u09b9\\u09be\\u09b0\\u09cd\\u099f\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf\\u09a4\\u09c7 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u0993 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7, \\u09af\\u09be \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"3e5bd2a\"},{\"text\":\"\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u0996\\u09a8\\u09bf\\u099c, \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09df\\u09be\\u09ae \\u0993 \\u09aa\\u099f\\u09be\\u09b6\\u09bf\\u09df\\u09be\\u0964 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09be \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09be\\u09dc\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b240c08\"},{\"text\":\"\\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u09b9\\u09be\\u09a1\\u09bc \\u0993 \\u09a6\\u09be\\u0981\\u09a4: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u0993 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09a5\\u09be\\u0995\\u09c7 \\u09af\\u09be \\u09b9\\u09be\\u09a1\\u09bc \\u0993 \\u09a6\\u09be\\u0981\\u09a4\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2592254\"},{\"text\":\"\\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09ae\\u09b8\\u09cd\\u09a4\\u09bf\\u09b7\\u09cd\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u0996\\u09a8\\u09bf\\u099c \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09af\\u09be \\u09ae\\u09b8\\u09cd\\u09a4\\u09bf\\u09b7\\u09cd\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3, \\u09af\\u09c7\\u09ae\\u09a8 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09ac\\u09bf\\u09ec \\u098f\\u09ac\\u0982 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"924a60d\"},{\"text\":\"\\u09b0\\u0995\\u09cd\\u09a4\\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be\\u09df \\u09ad\\u09cb\\u0997\\u09be \\u09b0\\u09cb\\u0997\\u09c0\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u098f\\u0995\\u099c\\u09a8 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09af\\u09a4\\u099f\\u09c1\\u0995\\u09c1 \\u0986\\u09df\\u09b0\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8, \\u09a4\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09df \\u09e7\\u09e7 \\u09ad\\u09be\\u0997 \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c67dfa7\"},{\"text\":\"\\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09b0\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09bf\\u099c\\u09bf\\u09df\\u09c7 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964 \\u09aa\\u09b0 \\u09a6\\u09bf\\u09a8 \\u09b8\\u0995\\u09be\\u09b2\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09c7\\u099c\\u09be\\u09a8\\u09cb \\u09aa\\u09be\\u09a8\\u09bf \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u09a6\\u09c2\\u09b0 \\u09b9\\u09ac\\u09c7 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"607f39a\"},{\"text\":\"\\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09b9\\u099c\\u09ae: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0989\\u099a\\u09cd\\u099a \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b9\\u099c\\u09ae\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u09ac\\u0982 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d971aea\"},{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09e8\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e8\\u09eb \\u09ae\\u09bf\\u09b2\\u09bf\\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae, \\u09af\\u09be \\u0989\\u099a\\u09cd\\u099a \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7d5622cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u09ee\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\",\"align\":\"center\",\"title_color\":\"#07AF00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e06460d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7caafb81\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#07AF00\"},\"elements\":[{\"id\":\"72380d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e3333a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"195edaef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"725fccf4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6410ccf5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0  \\u0995\\u09b0\\u09a4\\u09c7  \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"727b43f\"},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"25ca027\"},{\"text\":\"\\u09aa\\u09a3\\u09cd\\u09af \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0996\\u09c7\\u09df\\u09c7 \\u09b0\\u09bf\\u09b8\\u09bf\\u09ad \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"2a45dc3\"},{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u098f\\u0987 \\u09b8\\u09c0\\u099c\\u09a8\\u09c7\\u09b0 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u098f \\u0995\\u09cb\\u09a8\\u09cb \\u09aa\\u09cb\\u0995\\u09be \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09a8\\u09be \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"7dcd5f8\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09a5\\u09be \\u09ae\\u09a4 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09a8\\u09be \\u09aa\\u09c7\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u09bf\\u09b0\\u09cd\\u099f\\u09be\\u09a8 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09a5\\u09be\\u0995\\u099b\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"d1dec1a\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"37f3da9f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":843,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Sugai-1-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"},\"space\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":90,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46ec3f6a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"77705a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3e45ea19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8    01819000000\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be570b3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\"},\"elements\":[{\"id\":\"4bea656d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#07AF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"37676298\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#07AF00\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a03de62\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62ac697\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1d12cb75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6b037eab\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3504','1862','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3505','1862','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:3;s:10:\"image_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:7:{s:5:\"width\";i:3;s:19:\"image_border_radius\";i:3;s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:2;s:18:\"image_border_color\";i:2;s:5:\"space\";i:1;s:6:\"height\";i:1;}}s:8:\"advanced\";a:1:{s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:7;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:7;s:11:\"title_color\";i:7;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:3;s:17:\"_background_color\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:2;s:4:\"link\";i:2;s:4:\"size\";i:2;s:13:\"selected_icon\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:29:\"button_background_hover_color\";i:2;s:15:\"hover_animation\";i:2;s:22:\"typography_font_family\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:8;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:3;s:3:\"gap\";i:6;s:6:\"layout\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:5;s:11:\"_element_id\";i:1;s:11:\"css_classes\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:4;}s:14:\"section_border\";a:1:{s:13:\"border_border\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:2;s:7:\"divider\";i:2;}s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;s:24:\"icon_self_vertical_align\";i:2;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3506','1863','wcf-flow-id','1834');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3507','1863','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3508','1863','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3509','1863','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3510','1863','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3511','1863','_elementor_version','3.20.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3512','1863','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3513','1863','_edit_lock','1711457762:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3514','1863','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3515','1863','wcf-dynamic-css-version','1710879359');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3516','1863','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3517','1863','_elementor_data','[{\"id\":\"544a9410\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73127f30\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f66c4a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"263fdaed\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"5e1d0b7a\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"20ba40ed\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"18716410\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"387b344\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"749ebec\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fffb705\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"550f666d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2dce0932\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"246ae515\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Business Name | This website made with \\u2764\\ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3518','1863','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3520','1865','wcf-flow-id','1864');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3521','1865','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3522','1865','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3523','1864','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1865;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1867;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1898;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3524','1867','wcf-flow-id','1864');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3525','1867','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3526','1867','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3527','1867','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3528','1867','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3529','1867','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3530','1867','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3531','1867','_edit_lock','1716496214:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3532','1867','wcf-pro-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3533','1867','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3534','1867','_elementor_data','[{\"id\":\"371b2cd\",\"settings\":{\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1280,\"sizes\":[]},\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"8\",\"left\":\"4\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"648e922d\",\"settings\":{\"_column_size\":100,\"background_background\":\"gradient\",\"background_color\":\"#ede8d7\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":61,\"sizes\":[]},\"content_position\":\"center\",\"background_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":14,\"sizes\":[]},\"background_color_b\":\"#f4e2d2\",\"background_gradient_type\":\"radial\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"align\":\"center\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":47,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":42,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":26,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"228ed8b5\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":117,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":51}},\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_direction\":\"negative\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":11.2,\"unit\":\"vw\"},\"_offset_y\":{\"size\":-3.342,\"unit\":\"vh\"},\"_offset_x_tablet\":{\"size\":148.016,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-146.25,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"557bf67a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":426,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":51}},\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_direction\":\"negative\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-284,\"unit\":\"px\"},\"_offset_y\":{\"size\":-174,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":84,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"1fa489a6\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"px\",\"size\":768,\"sizes\":[]},\"motion_fx_mouseTrack_effect\":\"yes\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-428,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":77.039,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y\":{\"size\":413,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":68,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"4f5cffb4\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":82,\"sizes\":[]},\"space\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_direction\":\"negative\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":527,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":\"\",\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end\":{\"size\":-250,\"unit\":\"px\"},\"_offset_y\":{\"size\":-203,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":48,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":-311,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-159,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b9f7d89\",\"settings\":{\"title\":\"premium teas\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7b16fab9\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fc016f8\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":0,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"align\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21992bdc\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"300\",\"height\":\"300\"},\"align\":\"left\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"image_border_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":11,\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":{\"start\":6,\"end\":100}},\"_background_background\":\"classic\",\"_offset_x\":{\"size\":-13.352,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y\":{\"size\":116,\"unit\":\"px\"},\"_position\":\"absolute\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_box_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":0,\"blur\":19,\"spread\":0,\"color\":\"rgba(0,0,0,0.13)\"},\"caption_source\":\"custom\",\"space\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"_background_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":129,\"sizes\":[]},\"_element_vertical_align\":\"center\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":77,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":330.25,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":215,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":434,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"134f537b\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"240\",\"height\":\"240\"},\"align\":\"left\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"image_border_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-27\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_z_index\":11,\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":{\"start\":6,\"end\":100}},\"_background_background\":\"classic\",\"_offset_x\":{\"size\":83.658,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y\":{\"size\":332,\"unit\":\"px\"},\"_position\":\"absolute\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_box_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":0,\"blur\":19,\"spread\":0,\"color\":\"rgba(0,0,0,0.13)\"},\"caption_source\":\"custom\",\"space\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":129,\"sizes\":[]},\"_element_vertical_align\":\"center\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":463.266,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":44,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":250,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":327,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2f987e4f\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"200\"},\"align\":\"right\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":86,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":33,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"image_border_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-22\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"-18\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":11,\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":{\"start\":6,\"end\":100}},\"_offset_x\":{\"size\":-19.639,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y\":{\"size\":304,\"unit\":\"px\"},\"_position\":\"absolute\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_box_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":0,\"blur\":19,\"spread\":0,\"color\":\"rgba(0,0,0,0.13)\"},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_background_color\":\"#f2f2f2\",\"_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]},\"_element_vertical_align\":\"center\",\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":46,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":-138.172,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-174.172,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":208,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":222,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"72660c89\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"200\"},\"align\":\"left\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":45,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"image_border_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-22\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"-18\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-38\",\"right\":\"32\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":11,\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":{\"start\":6,\"end\":100}},\"_offset_x\":{\"size\":89.758,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y\":{\"size\":200,\"unit\":\"px\"},\"_position\":\"absolute\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":101,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"image_box_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":0,\"blur\":19,\"spread\":0,\"color\":\"rgba(0,0,0,0.13)\"},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_background_color\":\"#f2f2f2\",\"_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]},\"_element_vertical_align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_contrast\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":469.781,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":181,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":171,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":375,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"3fe1df86\",\"settings\":{\"title\":\"\\u099a\\u09be\\u09df\\u09c7\\u09b0 \\u09b0\\u09be\\u099c\\u09a7\\u09be\\u09a8\\u09c0 \\u09b8\\u09bf\\u09b2\\u09c7\\u099f\\u09c7\\u09b0 \\u09ac\\u09be\\u0997\\u09be\\u09a8\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u098f\\u0995\\u09a6\\u09ae \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09b0 \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u09b0 \\u099a\\u09be \\u09af\\u09c7 \\u0996\\u09c7\\u09df\\u09c7\\u099b\\u09c7 \\u0995\\u09c7\\u09ac\\u09b2 \\u09b8\\u09c7\\u0987 \\u099a\\u09be\\u09df\\u09c7\\u09b0 \\u0986\\u09b8\\u09b2 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u09aa\\u09c7\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\n\",\"title_color\":\"#1e1e1e\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Cormorant Infant\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3},\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.3,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":4.3},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":44,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5058f314\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"image_border_color\":\"#3c4e5f\",\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2.3,\"sizes\":[]},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":107,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_z_index\":5,\"align\":\"center\",\"image_box_shadow_box_shadow\":{\"horizontal\":8,\"vertical\":21,\"blur\":16,\"spread\":-13,\"color\":\"rgba(0,0,0,0.21)\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":79,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_element_custom_width\":{\"unit\":\"px\",\"size\":492,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"365600ee\",\"settings\":{\"editor\":\"<div dir=\\\"auto\\\">\\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0985\\u09b0\\u09cd\\u0997\\u09be\\u09a8\\u09bf\\u0995 \\u09b8\\u09bf\\u09b2\\u09c7\\u099f\\u09c7\\u09b0 \\u09ac\\u09be\\u0997\\u09be\\u09a8\\u09c7\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf\\u0964<\\/div><div dir=\\\"auto\\\"> \\u0995\\u09c1\\u09a1\\u09bc\\u09bf \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u099a\\u09be\\u09af\\u09bc\\u09c7\\u09b0 \\u0995\\u09be\\u0981\\u099a\\u09be \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u09b8\\u09c1\\u0998\\u09cd\\u09b0\\u09be\\u09a8\\u0964<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"3a7a5f06\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"_z_index\":99,\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2.1,\"sizes\":[]},\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_direction\":\"negative\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":51.171,\"unit\":\"vw\"},\"_offset_x_end\":{\"size\":-331.5,\"unit\":\"px\"},\"_offset_y\":{\"size\":\"\",\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":-55.859,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"6075afae\",\"settings\":{\"text\":\"Order Now\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#ffffff\",\"background_color\":\"#93c47f\",\"button_background_hover_color\":\"#7aa36a\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#93c47f\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_element_width\":\"auto\",\"align\":\"center\",\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"41965720\",\"settings\":{\"editor\":\"<p>Vivamus sollic<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_z_index\":22,\"_position\":\"absolute\",\"_offset_x\":{\"size\":-121,\"unit\":\"px\"},\"_offset_y\":{\"size\":224,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-43,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-12,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":283,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":257,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"75e0bdd2\",\"settings\":{\"editor\":\"<p>Lorem ipsum.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_z_index\":22,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":504},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-91,\"unit\":\"px\"},\"_offset_y\":{\"size\":421,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":468,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":224,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":485,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":244,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"70eae16b\",\"settings\":{\"title\":\"Ginger Root\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"_animation\":\"fadeInDown\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"align_tablet\":\"left\",\"typography_font_weight\":\"bold\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":222,\"_position\":\"absolute\",\"_offset_x\":{\"size\":-120,\"unit\":\"px\"},\"_offset_y\":{\"size\":195,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-81,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":275,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":246,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"56bcb57c\",\"settings\":{\"text\":\"Contact Us\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.4)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"hover_color\":\"#93c47f\",\"button_hover_border_color\":\"#93c47f\",\"align_mobile\":\"justify\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"2dbe8a02\",\"settings\":{\"title\":\"Aged Jade\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"_animation\":\"fadeInDown\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"align_tablet\":\"left\",\"typography_font_weight\":\"bold\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":222,\"_position\":\"absolute\",\"_offset_x\":{\"size\":-90,\"unit\":\"px\"},\"_offset_y\":{\"size\":392,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":480,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":224,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":471,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":231,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"74181a7\",\"settings\":{\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6dcbc122\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#222222\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"708eca57\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"layout\":\"full_width\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d2863e9\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4803f0ec\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"header_size\":\"h5\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3.6,\"sizes\":[]},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7462c88c\",\"settings\":{\"editor\":\"<div class=\\\"x11i5rnm xat24cr x1mh8g0r x1vvkbs xtlvy1s x126k92a\\\"><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u0985\\u09b2\\u09cd\\u09aa \\u09aa\\u09be\\u09a4\\u09be\\u09df \\u0985\\u09a7\\u09bf\\u0995 \\u0998\\u09a8 \\u09b2\\u09bf\\u0995\\u09be\\u09b0 \\u09b9\\u0993\\u09df\\u09be\\u09df \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09b8\\u09be\\u09b6\\u09cd\\u09b0\\u09df\\u09c0\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u098f\\u0995\\u09a6\\u09ae \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u098f-\\u0997\\u09cd\\u09b0\\u09c7\\u09a1\\u09c7\\u09b0 \\u099a\\u09be\\u09aa\\u09be\\u09a4\\u09be\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u0995\\u09be\\u0981\\u09aa\\u09c7 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a4\\u09be\\u09ce\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0995\\u09b2\\u09be\\u09b0 \\u099a\\u09b2\\u09c7 \\u0986\\u09b8\\u09ac\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u09b8\\u0995\\u09b2 \\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4, \\u0995\\u09cb\\u09a8 \\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b0\\u0982 \\u09ac\\u09be \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u09ae\\u09c7\\u09b6\\u09be\\u09a8\\u09cb \\u09b9\\u09af\\u09bc \\u09a8\\u09be\\u0964<\\/div><\\/div><div class=\\\"x11i5rnm xat24cr x1mh8g0r x1vvkbs xtlvy1s x126k92a\\\"><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/tb1\\/1\\/16\\/2747.png\\\" alt=\\\"\\u2747\\ufe0f\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b \\u09a5\\u09c7\\u0995\\u09c7 \\u09a8\\u09bf\\u09b2\\u09c7 \\u0995\\u09bf \\u0995\\u09bf \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be \\u09aa\\u09be\\u09ac\\u09c7\\u09a8?<\\/div><\\/div><div class=\\\"x11i5rnm xat24cr x1mh8g0r x1vvkbs xtlvy1s x126k92a\\\"><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u099a\\u09be\\u09af\\u09bc\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u098f\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8 \\u09a5\\u09be\\u0995\\u09c7 \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ae\\u09a8\\u0995\\u09c7 \\u098f\\u09ac\\u0982 \\u09b6\\u09b0\\u09c0\\u09b0\\u0995\\u09c7 \\u09aa\\u09cd\\u09b0\\u09ab\\u09c1\\u09b2\\u09cd\\u09b2 \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09ac\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u099a\\u09be\\u09af\\u09bc\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09ac\\u09bf \\u09a5\\u09be\\u0995\\u09c7 \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u0995\\u09c7 \\u099a\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09ac\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u09ad\\u09be\\u09b2\\u09cb \\u09ae\\u09be\\u09b2\\u09c7\\u09b0 \\u099a\\u09c7\\u09af\\u09bc\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0995\\u09cd\\u09b2\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a6\\u09be\\u09b0\\u09c1\\u09a8 \\u09ad\\u09be\\u09ac\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09ac\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u0985\\u09b2\\u09b8\\u09a4\\u09be \\u09ac\\u09be \\u0998\\u09c1\\u09ae \\u0998\\u09c1\\u09ae \\u09ad\\u09be\\u09ac \\u0995\\u09c7\\u099f\\u09c7 \\u09af\\u09be\\u09ac\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u09a1\\u09be\\u09af\\u09bc\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09b0\\u0995\\u09cd\\u09a4\\u09c7\\u09b0 \\u0995\\u09cb\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0 \\u09b0\\u0995\\u09cd\\u09a4\\u09c7\\u09b0 \\u0997\\u09cd\\u09b2\\u09c1\\u0995\\u09cb\\u099c \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09ac\\u09c7\\u0964<\\/div><\\/div>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"text_columns\":\"2\",\"column_gap\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_mobile\":\"justify\",\"text_columns_mobile\":\"1\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3c21a637\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom left\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"html_tag\":\"section\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#bce0c7\",\"background_color_b_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":74,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"vh\",\"size\":-16,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.05,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":3.1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":127,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":131,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"4\",\"bottom\":\"2\",\"left\":\"4\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"overlay_blend_mode\":\"luminosity\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6295ccd3\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"119d262c\",\"settings\":{\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"110e4d69\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52038123\",\"settings\":{\"title\":\"\\u09aa\\u09bf\\u0989\\u09b0\\u09bf\\u099f\\u09be\\u09b8\",\"title_color\":\"#2d2d2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Cormorant Infant\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.7},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":4.3},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"fc2ad22\",\"settings\":{\"title\":\"Guaranteed freshness.\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"align_tablet\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"bold\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"1966899a\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ae20309\",\"settings\":{\"title\":\"\\u09b2\\u09cd\\u09af\\u09be\\u09ad\\u09c7\\u09a8\\u09cd\\u09a1\\u09be\\u09b0\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"442131f3\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"495fe157\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"5aab7917\",\"settings\":{\"editor\":\"<p>\\u2705 \\u09ad\\u09be\\u09b2\\u09cb \\u09ae\\u09be\\u09a8\\u09c1\\u09b7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0993\\u099c\\u09a8 \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09ac\\u09c7\\u0964<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"3cad71c0\",\"settings\":{\"text\":\"Click here\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"2b6566a2\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20cb5ba6\",\"settings\":{\"title\":\"\\u09b0\\u09cb\\u099c \\u09ac\\u09cd\\u09b2\\u09c7\\u09a8\\u09cd\\u09a1\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"30d3857f\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"daaa8a7\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_animation\":\"fadeIn\",\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"5c985069\",\"settings\":{\"editor\":\"<p>\\u2705 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u09b0\\u09cb\\u0997 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09ac\\u09c7\\u0964<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"51dc44e0\",\"settings\":{\"text\":\"Click here\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"137c2058\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10624ea3\",\"settings\":{\"title\":\"\\u0995\\u09cd\\u09af\\u09be\\u09ae\\u09cb\\u09ae\\u09be\\u0987\\u09b2\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4f6e7446\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"2a6300a8\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeIn\",\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"496f7614\",\"settings\":{\"editor\":\"<p>\\u2705 \\u0997\\u09ac\\u09c7\\u09b7\\u09a3\\u09be \\u0995\\u09b0\\u09c7 \\u09a6\\u09c7\\u0996\\u09be \\u0997\\u09c7\\u099b\\u09c7 \\u09af\\u09c7 \\u099a\\u09be \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09b8\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"2a4eb687\",\"settings\":{\"text\":\"Click here\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"7e7059f9\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom left\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"html_tag\":\"section\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#bce0c7\",\"background_color_b_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":74,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"vh\",\"size\":-16,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.05,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":3.1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":127,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":131,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"4\",\"bottom\":\"2\",\"left\":\"4\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"overlay_blend_mode\":\"luminosity\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77ca9f3a\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"452ca504\",\"settings\":{\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60e19eab\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b9a870d\",\"settings\":{\"title\":\"\\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09bf\\u09a4 \\u0995\\u09b0\\u09c7\",\"title_color\":\"#2d2d2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Cormorant Infant\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.8},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":4.3},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"76c7c61b\",\"settings\":{\"title\":\"About us subtitle here !\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"align_tablet\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"bold\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"6e14d48e\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"614b2993\",\"settings\":{\"title\":\"Jasmine Bliss\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"646c30fb\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"7b230a9e\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"39aff474\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin ullamcorper massa, ut euismod est.&nbsp;<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"5235fc7e\",\"settings\":{\"text\":\"Click here\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"1234dd0f\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60fb3567\",\"settings\":{\"title\":\"Orange Monkey\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6c3d51bf\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"4fbf7f75\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_animation\":\"fadeIn\",\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"4148f031\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin ullamcorper massa, ut euismod est.&nbsp;<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"7c8aba9b\",\"settings\":{\"text\":\"Click here\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"5cd452b1\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"582dd0a2\",\"settings\":{\"title\":\"Oolong\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"527e2152\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"70dbdeaa\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_animation\":\"fadeIn\",\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"1c10250b\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin ullamcorper massa, ut euismod est.&nbsp;<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"5cf46d7b\",\"settings\":{\"text\":\"Click here\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"425bdda\",\"settings\":{\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2015738d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#222222\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7960750c\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"layout\":\"full_width\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f3e30ff\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f1fb27e\",\"settings\":{\"title\":\"Our Source\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"header_size\":\"h5\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3.6,\"sizes\":[]},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"402d0aa6\",\"settings\":{\"editor\":\"<div class=\\\"x11i5rnm xat24cr x1mh8g0r x1vvkbs xtlvy1s x126k92a\\\"><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u099a\\u09be \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u09aa\\u09c7\\u099f \\u098f\\u09ac\\u0982 \\u09ae\\u09b8\\u09cd\\u09a4\\u09bf\\u09b7\\u09cd\\u0995 \\u09aa\\u09b0\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u099a\\u09be\\u09af\\u09bc\\u09c7\\u09b0 \\u09b2\\u09bf\\u0995\\u09be\\u09b0 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09be\\u0981\\u09a4\\u09c7\\u09b0 \\u09ae\\u09be\\u09a1\\u09bc\\u09bf \\u09b6\\u0995\\u09cd\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u09ac\\u0982 \\u09a6\\u09be\\u0981\\u09a4\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09af\\u09bc \\u09b0\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a6\\u09be\\u09b0\\u09c1\\u09a8 \\u09ad\\u09be\\u09ac\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u099a\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ae\\u09a8\\u0995\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u098f\\u09ac\\u0982 \\u0986\\u09af\\u09bc\\u09c1 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u0985\\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3 \\u09ad\\u09be\\u09ac\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u09b0\\u0982 \\u099a\\u09be\\u09af\\u09bc\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09b2\\u09c7\\u09ac\\u09c1 ,\\u0986\\u09a6\\u09be ,\\u09a1\\u09be\\u09b2 \\u099a\\u09bf\\u09a8\\u09bf, \\u098f\\u09b2\\u09be\\u099a \\u09ae\\u09bf\\u09b6\\u09c7 \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u099c\\u09cd\\u09ac\\u09b0, \\u0997\\u09b2\\u09be \\u09ac\\u09cd\\u09af\\u09a5\\u09be ,\\u0995\\u09be\\u09b6\\u09bf \\u09b8\\u09b9 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u099a\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ae\\u09a8\\u0995\\u09c7 \\u099a\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b0\\u09be\\u0996\\u09ac\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u0995\\u09c7 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u0993 \\u09b8\\u09ac\\u09b2 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u09aa\\u09b0\\u09bf\\u09b6\\u09c7\\u09b7\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u099a\\u09c7\\u09af\\u09bc\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u09c1\\u09b0\\u09cb \\u099c\\u09c0\\u09ac\\u09a8\\u0995\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u0985\\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3 \\u09ad\\u09be\\u09ac\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09ac\\u09c7\\u0964<\\/div><\\/div><div class=\\\"x11i5rnm xat24cr x1mh8g0r x1vvkbs xtlvy1s x126k92a\\\"><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t69\\/1\\/16\\/1f331.png\\\" alt=\\\"\\ud83c\\udf31\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 \\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7?<\\/div><\\/div>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"text_columns\":\"2\",\"column_gap\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_mobile\":\"justify\",\"text_columns_mobile\":\"1\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2ad4a043\",\"settings\":{\"background_color\":\"#ede8d7\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"layout\":\"full_width\",\"background_background\":\"gradient\",\"background_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":14,\"sizes\":[]},\"background_color_b\":\"#f4e2d2\",\"background_gradient_type\":\"radial\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":61,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-650,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":-576,\"sizes\":[]},\"background_overlay_size\":\"contain\",\"background_overlay_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1694be1e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#222222\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3dc14dcd\",\"settings\":{\"height\":\"min-height\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.72},\"html_tag\":\"section\",\"background_color\":\"#ffffff\",\"background_overlay_position\":\"center center\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"column_position\":\"stretch\",\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_element_id\":\"order\",\"css_classes\":\"order\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17d46e05\",\"settings\":{\"_column_size\":100,\"content_position\":\"top\",\"background_color\":\"#f6f7ea\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2adb44f\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3535','1867','_elementor_page_assets','a:1:{s:6:\"styles\";a:28:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3536','1867','_oembed_94620249a73cc10a0679692ba61fad2b','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3537','1867','_oembed_047ec1a1e4732153f83b573bd07c0e6f','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3538','1867','_oembed_time_047ec1a1e4732153f83b573bd07c0e6f','1708497492');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3539','1867','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3540','1867','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3541','1867','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3542','1867','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3543','1867','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3544','1867','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3545','1867','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3546','1867','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3547','1867','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3548','1867','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3549','1867','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3550','1867','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3551','1867','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3552','1867','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3553','1867','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3554','1867','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3555','1867','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3556','1867','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3557','1867','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3558','1867','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3559','1867','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3560','1867','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3561','1867','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3562','1867','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3563','1867','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3564','1867','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3565','1867','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3566','1867','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3567','1867','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3568','1867','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3569','1867','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3570','1867','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3571','1867','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3572','1867','_oembed_time_94620249a73cc10a0679692ba61fad2b','1710927601');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3573','1867','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3574','1867','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3575','1867','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3578','1868','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3579','1868','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3580','1868','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3581','1868','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3582','1868','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3583','1868','_elementor_data','[{\"id\":\"371b2cd\",\"settings\":{\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1280,\"sizes\":[]},\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"8\",\"left\":\"4\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"648e922d\",\"settings\":{\"_column_size\":100,\"background_background\":\"gradient\",\"background_color\":\"#ede8d7\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":61,\"sizes\":[]},\"content_position\":\"center\",\"background_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":14,\"sizes\":[]},\"background_color_b\":\"#f4e2d2\",\"background_gradient_type\":\"radial\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"align\":\"center\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":47,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":42,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":26,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"228ed8b5\",\"settings\":{\"image\":{\"id\":\"890\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/lemon2.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":117,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":51}},\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_direction\":\"negative\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":11.2,\"unit\":\"vw\"},\"_offset_y\":{\"size\":-3.342,\"unit\":\"vh\"},\"_offset_x_tablet\":{\"size\":148.016,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-146.25,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"557bf67a\",\"settings\":{\"image\":{\"id\":908,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/berries.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":426,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":51}},\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_direction\":\"negative\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-284,\"unit\":\"px\"},\"_offset_y\":{\"size\":-174,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":84,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"1fa489a6\",\"settings\":{\"image\":{\"id\":\"892\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/flowers-left.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"px\",\"size\":768,\"sizes\":[]},\"motion_fx_mouseTrack_effect\":\"yes\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-428,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":77.039,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y\":{\"size\":413,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":68,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"4f5cffb4\",\"settings\":{\"image\":{\"id\":909,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/oranges.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":82,\"sizes\":[]},\"space\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_direction\":\"negative\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":527,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":\"\",\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end\":{\"size\":-250,\"unit\":\"px\"},\"_offset_y\":{\"size\":-203,\"unit\":\"px\"},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":48,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":-311,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-159,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b9f7d89\",\"settings\":{\"title\":\"premium teas\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7b16fab9\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fc016f8\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":0,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.9,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"align\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21992bdc\",\"settings\":{\"image\":{\"id\":910,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ginger-root.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"300\",\"height\":\"300\"},\"align\":\"left\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"image_border_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":11,\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":{\"start\":6,\"end\":100}},\"_background_background\":\"classic\",\"_offset_x\":{\"size\":-13.352,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y\":{\"size\":116,\"unit\":\"px\"},\"_position\":\"absolute\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_box_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":0,\"blur\":19,\"spread\":0,\"color\":\"rgba(0,0,0,0.13)\"},\"caption_source\":\"custom\",\"space\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"_background_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":129,\"sizes\":[]},\"_element_vertical_align\":\"center\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":77,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":330.25,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":215,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":434,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":140,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"134f537b\",\"settings\":{\"image\":{\"id\":\"895\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/tea3.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"240\",\"height\":\"240\"},\"align\":\"left\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"image_border_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-27\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_z_index\":11,\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":{\"start\":6,\"end\":100}},\"_background_background\":\"classic\",\"_offset_x\":{\"size\":83.658,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y\":{\"size\":332,\"unit\":\"px\"},\"_position\":\"absolute\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_box_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":0,\"blur\":19,\"spread\":0,\"color\":\"rgba(0,0,0,0.13)\"},\"caption_source\":\"custom\",\"space\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":129,\"sizes\":[]},\"_element_vertical_align\":\"center\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":463.266,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":44,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":250,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":327,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2f987e4f\",\"settings\":{\"image\":{\"id\":911,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ginger2.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"200\"},\"align\":\"right\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":86,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":33,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"image_border_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-22\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"-18\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":11,\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":{\"start\":6,\"end\":100}},\"_offset_x\":{\"size\":-19.639,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y\":{\"size\":304,\"unit\":\"px\"},\"_position\":\"absolute\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_box_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":0,\"blur\":19,\"spread\":0,\"color\":\"rgba(0,0,0,0.13)\"},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_background_color\":\"#f2f2f2\",\"_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]},\"_element_vertical_align\":\"center\",\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":46,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":-138.172,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-174.172,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":208,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":222,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"72660c89\",\"settings\":{\"image\":{\"id\":912,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/greantea.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"200\",\"height\":\"200\"},\"align\":\"left\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":45,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"image_border_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-22\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"-18\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-38\",\"right\":\"32\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":11,\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1.2,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":{\"start\":6,\"end\":100}},\"_offset_x\":{\"size\":89.758,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y\":{\"size\":200,\"unit\":\"px\"},\"_position\":\"absolute\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":101,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"image_box_shadow_box_shadow\":{\"horizontal\":7,\"vertical\":0,\"blur\":19,\"spread\":0,\"color\":\"rgba(0,0,0,0.13)\"},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_background_color\":\"#f2f2f2\",\"_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]},\"_element_vertical_align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_contrast\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":469.781,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":181,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":171,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":375,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"3fe1df86\",\"settings\":{\"title\":\"\\u099a\\u09be\\u09df\\u09c7\\u09b0 \\u09b0\\u09be\\u099c\\u09a7\\u09be\\u09a8\\u09c0 \\u09b8\\u09bf\\u09b2\\u09c7\\u099f\\u09c7\\u09b0 \\u09ac\\u09be\\u0997\\u09be\\u09a8\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u098f\\u0995\\u09a6\\u09ae \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09b0 \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u09b0 \\u099a\\u09be \\u09af\\u09c7 \\u0996\\u09c7\\u09df\\u09c7\\u099b\\u09c7 \\u0995\\u09c7\\u09ac\\u09b2 \\u09b8\\u09c7\\u0987 \\u099a\\u09be\\u09df\\u09c7\\u09b0 \\u0986\\u09b8\\u09b2 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u09aa\\u09c7\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\n\",\"title_color\":\"#1e1e1e\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Cormorant Infant\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3},\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.3,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":4.3},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":44,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5058f314\",\"settings\":{\"image\":{\"id\":913,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/teabag.png\"},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_width\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"image_border_color\":\"#3c4e5f\",\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2.3,\"sizes\":[]},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":107,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_z_index\":5,\"align\":\"center\",\"image_box_shadow_box_shadow\":{\"horizontal\":8,\"vertical\":21,\"blur\":16,\"spread\":-13,\"color\":\"rgba(0,0,0,0.21)\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":79,\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_element_custom_width\":{\"unit\":\"px\",\"size\":492,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"365600ee\",\"settings\":{\"editor\":\"<div dir=\\\"auto\\\">\\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0985\\u09b0\\u09cd\\u0997\\u09be\\u09a8\\u09bf\\u0995 \\u09b8\\u09bf\\u09b2\\u09c7\\u099f\\u09c7\\u09b0 \\u09ac\\u09be\\u0997\\u09be\\u09a8\\u09c7\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf\\u0964<\\/div><div dir=\\\"auto\\\"> \\u0995\\u09c1\\u09a1\\u09bc\\u09bf \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u099a\\u09be\\u09af\\u09bc\\u09c7\\u09b0 \\u0995\\u09be\\u0981\\u099a\\u09be \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u09b8\\u09c1\\u0998\\u09cd\\u09b0\\u09be\\u09a8\\u0964<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"align\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"3a7a5f06\",\"settings\":{\"image\":{\"id\":914,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/clove.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"_z_index\":99,\"motion_fx_translateY_effect\":\"yes\",\"motion_fx_translateY_direction\":\"negative\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2.1,\"sizes\":[]},\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_direction\":\"negative\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":205,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":51.171,\"unit\":\"vw\"},\"_offset_x_end\":{\"size\":-331.5,\"unit\":\"px\"},\"_offset_y\":{\"size\":\"\",\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":-55.859,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"6075afae\",\"settings\":{\"text\":\"Order Now\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#ffffff\",\"background_color\":\"#93c47f\",\"button_background_hover_color\":\"#7aa36a\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#93c47f\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_element_width\":\"auto\",\"align\":\"center\",\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"41965720\",\"settings\":{\"editor\":\"<p>Vivamus sollic<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_z_index\":22,\"_position\":\"absolute\",\"_offset_x\":{\"size\":-121,\"unit\":\"px\"},\"_offset_y\":{\"size\":224,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-43,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-12,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":283,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":257,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"75e0bdd2\",\"settings\":{\"editor\":\"<p>Lorem ipsum.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_z_index\":22,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":504},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-91,\"unit\":\"px\"},\"_offset_y\":{\"size\":421,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":468,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":224,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":485,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":244,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"70eae16b\",\"settings\":{\"title\":\"Ginger Root\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"_animation\":\"fadeInDown\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"align_tablet\":\"left\",\"typography_font_weight\":\"bold\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":222,\"_position\":\"absolute\",\"_offset_x\":{\"size\":-120,\"unit\":\"px\"},\"_offset_y\":{\"size\":195,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-81,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":275,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":246,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"56bcb57c\",\"settings\":{\"text\":\"Contact Us\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.4)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"hover_color\":\"#93c47f\",\"button_hover_border_color\":\"#93c47f\",\"align_mobile\":\"justify\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_element_width_mobile\":\"inherit\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"2dbe8a02\",\"settings\":{\"title\":\"Aged Jade\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"_animation\":\"fadeInDown\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"align_tablet\":\"left\",\"typography_font_weight\":\"bold\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":222,\"_position\":\"absolute\",\"_offset_x\":{\"size\":-90,\"unit\":\"px\"},\"_offset_y\":{\"size\":392,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":480,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":224,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":471,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":231,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"74181a7\",\"settings\":{\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6dcbc122\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"id\":915,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-11-1.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#222222\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"708eca57\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"layout\":\"full_width\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d2863e9\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4803f0ec\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"header_size\":\"h5\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3.6,\"sizes\":[]},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7462c88c\",\"settings\":{\"editor\":\"<div class=\\\"x11i5rnm xat24cr x1mh8g0r x1vvkbs xtlvy1s x126k92a\\\"><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u0985\\u09b2\\u09cd\\u09aa \\u09aa\\u09be\\u09a4\\u09be\\u09df \\u0985\\u09a7\\u09bf\\u0995 \\u0998\\u09a8 \\u09b2\\u09bf\\u0995\\u09be\\u09b0 \\u09b9\\u0993\\u09df\\u09be\\u09df \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09b8\\u09be\\u09b6\\u09cd\\u09b0\\u09df\\u09c0\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u098f\\u0995\\u09a6\\u09ae \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u098f-\\u0997\\u09cd\\u09b0\\u09c7\\u09a1\\u09c7\\u09b0 \\u099a\\u09be\\u09aa\\u09be\\u09a4\\u09be\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u0995\\u09be\\u0981\\u09aa\\u09c7 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a4\\u09be\\u09ce\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0995\\u09b2\\u09be\\u09b0 \\u099a\\u09b2\\u09c7 \\u0986\\u09b8\\u09ac\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u09b8\\u0995\\u09b2 \\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4, \\u0995\\u09cb\\u09a8 \\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b0\\u0982 \\u09ac\\u09be \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u09ae\\u09c7\\u09b6\\u09be\\u09a8\\u09cb \\u09b9\\u09af\\u09bc \\u09a8\\u09be\\u0964<\\/div><\\/div><div class=\\\"x11i5rnm xat24cr x1mh8g0r x1vvkbs xtlvy1s x126k92a\\\"><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/tb1\\/1\\/16\\/2747.png\\\" alt=\\\"\\u2747\\ufe0f\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b \\u09a5\\u09c7\\u0995\\u09c7 \\u09a8\\u09bf\\u09b2\\u09c7 \\u0995\\u09bf \\u0995\\u09bf \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be \\u09aa\\u09be\\u09ac\\u09c7\\u09a8?<\\/div><\\/div><div class=\\\"x11i5rnm xat24cr x1mh8g0r x1vvkbs xtlvy1s x126k92a\\\"><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u099a\\u09be\\u09af\\u09bc\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u098f\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8 \\u09a5\\u09be\\u0995\\u09c7 \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ae\\u09a8\\u0995\\u09c7 \\u098f\\u09ac\\u0982 \\u09b6\\u09b0\\u09c0\\u09b0\\u0995\\u09c7 \\u09aa\\u09cd\\u09b0\\u09ab\\u09c1\\u09b2\\u09cd\\u09b2 \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09ac\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u099a\\u09be\\u09af\\u09bc\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09ac\\u09bf \\u09a5\\u09be\\u0995\\u09c7 \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u0995\\u09c7 \\u099a\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09ac\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u09ad\\u09be\\u09b2\\u09cb \\u09ae\\u09be\\u09b2\\u09c7\\u09b0 \\u099a\\u09c7\\u09af\\u09bc\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0995\\u09cd\\u09b2\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a6\\u09be\\u09b0\\u09c1\\u09a8 \\u09ad\\u09be\\u09ac\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09ac\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u0985\\u09b2\\u09b8\\u09a4\\u09be \\u09ac\\u09be \\u0998\\u09c1\\u09ae \\u0998\\u09c1\\u09ae \\u09ad\\u09be\\u09ac \\u0995\\u09c7\\u099f\\u09c7 \\u09af\\u09be\\u09ac\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u09a1\\u09be\\u09af\\u09bc\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09b0\\u0995\\u09cd\\u09a4\\u09c7\\u09b0 \\u0995\\u09cb\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0 \\u09b0\\u0995\\u09cd\\u09a4\\u09c7\\u09b0 \\u0997\\u09cd\\u09b2\\u09c1\\u0995\\u09cb\\u099c \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09ac\\u09c7\\u0964<\\/div><\\/div>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"text_columns\":\"2\",\"column_gap\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_mobile\":\"justify\",\"text_columns_mobile\":\"1\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3c21a637\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom left\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"html_tag\":\"section\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#bce0c7\",\"background_color_b_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":74,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":919,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/kisspng-tea-leaf-download-fresh-tea-leaves-5a9c8670b236f5.14503115152020747273.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"vh\",\"size\":-16,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.05,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":3.1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":127,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":131,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"4\",\"bottom\":\"2\",\"left\":\"4\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"overlay_blend_mode\":\"luminosity\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6295ccd3\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"119d262c\",\"settings\":{\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"110e4d69\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52038123\",\"settings\":{\"title\":\"\\u09aa\\u09bf\\u0989\\u09b0\\u09bf\\u099f\\u09be\\u09b8\",\"title_color\":\"#2d2d2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Cormorant Infant\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.7},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":4.3},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"fc2ad22\",\"settings\":{\"title\":\"Guaranteed freshness.\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"align_tablet\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"bold\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"1966899a\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ae20309\",\"settings\":{\"title\":\"\\u09b2\\u09cd\\u09af\\u09be\\u09ad\\u09c7\\u09a8\\u09cd\\u09a1\\u09be\\u09b0\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"442131f3\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"495fe157\",\"settings\":{\"image\":{\"id\":916,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/violet.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"5aab7917\",\"settings\":{\"editor\":\"<p>\\u2705 \\u09ad\\u09be\\u09b2\\u09cb \\u09ae\\u09be\\u09a8\\u09c1\\u09b7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0993\\u099c\\u09a8 \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09ac\\u09c7\\u0964<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"3cad71c0\",\"settings\":{\"text\":\"Click here\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"2b6566a2\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20cb5ba6\",\"settings\":{\"title\":\"\\u09b0\\u09cb\\u099c \\u09ac\\u09cd\\u09b2\\u09c7\\u09a8\\u09cd\\u09a1\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"30d3857f\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"daaa8a7\",\"settings\":{\"image\":{\"id\":917,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/rose.png\"},\"_animation\":\"fadeIn\",\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"5c985069\",\"settings\":{\"editor\":\"<p>\\u2705 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u09b0\\u09cb\\u0997 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09ac\\u09c7\\u0964<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"51dc44e0\",\"settings\":{\"text\":\"Click here\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"137c2058\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10624ea3\",\"settings\":{\"title\":\"\\u0995\\u09cd\\u09af\\u09be\\u09ae\\u09cb\\u09ae\\u09be\\u0987\\u09b2\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4f6e7446\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"2a6300a8\",\"settings\":{\"image\":{\"id\":918,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/chamomile.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_animation\":\"fadeIn\",\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"496f7614\",\"settings\":{\"editor\":\"<p>\\u2705 \\u0997\\u09ac\\u09c7\\u09b7\\u09a3\\u09be \\u0995\\u09b0\\u09c7 \\u09a6\\u09c7\\u0996\\u09be \\u0997\\u09c7\\u099b\\u09c7 \\u09af\\u09c7 \\u099a\\u09be \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09b8\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"2a4eb687\",\"settings\":{\"text\":\"Click here\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"7e7059f9\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom left\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"html_tag\":\"section\",\"background_color\":\"#ffffff\",\"background_color_b\":\"#bce0c7\",\"background_color_b_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":74,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":356,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"vh\",\"size\":-16,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":64,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.05,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":3.1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":127,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":131,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"4\",\"bottom\":\"2\",\"left\":\"4\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"overlay_blend_mode\":\"luminosity\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77ca9f3a\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"452ca504\",\"settings\":{\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60e19eab\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b9a870d\",\"settings\":{\"title\":\"\\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09bf\\u09a4 \\u0995\\u09b0\\u09c7\",\"title_color\":\"#2d2d2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Cormorant Infant\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.8},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":4.3},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"76c7c61b\",\"settings\":{\"title\":\"About us subtitle here !\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"align_tablet\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_weight\":\"bold\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"6e14d48e\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"614b2993\",\"settings\":{\"title\":\"Jasmine Bliss\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"646c30fb\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"7b230a9e\",\"settings\":{\"image\":{\"id\":\"897\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/tea6.png\"},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"39aff474\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin ullamcorper massa, ut euismod est.&nbsp;<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"5235fc7e\",\"settings\":{\"text\":\"Click here\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"1234dd0f\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60fb3567\",\"settings\":{\"title\":\"Orange Monkey\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6c3d51bf\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"4fbf7f75\",\"settings\":{\"image\":{\"id\":920,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/tea5.png\"},\"_animation\":\"fadeIn\",\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"4148f031\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin ullamcorper massa, ut euismod est.&nbsp;<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"7c8aba9b\",\"settings\":{\"text\":\"Click here\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"5cd452b1\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"background_color\":\"#ffffff\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1.5\",\"bottom\":\"2\",\"left\":\"1.5\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"582dd0a2\",\"settings\":{\"title\":\"Oolong\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"527e2152\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"70dbdeaa\",\"settings\":{\"image\":{\"id\":921,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/tea8.png\"},\"_animation\":\"fadeIn\",\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"1c10250b\",\"settings\":{\"editor\":\"<p>Vivamus sollicitudin ullamcorper massa, ut euismod est.&nbsp;<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"text_color\":\"#000000\",\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"5cf46d7b\",\"settings\":{\"text\":\"Click here\",\"size\":\"md\",\"icon\":\"fa fa-angle-double-down\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.6,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#191209\",\"background_color\":\"rgba(0,0,0,0)\",\"button_background_hover_color\":\"rgba(255,255,255,0.28)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#191209\",\"border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"425bdda\",\"settings\":{\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2015738d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"id\":922,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-12.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#222222\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7960750c\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":700},\"layout\":\"full_width\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f3e30ff\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f1fb27e\",\"settings\":{\"title\":\"Our Source\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lato\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"header_size\":\"h5\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3.6,\"sizes\":[]},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"402d0aa6\",\"settings\":{\"editor\":\"<div class=\\\"x11i5rnm xat24cr x1mh8g0r x1vvkbs xtlvy1s x126k92a\\\"><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u099a\\u09be \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u09aa\\u09c7\\u099f \\u098f\\u09ac\\u0982 \\u09ae\\u09b8\\u09cd\\u09a4\\u09bf\\u09b7\\u09cd\\u0995 \\u09aa\\u09b0\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u099a\\u09be\\u09af\\u09bc\\u09c7\\u09b0 \\u09b2\\u09bf\\u0995\\u09be\\u09b0 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09be\\u0981\\u09a4\\u09c7\\u09b0 \\u09ae\\u09be\\u09a1\\u09bc\\u09bf \\u09b6\\u0995\\u09cd\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u09ac\\u0982 \\u09a6\\u09be\\u0981\\u09a4\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09af\\u09bc \\u09b0\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a6\\u09be\\u09b0\\u09c1\\u09a8 \\u09ad\\u09be\\u09ac\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u099a\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ae\\u09a8\\u0995\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u098f\\u09ac\\u0982 \\u0986\\u09af\\u09bc\\u09c1 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u0985\\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3 \\u09ad\\u09be\\u09ac\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u09b0\\u0982 \\u099a\\u09be\\u09af\\u09bc\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09b2\\u09c7\\u09ac\\u09c1 ,\\u0986\\u09a6\\u09be ,\\u09a1\\u09be\\u09b2 \\u099a\\u09bf\\u09a8\\u09bf, \\u098f\\u09b2\\u09be\\u099a \\u09ae\\u09bf\\u09b6\\u09c7 \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u099c\\u09cd\\u09ac\\u09b0, \\u0997\\u09b2\\u09be \\u09ac\\u09cd\\u09af\\u09a5\\u09be ,\\u0995\\u09be\\u09b6\\u09bf \\u09b8\\u09b9 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u099a\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ae\\u09a8\\u0995\\u09c7 \\u099a\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b0\\u09be\\u0996\\u09ac\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u0995\\u09c7 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u0993 \\u09b8\\u09ac\\u09b2 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964<\\/div><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t33\\/1\\/16\\/2705.png\\\" alt=\\\"\\u2705\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u09aa\\u09b0\\u09bf\\u09b6\\u09c7\\u09b7\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u099a\\u09c7\\u09af\\u09bc\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u09c1\\u09b0\\u09cb \\u099c\\u09c0\\u09ac\\u09a8\\u0995\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u0985\\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3 \\u09ad\\u09be\\u09ac\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09ac\\u09c7\\u0964<\\/div><\\/div><div class=\\\"x11i5rnm xat24cr x1mh8g0r x1vvkbs xtlvy1s x126k92a\\\"><div dir=\\\"auto\\\"><span class=\\\"html-span xexx8yu x4uap5 x18d9i69 xkhd6sd x1hl2dhg x16tdsg8 x1vvkbs x3nfvp2 x1j61x8r x1fcty0u xdj266r xhhsvwb xat24cr xgzva0m xxymvpz xlup9mm x1kky2od\\\"><img class=\\\"xz74otr\\\" src=\\\"https:\\/\\/static.xx.fbcdn.net\\/images\\/emoji.php\\/v9\\/t69\\/1\\/16\\/1f331.png\\\" alt=\\\"\\ud83c\\udf31\\\" width=\\\"16\\\" height=\\\"16\\\" \\/><\\/span> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 \\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7?<\\/div><\\/div>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Lora\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"typography_text_transform\":\"none\",\"typography_font_style\":\"italic\",\"typography_text_decoration\":\"none\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_background_color\":\"rgba(87,147,140,0.68)\",\"_background_position\":\"top right\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":8,\"spread\":0,\"color\":\"rgba(0,0,0,0.33)\"},\"text_columns\":\"2\",\"column_gap\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_mobile\":\"justify\",\"text_columns_mobile\":\"1\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2ad4a043\",\"settings\":{\"background_color\":\"#ede8d7\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69,\"sizes\":[]},\"layout\":\"full_width\",\"background_background\":\"gradient\",\"background_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":14,\"sizes\":[]},\"background_color_b\":\"#f4e2d2\",\"background_gradient_type\":\"radial\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":61,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"892\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/flowers-left.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-650,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":-576,\"sizes\":[]},\"background_overlay_size\":\"contain\",\"background_overlay_attachment\":\"fixed\",\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1694be1e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#222222\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3dc14dcd\",\"settings\":{\"height\":\"min-height\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.72},\"html_tag\":\"section\",\"background_color\":\"#ffffff\",\"background_overlay_position\":\"center center\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"layout\":\"full_width\",\"custom_height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"column_position\":\"stretch\",\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_element_id\":\"order\",\"css_classes\":\"order\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17d46e05\",\"settings\":{\"_column_size\":100,\"content_position\":\"top\",\"background_color\":\"#f6f7ea\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2adb44f\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3584','1868','_elementor_page_assets','a:1:{s:6:\"styles\";a:28:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3586','1868','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:16;s:10:\"image_size\";i:14;s:22:\"image_custom_dimension\";i:5;s:14:\"caption_source\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:13:{s:5:\"width\";i:12;s:5:\"align\";i:6;s:5:\"space\";i:3;s:18:\"image_border_width\";i:5;s:18:\"image_border_color\";i:5;s:22:\"css_filters_brightness\";i:5;s:20:\"css_filters_saturate\";i:5;s:15:\"css_filters_hue\";i:4;s:27:\"image_box_shadow_box_shadow\";i:5;s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_contrast\";i:2;s:19:\"image_border_radius\";i:1;s:7:\"opacity\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:7:{s:34:\"motion_fx_translateY_affectedRange\";i:6;s:27:\"motion_fx_mouseTrack_effect\";i:5;s:30:\"motion_fx_mouseTrack_direction\";i:4;s:27:\"motion_fx_translateY_effect\";i:6;s:26:\"motion_fx_translateY_speed\";i:6;s:30:\"motion_fx_translateY_direction\";i:1;s:10:\"_animation\";i:6;}s:14:\"_section_style\";a:14:{s:14:\"_element_width\";i:9;s:9:\"_position\";i:9;s:9:\"_offset_x\";i:9;s:9:\"_offset_y\";i:9;s:13:\"_offset_x_end\";i:3;s:21:\"_element_custom_width\";i:7;s:21:\"_offset_orientation_h\";i:2;s:7:\"_margin\";i:5;s:8:\"_z_index\";i:6;s:8:\"_padding\";i:5;s:23:\"_element_vertical_align\";i:4;s:21:\"_element_width_mobile\";i:3;s:21:\"_offset_orientation_v\";i:1;s:13:\"_offset_y_end\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:3;s:17:\"_background_color\";i:5;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:17;s:11:\"header_size\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:5:\"align\";i:13;s:11:\"title_color\";i:16;s:21:\"typography_typography\";i:17;s:22:\"typography_font_family\";i:17;s:20:\"typography_font_size\";i:17;s:22:\"typography_font_weight\";i:15;s:25:\"typography_text_transform\";i:9;s:25:\"typography_letter_spacing\";i:4;s:22:\"typography_line_height\";i:5;s:21:\"typography_font_style\";i:7;s:26:\"typography_text_decoration\";i:7;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:16;s:8:\"_padding\";i:7;s:8:\"_z_index\";i:3;s:9:\"_position\";i:2;s:9:\"_offset_x\";i:2;s:9:\"_offset_y\";i:2;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:3:{s:6:\"editor\";i:17;s:12:\"text_columns\";i:2;s:10:\"column_gap\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:10:{s:10:\"text_color\";i:17;s:21:\"typography_typography\";i:17;s:22:\"typography_font_family\";i:17;s:20:\"typography_font_size\";i:17;s:22:\"typography_font_weight\";i:17;s:22:\"typography_line_height\";i:17;s:5:\"align\";i:17;s:25:\"typography_text_transform\";i:17;s:21:\"typography_font_style\";i:17;s:26:\"typography_text_decoration\";i:17;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:8:{s:7:\"_margin\";i:17;s:8:\"_padding\";i:17;s:8:\"_z_index\";i:2;s:9:\"_position\";i:2;s:9:\"_offset_x\";i:2;s:9:\"_offset_y\";i:2;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:19:\"_section_background\";a:4:{s:17:\"_background_color\";i:17;s:20:\"_background_position\";i:17;s:18:\"_background_repeat\";i:17;s:16:\"_background_size\";i:17;}s:15:\"_section_border\";a:1:{s:22:\"_box_shadow_box_shadow\";i:17;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:14;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:2;s:4:\"size\";i:8;s:10:\"icon_align\";i:8;s:11:\"icon_indent\";i:8;s:13:\"selected_icon\";i:8;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:19:{s:21:\"typography_typography\";i:8;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_font_weight\";i:8;s:25:\"typography_text_transform\";i:8;s:25:\"typography_letter_spacing\";i:8;s:17:\"button_text_color\";i:8;s:16:\"background_color\";i:8;s:29:\"button_background_hover_color\";i:8;s:13:\"border_border\";i:8;s:12:\"border_width\";i:8;s:12:\"border_color\";i:8;s:13:\"border_radius\";i:8;s:12:\"text_padding\";i:8;s:5:\"align\";i:7;s:12:\"align_mobile\";i:2;s:22:\"typography_line_height\";i:8;s:11:\"hover_color\";i:1;s:25:\"button_hover_border_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:8;s:14:\"_element_width\";i:2;s:21:\"_element_width_mobile\";i:2;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:15;s:16:\"content_position\";i:3;s:21:\"space_between_widgets\";i:9;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:11:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:11;s:19:\"background_position\";i:4;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:4;s:19:\"background_bg_width\";i:1;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:1;s:24:\"background_gradient_type\";i:1;s:25:\"background_gradient_angle\";i:1;s:16:\"background_image\";i:2;}s:26:\"section_background_overlay\";a:9:{s:29:\"background_overlay_background\";i:11;s:27:\"background_overlay_position\";i:9;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:9;s:23:\"background_overlay_size\";i:9;s:27:\"background_overlay_bg_width\";i:1;s:26:\"background_overlay_opacity\";i:12;s:24:\"background_overlay_color\";i:3;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:8;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:17;}s:15:\"section_effects\";a:3:{s:27:\"motion_fx_translateY_effect\";i:1;s:26:\"motion_fx_translateY_speed\";i:1;s:25:\"motion_fx_motion_fx_mouse\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:9;s:6:\"margin\";i:4;s:11:\"_element_id\";i:1;s:11:\"css_classes\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:2;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:10:{s:13:\"content_width\";i:4;s:6:\"layout\";i:5;s:13:\"custom_height\";i:2;s:15:\"column_position\";i:2;s:15:\"stretch_section\";i:1;s:8:\"overflow\";i:1;s:16:\"content_position\";i:2;s:8:\"html_tag\";i:3;s:6:\"height\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:12:{s:21:\"background_background\";i:7;s:16:\"background_color\";i:8;s:19:\"background_position\";i:6;s:17:\"background_repeat\";i:6;s:15:\"background_size\";i:6;s:21:\"background_attachment\";i:3;s:18:\"background_color_b\";i:3;s:23:\"background_color_b_stop\";i:2;s:25:\"background_gradient_angle\";i:3;s:21:\"background_color_stop\";i:1;s:24:\"background_gradient_type\";i:1;s:19:\"background_bg_width\";i:1;}s:26:\"section_background_overlay\";a:15:{s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:6;s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_image\";i:2;s:27:\"background_overlay_position\";i:4;s:23:\"background_overlay_xpos\";i:3;s:23:\"background_overlay_ypos\";i:3;s:25:\"background_overlay_repeat\";i:2;s:23:\"background_overlay_size\";i:3;s:27:\"background_overlay_bg_width\";i:2;s:16:\"css_filters_blur\";i:2;s:22:\"css_filters_brightness\";i:2;s:20:\"css_filters_contrast\";i:2;s:18:\"overlay_blend_mode\";i:2;s:29:\"background_overlay_attachment\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3587','1869','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3588','1869','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3589','1869','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3590','1869','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3591','1869','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3592','1869','_elementor_data','[{\"id\":\"380fb1d1\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#272738\",\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":\"\"},\"background_color_b\":\"#F2295B\",\"background_overlay_image\":{\"id\":880,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Chalkboard-Background.jpg\"},\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"custom_height\":{\"unit\":\"vh\",\"size\":30,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"overlay_blend_mode\":\"luminosity\",\"layout\":\"full_width\",\"height\":\"min-height\",\"background_xpos\":{\"unit\":\"px\",\"size\":-551,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"80ee4fd\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f05334d\",\"settings\":{\"style\":\"squared\",\"text\":\"Divider\",\"color\":\"#EFE9D8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"71a53762\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e8544e3\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size\":50.702,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f855b49\",\"settings\":{\"image\":{\"id\":\"868\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/soup.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-122\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"24d2183e\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"content_position\":\"top\",\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size\":49.298,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56d22f27\",\"settings\":{\"title\":\"Taste <br>Dalmatia\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#EFE9D8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.1,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5ec0f77a\",\"settings\":{\"editor\":\"<p>Of\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"typography_font_style\":\"italic\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":239,\"unit\":\"px\"},\"_offset_y\":{\"size\":5,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"6dc0712e\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"left\",\"align_tablet\":\"center\",\"text_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"5a31b499\",\"settings\":{\"text\":\"Order Now\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#E39B44\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"1\"},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"30\",\"bottom\":\"16\",\"left\":\"30\",\"isLinked\":\"\"},\"align\":\"left\",\"button_background_hover_color\":\"#EFE9D8\",\"align_tablet\":\"center\",\"hover_color\":\"#272738\",\"button_hover_border_color\":\"#EFE9D8\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"-5\",\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#EFE9D8\"},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"lg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"56f5fbdc\",\"settings\":{\"text\":\"Contact\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(227, 155, 68, 0)\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EFE9D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"30\",\"bottom\":\"16\",\"left\":\"30\",\"isLinked\":\"\"},\"align\":\"left\",\"button_background_hover_color\":\"#272738\",\"align_tablet\":\"center\",\"hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#272738\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"5\",\"vertical\":5,\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#EFE9D8\"},\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"_element_width\":\"auto\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"4b79cd52\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22cebb58\",\"settings\":{\"_column_size\":50,\"_inline_size_tablet\":\"100\",\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size\":55.357,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75a3e2f7\",\"settings\":{\"editor\":\"Home Of The\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"5c2accfe\",\"settings\":{\"title\":\"best food\",\"align\":\"left\",\"title_color\":\"#EFE9D8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"59cb0de\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p><p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"6b7a0a42\",\"settings\":{\"text\":\"Get directions\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(227, 155, 68, 0)\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EFE9D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"30\",\"bottom\":\"16\",\"left\":\"30\",\"isLinked\":\"\"},\"align\":\"left\",\"button_background_hover_color\":\"#272738\",\"align_tablet\":\"center\",\"hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#272738\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"5\",\"vertical\":5,\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#EFE9D8\"},\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"455d1915\",\"settings\":{\"_column_size\":50,\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"content_position\":\"bottom\",\"_inline_size\":44.643,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"462bb48\",\"settings\":{\"image\":{\"id\":\"869\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/vishwas-katti-UrQ_BS9bLXQ-unsplash-min.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"600\",\"height\":\"400\"},\"image_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"1\"},\"image_border_color\":\"#EFE9D8\",\"image_box_shadow_box_shadow\":{\"horizontal\":-30,\"vertical\":-20,\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#efedd8\"},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"4bf412a4\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"700\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2512b4e0\",\"settings\":{\"_column_size\":\"100\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ea6fa73\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":45,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-leaf\",\"library\":\"fa-solid\"},\"color\":\"#EFE9D8\",\"primary_color\":\"#E39B44\",\"style\":\"squared\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"2ead1c9a\",\"settings\":{\"title\":\"Our Food Menu\",\"align\":\"center\",\"title_color\":\"#EFE9D8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.8,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"78fc62b7\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#ffffff\",\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"57f17164\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"5ae798b\",\"settings\":{\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dbe884b\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_tablet\":\"100\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a789771\",\"settings\":{\"image\":{\"id\":876,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/lily-banse-YHSwy6uqvk-unsplash-2.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"70\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":107,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"5779fa04\",\"settings\":{\"title\":\"Dinner\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_weight\":\"400\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"11a72714\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_font_weight\":\"200\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"585e4274\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"499f5fe5\",\"settings\":{\"image\":{\"id\":877,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-1.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"70\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"3462df80\",\"settings\":{\"title\":\"Lunch\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_weight\":\"400\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"70f3077b\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_font_weight\":\"200\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"392a44bb\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bcd6300\",\"settings\":{\"image\":{\"id\":878,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food5-1.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"70\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"5dcd4166\",\"settings\":{\"title\":\"Breakfast\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_weight\":\"400\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2662c4ff\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_font_weight\":\"200\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"4f214b1c\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b473024\",\"settings\":{\"image\":{\"id\":879,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/takeout-1.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"70\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7fd7d680\",\"settings\":{\"title\":\"To Go\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_weight\":\"400\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7e45d327\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_font_weight\":\"200\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"2cf17d2c\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"74939e93\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1206bb64\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1aedd4f1\",\"settings\":{\"editor\":\"<p>Consectetur adipiscing elit w\\/ iste natus \\u200b\\/ $10.95<\\/p>\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"615ff926\",\"settings\":{\"editor\":\"Aliquet lectus proin nibh nisl condimentum id venenatis.\\nw\\/Vegetables \\/ 10.95\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"31f8718c\",\"settings\":{\"editor\":\"<p>Urna condimentum mattis pellentesque id \\/ 7:95<\\/p>\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"46733c67\",\"settings\":{\"editor\":\"Mediterranean Style Braised Goat\\/ $10.95\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"33559e99\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7988f6ef\",\"settings\":{\"editor\":\"<p>Consectetur adipiscing elit w\\/ iste natus \\u200b\\/ $10.95<\\/p>\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"421c1315\",\"settings\":{\"editor\":\"Aliquet lectus proin nibh nisl condimentum id venenatis.\\nw\\/Vegetables \\/ 10.95\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"3dac1651\",\"settings\":{\"editor\":\"<p>Urna condimentum mattis pellentesque id \\/ 7:95<\\/p>\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"b77bb07\",\"settings\":{\"editor\":\"Mediterranean Style Braised Goat\\/ $10.95\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"2347091a\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"21be6042\",\"settings\":{\"text\":\"Full Menu list\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(227, 155, 68, 0)\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EFE9D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"30\",\"bottom\":\"16\",\"left\":\"30\",\"isLinked\":\"\"},\"align\":\"center\",\"button_background_hover_color\":\"#272738\",\"hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#272738\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"5\",\"vertical\":5,\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#EFE9D8\"},\"align_tablet\":\"center\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"55419b2d\",\"settings\":{\"style\":\"squared\",\"text\":\"Divider\",\"color\":\"#EFE9D8\",\"gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#E9E9E9\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_color_b\":\"#104F5B\",\"background_image\":{\"id\":881,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/jason-leung-poI7DelFiVA-unsplash-min.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#A4A4A4\",\"css_classes\":\"order\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#6EC1E4\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#6EC1E4\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3593','1869','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3594','1869','_elementor_controls_usage','a:8:{s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:5:{s:5:\"style\";i:3;s:5:\"width\";i:1;s:5:\"align\";i:1;s:4:\"look\";i:1;s:4:\"icon\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:3;s:3:\"gap\";i:1;}s:18:\"section_icon_style\";a:1:{s:13:\"primary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:6;s:10:\"image_size\";i:5;s:22:\"image_custom_dimension\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:12:{s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:27:\"image_box_shadow_box_shadow\";i:1;s:5:\"width\";i:5;s:22:\"css_filters_css_filter\";i:3;s:22:\"css_filters_brightness\";i:5;s:20:\"css_filters_contrast\";i:5;s:19:\"image_border_border\";i:1;s:19:\"image_border_radius\";i:1;s:7:\"opacity\";i:4;s:20:\"css_filters_saturate\";i:2;s:15:\"css_filters_hue\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:8;s:16:\"content_position\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:6;s:6:\"margin\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:8;s:11:\"header_size\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:8;s:11:\"title_color\";i:7;s:21:\"typography_typography\";i:8;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:8;s:25:\"typography_text_transform\";i:6;s:22:\"typography_font_weight\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:17;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:10:{s:21:\"typography_typography\";i:17;s:22:\"typography_font_family\";i:17;s:5:\"align\";i:17;s:10:\"text_color\";i:17;s:20:\"typography_font_size\";i:17;s:22:\"typography_font_weight\";i:16;s:25:\"typography_text_transform\";i:2;s:25:\"typography_letter_spacing\";i:12;s:21:\"typography_font_style\";i:8;s:22:\"typography_line_height\";i:16;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:4;s:4:\"link\";i:1;s:4:\"size\";i:1;s:13:\"selected_icon\";i:1;s:10:\"icon_align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:20:{s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:25:\"typography_text_transform\";i:4;s:25:\"typography_letter_spacing\";i:4;s:17:\"button_text_color\";i:4;s:16:\"background_color\";i:4;s:13:\"border_border\";i:4;s:12:\"border_width\";i:4;s:12:\"border_color\";i:4;s:13:\"border_radius\";i:4;s:12:\"text_padding\";i:4;s:5:\"align\";i:4;s:29:\"button_background_hover_color\";i:4;s:12:\"align_tablet\";i:4;s:11:\"hover_color\";i:4;s:25:\"button_hover_border_color\";i:4;s:28:\"button_box_shadow_box_shadow\";i:4;s:12:\"align_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}s:14:\"section_layout\";a:6:{s:13:\"content_width\";i:1;s:13:\"custom_height\";i:1;s:6:\"layout\";i:1;s:6:\"height\";i:1;s:8:\"overflow\";i:1;s:3:\"gap\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:11:\"css_classes\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:18:\"background_color_b\";i:2;s:15:\"background_xpos\";i:1;s:15:\"background_ypos\";i:1;s:16:\"background_image\";i:1;}s:26:\"section_background_overlay\";a:7:{s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_image\";i:1;s:29:\"background_overlay_attachment\";i:1;s:23:\"background_overlay_size\";i:1;s:29:\"background_overlay_background\";i:2;s:18:\"overlay_blend_mode\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3595','1870','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3596','1870','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3597','1870','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3598','1870','_elementor_version','3.20.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3599','1870','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3600','1870','_elementor_data','[{\"id\":\"544a9410\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73127f30\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f66c4a\",\"settings\":{\"image\":{\"id\":\"113\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo-1.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"263fdaed\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"5e1d0b7a\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"20ba40ed\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"18716410\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"387b344\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"749ebec\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fffb705\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"550f666d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2dce0932\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"246ae515\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Business Name | This website made with \\u2764\\ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3601','1870','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3602','1870','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3603','1871','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3604','1871','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3605','1871','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3606','1871','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3607','1871','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3608','1871','_elementor_data','[{\"id\":\"380fb1d1\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#272738\",\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":\"\"},\"background_color_b\":\"#F2295B\",\"background_overlay_image\":{\"id\":880,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Chalkboard-Background.jpg\"},\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"cover\",\"custom_height\":{\"unit\":\"vh\",\"size\":30,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"overlay_blend_mode\":\"luminosity\",\"layout\":\"full_width\",\"height\":\"min-height\",\"background_xpos\":{\"unit\":\"px\",\"size\":-551,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"80ee4fd\",\"settings\":{\"_column_size\":\"100\",\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f05334d\",\"settings\":{\"style\":\"squared\",\"text\":\"Divider\",\"color\":\"#EFE9D8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"71a53762\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e8544e3\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size\":50.702,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f855b49\",\"settings\":{\"image\":{\"id\":\"868\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/soup.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-122\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"24d2183e\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"content_position\":\"top\",\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size\":49.298,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56d22f27\",\"settings\":{\"title\":\"Taste <br>Dalmatia\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#EFE9D8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.1,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5ec0f77a\",\"settings\":{\"editor\":\"<p>Of\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"typography_font_style\":\"italic\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":239,\"unit\":\"px\"},\"_offset_y\":{\"size\":5,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"6dc0712e\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"left\",\"align_tablet\":\"center\",\"text_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"5a31b499\",\"settings\":{\"text\":\"Order Now\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#E39B44\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"1\"},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"30\",\"bottom\":\"16\",\"left\":\"30\",\"isLinked\":\"\"},\"align\":\"left\",\"button_background_hover_color\":\"#EFE9D8\",\"align_tablet\":\"center\",\"hover_color\":\"#272738\",\"button_hover_border_color\":\"#EFE9D8\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"-5\",\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#EFE9D8\"},\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"lg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"56f5fbdc\",\"settings\":{\"text\":\"Contact\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(227, 155, 68, 0)\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EFE9D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"30\",\"bottom\":\"16\",\"left\":\"30\",\"isLinked\":\"\"},\"align\":\"left\",\"button_background_hover_color\":\"#272738\",\"align_tablet\":\"center\",\"hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#272738\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"5\",\"vertical\":5,\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#EFE9D8\"},\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"_element_width\":\"auto\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"4b79cd52\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22cebb58\",\"settings\":{\"_column_size\":50,\"_inline_size_tablet\":\"100\",\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size\":55.357,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75a3e2f7\",\"settings\":{\"editor\":\"Home Of The\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"5c2accfe\",\"settings\":{\"title\":\"best food\",\"align\":\"left\",\"title_color\":\"#EFE9D8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"59cb0de\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p><p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"6b7a0a42\",\"settings\":{\"text\":\"Get directions\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(227, 155, 68, 0)\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EFE9D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"30\",\"bottom\":\"16\",\"left\":\"30\",\"isLinked\":\"\"},\"align\":\"left\",\"button_background_hover_color\":\"#272738\",\"align_tablet\":\"center\",\"hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#272738\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"5\",\"vertical\":5,\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#EFE9D8\"},\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"455d1915\",\"settings\":{\"_column_size\":50,\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"content_position\":\"bottom\",\"_inline_size\":44.643,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"462bb48\",\"settings\":{\"image\":{\"id\":\"869\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/vishwas-katti-UrQ_BS9bLXQ-unsplash-min.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"600\",\"height\":\"400\"},\"image_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":\"1\"},\"image_border_color\":\"#EFE9D8\",\"image_box_shadow_box_shadow\":{\"horizontal\":-30,\"vertical\":-20,\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#efedd8\"},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"4bf412a4\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"700\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2512b4e0\",\"settings\":{\"_column_size\":\"100\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ea6fa73\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":45,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-leaf\",\"library\":\"fa-solid\"},\"color\":\"#EFE9D8\",\"primary_color\":\"#E39B44\",\"style\":\"squared\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"2ead1c9a\",\"settings\":{\"title\":\"Our Food Menu\",\"align\":\"center\",\"title_color\":\"#EFE9D8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.8,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"78fc62b7\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#ffffff\",\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_style\":\"italic\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"57f17164\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"5ae798b\",\"settings\":{\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dbe884b\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_tablet\":\"100\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a789771\",\"settings\":{\"image\":{\"id\":876,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/lily-banse-YHSwy6uqvk-unsplash-2.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"70\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":107,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"5779fa04\",\"settings\":{\"title\":\"Dinner\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_weight\":\"400\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"11a72714\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_font_weight\":\"200\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"585e4274\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"499f5fe5\",\"settings\":{\"image\":{\"id\":877,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-1.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"70\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":153,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"3462df80\",\"settings\":{\"title\":\"Lunch\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_weight\":\"400\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"70f3077b\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_font_weight\":\"200\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"392a44bb\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bcd6300\",\"settings\":{\"image\":{\"id\":878,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food5-1.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"70\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"5dcd4166\",\"settings\":{\"title\":\"Breakfast\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_weight\":\"400\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2662c4ff\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_font_weight\":\"200\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"4f214b1c\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b473024\",\"settings\":{\"image\":{\"id\":879,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/takeout-1.png\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"70\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7fd7d680\",\"settings\":{\"title\":\"To Go\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Bellefair\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_font_weight\":\"400\",\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7e45d327\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\",\"sizes\":[]},\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_font_weight\":\"200\",\"typography_font_style\":\"italic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"2cf17d2c\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"74939e93\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1206bb64\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1aedd4f1\",\"settings\":{\"editor\":\"<p>Consectetur adipiscing elit w\\/ iste natus \\u200b\\/ $10.95<\\/p>\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"615ff926\",\"settings\":{\"editor\":\"Aliquet lectus proin nibh nisl condimentum id venenatis.\\nw\\/Vegetables \\/ 10.95\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"31f8718c\",\"settings\":{\"editor\":\"<p>Urna condimentum mattis pellentesque id \\/ 7:95<\\/p>\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"46733c67\",\"settings\":{\"editor\":\"Mediterranean Style Braised Goat\\/ $10.95\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"33559e99\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7988f6ef\",\"settings\":{\"editor\":\"<p>Consectetur adipiscing elit w\\/ iste natus \\u200b\\/ $10.95<\\/p>\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"421c1315\",\"settings\":{\"editor\":\"Aliquet lectus proin nibh nisl condimentum id venenatis.\\nw\\/Vegetables \\/ 10.95\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"3dac1651\",\"settings\":{\"editor\":\"<p>Urna condimentum mattis pellentesque id \\/ 7:95<\\/p>\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"b77bb07\",\"settings\":{\"editor\":\"Mediterranean Style Braised Goat\\/ $10.95\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Belleza\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"100\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"2347091a\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"21be6042\",\"settings\":{\"text\":\"Full Menu list\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arapey\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(227, 155, 68, 0)\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EFE9D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":\"1\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"30\",\"bottom\":\"16\",\"left\":\"30\",\"isLinked\":\"\"},\"align\":\"center\",\"button_background_hover_color\":\"#272738\",\"hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#272738\",\"button_box_shadow_box_shadow\":{\"horizontal\":\"5\",\"vertical\":5,\"blur\":\"0\",\"spread\":\"0\",\"color\":\"#EFE9D8\"},\"align_tablet\":\"center\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"55419b2d\",\"settings\":{\"style\":\"squared\",\"text\":\"Divider\",\"color\":\"#EFE9D8\",\"gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#E9E9E9\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_color_b\":\"#104F5B\",\"background_image\":{\"id\":881,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/jason-leung-poI7DelFiVA-unsplash-min.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#A4A4A4\",\"css_classes\":\"order\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#6EC1E4\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#6EC1E4\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3609','1871','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3610','1871','_elementor_controls_usage','a:8:{s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:5:{s:5:\"style\";i:3;s:5:\"width\";i:1;s:5:\"align\";i:1;s:4:\"look\";i:1;s:4:\"icon\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:3;s:3:\"gap\";i:1;}s:18:\"section_icon_style\";a:1:{s:13:\"primary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:6;s:10:\"image_size\";i:5;s:22:\"image_custom_dimension\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:12:{s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:27:\"image_box_shadow_box_shadow\";i:1;s:5:\"width\";i:5;s:22:\"css_filters_css_filter\";i:3;s:22:\"css_filters_brightness\";i:5;s:20:\"css_filters_contrast\";i:5;s:19:\"image_border_border\";i:1;s:19:\"image_border_radius\";i:1;s:7:\"opacity\";i:4;s:20:\"css_filters_saturate\";i:2;s:15:\"css_filters_hue\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:8;s:16:\"content_position\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:6;s:6:\"margin\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:8;s:11:\"header_size\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:8;s:11:\"title_color\";i:7;s:21:\"typography_typography\";i:8;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:8;s:25:\"typography_text_transform\";i:6;s:22:\"typography_font_weight\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:17;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:10:{s:21:\"typography_typography\";i:17;s:22:\"typography_font_family\";i:17;s:5:\"align\";i:17;s:10:\"text_color\";i:17;s:20:\"typography_font_size\";i:17;s:22:\"typography_font_weight\";i:16;s:25:\"typography_text_transform\";i:2;s:25:\"typography_letter_spacing\";i:12;s:21:\"typography_font_style\";i:8;s:22:\"typography_line_height\";i:16;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:4;s:4:\"link\";i:1;s:4:\"size\";i:1;s:13:\"selected_icon\";i:1;s:10:\"icon_align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:20:{s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:25:\"typography_text_transform\";i:4;s:25:\"typography_letter_spacing\";i:4;s:17:\"button_text_color\";i:4;s:16:\"background_color\";i:4;s:13:\"border_border\";i:4;s:12:\"border_width\";i:4;s:12:\"border_color\";i:4;s:13:\"border_radius\";i:4;s:12:\"text_padding\";i:4;s:5:\"align\";i:4;s:29:\"button_background_hover_color\";i:4;s:12:\"align_tablet\";i:4;s:11:\"hover_color\";i:4;s:25:\"button_hover_border_color\";i:4;s:28:\"button_box_shadow_box_shadow\";i:4;s:12:\"align_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}s:14:\"section_layout\";a:6:{s:13:\"content_width\";i:1;s:13:\"custom_height\";i:1;s:6:\"layout\";i:1;s:6:\"height\";i:1;s:8:\"overflow\";i:1;s:3:\"gap\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:11:\"css_classes\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:18:\"background_color_b\";i:2;s:15:\"background_xpos\";i:1;s:15:\"background_ypos\";i:1;s:16:\"background_image\";i:1;}s:26:\"section_background_overlay\";a:7:{s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_image\";i:1;s:29:\"background_overlay_attachment\";i:1;s:23:\"background_overlay_size\";i:1;s:29:\"background_overlay_background\";i:2;s:18:\"overlay_blend_mode\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3611','1873','wcf-flow-id','1872');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3612','1873','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3613','1873','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3614','1872','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1873;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1876;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1892;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3615','1874','wcf-flow-id','1855');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3616','1874','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3617','1874','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3618','1874','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3619','1874','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3620','1874','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3621','1874','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3622','1874','_edit_lock','1716495009:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3623','1874','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3624','1874','wcf-dynamic-css-version','1716442215');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3625','1874','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3626','1874','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#3B7E39\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3627','1874','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3628','1876','wcf-flow-id','1872');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3629','1876','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3630','1876','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3631','1876','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3632','1876','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3633','1876','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3634','1876','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3635','1876','_edit_lock','1717889796:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3636','1876','wcf-pro-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3637','1876','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3639','1876','_elementor_data','[{\"id\":\"4bcceb51\",\"settings\":{\"gap\":\"no\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"666f5575\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66472c2d\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/jadutech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"5c14cbd9\",\"settings\":{\"title\":\"\\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0986\\u09ab\\u09b8\\u09be\\u09a8 \\u09aa\\u09cd\\u09b0\\u09bf\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09be \\u0986\\u09a8\\u09b8\\u09cd\\u099f\\u09bf\\u099c \\u09e9 \\u09aa\\u09bf\\u09b8\",\"align\":\"center\",\"title_color\":\"#E6007E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"ed1acfb\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"20\",\"animation\":\"fadeIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60df1e32\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3481eb73\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"arrows\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"carousel\":[],\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"375cb110\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6987b32e\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"arrows\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"autoplay_speed\":1000,\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"carousel\":[],\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"3cd61e9d\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09be\\u099c\\u09be\\u09b0\\u09c7\\u09b0 \\u0995\\u09aa\\u09bf \\u09a5\\u09cd\\u09b0\\u09bf \\u09aa\\u09bf\\u09b8\\u09c7\\u09b0 \\u09b8\\u0999\\u09cd\\u0997\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u0995\\u09c7 \\u09a4\\u09c1\\u09b2\\u09a8\\u09be \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 \\u09a8\\u09be\\u0964 \\u0986\\u09ae\\u09b0\\u09be \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09aa\\u09c1\\u09b0\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09ab\\u09cd\\u09af\\u09be\\u0995\\u09cd\\u099f\\u09b0\\u09bf\\u09a4\\u09c7 \\u09ae\\u09c7\\u09a8\\u09c1\\u09ab\\u09cd\\u09af\\u09be\\u0995\\u099a\\u09be\\u09b0\\u09bf\\u0982 \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\u0964 \\u0995\\u09be\\u09b0\\u09a8 \\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09a8\\u09bf\\u099c\\u09c7\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09b8\\u09cd\\u09a4\\u09c1\\u09a4 \\u0995\\u09b0\\u09bf \\u0995\\u09be\\u09aa\\u09a1\\u09bc\\u09c7\\u09b0 \\u0993\\u09a1\\u09bc\\u09a8\\u09be \\u0993 \\u09aa\\u09be\\u09af\\u09bc\\u099c\\u09be\\u09ae\\u09be\\u09b0 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09b8\\u09c1\\u09a4\\u09bf \\u0995\\u09be\\u09aa\\u09a1\\u09bc\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"64c0c0ab\",\"settings\":{\"title\":\"\\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af <span style=\\\"color: #38b000;\\\">\\u09e7\\u09e7\\u09e6\\u09e6\\/=<\\/span>\\u00a0\\u099f\\u09be\\u0995\\u09be\",\"align\":\"center\",\"title_color\":\"#e4047c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"3a8d0415\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#e4047c\",\"button_background_hover_color\":\"#000000\",\"hover_animation\":\"pulse\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"_animation\":\"fadeInUp\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3cbf3222\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FDEAF1\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43290024\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b0c8284\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fccf78\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6001ab8a\",\"settings\":{\"title\":\"\\u0986\\u09a8\\u09b8\\u09cd\\u099f\\u09bf\\u099c \\u09e9 \\u09aa\\u09bf\\u09b8 \\u098f\\u09b0 \\u09ac\\u09c8\\u09b6\\u09bf\\u09b7\\u09cd\\u099f\\u09cd\\u09af\",\"title_color\":\"#e4047c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"zoomInDown\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"17f0fcad\",\"settings\":{\"icon_list\":[{\"text\":\"\\u099c\\u09be\\u09ae\\u09be \\u09b2\\u0982 \\u09ea\\u09ee \\u09ac\\u09a1\\u09bf \\u09eb\\u09e6+\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"dcd8d3d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09be\\u09af\\u09bc\\u099c\\u09be\\u09ae\\u09be \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09e8.\\u09eb \\u0997\\u099c ( \\u09ef\\u09e6 \\u0987\\u099e\\u09cd\\u099a\\u09bf)\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"2255893\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0993\\u09a1\\u09bc\\u09a8\\u09be\\u09b0 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u0986\\u099b\\u09c7 \\u09eb.\\u09eb \\u09b9\\u09be\\u09a4\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b62b175\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0986\\u09ab\\u09b8\\u09be\\u09a8 \\u09aa\\u09cd\\u09b0\\u09bf\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09be\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"1d1e6ac\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u099f\\u09a8 \\u09b8\\u09c1\\u09a4\\u09bf\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4be9896\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#e4047c\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"4961ab9a\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"left\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#e4047c\",\"button_background_hover_color\":\"#000000\",\"hover_animation\":\"pulse\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_animation\":\"slideInLeft\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"8f061ec\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"580cf675\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"arrows\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"carousel\":[],\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"1ee737b7\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2efa07fc\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c59de3a\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09c7\\u09b8\\u09c7\\u099e\\u09cd\\u099c\\u09be\\u09b0\\u09c7 24 \\u0998\\u09a8\\u09cd\\u099f\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u098f\\u0995\\u099f\\u09bf\\u09ad \\u09a5\\u09be\\u0995\\u09c7 \\u0995\\u09cb\\u09a8 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09b9\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09c7\\u09b8\\u09c7\\u099e\\u09cd\\u099c\\u09be\\u09b0\\u09c7 \\u09ae\\u09c7\\u09b8\\u09c7\\u099c \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#e4047c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"467c13c4\",\"settings\":{\"text\":\"\\u09ab\\u09c7\\u0987\\u09b8\\u09ac\\u09c1\\u0995\",\"align\":\"right\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fab fa-facebook-messenger\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#0866FF\",\"button_background_hover_color\":\"#4169E1\",\"hover_animation\":\"pulse\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":30,\"sizes\":[]},\"align_mobile\":\"center\",\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"120dda9d\",\"settings\":{\"text\":\"\\u09b9\\u09cb\\u09df\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\",\"align\":\"left\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#059A70\",\"button_background_hover_color\":\"#61CE70\",\"hover_animation\":\"pulse\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":30,\"sizes\":[]},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"4c817954\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FDEAF1\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63bc40f1\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c081fc5\",\"settings\":{\"title\":\"\\u0986\\u09a8\\u09b8\\u09cd\\u099f\\u09bf\\u099c \\u09e9 \\u09aa\\u09bf\\u09b8 \\u098f\\u09b0 \\u09ac\\u09c8\\u09b6\\u09bf\\u09b7\\u09cd\\u099f\\u09cd\\u09af\",\"align\":\"center\",\"title_color\":\"#e4047c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"58646955\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09aa\\u09c1\\u09b0\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09ab\\u09cd\\u09af\\u09be\\u0995\\u09cd\\u099f\\u09b0\\u09bf\\u09a4\\u09c7 \\u09ae\\u09c7\\u09a8\\u09c1\\u09ab\\u09cd\\u09af\\u09be\\u0995\\u099a\\u09be\\u09b0\\u09bf\\u0982 \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"dcd8d3d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0995\\u09be\\u09b0\\u09a8 \\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09a8\\u09bf\\u099c\\u09c7\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09b8\\u09cd\\u09a4\\u09c1\\u09a4 \\u0995\\u09b0\\u09bf \\u0995\\u09be\\u09aa\\u09a1\\u09bc\\u09c7\\u09b0 \\u0993\\u09a1\\u09bc\\u09a8\\u09be \\u0993 \\u09aa\\u09be\\u09af\\u09bc\\u099c\\u09be\\u09ae\\u09be\\u09b0 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09b8\\u09c1\\u09a4\\u09bf \\u0995\\u09be\\u09aa\\u09a1\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2255893\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09b0 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 \\u09b8\\u0995\\u09be\\u09b2 \\u09a6\\u09b6\\u099f\\u09be \\u09b9\\u09a4\\u09c7 \\u09b0\\u09be\\u09a4 \\u09a6\\u09b6\\u099f\\u09be \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b62b175\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09af\\u09a6\\u09bf \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u09c7\\u09b0 \\u0995\\u09cb\\u09a8 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a5\\u09be\\u0995\\u09c7 \\u0989\\u0995\\u09cd\\u09a4 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09be \\u09ad\\u09bf\\u09a1\\u09bf\\u0993 \\u0995\\u09b0\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0\\u0995\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09ae\\u09c7\\u09b8\\u09c7\\u099e\\u09cd\\u099c\\u09be\\u09b0 \\u0985\\u09a5\\u09ac\\u09be \\u09b9\\u09cb\\u09af\\u09bc\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09c7 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\\u0964 \\u09af\\u09a6\\u09bf \\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09ae\\u09a8\\u09c7 \\u0995\\u09b0\\u09bf \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u09ac\\u09bf\\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u098f\\u0995\\u09cd\\u09b8\\u099a\\u09c7\\u099e\\u09cd\\u099c \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09ac\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"1d1e6ac\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#e4047c\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_color\":\"#000000\",\"space_between_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"4a7040db\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#e4047c\",\"button_background_hover_color\":\"#000000\",\"hover_animation\":\"pulse\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_animation\":\"fadeInUp\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"45f0ef71\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2eb4b113\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e4047c\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b737fb4\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995 \\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09c1\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#e4047c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"66bcbcb7\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"highlighted_text\":\"01819000000\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"link\":{\"url\":\"tel:01625032937\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"marker_color\":\"#F50000\",\"title_color\":\"#000000\",\"words_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"29399f1b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"classic\",\"product_options_images\":\"yes\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#e4047c\",\"_element_id\":\"order\",\"product_option_section_title_text\":\" \",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"label_color\":\"#000000\",\"input_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2ec817be\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=757836c\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"621b0287\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b04da63\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3640','1876','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3641','1876','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3642','1876','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3643','1876','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3644','1876','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3645','1876','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3646','1876','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3647','1876','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3648','1876','wcf-enable-product-quantity','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3649','1876','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3650','1876','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3651','1876','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3652','1876','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3653','1876','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3654','1876','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3655','1876','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3656','1876','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3657','1876','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3658','1876','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3659','1876','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3660','1877','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3661','1876','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3662','1877','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3663','1876','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3664','1877','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3665','1876','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3666','1877','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3667','1876','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3668','1877','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3669','1876','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3670','1877','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#3B7E39\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"id\":900,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/image-from-rawpixel-id-88589-jpeg.jpg\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":\"296\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/dfgdfg-1.webp\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3671','1876','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3672','1877','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3673','1876','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3674','1877','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3675','1876','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3676','1876','wcf_field_order_shipping','a:9:{s:19:\"shipping_first_name\";a:11:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_1\";a:11:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"shipping_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:14:\"shipping_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"shipping_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3677','1876','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3678','1876','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3679','1876','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3682','1878','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3683','1878','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3684','1878','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3685','1878','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3686','1878','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3687','1878','_elementor_data','[{\"id\":\"4bcceb51\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"666f5575\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"66472c2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"http:\\/\\/jadutech.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c14cbd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0986\\u09ab\\u09b8\\u09be\\u09a8 \\u09aa\\u09cd\\u09b0\\u09bf\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09be \\u0986\\u09a8\\u09b8\\u09cd\\u099f\\u09bf\\u099c \\u09e9 \\u09aa\\u09bf\\u09b8\",\"align\":\"center\",\"title_color\":\"#E6007E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ed1acfb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"20\",\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"60df1e32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3481eb73\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"arrows\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"carousel\":[{\"id\":930,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-2.webp\"},{\"id\":931,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-3.webp\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true},{\"id\":\"375cb110\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6987b32e\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"arrows\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"autoplay_speed\":1000,\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"carousel\":[{\"id\":932,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-4.webp\"},{\"id\":933,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-5.webp\"},{\"id\":934,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-6.webp\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd61e9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09be\\u099c\\u09be\\u09b0\\u09c7\\u09b0 \\u0995\\u09aa\\u09bf \\u09a5\\u09cd\\u09b0\\u09bf \\u09aa\\u09bf\\u09b8\\u09c7\\u09b0 \\u09b8\\u0999\\u09cd\\u0997\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u0995\\u09c7 \\u09a4\\u09c1\\u09b2\\u09a8\\u09be \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 \\u09a8\\u09be\\u0964 \\u0986\\u09ae\\u09b0\\u09be \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09aa\\u09c1\\u09b0\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09ab\\u09cd\\u09af\\u09be\\u0995\\u09cd\\u099f\\u09b0\\u09bf\\u09a4\\u09c7 \\u09ae\\u09c7\\u09a8\\u09c1\\u09ab\\u09cd\\u09af\\u09be\\u0995\\u099a\\u09be\\u09b0\\u09bf\\u0982 \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\u0964 \\u0995\\u09be\\u09b0\\u09a8 \\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09a8\\u09bf\\u099c\\u09c7\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09b8\\u09cd\\u09a4\\u09c1\\u09a4 \\u0995\\u09b0\\u09bf \\u0995\\u09be\\u09aa\\u09a1\\u09bc\\u09c7\\u09b0 \\u0993\\u09a1\\u09bc\\u09a8\\u09be \\u0993 \\u09aa\\u09be\\u09af\\u09bc\\u099c\\u09be\\u09ae\\u09be\\u09b0 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09b8\\u09c1\\u09a4\\u09bf \\u0995\\u09be\\u09aa\\u09a1\\u09bc\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"64c0c0ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af <span style=\\\"color: #38b000;\\\">\\u09e7\\u09e7\\u09e6\\u09e6\\/=<\\/span>\\u00a0\\u099f\\u09be\\u0995\\u09be\",\"align\":\"center\",\"title_color\":\"#e4047c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a8d0415\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#e4047c\",\"button_background_hover_color\":\"#000000\",\"hover_animation\":\"pulse\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cbf3222\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FDEAF1\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"43290024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0c8284\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fccf78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"6001ab8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09a8\\u09b8\\u09cd\\u099f\\u09bf\\u099c \\u09e9 \\u09aa\\u09bf\\u09b8 \\u098f\\u09b0 \\u09ac\\u09c8\\u09b6\\u09bf\\u09b7\\u09cd\\u099f\\u09cd\\u09af\",\"title_color\":\"#e4047c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"zoomInDown\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17f0fcad\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u099c\\u09be\\u09ae\\u09be \\u09b2\\u0982 \\u09ea\\u09ee \\u09ac\\u09a1\\u09bf \\u09eb\\u09e6+\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"dcd8d3d\"},{\"text\":\"\\u09aa\\u09be\\u09af\\u09bc\\u099c\\u09be\\u09ae\\u09be \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09e8.\\u09eb \\u0997\\u099c ( \\u09ef\\u09e6 \\u0987\\u099e\\u09cd\\u099a\\u09bf)\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"2255893\"},{\"text\":\"\\u0993\\u09a1\\u09bc\\u09a8\\u09be\\u09b0 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u0986\\u099b\\u09c7 \\u09eb.\\u09eb \\u09b9\\u09be\\u09a4\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b62b175\"},{\"text\":\"\\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0986\\u09ab\\u09b8\\u09be\\u09a8 \\u09aa\\u09cd\\u09b0\\u09bf\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09be\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"1d1e6ac\"},{\"text\":\"\\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u099f\\u09a8 \\u09b8\\u09c1\\u09a4\\u09bf\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4be9896\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#e4047c\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4961ab9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"left\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#e4047c\",\"button_background_hover_color\":\"#000000\",\"hover_animation\":\"pulse\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_animation\":\"slideInLeft\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8f061ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"580cf675\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"navigation\":\"arrows\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"carousel\":[{\"id\":934,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-6.webp\"},{\"id\":933,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-5.webp\"},{\"id\":932,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-4.webp\"},{\"id\":931,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-3.webp\"},{\"id\":930,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-2.webp\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ee737b7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2efa07fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2c59de3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09c7\\u09b8\\u09c7\\u099e\\u09cd\\u099c\\u09be\\u09b0\\u09c7 24 \\u0998\\u09a8\\u09cd\\u099f\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u098f\\u0995\\u099f\\u09bf\\u09ad \\u09a5\\u09be\\u0995\\u09c7 \\u0995\\u09cb\\u09a8 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09b9\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09c7\\u09b8\\u09c7\\u099e\\u09cd\\u099c\\u09be\\u09b0\\u09c7 \\u09ae\\u09c7\\u09b8\\u09c7\\u099c \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#e4047c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"467c13c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u09ab\\u09c7\\u0987\\u09b8\\u09ac\\u09c1\\u0995\",\"align\":\"right\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fab fa-facebook-messenger\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#0866FF\",\"button_background_hover_color\":\"#4169E1\",\"hover_animation\":\"pulse\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":30,\"sizes\":[]},\"align_mobile\":\"center\",\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"120dda9d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u09b9\\u09cb\\u09df\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\",\"align\":\"left\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#059A70\",\"button_background_hover_color\":\"#61CE70\",\"hover_animation\":\"pulse\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":30,\"sizes\":[]},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c817954\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FDEAF1\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"63bc40f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c081fc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09a8\\u09b8\\u09cd\\u099f\\u09bf\\u099c \\u09e9 \\u09aa\\u09bf\\u09b8 \\u098f\\u09b0 \\u09ac\\u09c8\\u09b6\\u09bf\\u09b7\\u09cd\\u099f\\u09cd\\u09af\",\"align\":\"center\",\"title_color\":\"#e4047c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58646955\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09aa\\u09c1\\u09b0\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09ab\\u09cd\\u09af\\u09be\\u0995\\u09cd\\u099f\\u09b0\\u09bf\\u09a4\\u09c7 \\u09ae\\u09c7\\u09a8\\u09c1\\u09ab\\u09cd\\u09af\\u09be\\u0995\\u099a\\u09be\\u09b0\\u09bf\\u0982 \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"dcd8d3d\"},{\"text\":\"\\u0995\\u09be\\u09b0\\u09a8 \\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09a8\\u09bf\\u099c\\u09c7\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09b8\\u09cd\\u09a4\\u09c1\\u09a4 \\u0995\\u09b0\\u09bf \\u0995\\u09be\\u09aa\\u09a1\\u09bc\\u09c7\\u09b0 \\u0993\\u09a1\\u09bc\\u09a8\\u09be \\u0993 \\u09aa\\u09be\\u09af\\u09bc\\u099c\\u09be\\u09ae\\u09be\\u09b0 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09b8\\u09c1\\u09a4\\u09bf \\u0995\\u09be\\u09aa\\u09a1\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2255893\"},{\"text\":\"\\u0986\\u09b0 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 \\u09b8\\u0995\\u09be\\u09b2 \\u09a6\\u09b6\\u099f\\u09be \\u09b9\\u09a4\\u09c7 \\u09b0\\u09be\\u09a4 \\u09a6\\u09b6\\u099f\\u09be \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b62b175\"},{\"text\":\"\\u09af\\u09a6\\u09bf \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u09c7\\u09b0 \\u0995\\u09cb\\u09a8 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a5\\u09be\\u0995\\u09c7 \\u0989\\u0995\\u09cd\\u09a4 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09be \\u09ad\\u09bf\\u09a1\\u09bf\\u0993 \\u0995\\u09b0\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0\\u0995\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09ae\\u09c7\\u09b8\\u09c7\\u099e\\u09cd\\u099c\\u09be\\u09b0 \\u0985\\u09a5\\u09ac\\u09be \\u09b9\\u09cb\\u09af\\u09bc\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09c7 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\\u0964 \\u09af\\u09a6\\u09bf \\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09ae\\u09a8\\u09c7 \\u0995\\u09b0\\u09bf \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u09ac\\u09bf\\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u098f\\u0995\\u09cd\\u09b8\\u099a\\u09c7\\u099e\\u09cd\\u099c \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09ac\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"1d1e6ac\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#e4047c\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_color\":\"#000000\",\"space_between_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4a7040db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#e4047c\",\"button_background_hover_color\":\"#000000\",\"hover_animation\":\"pulse\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f0ef71\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2eb4b113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e4047c\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b737fb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995 \\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09c1\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#e4047c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66bcbcb7\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"highlighted_text\":\"01819000000\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"link\":{\"url\":\"tel:01625032937\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"marker_color\":\"#F50000\",\"title_color\":\"#000000\",\"words_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"29399f1b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"classic\",\"product_options_images\":\"yes\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#e4047c\",\"_element_id\":\"order\",\"product_option_section_title_text\":\" \",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"label_color\":\"#000000\",\"input_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ec817be\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=757836c\"}},\"elements\":[{\"id\":\"621b0287\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b04da63\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3688','1878','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3690','1878','_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:5;s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:5;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:22:\"section_image_carousel\";a:4:{s:14:\"thumbnail_size\";i:3;s:14:\"slides_to_show\";i:3;s:10:\"navigation\";i:3;s:8:\"carousel\";i:3;}s:26:\"section_additional_options\";a:1:{s:14:\"autoplay_speed\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:14:\"_element_width\";i:3;s:21:\"_element_custom_width\";i:3;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:10;s:16:\"content_position\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:4;s:3:\"gap\";i:7;s:18:\"gap_columns_custom\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:2;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:5;s:4:\"size\";i:5;s:13:\"selected_icon\";i:5;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:12:{s:5:\"align\";i:5;s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:16:\"background_color\";i:5;s:29:\"button_background_hover_color\";i:5;s:15:\"hover_animation\";i:5;s:13:\"border_border\";i:5;s:12:\"border_width\";i:5;s:13:\"border_radius\";i:5;s:12:\"align_mobile\";i:5;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;s:7:\"_margin\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:6:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:27:\"icon_typography_line_height\";i:2;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:1;s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:1;}s:18:\"section_style_text\";a:6:{s:11:\"title_color\";i:1;s:11:\"words_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:28:\"title_typography_font_weight\";i:1;s:26:\"title_typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3691','1879','wcf-flow-id','1844');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3692','1879','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3693','1879','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3694','1879','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3695','1879','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3696','1879','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3697','1879','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3698','1879','_edit_lock','1716491483:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3699','1879','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3700','1879','wcf-dynamic-css-version','1716442215');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3701','1879','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3702','1879','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#432F50\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"Thanks\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"Congratulations!!! Your order has been successfully received.\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"You will be contacted for product delivery very soon\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3703','1879','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3705','1880','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3706','1880','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3707','1880','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3708','1880','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3709','1880','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3710','1880','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#432F50\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":\"126\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/dfgdfg.webp\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"Thanks\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"Congratulations!!! Your order has been successfully received.\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"You will be contacted for product delivery very soon\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3711','1880','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3712','1880','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3713','1881','wcf-flow-id','1851');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3714','1881','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3715','1881','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3716','1881','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3717','1881','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3718','1881','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3719','1881','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3720','1881','_edit_lock','1716491483:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3721','1881','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3722','1881','wcf-dynamic-css-version','1716442215');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3723','1881','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3724','1881','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#432F50\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"Thanks\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"Congratulations!!! Your order has been successfully received.\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"You will be contacted for product delivery very soon\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3725','1881','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3727','1882','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3728','1882','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3729','1882','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3730','1882','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3731','1882','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3732','1882','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#432F50\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":\"126\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/dfgdfg.webp\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"Thanks\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"Congratulations!!! Your order has been successfully received.\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"You will be contacted for product delivery very soon\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3733','1882','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3734','1882','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3735','1884','wcf-flow-id','1883');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3736','1884','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3737','1884','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3738','1883','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1884;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1886;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1939;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3739','1886','wcf-flow-id','1883');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3740','1886','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3741','1886','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3742','1886','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3743','1886','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3744','1886','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3745','1886','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3746','1886','_edit_lock','1717889884:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3747','1886','wcf-pro-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3748','1886','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3749','1886','_elementor_data','[{\"id\":\"76f9e6c\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#171515\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20aa424\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_mobile\":\"center\",\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d69f9d0\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":239,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInDown\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7aefab1\",\"settings\":{\"title\":\"Classy Trimmer combo T0 786\",\"align\":\"left\",\"title_color\":\"#FDDF31\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"38d4872\",\"settings\":{\"editor\":\"<p>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099a\\u09c1\\u09b2 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09a6\\u09be\\u09a1\\u09bc\\u09bf \\u0995\\u09be\\u099f\\u09be\\u09b0 \\u09b8\\u09b9\\u099c \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u098f\\u0987 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0 \\u099f\\u09bf , \\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09e7 \\u09ac\\u099b\\u09b0\\u09c7\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u09b0\\u09c7\\u09a8\\u09cd\\u099f\\u09bf\\u0964 \\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09b8\\u09be\\u0987\\u099c\\u09c7 \\u099a\\u09c1\\u09b2 \\u0993 \\u09a6\\u09be\\u09a1\\u09bc\\u09bf \\u0995\\u09be\\u099f\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u09a4\\u09c7\\u0981 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u0986\\u099b\\u09c7 \\u09ea \\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09aa ,\\u09af\\u09be\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 0.8 mm \\u09a5\\u09c7\\u0995\\u09c7 12mm \\u0995\\u09be\\u099f\\u09be \\u09af\\u09be\\u09ac\\u09c7 \\u0964\\u09b6\\u09c1\\u09a7\\u09c1 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0\\u0987 \\u09a8\\u09af\\u09bc \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7 \\u0986\\u09b0\\u0993 \\u09ae\\u09cb\\u099f \\u09ef \\u099f\\u09bf \\u0986\\u0987\\u099f\\u09c7\\u09ae (\\u09ea \\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09aa , \\u099a\\u09bf\\u09b0\\u09c1\\u09a8\\u09bf , \\u099a\\u09be\\u09b0\\u09cd\\u099c\\u09be\\u09b0 , \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09bf\\u0982 \\u09ac\\u09cd\\u09b0\\u09be\\u09b6 , \\u0985\\u09df\\u09c7\\u09b2 , \\u09ab\\u09cb\\u09ae )<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"-16\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"fe423d7\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#000000\",\"background_color\":\"#FDDF31\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInUp\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"8d65409\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"none\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ce5d25\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"ce68eea\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6577dcd\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cdc7a2c\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"zoomIn\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":70,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"9ea03a6\",\"settings\":{\"editor\":\"<p>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099a\\u09c1\\u09b2 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09a6\\u09be\\u09a1\\u09bc\\u09bf \\u0995\\u09be\\u099f\\u09be\\u09b0 \\u09b8\\u09b9\\u099c \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u098f\\u0987 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0 \\u099f\\u09bf , \\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09e7 \\u09ac\\u099b\\u09b0\\u09c7\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u09b0\\u09c7\\u09a8\\u09cd\\u099f\\u09bf \\u0964\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09b8\\u09be\\u0987\\u099c\\u09c7 \\u099a\\u09c1\\u09b2 \\u0993 \\u09a6\\u09be\\u09a1\\u09bc\\u09bf \\u0995\\u09be\\u099f\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u09a4\\u09c7\\u0981 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u0986\\u099b\\u09c7 \\u09ea \\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09aa ,\\u09af\\u09be\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 0.8 mm \\u09a5\\u09c7\\u0995\\u09c7 12mm \\u0995\\u09be\\u099f\\u09be \\u09af\\u09be\\u09ac\\u09c7 \\u0964\\u09b6\\u09c1\\u09a7\\u09c1 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0\\u0987 \\u09a8\\u09af\\u09bc \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7 \\u0986\\u09b0\\u0993 \\u09ae\\u09cb\\u099f \\u09ef \\u099f\\u09bf \\u0986\\u0987\\u099f\\u09c7\\u09ae (\\u09ea \\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09aa , \\u099a\\u09bf\\u09b0\\u09c1\\u09a8\\u09bf , \\u099a\\u09be\\u09b0\\u09cd\\u099c\\u09be\\u09b0 , \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09bf\\u0982 \\u09ac\\u09cd\\u09b0\\u09be\\u09b6 , \\u0985\\u09df\\u09c7\\u09b2 , \\u09ab\\u09cb\\u09ae )<\\/p>\",\"align\":\"center\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"4f682e3\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#000000\",\"background_color\":\"#FDDF31\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInUp\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3ad4f1c\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F6F6F6\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0c2ca14\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c83d43\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15d7126\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"de31123\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"2f62afe\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4353316\",\"settings\":{\"title\":\"\\u09e8 \\u0998\\u09a8\\u09cd\\u099f\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09bf \\u09ac\\u09cd\\u09af\\u09be\\u0995\\u0986\\u09aa\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"0df634c\",\"settings\":{\"editor\":\"<p>\\u098f\\u0995 \\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09df\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u099f\\u09be\\u09a8\\u09be \\u09e8\\u0998\\u09a8\\u09cd\\u099f\\u09be\\u0964 \\u098f\\u0987 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0\\u099f\\u09bf\\u09a4\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u09ac\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09c0\\u0964 \\u098f\\u099f\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09c7\\u09b8\\u09cd\\u099f \\u099a\\u09df\\u09c7\\u099c \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0\\u0964<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"9ad531a\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#000000\",\"background_color\":\"#FDDF31\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"e114d0e\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"08d12ce\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"feature-box1\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"202f799\",\"settings\":{\"title\":\"\\u09b8\\u09bf\\u09b0\\u09be\\u09ae\\u09bf\\u0995 \\u09ac\\u09cd\\u09b2\\u09c7\\u09a1\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"eaf06f8\",\"settings\":{\"editor\":\"<p>\\u09b8\\u09bf\\u09b0\\u09be\\u09ae\\u09bf\\u0995 \\u09ac\\u09cd\\u09b2\\u09c7\\u09a1 \\u098f\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 \\u098f\\u0987 \\u09b2\\u09c7\\u0996\\u09be \\u099f\\u09be \\u09b9\\u09ac\\u09c7 \\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u098f\\u09b8\\u09c7\\u099b\\u09bf \\u09b8\\u09bf\\u09b0\\u09be\\u09ae\\u09bf\\u0995 \\u09ac\\u09cd\\u09b2\\u09c7\\u09a1 , \\u098f\\u09b0 \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7\\u09a4\\u09cd\\u09ac \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u098f\\u099f\\u09bf \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0995\\u09cb\\u09a8\\u09cb \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u0995\\u09b0\\u09c7 \\u09a8\\u09be \\u0993 \\u09b8\\u09cd\\u099f\\u09bf\\u09b2 \\u098f\\u09b0 \\u09ac\\u09cd\\u09b2\\u09c7\\u09a1 \\u098f\\u09b0 \\u09ae\\u09a4 \\u0995\\u09c7\\u099f\\u09c7 \\u09af\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u0995\\u09cb\\u09a8\\u09cb \\u09b8\\u09ae\\u09cd\\u09ad\\u09be\\u09ac\\u09a8\\u09be \\u09a8\\u09c7\\u0987 \\u0964<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"35ac31f\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#000000\",\"background_color\":\"#FDDF31\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"00252db\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"css_classes\":\"feature-box2\",\"custom_css\":\"@media (max-width: 767px) {\\r\\n            .feature-box2 {\\r\\n                order: 1;\\r\\n            }\\r\\n            .feature-box1 {\\r\\n                order: 2;\\r\\n            }\\r\\n        }\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52571cc\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":80,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3446f1\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FAE05D\",\"background_color_b\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f2d3ea5\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b52eb34\",\"settings\":{\"title\":\"\\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5ac9e23\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"dots_position\":\"inside\",\"image_spacing\":\"custom\",\"image_border_border\":\"solid\",\"image_border_color\":\"#FDDF31\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"none\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"carousel\":[],\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"6d48cee\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6857948\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9add7b3\",\"settings\":{\"title\":\"\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FDDF31\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c7ea7a6\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#000000\",\"background_color\":\"#FDDF31\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"5a97100\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"flip\",\"marker\":\"curly\",\"before_text\":\"\\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09e7\\u09e6\\u09ef\\u09ef \\/=\",\"rotating_text\":\"\\u09e7\\u09e6\\u09ef\\u09ef \\/=\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\",\"title_color\":\"#FDDF31\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_weight\":\"700\",\"words_color\":\"#F70000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"rotate_iteration_delay\":0.1,\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"be570b3\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order-form\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4bea656d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FDDF31\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37676298\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#3C494E\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a03de62\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#FDDF31\",\"button_text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"62ac697\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d12cb75\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b037eab\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3750','1886','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3751','1886','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3752','1886','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3753','1886','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3754','1886','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3755','1886','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3756','1886','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3757','1886','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3758','1886','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3759','1886','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3760','1886','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:69:\"আপনার ফোন নাম্বারটি লেখুন\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3761','1886','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3762','1886','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3763','1886','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3764','1886','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3765','1886','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3766','1886','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3767','1886','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3768','1886','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3769','1886','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3770','1886','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3771','1886','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3772','1886','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3773','1886','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3774','1886','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3775','1886','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3776','1886','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3777','1886','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3778','1886','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3779','1886','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3780','1886','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3781','1886','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3782','1886','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3783','1886','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3784','1886','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3785','1886','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3786','1886','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3788','1888','wcf-flow-id','1887');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3789','1888','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3790','1888','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3791','1888','wcf_fields_billing','a:12:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}s:12:\"billing_size\";a:16:{s:4:\"type\";s:5:\"radio\";s:5:\"label\";s:40:\"টিশার্টের সাইজ\";s:11:\"placeholder\";s:0:\"\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:11:\"label_class\";a:0:{}s:13:\"show_in_email\";s:0:\"\";s:8:\"required\";s:3:\"yes\";s:6:\"custom\";b:1;s:7:\"default\";s:0:\"\";s:7:\"options\";s:0:\"\";s:10:\"date_input\";s:14:\"datetime-local\";s:9:\"optimized\";s:0:\"\";s:5:\"width\";s:3:\"100\";s:4:\"name\";s:12:\"billing_size\";s:3:\"key\";s:12:\"billing_size\";s:7:\"enabled\";s:3:\"yes\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3792','1888','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3793','1888','wcf-enable-product-options','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3794','1888','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3795','1888','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3796','1888','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3797','1888','wcf-enable-product-quantity','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3798','1888','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3799','1888','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3800','1888','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3801','1888','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3802','1888','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3803','1888','_edit_lock','1717889962:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3804','1888','wcf-pro-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3805','1888','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3806','1888','_elementor_data','[{\"id\":\"3baae7be\",\"settings\":{\"content_position\":\"middle\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"background_overlay_background\":\"classic\",\"shape_divider_bottom_negative\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4009a9ba\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e938b01\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"34de74d\",\"settings\":{\"title\":\"\\u09e9 \\u09aa\\u09bf\\u09b8 \\u099f\\u09bf-\\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e7\\u09ef\\u09e6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6ca1165\",\"settings\":{\"editor\":\"<p>Premium Quality Jearsey T Shart Package \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u0995\\u0996\\u09a8\\u09cb \\u09b8\\u09b8\\u09cd\\u09a5\\u09be\\u09af\\u09bc \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09af\\u09bc \\u09a8\\u09be \\u09a4\\u09ac\\u09c1\\u0993 \\u0986\\u09ae\\u09b0\\u09be \\u098f\\u0987 \\u09ae\\u09c1\\u09b2\\u09cd\\u09af\\u09c7 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u00a0<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"343882d7\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"hover_animation\":\"push\",\"button_text_color\":\"#FFFFFF\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"background_color\":\"#ED1C24\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"4c0ac2d8\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b6e9566\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33d3cc3b\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/1HtrB9hDve4\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_border_border\":\"double\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"external_url\":{\"url\":\"https:\\/\\/youtu.be\\/6iV-tO2Z-w8?si=Hk7dBKhB9PBqA4Zy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"image_overlay\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"__globals__\":{\"_border_color\":\"\"},\"loop\":\"yes\",\"_border_color\":\"#EC1C24\",\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"cf187f0\",\"settings\":{\"title\":\"ZOTO Always comfort\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2a3bc9ca\",\"settings\":{\"editor\":\"<p>\\u0986\\u09ae\\u09b0\\u09be \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09bf\\u0995\\u09cd\\u09b8, \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf \\u098f\\u09ac\\u0982 \\u09b8\\u09c1\\u09df\\u09bf\\u0982 \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09bf\\u09a8\\u09cd\\u099f \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf, \\u09b8\\u09be\\u09a5\\u09c7 \\u09e7\\u09e6\\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09b0\\u09bf\\u09aa\\u09cd\\u09b2\\u09c7\\u09b8\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0964 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af \\u09ac\\u09bf\\u0995\\u09cd\\u09b0\\u09bf \\u09a8\\u09df, \\u0986\\u09ae\\u09b0\\u09be \\u099a\\u09be\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09c7\\u0995 \\u09ac\\u09bf\\u0995\\u09cd\\u09b0\\u09af\\u09bc\\u09a4\\u09cd\\u09ac\\u09b0 \\u09b8\\u09c7\\u09ac\\u09be \\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09be \\u098f\\u09ac\\u0982 \\u0986\\u09b0\\u0993 \\u09b8\\u09ac \\u09ac\\u09be\\u09b9\\u09be\\u09b0\\u09bf \\u09a1\\u09bf\\u099c\\u09be\\u0987\\u09a8 \\u098f\\u09ac\\u0982 \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u0989\\u09aa\\u09b9\\u09be\\u09b0 \\u09a6\\u09c7\\u09af\\u09bc\\u09be<\\/p>\",\"align\":\"center\",\"text_color\":\"#EC1C24\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"40e524f4\",\"settings\":{\"price_list\":[{\"title\":\"\\u09e9 \\u09aa\\u09bf\\u09b8 \\u099f\\u09bf-\\u09b6\\u09be\\u09b0\\u09cd\\u099f\\u09c7\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"item_description\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09aa\\u09cd\\u09b0\\u09af\\u09cb\\u099c\\u09cd\\u09af\",\"price\":\"\\u09f31190\",\"_id\":\"92aad8f\",\"image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Hind Siliguri\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"price_typography_font_weight\":\"700\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Hind Siliguri\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"separator_weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"separator_color\":\"#A7A7A7\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_border_border\":\"double\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"__should_import\":true,\"__globals__\":{\"heading_color\":\"globals\\/colors?id=secondary\",\"price_color\":\"\",\"_border_color\":\"\"},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"price_color\":\"#EC1C24\",\"_border_color\":\"#3A86FF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"price-list\",\"elType\":\"widget\"},{\"id\":\"1dc7ff05\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"hover_animation\":\"push\",\"button_text_color\":\"#FFFFFF\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"background_color\":\"#ED1C24\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"9657489\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"fe46170\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b7e43c7\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c8e70d8\",\"settings\":{\"carousel\":[],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_show_mobile\":\"2\",\"image_spacing\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#54595F5C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"6985a19\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"91cf25b\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"border_color\":\"#FF0000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e9d430\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u0987\\u099c\\u09c7 \\u09aa\\u09cd\\u09b0\\u09ac\\u09b2\\u09c7\\u09ae \\u09b9\\u09b2\\u09c7 \\u0985\\u09a5\\u09ac\\u09be \\u0985\\u09a8\\u09cd\\u09af \\u0995\\u09cb\\u09a8 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09b9\\u09b2\\u09c7 \\u09b0\\u09bf\\u09b0\\u09cd\\u099f\\u09be\\u09a8 \\u09ac\\u09be \\u098f\\u0995\\u09cd\\u09b8\\u09c7\\u099a\\u099e\\u09cd\\u099c \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09ed\\u09a5\\u09c7\\u0995\\u09c7 \\u09e7\\u09e6 \\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a4\\u09b0\\u09c7\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"f33d443\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#020005\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"197cb12\",\"settings\":{\"text\":\"+8801819000000\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#ED1C24\",\"link\":{\"url\":\"tel:+8801819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"lg\",\"hover_animation\":\"push\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3f31c8d\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"443ecdd\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6fd1af3\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"f8cfaca\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"landing\",\"custom_css\":\"p#billing_country_field {\\n    display: none !important;\\n}\\n\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_element_id\":\"order\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"82536c1\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=text\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68acae2\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"86626e9\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"label_color\":\"#000000\",\"input_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"input_border_color\":\"#3A86FF82\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#EC1C24\",\"button_background_hover_color_background\":\"classic\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"__globals__\":{\"button_background_hover_color_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"6639716f\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"327d9c79\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"490f7bce\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3807','1888','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3808','1888','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3809','1888','wcf-checkout-place-order-button-text','অর্ডার করুন');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3810','1888','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3811','1888','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3812','1888','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3813','1888','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3814','1888','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3815','1888','wcf_field_order_billing','a:12:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:34:\"আপনার ঠিকানা\";s:11:\"placeholder\";s:143:\"আপনার জেলা,থানা ও যে লোকেশন থেকে নিবেন ঐ এরিয়ার নাম দিন\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:50;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:60;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:70;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:80;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:40:\"মোবাইল নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:90;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:12:\"billing_size\";a:17:{s:4:\"type\";s:5:\"radio\";s:5:\"label\";s:40:\"টিশার্টের সাইজ\";s:11:\"placeholder\";s:0:\"\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:11:\"label_class\";a:0:{}s:13:\"show_in_email\";b:0;s:8:\"required\";b:1;s:6:\"custom\";b:1;s:7:\"default\";s:0:\"\";s:7:\"options\";a:4:{s:1:\"M\";s:1:\"M\";s:1:\"L\";s:1:\"L\";s:2:\"XL\";s:2:\"XL\";s:3:\"2XL\";s:3:\"2XL\";}s:10:\"date_input\";s:14:\"datetime-local\";s:9:\"optimized\";b:0;s:5:\"width\";i:100;s:4:\"name\";s:12:\"billing_size\";s:3:\"key\";s:12:\"billing_size\";s:7:\"enabled\";b:1;s:8:\"priority\";i:120;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3816','1888','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3817','1888','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3818','1888','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3819','1888','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3820','1888','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3821','1888','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3822','1888','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3823','1888','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3824','1888','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3825','1888','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3826','1888','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3827','1888','_oembed_c5773cdc2b8220fb6b68662d9bc58b37','<iframe title=\"3 PCs t shirt Combo\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/1HtrB9hDve4?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3828','1888','_oembed_time_c5773cdc2b8220fb6b68662d9bc58b37','1708793311');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3830','1888','_oembed_fba9c7f065254117233951ffcd488b9d','<iframe title=\"3 PCs t shirt Combo\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/1HtrB9hDve4?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3831','1888','_oembed_time_fba9c7f065254117233951ffcd488b9d','1710929673');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3832','1888','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3833','1888','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3834','1888','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3835','1888','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3836','1888','_oembed_152165013445873ee12cfe70c85934d7','<iframe title=\"3 PCs t shirt Combo\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/1HtrB9hDve4?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3837','1888','_oembed_time_152165013445873ee12cfe70c85934d7','1717890274');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3840','1887','wcf-steps','a:2:{i:0;a:3:{s:2:\"id\";i:1888;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:1908;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3841','1890','wcf-flow-id','1889');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3842','1890','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3843','1890','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3844','1890','wcf_fields_billing','a:12:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}s:12:\"billing_size\";a:16:{s:4:\"type\";s:5:\"radio\";s:5:\"label\";s:40:\"টিশার্টের সাইজ\";s:11:\"placeholder\";s:0:\"\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:11:\"label_class\";a:0:{}s:13:\"show_in_email\";s:0:\"\";s:8:\"required\";s:3:\"yes\";s:6:\"custom\";b:1;s:7:\"default\";s:0:\"\";s:7:\"options\";s:0:\"\";s:10:\"date_input\";s:14:\"datetime-local\";s:9:\"optimized\";s:0:\"\";s:5:\"width\";s:3:\"100\";s:4:\"name\";s:12:\"billing_size\";s:3:\"key\";s:12:\"billing_size\";s:7:\"enabled\";s:3:\"yes\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3845','1890','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3846','1890','wcf-enable-product-options','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3847','1890','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3848','1890','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3849','1890','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3850','1890','wcf-enable-product-quantity','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3851','1890','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3852','1890','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3853','1890','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3854','1890','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3855','1890','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3856','1890','_edit_lock','1717802368:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3857','1890','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3858','1890','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3859','1890','_elementor_data','[{\"id\":\"3baae7be\",\"settings\":{\"content_position\":\"middle\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#6EA8FF\",\"background_overlay_background\":\"classic\",\"shape_divider_bottom_negative\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":{\"start\":21,\"end\":100}},\"background_motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"background_motion_fx_blur_level\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\",\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_motion_fx_mouseTrack_direction\":\"negative\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":4.2,\"sizes\":[]},\"shape_divider_top\":\"book\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":93,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"shape_divider_bottom\":\"wave-brush\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4009a9ba\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e938b01\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"a17e5d0\",\"settings\":{\"title\":\"\\u09e9 \\u09aa\\u09bf\\u09b8 \\u099f\\u09bf-\\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e7\\u09ef\\u09e6\",\"align\":\"center\",\"title_color\":\"#3A3A3A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6ca1165\",\"settings\":{\"editor\":\"<p>Premium Quality Jearsey T Shart Package \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u0995\\u0996\\u09a8\\u09cb \\u09b8\\u09b8\\u09cd\\u09a5\\u09be\\u09af\\u09bc \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09af\\u09bc \\u09a8\\u09be \\u09a4\\u09ac\\u09c1\\u0993 \\u0986\\u09ae\\u09b0\\u09be \\u098f\\u0987 \\u09ae\\u09c1\\u09b2\\u09cd\\u09af\\u09c7 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u00a0<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"343882d7\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"hover_animation\":\"push\",\"button_text_color\":\"#FFFFFF\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"background_color\":\"#ED1C24\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"4c0ac2d8\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#7FC5FF\",\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b6e9566\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33d3cc3b\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/1HtrB9hDve4\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"external_url\":{\"url\":\"https:\\/\\/youtu.be\\/6iV-tO2Z-w8?si=Hk7dBKhB9PBqA4Zy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"image_overlay\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"__globals__\":{\"_border_color\":\"\"},\"loop\":\"yes\",\"_border_color\":\"#6EA8FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"cf187f0\",\"settings\":{\"title\":\"ZOTO Always comfort\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2a3bc9ca\",\"settings\":{\"editor\":\"<p>\\u0986\\u09ae\\u09b0\\u09be \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09bf\\u0995\\u09cd\\u09b8, \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf \\u098f\\u09ac\\u0982 \\u09b8\\u09c1\\u09df\\u09bf\\u0982 \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09bf\\u09a8\\u09cd\\u099f \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf, \\u09b8\\u09be\\u09a5\\u09c7 \\u09e7\\u09e6\\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09b0\\u09bf\\u09aa\\u09cd\\u09b2\\u09c7\\u09b8\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0964 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af \\u09ac\\u09bf\\u0995\\u09cd\\u09b0\\u09bf \\u09a8\\u09df, \\u0986\\u09ae\\u09b0\\u09be \\u099a\\u09be\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09c7\\u0995 \\u09ac\\u09bf\\u0995\\u09cd\\u09b0\\u09af\\u09bc\\u09a4\\u09cd\\u09ac\\u09b0 \\u09b8\\u09c7\\u09ac\\u09be \\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09be \\u098f\\u09ac\\u0982 \\u0986\\u09b0\\u0993 \\u09b8\\u09ac \\u09ac\\u09be\\u09b9\\u09be\\u09b0\\u09bf \\u09a1\\u09bf\\u099c\\u09be\\u0987\\u09a8 \\u098f\\u09ac\\u0982 \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u0989\\u09aa\\u09b9\\u09be\\u09b0 \\u09a6\\u09c7\\u09af\\u09bc\\u09be<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"40e524f4\",\"settings\":{\"price_list\":[{\"title\":\"\\u09e9 \\u09aa\\u09bf\\u09b8 \\u099f\\u09bf-\\u09b6\\u09be\\u09b0\\u09cd\\u099f\\u09c7\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"item_description\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09aa\\u09cd\\u09b0\\u09af\\u09cb\\u099c\\u09cd\\u09af\",\"price\":\"\\u09f31190\",\"_id\":\"92aad8f\",\"image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Hind Siliguri\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"price_typography_font_weight\":\"700\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Hind Siliguri\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"separator_weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"separator_color\":\"#A7A7A7\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_border_border\":\"double\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"__should_import\":true,\"__globals__\":{\"heading_color\":\"globals\\/colors?id=secondary\",\"price_color\":\"\",\"_border_color\":\"\"},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"price_color\":\"#EC1C24\",\"_border_color\":\"#3A86FF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"price-list\",\"elType\":\"widget\"},{\"id\":\"1dc7ff05\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"hover_animation\":\"push\",\"button_text_color\":\"#FFFFFF\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"background_color\":\"#ED1C24\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"fe46170\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#6CA4F9\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b7e43c7\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c8e70d8\",\"settings\":{\"carousel\":[],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_show_mobile\":\"2\",\"image_spacing\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_color\":\"#54595F5C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"},{\"id\":\"9657489\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"6985a19\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"91cf25b\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"border_color\":\"#6EA8FF\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e9d430\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u0987\\u099c\\u09c7 \\u09aa\\u09cd\\u09b0\\u09ac\\u09b2\\u09c7\\u09ae \\u09b9\\u09b2\\u09c7 \\u0985\\u09a5\\u09ac\\u09be \\u0985\\u09a8\\u09cd\\u09af \\u0995\\u09cb\\u09a8 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09b9\\u09b2\\u09c7 \\u09b0\\u09bf\\u09b0\\u09cd\\u099f\\u09be\\u09a8 \\u09ac\\u09be \\u098f\\u0995\\u09cd\\u09b8\\u09c7\\u099a\\u099e\\u09cd\\u099c \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09ed\\u09a5\\u09c7\\u0995\\u09c7 \\u09e7\\u09e6 \\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a4\\u09b0\\u09c7\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"f33d443\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#020005\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"197cb12\",\"settings\":{\"text\":\"+8801819000000\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#3470CB\",\"link\":{\"url\":\"tel:+8801819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"lg\",\"hover_animation\":\"push\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3f31c8d\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"443ecdd\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6fd1af3\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"f8cfaca\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"landing\",\"custom_css\":\"p#billing_country_field {\\n    display: none !important;\\n}\\n\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_element_id\":\"order\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"82536c1\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#BDDAFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=text\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68acae2\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"86626e9\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"label_color\":\"#000000\",\"input_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"input_border_color\":\"#3A86FF82\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#EC1C24\",\"button_background_hover_color_background\":\"classic\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"__globals__\":{\"button_background_hover_color_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"6639716f\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"327d9c79\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"490f7bce\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3860','1890','_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\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3861','1890','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3862','1890','wcf-checkout-place-order-button-text','অর্ডার করুন');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3863','1890','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3864','1890','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3865','1890','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3866','1890','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3867','1890','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3868','1890','wcf_field_order_billing','a:12:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:34:\"আপনার ঠিকানা\";s:11:\"placeholder\";s:143:\"আপনার জেলা,থানা ও যে লোকেশন থেকে নিবেন ঐ এরিয়ার নাম দিন\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:50;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:60;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:70;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:80;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:40:\"মোবাইল নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:90;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:12:\"billing_size\";a:17:{s:4:\"type\";s:5:\"radio\";s:5:\"label\";s:40:\"টিশার্টের সাইজ\";s:11:\"placeholder\";s:0:\"\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:11:\"label_class\";a:0:{}s:13:\"show_in_email\";b:0;s:8:\"required\";b:1;s:6:\"custom\";b:1;s:7:\"default\";s:0:\"\";s:7:\"options\";a:4:{s:1:\"M\";s:1:\"M\";s:1:\"L\";s:1:\"L\";s:2:\"XL\";s:2:\"XL\";s:3:\"2XL\";s:3:\"2XL\";}s:10:\"date_input\";s:14:\"datetime-local\";s:9:\"optimized\";b:0;s:5:\"width\";i:100;s:4:\"name\";s:12:\"billing_size\";s:3:\"key\";s:12:\"billing_size\";s:7:\"enabled\";b:1;s:8:\"priority\";i:120;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3869','1890','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3870','1890','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3871','1890','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3872','1890','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3873','1890','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3874','1890','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3875','1890','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3876','1890','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3877','1890','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3878','1890','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3879','1890','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3880','1890','_oembed_c5773cdc2b8220fb6b68662d9bc58b37','<iframe title=\"3 PCs t shirt Combo\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/1HtrB9hDve4?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3881','1890','_oembed_time_c5773cdc2b8220fb6b68662d9bc58b37','1708793311');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3883','1890','_oembed_fba9c7f065254117233951ffcd488b9d','<iframe title=\"3 PCs t shirt Combo\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/1HtrB9hDve4?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3884','1890','_oembed_time_fba9c7f065254117233951ffcd488b9d','1710929673');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3885','1890','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3886','1890','_oembed_caa5adf2894395b66868373f6bc9784b','<iframe title=\"3 PCs t shirt Combo\" width=\"720\" height=\"405\" src=\"https://www.youtube.com/embed/1HtrB9hDve4?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3887','1890','_oembed_time_caa5adf2894395b66868373f6bc9784b','1717802373');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3888','1890','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3889','1890','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3890','1890','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3892','1889','wcf-steps','a:2:{i:0;a:3:{s:2:\"id\";i:1890;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:1917;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3893','1891','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3894','1891','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3895','1891','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3896','1891','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3897','1891','_elementor_data','[{\"id\":\"d360dab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00F7F7\",\"shape_divider_bottom\":\"mountains\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"063a7ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a8f807\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"3a0263e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"07d43da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9800953\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"dd1e068\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u099a\\u09bf\\u0982\\u09dc\\u09bf \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7af012\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c\\u099a\\u09bf\\u0982\\u09dc\\u09bf \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993\\u201d \\u0996\\u09c1\\u09ac\\u0987 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09a6\\u09c1 \\u0993 \\u09ae\\u09c1\\u0996\\u09b0\\u09cb\\u099a\\u0995 \\u098f\\u0995\\u099f\\u09bf \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964 \\u09a8\\u09be\\u09ae\\u099f\\u09be \\u09af\\u09c7\\u09ae\\u09a8 \\u0985\\u09a8\\u09cd\\u09af\\u09b0\\u0995\\u09ae, \\u0996\\u09c7\\u09a4\\u09c7\\u0993 \\u0985\\u09b8\\u09ae\\u09cd\\u09ad\\u09ac \\u09ae\\u099c\\u09be\\u09a6\\u09be\\u09b0\\u0964 \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u098f\\u0995 \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b0 \\u09b0\\u09c7\\u09a1\\u09bf \\u099f\\u09c1 \\u0987\\u099f \\u09ab\\u09c1\\u09a1, \\u09af\\u09be \\u09ae\\u09c1\\u09b2\\u09a4 \\u099a\\u09bf\\u0982\\u09a1\\u09bc\\u09bf, \\u09aa\\u09c7\\u09af\\u09bc\\u09be\\u099c , \\u09b0\\u09b8\\u09c1\\u09a8, \\u09b6\\u09c1\\u0995\\u09a8\\u09cb \\u09ae\\u09b0\\u09bf\\u099a \\u0993 \\u09ae\\u09b6\\u09b2\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3\\u0964 \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u0995\\u0995\\u09cd\\u09b8\\u09ac\\u09be\\u099c\\u09be\\u09b0 \\u0993 \\u099a\\u099f\\u09cd\\u099f\\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09df \\u0990\\u09a4\\u09bf\\u09b9\\u09cd\\u09af\\u09ac\\u09be\\u09b9\\u09c0 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37a0807\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b9\\u09cb\\u09ae \\u09ae\\u09c7\\u0987\\u09a1 \\u098f\\u09ac\\u0982 \\u09b0\\u09c7\\u09a1\\u09bf \\u099f\\u09c1 \\u0987\\u099f \\u09ab\\u09c1\\u09a1\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a95dc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"500\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#00B22C\",\"hover_color\":\"#00B22C\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#00B22C\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"05\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1b406b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cca248f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":145,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1.jpeg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":2,\"vertical\":2,\"blur\":30,\"spread\":0,\"color\":\"#000000\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44bb505\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f858e67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"56ec4f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09bf \\u0995\\u09bf \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf?\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57af82f\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"69ae077\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e196775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":146,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/01m-1-1.jpg\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f8f8163\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u099a\\u09bf\\u0982\\u09a1\\u09bc\\u09bf \\u09b6\\u09c1\\u099f\\u0995\\u09bf\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#00F7F7\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"61cbbae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"0d2b31c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":147,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/02m-1-1.jpg\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"924ecfb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09c7\\u0981\\u09af\\u09bc\\u09be\\u099c \\u09ac\\u09c7\\u09b0\\u09c7\\u09b8\\u09cd\\u09a4\\u09be\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#00F7F7\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"9318374\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"a12e660\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":148,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/03m-1-1.jpg\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4531179\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b0\\u09b8\\u09c1\\u09a8 \\u09ad\\u09be\\u099c\\u09be\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#00F7F7\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3fc3249\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"33631c7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":149,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/04m-1-1.jpg\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf8e0fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ae\\u09b0\\u09bf\\u099a\\u09c7\\u09b0 \\u0997\\u09c1\\u0981\\u09dc\\u09be\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#00F7F7\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"70e8374\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"5adcfea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":150,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/05m-1-1.jpg\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b07ec71\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09bf\\u0995\\u09cd\\u09b0\\u09c7\\u099f \\u09ae\\u09b6\\u09b2\\u09be\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#00F7F7\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99153fe\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"id\":152,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-1-1.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"96f2333\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c746378\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09af\\u09c7\\u09ad\\u09be\\u09ac\\u09c7 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09af\\u09bc\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef20178\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"3c71c4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e5992bb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ae\\u09c1\\u09dc\\u09bf \\u09ae\\u09be\\u0996\\u09be \\u09ac\\u09be \\u09ae\\u09c1\\u09dc\\u09bf \\u09ad\\u09b0\\u09cd\\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7\\u0964\",\"_id\":\"e0a8129\"},{\"text\":\"\\u0986\\u09b2\\u09c1 \\u09ad\\u09b0\\u09cd\\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u09b6\\u09bf\\u09df\\u09c7\\u0964\",\"_id\":\"6e0e316\"},{\"text\":\"\\u09ac\\u09c7\\u0997\\u09c1\\u09a8 \\u09ad\\u09b0\\u09cd\\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u09b6\\u09bf\\u09df\\u09c7\\u0964\",\"_id\":\"365de09\"},{\"text\":\"\\u0997\\u09b0\\u09ae \\u09a7\\u09cb\\u09df\\u09be \\u0993\\u09a0\\u09be \\u09b8\\u09be\\u09a6\\u09be \\u09ad\\u09be\\u09a4\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7\\u0964\",\"_id\":\"c0c8fa0\"},{\"text\":\"\\u099a\\u09be\\u09a8\\u09be\\u099a\\u09c1\\u09b0\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b8\\u09b0\\u09be\\u09b8\\u09b0\\u09bf\\u0964\",\"_id\":\"d095d8e\"},{\"text\":\"\\u0997\\u09b0\\u09ae \\u0997\\u09b0\\u09ae \\u0996\\u09c1\\u09a6\\u09c7\\u09b0 \\u09ad\\u09be\\u09a4\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7\\u0964\",\"_id\":\"bbf7c71\"},{\"text\":\"\\u09ad\\u09c2\\u09a8\\u09be \\u0996\\u09bf\\u099a\\u09c1\\u09dc\\u09bf \\u0993 \\u09aa\\u09cb\\u09b2\\u09be\\u0993\\u09df\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7\\u0964\",\"_id\":\"c072653\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#FFFFFF\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"0f69eb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cb24452\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":151,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1-1.jpg\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"086665d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"500\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#00B22C\",\"hover_color\":\"#00B22C\",\"button_background_hover_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#00B22C\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"05\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"359ec5d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4422e03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"029f8ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09eb\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u098f\\u09b0 \\u09aa\\u09c2\\u09b0\\u09cd\\u09ac\\u09ae\\u09c2\\u09b2\\u09cd\\u09af <span style=\\\"color: #ff0000; text-decoration: line-through; ;\\\">\\u09ef\\u09eb\\u09e6<\\/span> \\u098f\\u0996\\u09a8 \\u099b\\u09be\\u09dc\\u09c7 \\u09ee\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1112ef\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":25,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"style\":\"curved\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f9481cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u098f\\u09b0 \\u09aa\\u09c2\\u09b0\\u09cd\\u09ac\\u09ae\\u09c2\\u09b2\\u09cd\\u09af <span style=\\\"color: #ff0000; text-decoration: line-through; ;\\\">\\u09e7\\u09ee\\u09e6\\u09e6<\\/span> \\u098f\\u0996\\u09a8 \\u099b\\u09be\\u09dc\\u09c7 \\u09e7\\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a27d02\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00F7F7\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad30fd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a06a370\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8 ?\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"edab5a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"dc19911\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"#000000\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7d23c7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/chef-1-1.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ec9b944\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u099c\\u09cd\\u099e \\u09ac\\u09be\\u09ac\\u09c1\\u09b0\\u09cd\\u099a\\u09bf\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c1\\u09b2\\u09be\\u09df \\u09a4\\u09c8\\u09b0\\u09bf\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_color\":\"#FFE600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"69fe5e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"#000000\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"98becf7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/house-1-1.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f53d900\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b9\\u09cb\\u09ae\\u09ae\\u09c7\\u0987\\u09a1 \\u09aa\\u09cd\\u09b0\\u0995\\u09cd\\u09b0\\u09bf\\u09df\\u09be\\u09df \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_color\":\"#FFE600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"34525bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"#000000\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac48577\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/shrimp-1-1-1.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d826888\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09ac\\u09be\\u09b2\\u09c1\\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u099a\\u09bf\\u0982\\u09dc\\u09bf \\u09b6\\u09c1\\u099f\\u0995\\u09bf\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_color\":\"#FFE600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4c08417\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"#000000\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"476dfa4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":156,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/tasty-1-1.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31629e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993 \\u098f\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_background_color\":\"#FFE600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0397245\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f14e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"782c295\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d90bf6\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":157,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.30-PM-1.jpeg\"},{\"id\":158,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.30-PM.jpeg\"},{\"id\":159,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.29-PM-2.jpeg\"},{\"id\":160,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.29-PM-1.jpeg\"},{\"id\":161,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.29-PM.jpeg\"},{\"id\":162,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.28-PM-2.jpeg\"},{\"id\":163,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.28-PM-1.jpeg\"}],\"thumbnail_size\":\"medium_large\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"lazyload\":\"yes\",\"autoplay_speed\":6000,\"speed\":600,\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#000000\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab204be\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#E1FFEF\"},\"elements\":[{\"id\":\"7b7b1f74\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4e1d8f5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#EEEEEE\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#773D00\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"header_size\":\"div\",\"_animation\":\"pulse\",\"animation_duration\":\"slow\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3896c04\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u099f\\u09be\\u0995\\u09be \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964 \\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a6\\u09c7\\u09df\\u09be \\u09b9\\u09df\\u0964\",\"align\":\"center\",\"title_color\":\"#773D00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bfeb0b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"_border_color\":\"#00F7F7\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"global_text_color\":\"#000000\",\"heading_text_color\":\"#000000\",\"label_color\":\"#000000\",\"input_color\":\"#000000\",\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"buttons_typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#00B22C\",\"btn_hover_color\":\"#00B22C\",\"button_background_hover_color_background\":\"classic\",\"button_background_hover_color_color\":\"#FFFFFF\",\"payment_section_text_color\":\"#000000\",\"payment_section_desc_color\":\"#000000\",\"product_text_color\":\"#000000\",\"_element_id\":\"order-form\",\"buttons_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":2,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"#000000\"}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d94ef44\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"815e69c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"787300d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"  Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3898','1891','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3899','1891','_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3900','1891','_thumbnail_id','53787');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3901','1891','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3902','1891','_elementor_controls_usage','a:10:{s:5:\"image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:12;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:5:\"width\";i:2;s:19:\"image_border_radius\";i:2;s:32:\"image_box_shadow_box_shadow_type\";i:1;s:27:\"image_box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:20;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:20;s:21:\"typography_typography\";i:20;s:22:\"typography_font_family\";i:20;s:20:\"typography_font_size\";i:20;s:22:\"typography_font_weight\";i:20;s:5:\"align\";i:19;s:22:\"typography_line_height\";i:18;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:10;s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:6;s:17:\"_background_color\";i:10;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:2;s:4:\"link\";i:2;s:13:\"selected_icon\";i:2;s:10:\"icon_align\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:13:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:11:\"hover_color\";i:2;s:29:\"button_background_hover_color\";i:2;s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:13:\"border_radius\";i:2;s:12:\"align_mobile\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:21;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:4;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:4;s:21:\"box_shadow_box_shadow\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}s:14:\"section_layout\";a:1:{s:16:\"content_position\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:7;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:3:{s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:8;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:1;s:7:\"divider\";i:1;s:14:\"divider_weight\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;s:10:\"text_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:6:\"weight\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:22:\"section_image_carousel\";a:4:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;s:10:\"navigation\";i:1;}s:26:\"section_additional_options\";a:3:{s:8:\"lazyload\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3903','1892','wcf-flow-id','1872');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3904','1892','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3905','1892','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3906','1892','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3907','1892','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3908','1892','_elementor_version','3.20.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3909','1892','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3910','1892','_edit_lock','1711458393:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3911','1892','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3912','1892','wcf-dynamic-css-version','1710879359');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3913','1892','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3914','1892','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3915','1892','_elementor_data','[{\"id\":\"29e80a2e\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"800\",\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"40\",\"bottom\":\"92\",\"left\":\"40\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"68\",\"left\":\"24\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"31\",\"left\":\"20\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#E6007E\",\"shape_divider_bottom\":\"opacity-fan\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"144c5a5b\",\"settings\":{\"_column_size\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1901f0f8\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"size_mobile\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"3fd5fcae\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.5\",\"sizes\":[]},\"align\":\"center\",\"header_size\":\"h1\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c502696\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"b427125\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6501436\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"6ef363a0\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0000000F\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"11f89e99\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f95eba\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\" style=\\\"color:red\\\">DPW<\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3916','1892','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3918','1893','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3919','1893','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3920','1893','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3921','1893','_elementor_version','3.20.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3922','1893','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3923','1893','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3924','1893','_elementor_data','[{\"id\":\"29e80a2e\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"800\",\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"40\",\"bottom\":\"92\",\"left\":\"40\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"68\",\"left\":\"24\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"31\",\"left\":\"20\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#E6007E\",\"shape_divider_bottom\":\"opacity-fan\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"144c5a5b\",\"settings\":{\"_column_size\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1901f0f8\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"size_mobile\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"3fd5fcae\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.5\",\"sizes\":[]},\"align\":\"center\",\"header_size\":\"h1\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c502696\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"b427125\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6501436\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"6ef363a0\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0000000F\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"11f89e99\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f95eba\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\" style=\\\"color:red\\\">DPW<\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3925','1893','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3926','1893','_elementor_controls_usage','a:5:{s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:4:\"size\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:2;s:25:\"typography_letter_spacing\";i:1;s:5:\"align\";i:3;s:22:\"typography_line_height\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:21:\"section_shape_divider\";a:2:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3927','1895','wcf-flow-id','1894');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3928','1895','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3929','1895','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3930','1894','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1895;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1897;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1927;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3931','1897','wcf-flow-id','1894');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3932','1897','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3933','1897','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3934','1897','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3935','1897','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3936','1897','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3937','1897','_astra_content_layout_flag','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3938','1897','site-post-title','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3939','1897','ast-title-bar-display','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3940','1897','ast-featured-img','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3941','1897','_edit_lock','1780988040:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3942','1897','ast-site-content-layout','full-width-container');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3943','1897','site-sidebar-layout','no-sidebar');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3944','1897','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3945','1897','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3946','1897','_elementor_data','[{\"id\":\"a3e1d5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#E7F0E1\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_b\":\"#B0CF9C\",\"background_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"ae19893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"1303061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2153,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/79cb8f3c-5692-4e31-950d-e723a35373c3.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FC7F01\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3702568\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"d6913b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"cdbeb12\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09c1\\u09b0\\u09be\\u09a8 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 \\u0995\\u09c1\\u09dc\\u09ae\\u09c1\\u09dc\\u09c7 \\u09a8\\u09be\\u09b0\\u09bf\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be \\u0996\\u09be\\u09ac\\u09c7\\u09a8 \\u09a4\\u09cb \\u09ae\\u099c\\u09be \\u09aa\\u09be\\u09ac\\u09c7\\u09a8\",\"align_mobile\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0231586\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09a8\\u09be\\u09b0\\u09bf\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be, \\u0985\\u09a8\\u09c7\\u0995\\u09c7 \\u098f\\u099f\\u09be\\u0995\\u09c7 \\u09a8\\u09be\\u09b0\\u0995\\u09c7\\u09b2\\u09bf \\u09ac\\u09b2\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u09ae\\u09c1\\u0996\\u09cb\\u09b0\\u09cb\\u099a\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u098f\\u099f\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09df \\u098f\\u0995\\u099f\\u09bf \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2540cf3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8864e9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"92d0329\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2153,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/79cb8f3c-5692-4e31-950d-e723a35373c3.png\"},{\"id\":2155,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/10a91c3c-afe2-4a7d-86bd-7edd27071144.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"dots_position\":\"inside\",\"image_border_border\":\"groove\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"#FC7F01\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fceebe3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"dd61e80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68f924c\",\"elType\":\"section\",\"settings\":{\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f65597\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a06266b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2153,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/79cb8f3c-5692-4e31-950d-e723a35373c3.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a562f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09c1\\u09dc\\u09ae\\u09c1\\u09dc\\u09c7 \\u09aa\\u09c1\\u09b0\\u09be\\u09a8 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 \\u09a8\\u09be\\u09b0\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be \\u2013 \\u09ea\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09eb\\u09e8\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#3DA300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc9b16c\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c57d802\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"zoomIn\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53bd132\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2155,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/10a91c3c-afe2-4a7d-86bd-7edd27071144.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9fbee41\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09c1\\u09dc\\u09ae\\u09c1\\u09dc\\u09c7 \\u09aa\\u09c1\\u09b0\\u09be\\u09a8 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 \\u09a8\\u09be\\u09b0\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be \\u2013 \\u09ec\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09ec\\u09ed\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#3DA300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c44832c\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9b843fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8f4e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2153,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/79cb8f3c-5692-4e31-950d-e723a35373c3.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e747d90\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09c1\\u09dc\\u09ae\\u09c1\\u09dc\\u09c7 \\u09aa\\u09c1\\u09b0\\u09be\\u09a8 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 \\u09a8\\u09be\\u09b0\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be \\u2013 \\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u09e7\\u09e6\\u09e8\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#3DA300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f8b209\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"da76ee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 \\u09ac\\u09be \\u0995\\u09b2 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#3DA300\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ba9e63\",\"elType\":\"widget\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Gotu\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c94202\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"76e0391\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#E9FFEB\"},\"elements\":[{\"id\":\"6bff2d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#B0CF9C\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc5ac54\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ad\\u09c7\\u099c\\u09be\\u09b2\\u09c7\\u09b0 \\u098f\\u0987 \\u09b8\\u09ae\\u09af\\u09bc \\u09b0\\u09cd\\u09a8\\u09bf\\u09ad\\u09c7\\u099c\\u09be\\u09b2 \\u098f\\u0995\\u099f\\u09bf \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"9e8f154\"},{\"text\":\"\\u099b\\u09cb\\u099f \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09a1\\u09bc \\u09b8\\u09ac\\u09be\\u0987 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09ac\\u09b0\\u09c7\\u09a8\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"5749317\"},{\"text\":\"\\u09ae\\u09a8 \\u09ad\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09af\\u09bc,\\u0995\\u09be\\u09b0\\u09a3 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf \\u0995\\u09ae \\u09a6\\u09c7\\u09df\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"cc51c74\"},{\"text\":\"\\u09ac\\u09bf\\u0995\\u09c7\\u09b2\\u09c7\\u09b0 \\u09a8\\u09be\\u09b8\\u09cd\\u09a4\\u09be \\u09ac\\u09be \\u09ae\\u09c7\\u09b9\\u09ae\\u09be\\u09a8\\u09a6\\u09be\\u09b0\\u09c0\\u09a4\\u09c7 \\u0985\\u09a4\\u09c1\\u09b2\\u09a8\\u09c0\\u09af\\u09bc \\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"65d0bfa\"},{\"text\":\"\\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09bf\\u09af\\u09bc\\u099c\\u09a8\\u0995\\u09c7 \\u0989\\u09aa\\u09b9\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"8eafe76\"},{\"text\":\"\\u098f\\u0987 \\u09a8\\u09be\\u09b0\\u09bf\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u09ac\\u09c7 \\u09b8\\u09c7\\u0987 \\u099b\\u09cb\\u099f\\u09cd\\u099f\\u09ac\\u09c7\\u09b2\\u09be\\u09b0 \\u09b8\\u09cd\\u09ae\\u09c3\\u09a4\\u09bf\\u09b0 \\u099c\\u0997\\u09a4\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"139a89b\"},{\"text\":\"\\u0995\\u09c1\\u09a1\\u09bc\\u09ae\\u09c1\\u09a1\\u09bc\\u09c7 \\u0993 \\u09ae\\u099a\\u09ae\\u099a\\u09c7 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"8bde54e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#3DA300\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#3DA300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"860d03e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8991467\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e6a814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e6d7c96\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09af\\u09be \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df?\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#B0CF9C\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b988c9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0995\\u09cb\\u09a8 \\u09b0\\u0995\\u09ae \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u099b\\u09be\\u09a1\\u09bc\\u09be \\u0998\\u09b0\\u09cb\\u09df\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09b8\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2d5ffa7\"},{\"text\":\"\\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u0985\\u099e\\u09cd\\u099a\\u09b2 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4  \\u09a8\\u09be\\u09b0\\u09bf\\u0995\\u09c7\\u09b2 \\u09a6\\u09cd\\u09ac\\u09be\\u09b0\\u09be \\u0993 \\u099a\\u09bf\\u09a8\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"fccdefe\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#3DA300\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#3DA300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"space_between_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e37b26c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"38c4690\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e5f74ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09ae\\u09cd\\u09ae\\u09be\\u09a8\\u09bf\\u09a4 \\u0997\\u09cd\\u09b0\\u09be\\u09b9\\u0995\\u09a6\\u09c7\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#B0CF9C\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6561139\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"dots_position\":\"inside\",\"image_spacing\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"image_border_color\":\"#3DA300\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"carousel\":[{\"id\":2155,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/10a91c3c-afe2-4a7d-86bd-7edd27071144.png\"},{\"id\":2153,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/79cb8f3c-5692-4e31-950d-e723a35373c3.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"8e8c69c\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a79d0ad\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e5f67bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3DA300\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ca60d18\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8-\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#B0CF9C\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51c2dc4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09a8\\u09bf\\u09b0\\u09cd\\u09a7\\u09be\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"700\",\"btn_background_color_background\":\"gradient\",\"btn_background_color_color\":\"#E7F0E1\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#000000\",\"btn_background_color_color_b\":\"#B0CF9C\",\"btn_background_color_gradient_type\":\"radial\",\"_element_id\":\"order\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_weight\":\"700\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_weight\":\"500\",\"heading_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"efd863b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7972e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9fe03ad\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3947','1897','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3948','1897','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3949','1897','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3950','1897','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3951','1897','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3952','1897','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3953','1897','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3954','1897','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3955','1897','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3956','1897','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3957','1897','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3958','1897','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3959','1897','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3960','1897','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3961','1897','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3962','1897','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:25:\"আপনার নাম\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:50:\"আপনার ঠিকানা লিখুন\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:47:\"আপনার ফোন নাম্বার\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3963','1897','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3964','1897','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3965','1897','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3966','1897','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3967','1897','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3968','1897','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3969','1897','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3970','1897','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3971','1897','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3972','1897','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3973','1897','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3974','1897','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3975','1897','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3976','1897','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3977','1897','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3978','1897','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3979','1897','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3980','1897','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3981','1897','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3987','1898','wcf-flow-id','1864');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3988','1898','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3989','1898','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3990','1898','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3991','1898','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3992','1898','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3993','1898','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3994','1898','_edit_lock','1716496207:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3995','1898','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3996','1898','wcf-dynamic-css-version','1716442215');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3997','1898','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3998','1898','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#3E4A3D\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('3999','1898','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4001','1899','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4002','1899','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4003','1899','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4004','1899','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4005','1899','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4006','1899','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#3E4A3D\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":\"296\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/dfgdfg-1.webp\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4007','1899','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4008','1899','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4009','1900','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4010','1900','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4011','1900','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4012','1900','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4013','1900','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4014','1900','_elementor_data','[{\"id\":\"3baae7be\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"background_overlay_background\":\"classic\",\"shape_divider_bottom_negative\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4009a9ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"e938b01\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"34de74d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e9 \\u09aa\\u09bf\\u09b8 \\u099f\\u09bf-\\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e7\\u09ef\\u09e6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ca1165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Premium Quality Jearsey T Shart Package \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u0995\\u0996\\u09a8\\u09cb \\u09b8\\u09b8\\u09cd\\u09a5\\u09be\\u09af\\u09bc \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09af\\u09bc \\u09a8\\u09be \\u09a4\\u09ac\\u09c1\\u0993 \\u0986\\u09ae\\u09b0\\u09be \\u098f\\u0987 \\u09ae\\u09c1\\u09b2\\u09cd\\u09af\\u09c7 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u00a0<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"343882d7\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"hover_animation\":\"push\",\"button_text_color\":\"#FFFFFF\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"background_color\":\"#ED1C24\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c0ac2d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b6e9566\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33d3cc3b\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/1HtrB9hDve4\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":966,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-4-1.png\"},\"_border_border\":\"double\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"external_url\":{\"url\":\"https:\\/\\/youtu.be\\/6iV-tO2Z-w8?si=Hk7dBKhB9PBqA4Zy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"image_overlay\":{\"id\":967,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-6-1.png\"},\"__globals__\":{\"_border_color\":\"\"},\"loop\":\"yes\",\"_border_color\":\"#EC1C24\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"cf187f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"ZOTO Always comfort\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a3bc9ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0986\\u09ae\\u09b0\\u09be \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09bf\\u0995\\u09cd\\u09b8, \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf \\u098f\\u09ac\\u0982 \\u09b8\\u09c1\\u09df\\u09bf\\u0982 \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09bf\\u09a8\\u09cd\\u099f \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf, \\u09b8\\u09be\\u09a5\\u09c7 \\u09e7\\u09e6\\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09b0\\u09bf\\u09aa\\u09cd\\u09b2\\u09c7\\u09b8\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0964 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af \\u09ac\\u09bf\\u0995\\u09cd\\u09b0\\u09bf \\u09a8\\u09df, \\u0986\\u09ae\\u09b0\\u09be \\u099a\\u09be\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09c7\\u0995 \\u09ac\\u09bf\\u0995\\u09cd\\u09b0\\u09af\\u09bc\\u09a4\\u09cd\\u09ac\\u09b0 \\u09b8\\u09c7\\u09ac\\u09be \\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09be \\u098f\\u09ac\\u0982 \\u0986\\u09b0\\u0993 \\u09b8\\u09ac \\u09ac\\u09be\\u09b9\\u09be\\u09b0\\u09bf \\u09a1\\u09bf\\u099c\\u09be\\u0987\\u09a8 \\u098f\\u09ac\\u0982 \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u0989\\u09aa\\u09b9\\u09be\\u09b0 \\u09a6\\u09c7\\u09af\\u09bc\\u09be<\\/p>\",\"align\":\"center\",\"text_color\":\"#EC1C24\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40e524f4\",\"elType\":\"widget\",\"settings\":{\"price_list\":[{\"title\":\"\\u09e9 \\u09aa\\u09bf\\u09b8 \\u099f\\u09bf-\\u09b6\\u09be\\u09b0\\u09cd\\u099f\\u09c7\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"item_description\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09aa\\u09cd\\u09b0\\u09af\\u09cb\\u099c\\u09cd\\u09af\",\"price\":\"\\u09f31190\",\"_id\":\"92aad8f\",\"image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Hind Siliguri\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"price_typography_font_weight\":\"700\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Hind Siliguri\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"separator_weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"separator_color\":\"#A7A7A7\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_border_border\":\"double\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"__should_import\":true,\"__globals__\":{\"heading_color\":\"globals\\/colors?id=secondary\",\"price_color\":\"\",\"_border_color\":\"\"},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"price_color\":\"#EC1C24\",\"_border_color\":\"#3A86FF\"},\"elements\":[],\"widgetType\":\"price-list\"},{\"id\":\"1dc7ff05\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"hover_animation\":\"push\",\"button_text_color\":\"#FFFFFF\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"background_color\":\"#ED1C24\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9657489\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":968,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1.jpeg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe46170\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"gap\":\"no\"},\"elements\":[{\"id\":\"b7e43c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c8e70d8\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":969,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ts-1-1-1.jpg\"},{\"id\":970,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ts-18-B-1-1.jpg\"},{\"id\":971,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ts-31-1-1.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_show_mobile\":\"2\",\"image_spacing\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#54595F5C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6985a19\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"91cf25b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"border_color\":\"#FF0000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e9d430\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u0987\\u099c\\u09c7 \\u09aa\\u09cd\\u09b0\\u09ac\\u09b2\\u09c7\\u09ae \\u09b9\\u09b2\\u09c7 \\u0985\\u09a5\\u09ac\\u09be \\u0985\\u09a8\\u09cd\\u09af \\u0995\\u09cb\\u09a8 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09b9\\u09b2\\u09c7 \\u09b0\\u09bf\\u09b0\\u09cd\\u099f\\u09be\\u09a8 \\u09ac\\u09be \\u098f\\u0995\\u09cd\\u09b8\\u09c7\\u099a\\u099e\\u09cd\\u099c \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09ed\\u09a5\\u09c7\\u0995\\u09c7 \\u09e7\\u09e6 \\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a4\\u09b0\\u09c7\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f33d443\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#020005\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"197cb12\",\"elType\":\"widget\",\"settings\":{\"text\":\"+8801819000000\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#ED1C24\",\"link\":{\"url\":\"tel:+8801819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"lg\",\"hover_animation\":\"push\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f31c8d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"443ecdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fd1af3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":972,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1.jpeg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8cfaca\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"landing\",\"custom_css\":\"p#billing_country_field {\\n    display: none !important;\\n}\\n\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_element_id\":\"order\"},\"elements\":[{\"id\":\"82536c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=text\"}},\"elements\":[{\"id\":\"68acae2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86626e9\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"label_color\":\"#000000\",\"input_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"input_border_color\":\"#3A86FF82\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#EC1C24\",\"button_background_hover_color_background\":\"classic\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"__globals__\":{\"button_background_hover_color_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6639716f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"327d9c79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"490f7bce\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4015','1900','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4016','1900','_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:3;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:6;s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:2;s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:3;s:4:\"link\";i:3;s:4:\"size\";i:3;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:22:\"typography_font_weight\";i:3;s:15:\"hover_animation\";i:3;s:17:\"button_text_color\";i:3;s:16:\"background_color\";i:3;s:20:\"typography_font_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:7;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:16:\"content_position\";i:1;s:13:\"content_width\";i:4;s:3:\"gap\";i:6;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:1:{s:29:\"shape_divider_bottom_negative\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:7;s:6:\"margin\";i:2;s:11:\"css_classes\";i:1;s:11:\"_element_id\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:6:{s:11:\"youtube_url\";i:1;s:10:\"hosted_url\";i:1;s:12:\"external_url\";i:1;s:8:\"autoplay\";i:1;s:14:\"play_on_mobile\";i:1;s:4:\"loop\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:10:\"price-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:10:\"price_list\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_list_style\";a:16:{s:29:\"heading_typography_typography\";i:1;s:30:\"heading_typography_font_family\";i:1;s:28:\"heading_typography_font_size\";i:1;s:30:\"heading_typography_font_weight\";i:1;s:27:\"price_typography_typography\";i:1;s:28:\"price_typography_font_family\";i:1;s:26:\"price_typography_font_size\";i:1;s:28:\"price_typography_font_weight\";i:1;s:17:\"description_color\";i:1;s:33:\"description_typography_typography\";i:1;s:34:\"description_typography_font_family\";i:1;s:32:\"description_typography_font_size\";i:1;s:34:\"description_typography_font_weight\";i:1;s:16:\"separator_weight\";i:1;s:15:\"separator_color\";i:1;s:11:\"price_color\";i:1;}s:18:\"section_item_style\";a:1:{s:7:\"row_gap\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:4:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:13:\"image_spacing\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4017','1900','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4018','1901','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4019','1901','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4020','1901','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4021','1901','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4022','1901','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4023','1901','_elementor_data','[{\"id\":\"3baae7be\",\"settings\":{\"content_position\":\"middle\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#6EA8FF\",\"background_overlay_background\":\"classic\",\"shape_divider_bottom_negative\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":{\"start\":21,\"end\":100}},\"background_motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"background_motion_fx_blur_level\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"background_motion_fx_range\":\"viewport\",\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_motion_fx_mouseTrack_direction\":\"negative\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":4.2,\"sizes\":[]},\"shape_divider_top\":\"book\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":93,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"shape_divider_bottom\":\"wave-brush\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4009a9ba\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e938b01\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"a17e5d0\",\"settings\":{\"title\":\"\\u09e9 \\u09aa\\u09bf\\u09b8 \\u099f\\u09bf-\\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e7\\u09ef\\u09e6\",\"align\":\"center\",\"title_color\":\"#3A3A3A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6ca1165\",\"settings\":{\"editor\":\"<p>Premium Quality Jearsey T Shart Package \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u0995\\u0996\\u09a8\\u09cb \\u09b8\\u09b8\\u09cd\\u09a5\\u09be\\u09af\\u09bc \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09af\\u09bc \\u09a8\\u09be \\u09a4\\u09ac\\u09c1\\u0993 \\u0986\\u09ae\\u09b0\\u09be \\u098f\\u0987 \\u09ae\\u09c1\\u09b2\\u09cd\\u09af\\u09c7 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u00a0<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"343882d7\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"hover_animation\":\"push\",\"button_text_color\":\"#FFFFFF\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"background_color\":\"#ED1C24\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"4c0ac2d8\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#7FC5FF\",\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b6e9566\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33d3cc3b\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/1HtrB9hDve4\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":978,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-2-2.png\"},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"external_url\":{\"url\":\"https:\\/\\/youtu.be\\/6iV-tO2Z-w8?si=Hk7dBKhB9PBqA4Zy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"image_overlay\":{\"id\":979,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-3-2.png\"},\"__globals__\":{\"_border_color\":\"\"},\"loop\":\"yes\",\"_border_color\":\"#6EA8FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"cf187f0\",\"settings\":{\"title\":\"ZOTO Always comfort\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2a3bc9ca\",\"settings\":{\"editor\":\"<p>\\u0986\\u09ae\\u09b0\\u09be \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09bf\\u0995\\u09cd\\u09b8, \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf \\u098f\\u09ac\\u0982 \\u09b8\\u09c1\\u09df\\u09bf\\u0982 \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09bf\\u09a8\\u09cd\\u099f \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf, \\u09b8\\u09be\\u09a5\\u09c7 \\u09e7\\u09e6\\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09b0\\u09bf\\u09aa\\u09cd\\u09b2\\u09c7\\u09b8\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0964 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af \\u09ac\\u09bf\\u0995\\u09cd\\u09b0\\u09bf \\u09a8\\u09df, \\u0986\\u09ae\\u09b0\\u09be \\u099a\\u09be\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09c7\\u0995 \\u09ac\\u09bf\\u0995\\u09cd\\u09b0\\u09af\\u09bc\\u09a4\\u09cd\\u09ac\\u09b0 \\u09b8\\u09c7\\u09ac\\u09be \\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09be \\u098f\\u09ac\\u0982 \\u0986\\u09b0\\u0993 \\u09b8\\u09ac \\u09ac\\u09be\\u09b9\\u09be\\u09b0\\u09bf \\u09a1\\u09bf\\u099c\\u09be\\u0987\\u09a8 \\u098f\\u09ac\\u0982 \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u0989\\u09aa\\u09b9\\u09be\\u09b0 \\u09a6\\u09c7\\u09af\\u09bc\\u09be<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"40e524f4\",\"settings\":{\"price_list\":[{\"title\":\"\\u09e9 \\u09aa\\u09bf\\u09b8 \\u099f\\u09bf-\\u09b6\\u09be\\u09b0\\u09cd\\u099f\\u09c7\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"item_description\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09aa\\u09cd\\u09b0\\u09af\\u09cb\\u099c\\u09cd\\u09af\",\"price\":\"\\u09f31190\",\"_id\":\"92aad8f\",\"image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Hind Siliguri\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"price_typography_font_weight\":\"700\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Hind Siliguri\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"separator_weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"separator_color\":\"#A7A7A7\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_border_border\":\"double\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"__should_import\":true,\"__globals__\":{\"heading_color\":\"globals\\/colors?id=secondary\",\"price_color\":\"\",\"_border_color\":\"\"},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"price_color\":\"#EC1C24\",\"_border_color\":\"#3A86FF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"price-list\",\"elType\":\"widget\"},{\"id\":\"1dc7ff05\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"hover_animation\":\"push\",\"button_text_color\":\"#FFFFFF\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"background_color\":\"#ED1C24\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"fe46170\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#6CA4F9\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b7e43c7\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c8e70d8\",\"settings\":{\"carousel\":[{\"id\":\"969\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ts-1-1-1.jpg\"},{\"id\":\"970\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ts-18-B-1-1.jpg\"},{\"id\":\"971\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ts-31-1-1.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"slides_to_show_mobile\":\"2\",\"image_spacing\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_color\":\"#54595F5C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"},{\"id\":\"9657489\",\"settings\":{\"image\":{\"id\":\"968\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1.jpeg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"6985a19\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"91cf25b\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"border_color\":\"#6EA8FF\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e9d430\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u0987\\u099c\\u09c7 \\u09aa\\u09cd\\u09b0\\u09ac\\u09b2\\u09c7\\u09ae \\u09b9\\u09b2\\u09c7 \\u0985\\u09a5\\u09ac\\u09be \\u0985\\u09a8\\u09cd\\u09af \\u0995\\u09cb\\u09a8 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09b9\\u09b2\\u09c7 \\u09b0\\u09bf\\u09b0\\u09cd\\u099f\\u09be\\u09a8 \\u09ac\\u09be \\u098f\\u0995\\u09cd\\u09b8\\u09c7\\u099a\\u099e\\u09cd\\u099c \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09ed\\u09a5\\u09c7\\u0995\\u09c7 \\u09e7\\u09e6 \\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a4\\u09b0\\u09c7\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"f33d443\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#020005\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"197cb12\",\"settings\":{\"text\":\"+8801819000000\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#3470CB\",\"link\":{\"url\":\"tel:+8801819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"lg\",\"hover_animation\":\"push\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3f31c8d\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"443ecdd\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6fd1af3\",\"settings\":{\"image\":{\"id\":\"972\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1.jpeg\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"f8cfaca\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"landing\",\"custom_css\":\"p#billing_country_field {\\n    display: none !important;\\n}\\n\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_element_id\":\"order\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"82536c1\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#BDDAFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=text\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68acae2\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"86626e9\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"label_color\":\"#000000\",\"input_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"input_border_color\":\"#3A86FF82\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#EC1C24\",\"button_background_hover_color_background\":\"classic\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"__globals__\":{\"button_background_hover_color_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"6639716f\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"327d9c79\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"490f7bce\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4024','1901','_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\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4025','1901','_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:3;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:6;s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_family\";i:5;s:22:\"typography_font_weight\";i:5;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:2;s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:3;s:4:\"link\";i:3;s:4:\"size\";i:3;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:22:\"typography_font_weight\";i:3;s:15:\"hover_animation\";i:3;s:17:\"button_text_color\";i:3;s:16:\"background_color\";i:3;s:20:\"typography_font_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:7;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:16:\"content_position\";i:1;s:13:\"content_width\";i:4;s:3:\"gap\";i:6;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:11:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:4;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:37:\"background_motion_fx_translateY_speed\";i:1;s:45:\"background_motion_fx_translateY_affectedRange\";i:1;s:37:\"background_motion_fx_translateX_speed\";i:1;s:31:\"background_motion_fx_blur_level\";i:1;s:26:\"background_motion_fx_range\";i:1;s:38:\"background_motion_fx_mouseTrack_effect\";i:1;s:41:\"background_motion_fx_mouseTrack_direction\";i:1;s:37:\"background_motion_fx_mouseTrack_speed\";i:1;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:7:{s:29:\"shape_divider_bottom_negative\";i:1;s:17:\"shape_divider_top\";i:2;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:2;s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:7;s:6:\"margin\";i:2;s:11:\"css_classes\";i:1;s:11:\"_element_id\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:6:{s:11:\"youtube_url\";i:1;s:10:\"hosted_url\";i:1;s:12:\"external_url\";i:1;s:8:\"autoplay\";i:1;s:14:\"play_on_mobile\";i:1;s:4:\"loop\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:10:\"price-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:10:\"price_list\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_list_style\";a:16:{s:29:\"heading_typography_typography\";i:1;s:30:\"heading_typography_font_family\";i:1;s:28:\"heading_typography_font_size\";i:1;s:30:\"heading_typography_font_weight\";i:1;s:27:\"price_typography_typography\";i:1;s:28:\"price_typography_font_family\";i:1;s:26:\"price_typography_font_size\";i:1;s:28:\"price_typography_font_weight\";i:1;s:17:\"description_color\";i:1;s:33:\"description_typography_typography\";i:1;s:34:\"description_typography_font_family\";i:1;s:32:\"description_typography_font_size\";i:1;s:34:\"description_typography_font_weight\";i:1;s:16:\"separator_weight\";i:1;s:15:\"separator_color\";i:1;s:11:\"price_color\";i:1;}s:18:\"section_item_style\";a:1:{s:7:\"row_gap\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:4:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:13:\"image_spacing\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4026','1901','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4027','1903','wcf-flow-id','1902');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4028','1903','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4029','1903','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4030','1902','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1903;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1905;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1944;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4031','1905','wcf-flow-id','1902');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4032','1905','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4033','1905','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4034','1905','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4035','1905','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4036','1905','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4037','1905','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4038','1905','_edit_lock','1717965627:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4039','1905','wcf-pro-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4040','1905','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4041','1905','_elementor_data','[{\"id\":\"eb1d65f\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F60\",\"shape_divider_bottom\":\"wave-brush\",\"shape_divider_bottom_color\":\"#DAE7FF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b840d99\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8d3442e\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"a22ae1a\",\"settings\":{\"title\":\"\\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 (Digital Timer Switch AC 220V ) \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09af\\u09c7\\u0995\\u09cb\\u09a8 \\u0987\\u09b2\\u09c7\\u0995\\u09cd\\u099f\\u09cd\\u09b0\\u09a8\\u09bf\\u0995\\u09cd\\u09b8 \\u09af\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b8\\u09ae\\u09df\\u09ae\\u09a4 \\u09ac\\u09a8\\u09cd\\u09a7 \\u0993 \\u099a\\u09be\\u09b2\\u09c1 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8, \\u09ac\\u09be\\u0981\\u099a\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u0985\\u09a8\\u09be\\u0995\\u09be\\u0999\\u09cd\\u0996\\u09bf\\u09a4 \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09a4\\u09c7\\u09b0 \\u0985\\u09aa\\u099a\\u09df\\u0964\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7beeb70\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e94b59\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c60a291\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09e7\\u09eb\\u09eb\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"alignment\":\"right\",\"alignment_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"words_color\":\"#FF3E3E\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"014af8d\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15ab4ba\",\"settings\":{\"before_text\":\"<span style=\\\"color:red\\\">\\u09e8\\u09e9{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} <\\/span> \\u099b\\u09be\\u09dc\\u09c7 \\u0985\\u09ab\\u09be\\u09b0  \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09e7\\u09e7\\u09ef\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"alignment\":\"left\",\"alignment_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"words_color\":\"#FF3E3E\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"8d92f04\",\"settings\":{\"carousel\":[],\"thumbnail_size\":\"medium\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"image_border_border\":\"groove\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"},{\"id\":\"0145997\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#2C3F60\",\"background_color\":\"#DAE7FF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#C50101\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_animation\":\"bounceIn\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"35b9caf\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#DAE7FF\",\"shape_divider_bottom\":\"wave-brush\",\"shape_divider_bottom_color\":\"#2C3F60\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"551fcfc\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dfa3cd7\",\"settings\":{\"title\":\"\\u09af\\u09c7 \\u09b8\\u0995\\u09b2 \\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8\\u09c7 \\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 \\u09b8\\u09c1\\u0987\\u099a \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#2C3F60\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"17a0dd2\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f7f2bc\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d0b8dc\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09c3\\u09a4 \\u098f\\u09df\\u09be\\u09b0\\u09c7\\u099f\\u09b0\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"f30cd49\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09aa\\u09be\\u09ae\\u09cd\\u09aa\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"6f6a8e7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09bf\\u0995\\u09bf\\u0989\\u09b0\\u09bf\\u099f\\u09bf \\u09b2\\u09be\\u0987\\u099f\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"fc1b2ef\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b2\\u09be\\u0987\\u099f, \\u09ab\\u09cd\\u09af\\u09be\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"d65a7e3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ac\\u09be\\u0997\\u09be\\u09a8, \\u0996\\u09be\\u09ae\\u09be\\u09b0 \\u09ac\\u09be \\u0995\\u09c3\\u09b7\\u09bf \\u09af\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"b23f76a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09b9\\u09bf\\u099f\\u09be\\u09b0\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"fa5713c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ac\\u09bf\\u09b2 \\u09ac\\u09cb\\u09b0\\u09cd\\u09a1\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"0766c73\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u0995\\u09c1\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"8473b33\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u099f\\u09bf\\u09ad\\u09bf \\u0987\\u09a4\\u09cd\\u09af\\u09be\\u09a6\\u09bf\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"3adcf8c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider\":\"yes\",\"divider_style\":\"dashed\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"icon_color\":\"#2C3F60\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"divider_color\":\"#2C3F60\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2C3F60\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"613b8f2\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c0a58d\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=EhNJbwZ-NqU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"image_overlay\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"0328f21\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#2C3F60\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#C50101\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_animation\":\"bounceIn\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"8fae027\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F60\",\"shape_divider_bottom\":\"wave-brush\",\"shape_divider_bottom_color\":\"#DAE7FF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d1cf95\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f0df4cf\",\"settings\":{\"title\":\"\\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u0985\\u099f\\u09cb \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0\\u09c7\\u09b0\\u09b0 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u0986\\u09b0\\u09cb \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0:\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"82f8540\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09af\\u09c7\\u0995\\u09cb\\u09a8 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09af\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u098f\\u099f\\u09bf\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be\\u09ae\\u09a4 On\\/Off \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"33cd2a9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u099f\\u09bf\\u09b0 \\u09b8\\u09be\\u09b9\\u09af\\u09cd\\u09af\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09be\\u09b0\\u09cd\\u09ae\\u09c7\\u09b0, \\u09ac\\u09be\\u09dc\\u09bf\\u09b0, \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09c7\\u09b0 \\u09ac\\u09be\\u09a4\\u09bf automitic \\u099c\\u09cd\\u09ac\\u09be\\u09b2\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"42fc8c1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09c7\\u099a \\u09aa\\u09be\\u09ae\\u09cd\\u09aa autometic \\u09ad\\u09be\\u09ac\\u09c7 \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"a7f60d5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ac\\u09be\\u09b8\\u09be \\u09ac\\u09be\\u09dc\\u09bf\\u09b0 \\u09b8\\u09be\\u09ac\\u09ae\\u09be\\u09b0\\u09b8\\u09bf\\u09ac\\u09b2 \\u09aa\\u09be\\u09ae\\u09cd\\u09aa Autometic \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b309150\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b0\\u09be\\u09b8\\u09cd\\u09a4\\u09be\\u09b0 \\u09ac\\u09be\\u09a4\\u09bf Autometic \\u099c\\u09cd\\u09ac\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09a8\\u09c7\\u09ad\\u09be\\u09a8\\u09cb\\u09b0 \\u0995\\u09be\\u099c\\u09c7 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"42e6be4\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Biofloc \\u098f\\u09b0 Air pump Autometic On\\/Off \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u0995\\u09b0\\u09c7 \\u0985\\u09a4\\u09bf\\u09b0\\u09bf\\u0995\\u09cd\\u09a4 Air pump \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8 \\u09b9\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b7a500e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u099b\\u09be\\u09a6 \\u09ac\\u09be\\u0997\\u09be\\u09a8\\u09c7 Autometic \\u09aa\\u09be\\u09a8\\u09bf \\u09a6\\u09c7\\u09ac\\u09be\\u09b0\\/\\u09b8\\u09c7\\u099a\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09aa\\u09be\\u09ae\\u09cd\\u09aa\\u09c7 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2390883\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b0\\u09ae\\u099c\\u09be\\u09a8 \\u09ae\\u09be\\u09b8\\u09c7 \\u09ae\\u09b8\\u099c\\u09bf\\u09a6\\u09c7 \\u099a\\u09c7\\u09b9\\u09c7\\u09b0\\u09bf\\u09b0 \\u09b8\\u09ae\\u09df Autometic \\u09b8\\u09be\\u0987\\u09b0\\u09c7\\u09a8\\/\\u0997\\u099c\\u09b2 \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb\\u09b0 \\u0995\\u09be\\u099c\\u09c7 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d0eeecc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09ae\\u09a4 Wifi Router On\\/Off \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"410eb2c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ab\\u09cd\\u09b0\\u09bf\\u099c\\/\\u09b0\\u09c7\\u09ab\\u09cd\\u09b0\\u09bf\\u099c\\u09be\\u09b0\\u09c7\\u099f\\u09b0 \\u09b8\\u09ac\\u09b8\\u09ae\\u09df \\u099a\\u09b2\\u09a4\\u09c7 \\u09a5\\u09be\\u0995\\u09b2\\u09c7 \\u098f\\u099f\\u09bf\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09a8\\u09bf\\u09b0\\u09cd\\u09a6\\u09bf\\u09b8\\u09cd\\u099f \\u09b8\\u09ae\\u09df\\u09c7 On\\/Off \\u0995\\u09b0\\u09c7 \\u09ab\\u09cd\\u09b0\\u09c0\\u099c \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09af\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ab\\u09bf\\u099c \\u09a8\\u09a4\\u09c1\\u09a8\\u09c7\\u09b0 \\u09ae\\u09a4 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7 \\u0993 \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09ce \\u09ac\\u09bf\\u09b2 \\u0995\\u09ae \\u0986\\u09b8\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"0bc04fb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09b0\\u09be\\u09b0\\u09be\\u09a4\\/\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09bf\\u09a8 \\/ \\u09ac\\u09c7\\u09b6\\u09c0 \\u09b8\\u09ae\\u09df \\u09a7\\u09b0\\u09c7 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u099a\\u09be\\u09b0\\u09cd\\u09af\\u09c7 \\u09b0\\u09be\\u0996\\u09b2\\u09c7 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09b8\\u09cd\\u099f \\u09ac\\u09be \\u09a6\\u09c1\\u09b0\\u09cd\\u0998\\u099f\\u09a8\\u09be \\u09b9\\u09ac\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ad\\u09be\\u09ac\\u09a8\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u099f\\u09bf\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09bf\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09df \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09c7 \\u099a\\u09be\\u09b0\\u09cd\\u09af \\u09a6\\u09c7\\u0993\\u09df\\u09be \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"a758695\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ac\\u09be\\u09b8\\u09be, \\u09ac\\u09be\\u09dc\\u09bf\\u09b0 \\u09ac\\u09be\\u09a4\\u09bf, \\u09ab\\u09cd\\u09af\\u09be\\u09a8 \\u0987\\u09a4\\u09cd\\u09af\\u09be\\u09a6\\u09bf On\\/Off \\u0995\\u09b0\\u09be\\u09b0 \\u0995\\u09be\\u099c\\u09c7 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"5fbc203\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u099a\\u09be\\u09b0\\u09cd\\u099c\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09bf\\u09a4 \\u09b8\\u0995\\u09b2 \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b0 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09a8\\u09bf\\u0995\\u09cd\\u09b8 \\u09ac\\u09be\\u0987\\u0995 \\u0985\\u099f\\u09cb\\u09b0\\u09bf\\u0995\\u09b6\\u09be \\u09ad\\u09cd\\u09af\\u09be\\u09a8 \\u09a8\\u09bf\\u09b0\\u09cd\\u09a6\\u09bf\\u09b7\\u09cd\\u099f \\u099f\\u09be\\u0987\\u09ae \\u0985\\u09a8\\u09c1\\u09af\\u09be\\u09af\\u09bc\\u09c0 \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"4236abe\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u0995\\u09c1\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u0995\\u09b0\\u09be\\u09b0 \\u0995\\u09cd\\u09b7\\u09c7\\u09a4\\u09cd\\u09b0\\u09c7 \\u098f\\u0987 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 \\u09ae\\u09c7\\u09b6\\u09bf\\u09a8 \\u0996\\u09c1\\u09ac\\u0987 \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099f\\u09be\\u0987\\u09ae \\u0985\\u09a8\\u09c1\\u09af\\u09be\\u09af\\u09bc\\u09c0 \\u09b8\\u09c1\\u0987\\u099a \\u0985\\u09a8 \\u0985\\u09ab \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c24069c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a5\\u09be\\u09ce \\u098f\\u09b0 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af\\u09c7 \\u09a6\\u09c8\\u09a8\\u09a8\\u09cd\\u09a6\\u09bf\\u09a8 \\u09ac\\u09b9\\u09c1\\u09b2 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09c3\\u09a4 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8\\u0997\\u09c1\\u09b2\\u09cb\\u0995\\u09c7 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09ae\\u09a4 \\u099f\\u09be\\u0987\\u09ae \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09c7 \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09af\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u0995\\u09cb\\u09a8 \\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8\\u0995\\u09c7 \\u09ac\\u09be\\u09b0 \\u09ac\\u09be\\u09b0 On\\/Off \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09df \\u09a8\\u09be\\u0964 \\u098f\\u099f\\u09bf\\u09a4\\u09c7 \\u098f\\u0995\\u09ac\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09b2\\u09c7\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09af\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\/\\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8\\u099f\\u09bf \\u09b8\\u09c7\\u0987 \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09be \\u09b8\\u09ae\\u09df \\u0985\\u09a8\\u09c1\\u09af\\u09be\\u09df\\u09c0 On\\/Off \\u09b9\\u09a4\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d04774e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"c99ec14\",\"settings\":{\"title\":\"*** \\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 ***\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"fe2be29\",\"settings\":{\"editor\":\"<p>\\u09e7\\u09ec \\u099f\\u09bf \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u099c\\u09a8\\u0995 \\u0986\\u09b2\\u09be\\u09a6\\u09be \\u09b8\\u09ae\\u09df\\u09c7 ON\\/OFF \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964 \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09ce \\u099a\\u09b2\\u09c7 \\u0997\\u09c7\\u09b2\\u09c7\\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b8\\u09c7\\u09ad \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u0995\\u09ac\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09b2\\u09c7 \\u09a4\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u09a8\\u09be \\u0995\\u09b0\\u09be \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u0985\\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09bf\\u09a4 \\u09a5\\u09be\\u0995\\u09c7\\u0964\\u09ae\\u09cd\\u09af\\u09be\\u09a8\\u09c1\\u09df\\u09be\\u09b2 \\u09ae\\u09c1\\u09a1\\u09c7 \\u0985\\u09a8 \\u09ac\\u09be \\u0985\\u09ab \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09a6\\u09bf\\u09a8\\u09c7 ON\\/OFF \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\u0987\\u09a8\\u09cd\\u09b8\\u099f\\u09b2 \\u0995\\u09b0\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09b9\\u099c, \\u09aa\\u09cd\\u09b2\\u09be\\u0997 \\u09b2\\u09be\\u0997\\u09be\\u09a8\\u09cb \\u0986\\u099b\\u09c7\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"bdbe029\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#2C3F60\",\"background_color\":\"#DAE7FF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#C50101\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"bf26112\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#DAE7FF\",\"shape_divider_top_color\":\"#DAE7FF\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_color\":\"#2C3F60\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a2ddde0\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"96cf82d\",\"settings\":{\"title\":\"\\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 \\u09b8\\u09c1\\u0987\\u099a (Digital Timer Switch) \\u098f\\u09b0 \\u09ac\\u09bf\\u09ac\\u09b0\\u09a3\\u09c0:\",\"align\":\"center\",\"title_color\":\"#2C3F60\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2337bc0\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":20,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#2C3F60\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"2973509\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"350999a\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"037fb6b\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae: \\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 \\u09b8\\u09c1\\u0987\\u099a (Digital Timer Switch)\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"f30cd49\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09a6\\u09c7\\u09b6: \\u099a\\u09be\\u09df\\u09a8\\u09be\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"6f6a8e7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ad\\u09cb\\u09b2\\u09cd\\u099f\\u09c7\\u099c: \\u09e8\\u09e8\\u09e6-\\u09e8\\u09ea\\u09e6 \\u09ad\\u09cb\\u09b2\\u09cd\\u099f\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"fc1b2ef\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b0\\u09c7\\u099f\\u09c7\\u09a1 \\u09aa\\u09be\\u0993\\u09df\\u09be\\u09b0: \\u09e8\\u09e9\\u09e6\\u09e6 \\u0993\\u09df\\u09be\\u099f\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"d65a7e3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ab\\u09cd\\u09b0\\u09bf\\u0995\\u09c1\\u09df\\u09c7\\u09a8\\u09cd\\u09b8\\u09bf : \\u09eb\\u09e6\\u09b9\\u09be\\u09b0\\u09cd\\u099c\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"b23f76a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09be\\u0987\\u099c: \\u09e7\\u09e6.\\u09ebx\\u09ecx\\u09ea cm\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"fa5713c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" \\u0993\\u099c\\u09a8: \\u09e7\\u09ea\\u09eb \\u0997\\u09cd\\u09b0\\u09be\\u09ae\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"0766c73\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09cd\\u09b2\\u09be\\u0997 \\u099f\\u09be\\u0987\\u09aa:\\u0987 \\u0987\\u0989 \\u09aa\\u09cd\\u09b2\\u09be\\u0997\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"8473b33\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ac\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09bf \\u09ac\\u09cd\\u09af\\u09be\\u0995\\u0986\\u09aa: \\u09e7\\u09e8 V \\u2013 \\u09ee\\u09e6mAH\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"3adcf8c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09ce \\u09b8\\u09be\\u09b6\\u09cd\\u09b0\\u09df\\u09c0\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"d2e9a4f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"LED Display \\u098f\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u0995\\u09a8\\u09cd\\u099f\\u09cd\\u09b0\\u09cb\\u09b2 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"e57ce6c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider_style\":\"dashed\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"icon_color\":\"#2C3F60\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_color\":\"#2C3F60\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"7310d0a\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28ce0c9\",\"settings\":{\"carousel\":[],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"image_stretch\":\"yes\",\"navigation\":\"none\",\"arrows_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"arrows_color\":\"#2C3F60\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"dots_inactive_color\":\"#2C3F60\",\"dots_color\":\"#F70505\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Image Carousel\",\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"de3e1d7\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#2C3F60\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#C50101\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"0f64fd5\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8, \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u0986\\u09aa\\u09a1\\u09c7\\u099f \\u09aa\\u09c7\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09c7\\u099c\\u099f\\u09bf \\u09ab\\u09b2\\u09cb \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#2C3F60\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"849415e\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"af62ba2\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"059a3ef\",\"settings\":{\"text\":\"\\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u099c\",\"align\":\"right\",\"size\":\"lg\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/arabelectronicgadgets\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#2C3F60\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#C50101\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"52b2199\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e15018a\",\"settings\":{\"text\":\"01819000000\",\"align\":\"left\",\"size\":\"lg\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#2C3F60\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#C50101\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#DAE7FF\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#2C3F60\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72090b7\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#2C3F60\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#2C3F60\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_bgcolor\":\"#DAE7FF\",\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"payment_section_bg_color\":\"#DAE7FF\",\"payment_info_bg_color\":\"#DAE7FF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F60\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4042','1905','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4043','1905','_oembed_047ec1a1e4732153f83b573bd07c0e6f','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4044','1905','_oembed_time_047ec1a1e4732153f83b573bd07c0e6f','1708497492');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4045','1905','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4046','1905','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4047','1905','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4048','1905','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4049','1905','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4050','1905','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4051','1905','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4052','1905','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4053','1905','wcf-enable-product-options','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4054','1905','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4055','1905','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4056','1905','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4057','1905','wcf-enable-product-quantity','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4058','1905','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4059','1905','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4060','1905','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4061','1905','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4062','1905','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4063','1905','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4064','1905','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4065','1905','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4066','1905','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4067','1905','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4068','1905','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4069','1905','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4070','1905','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4071','1905','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4072','1905','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4073','1905','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4074','1905','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4075','1905','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4076','1905','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4077','1905','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4078','1905','_oembed_94620249a73cc10a0679692ba61fad2b','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4079','1905','_oembed_time_94620249a73cc10a0679692ba61fad2b','1710927601');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4080','1905','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4081','1905','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4082','1905','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4083','1905','_oembed_2fac3d034e6f9294954c774b7ce8944b','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4084','1905','_oembed_time_2fac3d034e6f9294954c774b7ce8944b','1717965634');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4087','1906','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4088','1906','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4089','1906','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4090','1906','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4091','1906','_elementor_data','[{\"id\":\"a3e1d5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#E7F0E1\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_b\":\"#B0CF9C\",\"background_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"ae19893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"1303061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FC7F01\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3702568\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"d6913b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"cdbeb12\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09c1\\u09b0\\u09be\\u09a8 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 \\u0995\\u09c1\\u09dc\\u09ae\\u09c1\\u09dc\\u09c7 \\u09a8\\u09be\\u09b0\\u09bf\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be \\u0996\\u09be\\u09ac\\u09c7\\u09a8 \\u09a4\\u09cb \\u09ae\\u099c\\u09be \\u09aa\\u09be\\u09ac\\u09c7\\u09a8\",\"align_mobile\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0231586\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09a8\\u09be\\u09b0\\u09bf\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be, \\u0985\\u09a8\\u09c7\\u0995\\u09c7 \\u098f\\u099f\\u09be\\u0995\\u09c7 \\u09a8\\u09be\\u09b0\\u0995\\u09c7\\u09b2\\u09bf \\u09ac\\u09b2\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u09ae\\u09c1\\u0996\\u09cb\\u09b0\\u09cb\\u099a\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u098f\\u099f\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09df \\u098f\\u0995\\u099f\\u09bf \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2540cf3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8864e9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"92d0329\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":176,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/350X350-2-1-1.jpg\"},{\"id\":177,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/350X350-4-1-1.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"dots_position\":\"inside\",\"image_border_border\":\"groove\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"#FC7F01\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fceebe3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"dd61e80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68f924c\",\"elType\":\"section\",\"settings\":{\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f65597\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a06266b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":178,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3-1-300x300-1.jpg\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a562f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09c1\\u09dc\\u09ae\\u09c1\\u09dc\\u09c7 \\u09aa\\u09c1\\u09b0\\u09be\\u09a8 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 \\u09a8\\u09be\\u09b0\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be \\u2013 \\u09ea\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09eb\\u09e8\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#3DA300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc9b16c\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c57d802\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"zoomIn\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53bd132\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":179,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5-2-1-1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9fbee41\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09c1\\u09dc\\u09ae\\u09c1\\u09dc\\u09c7 \\u09aa\\u09c1\\u09b0\\u09be\\u09a8 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 \\u09a8\\u09be\\u09b0\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be \\u2013 \\u09ec\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09ec\\u09ed\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#3DA300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c44832c\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9b843fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8f4e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":179,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5-2-1-1.jpg\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e747d90\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09c1\\u09dc\\u09ae\\u09c1\\u09dc\\u09c7 \\u09aa\\u09c1\\u09b0\\u09be\\u09a8 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 \\u09a8\\u09be\\u09b0\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be \\u2013 \\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u09e7\\u09e6\\u09e8\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#3DA300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f8b209\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"da76ee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 \\u09ac\\u09be \\u0995\\u09b2 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#3DA300\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ba9e63\",\"elType\":\"widget\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Gotu\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c94202\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"76e0391\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#E9FFEB\"},\"elements\":[{\"id\":\"6bff2d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#B0CF9C\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc5ac54\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ad\\u09c7\\u099c\\u09be\\u09b2\\u09c7\\u09b0 \\u098f\\u0987 \\u09b8\\u09ae\\u09af\\u09bc \\u09b0\\u09cd\\u09a8\\u09bf\\u09ad\\u09c7\\u099c\\u09be\\u09b2 \\u098f\\u0995\\u099f\\u09bf \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"9e8f154\"},{\"text\":\"\\u099b\\u09cb\\u099f \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09a1\\u09bc \\u09b8\\u09ac\\u09be\\u0987 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09ac\\u09b0\\u09c7\\u09a8\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"5749317\"},{\"text\":\"\\u09ae\\u09a8 \\u09ad\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09af\\u09bc,\\u0995\\u09be\\u09b0\\u09a3 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf \\u0995\\u09ae \\u09a6\\u09c7\\u09df\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"cc51c74\"},{\"text\":\"\\u09ac\\u09bf\\u0995\\u09c7\\u09b2\\u09c7\\u09b0 \\u09a8\\u09be\\u09b8\\u09cd\\u09a4\\u09be \\u09ac\\u09be \\u09ae\\u09c7\\u09b9\\u09ae\\u09be\\u09a8\\u09a6\\u09be\\u09b0\\u09c0\\u09a4\\u09c7 \\u0985\\u09a4\\u09c1\\u09b2\\u09a8\\u09c0\\u09af\\u09bc \\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"65d0bfa\"},{\"text\":\"\\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09bf\\u09af\\u09bc\\u099c\\u09a8\\u0995\\u09c7 \\u0989\\u09aa\\u09b9\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"8eafe76\"},{\"text\":\"\\u098f\\u0987 \\u09a8\\u09be\\u09b0\\u09bf\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u09ac\\u09c7 \\u09b8\\u09c7\\u0987 \\u099b\\u09cb\\u099f\\u09cd\\u099f\\u09ac\\u09c7\\u09b2\\u09be\\u09b0 \\u09b8\\u09cd\\u09ae\\u09c3\\u09a4\\u09bf\\u09b0 \\u099c\\u0997\\u09a4\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"139a89b\"},{\"text\":\"\\u0995\\u09c1\\u09a1\\u09bc\\u09ae\\u09c1\\u09a1\\u09bc\\u09c7 \\u0993 \\u09ae\\u099a\\u09ae\\u099a\\u09c7 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"8bde54e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#3DA300\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#3DA300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"860d03e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8991467\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e6a814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e6d7c96\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09af\\u09be \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df?\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#B0CF9C\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b988c9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0995\\u09cb\\u09a8 \\u09b0\\u0995\\u09ae \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u099b\\u09be\\u09a1\\u09bc\\u09be \\u0998\\u09b0\\u09cb\\u09df\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09b8\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2d5ffa7\"},{\"text\":\"\\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u0985\\u099e\\u09cd\\u099a\\u09b2 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4  \\u09a8\\u09be\\u09b0\\u09bf\\u0995\\u09c7\\u09b2 \\u09a6\\u09cd\\u09ac\\u09be\\u09b0\\u09be \\u0993 \\u099a\\u09bf\\u09a8\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"fccdefe\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#3DA300\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#3DA300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"space_between_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e37b26c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"38c4690\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e5f74ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09ae\\u09cd\\u09ae\\u09be\\u09a8\\u09bf\\u09a4 \\u0997\\u09cd\\u09b0\\u09be\\u09b9\\u0995\\u09a6\\u09c7\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#B0CF9C\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6561139\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"dots_position\":\"inside\",\"image_spacing\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"image_border_color\":\"#3DA300\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"8e8c69c\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a79d0ad\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e5f67bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3DA300\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ca60d18\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8-\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#B0CF9C\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51c2dc4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09a8\\u09bf\\u09b0\\u09cd\\u09a7\\u09be\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"700\",\"btn_background_color_background\":\"gradient\",\"btn_background_color_color\":\"#E7F0E1\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#000000\",\"btn_background_color_color_b\":\"#B0CF9C\",\"btn_background_color_gradient_type\":\"radial\",\"_element_id\":\"order\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_weight\":\"700\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_weight\":\"500\",\"heading_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"efd863b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7972e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9fe03ad\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4092','1906','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4093','1906','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4094','1906','_elementor_controls_usage','a:8:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:4;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:10;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:10;s:21:\"typography_typography\";i:10;s:22:\"typography_font_family\";i:10;s:20:\"typography_font_size\";i:10;s:22:\"typography_font_weight\";i:10;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:6;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:7;s:8:\"_padding\";i:8;}s:19:\"_section_background\";a:6:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;s:28:\"_background_hover_background\";i:4;s:19:\"_background_color_b\";i:4;s:25:\"_background_gradient_type\";i:4;s:26:\"_background_gradient_angle\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:7;s:4:\"link\";i:7;s:4:\"size\";i:7;s:13:\"selected_icon\";i:7;s:11:\"icon_indent\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:12:\"align_mobile\";i:7;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_font_weight\";i:7;s:16:\"background_color\";i:7;s:15:\"hover_animation\";i:6;s:12:\"border_width\";i:6;s:12:\"border_color\";i:6;s:13:\"border_radius\";i:7;s:5:\"align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:12;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:7:\"padding\";i:4;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:4;s:12:\"border_width\";i:4;s:12:\"border_color\";i:4;}s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:4:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:2;s:14:\"slides_to_show\";i:2;s:10:\"navigation\";i:1;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:1:{s:13:\"dots_position\";i:2;}s:19:\"section_style_image\";a:5:{s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:2;s:18:\"image_border_color\";i:2;s:13:\"image_spacing\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:8;s:18:\"gap_columns_custom\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:6;s:6:\"margin\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4095','1907','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4096','1907','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4097','1907','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4098','1907','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4099','1907','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4100','1907','_elementor_data','[{\"id\":\"76f9e6c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#171515\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20aa424\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_mobile\":\"center\",\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d69f9d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":239,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInDown\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7aefab1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Classy Trimmer combo T0 786\",\"align\":\"left\",\"title_color\":\"#FDDF31\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38d4872\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099a\\u09c1\\u09b2 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09a6\\u09be\\u09a1\\u09bc\\u09bf \\u0995\\u09be\\u099f\\u09be\\u09b0 \\u09b8\\u09b9\\u099c \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u098f\\u0987 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0 \\u099f\\u09bf , \\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09e7 \\u09ac\\u099b\\u09b0\\u09c7\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u09b0\\u09c7\\u09a8\\u09cd\\u099f\\u09bf\\u0964 \\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09b8\\u09be\\u0987\\u099c\\u09c7 \\u099a\\u09c1\\u09b2 \\u0993 \\u09a6\\u09be\\u09a1\\u09bc\\u09bf \\u0995\\u09be\\u099f\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u09a4\\u09c7\\u0981 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u0986\\u099b\\u09c7 \\u09ea \\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09aa ,\\u09af\\u09be\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 0.8 mm \\u09a5\\u09c7\\u0995\\u09c7 12mm \\u0995\\u09be\\u099f\\u09be \\u09af\\u09be\\u09ac\\u09c7 \\u0964\\u09b6\\u09c1\\u09a7\\u09c1 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0\\u0987 \\u09a8\\u09af\\u09bc \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7 \\u0986\\u09b0\\u0993 \\u09ae\\u09cb\\u099f \\u09ef \\u099f\\u09bf \\u0986\\u0987\\u099f\\u09c7\\u09ae (\\u09ea \\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09aa , \\u099a\\u09bf\\u09b0\\u09c1\\u09a8\\u09bf , \\u099a\\u09be\\u09b0\\u09cd\\u099c\\u09be\\u09b0 , \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09bf\\u0982 \\u09ac\\u09cd\\u09b0\\u09be\\u09b6 , \\u0985\\u09df\\u09c7\\u09b2 , \\u09ab\\u09cb\\u09ae )<\\/p>\",\"align\":\"left\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"-16\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fe423d7\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#000000\",\"background_color\":\"#FDDF31\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8d65409\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"none\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5d25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":951,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/philips-bt3302-15-beard-trimmer-for-men.webp\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ce68eea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6577dcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdc7a2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":952,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/f217d2eb2c91417d80ffae77013d622c.webp\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"zoomIn\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ea03a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099a\\u09c1\\u09b2 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09a6\\u09be\\u09a1\\u09bc\\u09bf \\u0995\\u09be\\u099f\\u09be\\u09b0 \\u09b8\\u09b9\\u099c \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u098f\\u0987 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0 \\u099f\\u09bf , \\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09e7 \\u09ac\\u099b\\u09b0\\u09c7\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u09b0\\u09c7\\u09a8\\u09cd\\u099f\\u09bf \\u0964\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09b8\\u09be\\u0987\\u099c\\u09c7 \\u099a\\u09c1\\u09b2 \\u0993 \\u09a6\\u09be\\u09a1\\u09bc\\u09bf \\u0995\\u09be\\u099f\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u09a4\\u09c7\\u0981 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u0986\\u099b\\u09c7 \\u09ea \\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09aa ,\\u09af\\u09be\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 0.8 mm \\u09a5\\u09c7\\u0995\\u09c7 12mm \\u0995\\u09be\\u099f\\u09be \\u09af\\u09be\\u09ac\\u09c7 \\u0964\\u09b6\\u09c1\\u09a7\\u09c1 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0\\u0987 \\u09a8\\u09af\\u09bc \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7 \\u0986\\u09b0\\u0993 \\u09ae\\u09cb\\u099f \\u09ef \\u099f\\u09bf \\u0986\\u0987\\u099f\\u09c7\\u09ae (\\u09ea \\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09aa , \\u099a\\u09bf\\u09b0\\u09c1\\u09a8\\u09bf , \\u099a\\u09be\\u09b0\\u09cd\\u099c\\u09be\\u09b0 , \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09bf\\u0982 \\u09ac\\u09cd\\u09b0\\u09be\\u09b6 , \\u0985\\u09df\\u09c7\\u09b2 , \\u09ab\\u09cb\\u09ae )<\\/p>\",\"align\":\"center\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f682e3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#000000\",\"background_color\":\"#FDDF31\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ad4f1c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F6F6F6\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0c2ca14\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c83d43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15d7126\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de31123\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":953,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Adapter-and-battery-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f62afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4353316\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e8 \\u0998\\u09a8\\u09cd\\u099f\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09bf \\u09ac\\u09cd\\u09af\\u09be\\u0995\\u0986\\u09aa\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0df634c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u098f\\u0995 \\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09df\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u099f\\u09be\\u09a8\\u09be \\u09e8\\u0998\\u09a8\\u09cd\\u099f\\u09be\\u0964 \\u098f\\u0987 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0\\u099f\\u09bf\\u09a4\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u09ac\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09c0\\u0964 \\u098f\\u099f\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09c7\\u09b8\\u09cd\\u099f \\u099a\\u09df\\u09c7\\u099c \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0\\u0964<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ad531a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#000000\",\"background_color\":\"#FDDF31\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e114d0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08d12ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"css_classes\":\"feature-box1\"},\"elements\":[{\"id\":\"202f799\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09bf\\u09b0\\u09be\\u09ae\\u09bf\\u0995 \\u09ac\\u09cd\\u09b2\\u09c7\\u09a1\",\"align\":\"left\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eaf06f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09b8\\u09bf\\u09b0\\u09be\\u09ae\\u09bf\\u0995 \\u09ac\\u09cd\\u09b2\\u09c7\\u09a1 \\u098f\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 \\u098f\\u0987 \\u09b2\\u09c7\\u0996\\u09be \\u099f\\u09be \\u09b9\\u09ac\\u09c7 \\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u098f\\u09b8\\u09c7\\u099b\\u09bf \\u09b8\\u09bf\\u09b0\\u09be\\u09ae\\u09bf\\u0995 \\u09ac\\u09cd\\u09b2\\u09c7\\u09a1 , \\u098f\\u09b0 \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7\\u09a4\\u09cd\\u09ac \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u098f\\u099f\\u09bf \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0995\\u09cb\\u09a8\\u09cb \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u0995\\u09b0\\u09c7 \\u09a8\\u09be \\u0993 \\u09b8\\u09cd\\u099f\\u09bf\\u09b2 \\u098f\\u09b0 \\u09ac\\u09cd\\u09b2\\u09c7\\u09a1 \\u098f\\u09b0 \\u09ae\\u09a4 \\u0995\\u09c7\\u099f\\u09c7 \\u09af\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u0995\\u09cb\\u09a8\\u09cb \\u09b8\\u09ae\\u09cd\\u09ad\\u09be\\u09ac\\u09a8\\u09be \\u09a8\\u09c7\\u0987 \\u0964<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"35ac31f\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#000000\",\"background_color\":\"#FDDF31\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"00252db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"css_classes\":\"feature-box2\",\"custom_css\":\"@media (max-width: 767px) {\\r\\n            .feature-box2 {\\r\\n                order: 1;\\r\\n            }\\r\\n            .feature-box1 {\\r\\n                order: 2;\\r\\n            }\\r\\n        }\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52571cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":954,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/4.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3446f1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#FAE05D\",\"background_color_b\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"f2d3ea5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b52eb34\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ac9e23\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"dots_position\":\"inside\",\"image_spacing\":\"custom\",\"image_border_border\":\"solid\",\"image_border_color\":\"#FDDF31\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"none\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"carousel\":[{\"id\":955,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/433898718_288137447637810_2435037710483055314_n-1.jpg\"},{\"id\":956,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/433234049_288137364304485_6792386511423881034_n-1.jpg\"},{\"id\":957,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/433059906_288137397637815_8185707815567624270_n-1.jpg\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d48cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6857948\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9add7b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FDDF31\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c7ea7a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#000000\",\"background_color\":\"#FDDF31\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5a97100\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"flip\",\"marker\":\"curly\",\"before_text\":\"\\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09e7\\u09e6\\u09ef\\u09ef \\/=\",\"rotating_text\":\"\\u09e7\\u09e6\\u09ef\\u09ef \\/=\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\",\"title_color\":\"#FDDF31\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_weight\":\"700\",\"words_color\":\"#F70000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"rotate_iteration_delay\":0.1,\"ha_advanced_tooltip_content\":\"I am a tooltip\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be570b3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order-form\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\"},\"elements\":[{\"id\":\"4bea656d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#FDDF31\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"37676298\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#3C494E\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a03de62\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#FDDF31\",\"button_text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62ac697\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1d12cb75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6b037eab\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4101','1907','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4102','1907','_elementor_controls_usage','a:8:{s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:5;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"align\";i:1;s:5:\"width\";i:5;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:6;s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:5;s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:5;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:5;s:4:\"size\";i:5;s:4:\"link\";i:5;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:5;s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:17:\"button_text_color\";i:5;s:16:\"background_color\";i:5;s:12:\"align_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:12;s:16:\"content_position\";i:2;s:21:\"space_between_widgets\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:7;s:7:\"padding\";i:8;s:11:\"css_classes\";i:2;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}s:14:\"section_layout\";a:4:{s:13:\"content_width\";i:3;s:16:\"content_position\";i:1;s:3:\"gap\";i:7;s:6:\"layout\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:5;s:18:\"background_color_b\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:8;s:6:\"margin\";i:6;s:11:\"_element_id\";i:1;s:11:\"css_classes\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;s:8:\"carousel\";i:1;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:1:{s:13:\"dots_position\";i:1;}s:19:\"section_style_image\";a:4:{s:13:\"image_spacing\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:14:\"_border_radius\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:8:{s:14:\"headline_style\";i:1;s:14:\"animation_type\";i:1;s:6:\"marker\";i:1;s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:13:\"rotating_text\";i:1;s:10:\"after_text\";i:1;s:22:\"rotate_iteration_delay\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_text\";a:8:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:28:\"title_typography_font_weight\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4103','1908','wcf-flow-id','1887');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4104','1908','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4105','1908','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4106','1908','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4107','1908','wcf-dynamic-css-version','1710879359');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4108','1908','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4109','1908','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4110','1908','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4111','1908','_elementor_version','3.20.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4112','1908','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4113','1908','_edit_lock','1711460329:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4114','1908','_elementor_data','[{\"id\":\"5f7c6d8b\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ccc6423\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5210b9ef\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"2665f596\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4ae5d638\",\"settings\":{\"editor\":\"<p>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0996\\u09c1\\u09ac \\u09b6\\u09c0\\u0998\\u09cd\\u09b0\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"4329f458\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FCFCFC\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6011d6a3\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":6,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"space_between_widgets\":0,\"box_shadow_box_shadow_type\":\"yes\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"082a880\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"78abbecf\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42f4fb6d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7baa8c54\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0997\\u09cd\\u09b0\\u09c1\\u09aa\\u09c7 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09b2\\u09c7\\u0987 \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=5c74819\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"113973a0\",\"settings\":{\"editor\":\"<p>\\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u0986\\u09aa\\u09a1\\u09c7\\u099f \\u09aa\\u09c7\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u0987\\u099c \\u0993 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u0997\\u09cd\\u09b0\\u09c1\\u09aa\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"3867aeae\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7afbdf3b\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c928252\",\"settings\":{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u099c\",\"align\":\"right\",\"align_mobile\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"background_color\":\"#0866FF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"500\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"f55b51a\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c7c28c8\",\"settings\":{\"text\":\"\\u098f\\u0996\\u09a8\\u0987 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u0997\\u09c1\\u09aa\\u09c7 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8\",\"align\":\"left\",\"align_mobile\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"500\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"794a9f7\",\"settings\":{\"text\":\"\\u0986\\u09b0\\u09cb \\u0985\\u09a8\\u09c7\\u0995 \\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09a6\\u09c7\\u0996\\u09a4\\u09c7 \\u09ad\\u09bf\\u099c\\u09bf\\u099f \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"500\",\"background_color\":\"#007AB5\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"117dd1f9\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c5bc625\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47082383\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\" style=\\\"color:red\\\">DPW<\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4115','1908','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4116','1908','_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4118','1909','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4119','1909','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4120','1909','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4121','1909','_elementor_version','3.20.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4122','1909','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4123','1909','_elementor_data','[{\"id\":\"5f7c6d8b\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ccc6423\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5210b9ef\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"2665f596\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4ae5d638\",\"settings\":{\"editor\":\"<p>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0996\\u09c1\\u09ac \\u09b6\\u09c0\\u0998\\u09cd\\u09b0\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"4329f458\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FCFCFC\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6011d6a3\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":6,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"space_between_widgets\":0,\"box_shadow_box_shadow_type\":\"yes\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"082a880\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"78abbecf\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42f4fb6d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7baa8c54\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0997\\u09cd\\u09b0\\u09c1\\u09aa\\u09c7 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09b2\\u09c7\\u0987 \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=5c74819\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"113973a0\",\"settings\":{\"editor\":\"<p>\\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u0986\\u09aa\\u09a1\\u09c7\\u099f \\u09aa\\u09c7\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u0987\\u099c \\u0993 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u0997\\u09cd\\u09b0\\u09c1\\u09aa\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"3867aeae\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7afbdf3b\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c928252\",\"settings\":{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u099c\",\"align\":\"right\",\"align_mobile\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"background_color\":\"#0866FF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"500\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"f55b51a\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c7c28c8\",\"settings\":{\"text\":\"\\u098f\\u0996\\u09a8\\u0987 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u0997\\u09c1\\u09aa\\u09c7 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8\",\"align\":\"left\",\"align_mobile\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"500\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"794a9f7\",\"settings\":{\"text\":\"\\u0986\\u09b0\\u09cb \\u0985\\u09a8\\u09c7\\u0995 \\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09a6\\u09c7\\u0996\\u09a4\\u09c7 \\u09ad\\u09bf\\u099c\\u09bf\\u099f \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"500\",\"background_color\":\"#007AB5\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"117dd1f9\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c5bc625\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47082383\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\" style=\\\"color:red\\\">DPW<\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4124','1909','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4125','1909','_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4126','1909','_elementor_controls_usage','a:6:{s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:2;s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:2;s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:21:\"space_between_widgets\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:16:\"background_color\";i:1;s:21:\"background_background\";i:1;}s:14:\"section_border\";a:3:{s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_radius\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:13:\"content_width\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:3;s:4:\"size\";i:3;s:13:\"selected_icon\";i:2;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:3;s:12:\"align_mobile\";i:3;s:16:\"background_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:22:\"typography_font_weight\";i:3;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4127','1911','wcf-flow-id','1910');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4128','1911','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4129','1911','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4130','1911','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4131','1911','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4132','1911','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4133','1911','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4134','1911','_edit_lock','1707332611:2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4136','1910','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1911;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1913;s:5:\"title\";s:15:\"Shirts Checkout\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1915;s:5:\"title\";s:16:\"Thanks For Order\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4137','1912','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4138','1912','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4139','1912','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4140','1912','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4141','1912','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4143','1913','wcf-flow-id','1910');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4144','1913','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4145','1913','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4146','1913','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4147','1913','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4148','1913','_elementor_version','3.20.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4149','1913','_edit_lock','1717965801:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4150','1913','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4151','1913','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4152','1913','_elementor_page_settings','a:2:{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:1:\"0\";s:8:\"isLinked\";b:0;}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4153','1913','_elementor_data','[{\"id\":\"3e3521fd\",\"settings\":{\"content_position\":\"middle\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"background_overlay_background\":\"classic\",\"shape_divider_bottom_negative\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"18542059\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1097cf9\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":77,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#DFDFDF\",\"align_mobile\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"934466c\",\"settings\":{\"title\":\"\\u0995\\u09c7\\u099c\\u09c1\\u09af\\u09bc\\u09be\\u09b2 \\u0986\\u0989\\u099f\\u09ab\\u09bf\\u099f \\u0985\\u09ab\\u09bf\\u09b8 \\u0985\\u09a5\\u09ac\\u09be \\u09b8\\u09ac \\u09b0\\u0995\\u09ae \\u09aa\\u09cd\\u09b0\\u09cb\\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a5\\u09ac\\u09be \\u0995\\u09b2\\u09c7\\u099c \\u0987\\u0989\\u09a8\\u09bf\\u09ad\\u09be\\u09b0\\u09cd\\u09b8\\u09bf\\u099f\\u09bf \\u09b8\\u09ac \\u09b8\\u09ae\\u09af\\u09bc\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ac\\u09c7\\u09b8\\u09cd\\u099f \\u09ac\\u09c7\\u09b7\\u09cd\\u099f \\u0995\\u09c7\\u099c\\u09c1\\u09df\\u09be\\u09b2 \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u0995\\u09be\\u09b2\\u09c7\\u0995\\u09b6\\u09a8  \\u099c\\u0997\\u09be\\u09b0 \\u0986\\u0989\\u099f\\u09ab\\u09bf\\u099f\\u0964 \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"67b70afd\",\"settings\":{\"title\":\"<del>\\u0986\\u0997\\u09c7\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\u0983 \\u09e7\\u09ea\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/del>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"size\":\"medium\",\"_element_width\":\"inherit\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FF0000C7\",\"_margin\":{\"unit\":\"px\",\"top\":\"-34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"3e66fa8\",\"settings\":{\"before_text\":\"\\u0995\\u09c7\\u099c\\u09c1\\u09af\\u09bc\\u09be\\u09b2 \\u0986\\u0989\\u099f\\u09ab\\u09bf\\u099f \\u0985\\u09ab\\u09bf\\u09b8 \\u0985\\u09a5\\u09ac\\u09be \\u09b8\\u09ac \\u09b0\\u0995\\u09ae \\u09aa\\u09cd\\u09b0\\u09cb\\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a5\\u09ac\\u09be \\u0995\\u09b2\\u09c7\\u099c \\u0987\\u0989\\u09a8\\u09bf\\u09ad\\u09be\\u09b0\\u09cd\\u09b8\\u09bf\\u099f\\u09bf \\u09b8\\u09ac \\u09b8\\u09ae\\u09af\\u09bc\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ac\\u09c7\\u09b8\\u09cd\\u099f \\u0995\\u09ae\\u09cd\\u09ac   \\u0985\\u09ab\\u09be\\u09b0 \",\"highlighted_text\":\"\\u0995\\u09c7\\u099c\\u09c1\\u09df\\u09be\\u09b2 \\u09b6\\u09be\\u09b0\\u09cd\\u099f\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#FF0000\",\"stroke_width\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"above_content\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#FF0000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"__globals__\":{\"title_color\":\"\",\"marker_color\":\"\"},\"__should_import\":true,\"after_text\":\" \\u0995\\u09be\\u09b2\\u09c7\\u0995\\u09b6\\u09a8\",\"title_color\":\"#000000\",\"alignment_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3d643b2c\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"371d77a1\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7397d20c\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"hover_animation\":\"push\",\"button_text_color\":\"#FFFFFF\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"align_mobile\":\"center\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"458cc082\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/Oj33V0ZpUkA\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_border_border\":\"double\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"external_url\":{\"url\":\"https:\\/\\/youtu.be\\/6iV-tO2Z-w8?si=Hk7dBKhB9PBqA4Zy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"image_overlay\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"4d84e576\",\"settings\":{\"editor\":\"<p>\\u09a6\\u09be\\u09ae\\u09c7 \\u09a8\\u09df, \\u0986\\u09ae\\u09b0\\u09be \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09be\\u09b8 \\u0995\\u09b0\\u09bf \\u0997\\u09c1\\u09a8\\u09c7, \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09be\\u09b8 \\u0995\\u09b0\\u09bf \\u09ae\\u09be\\u09a8\\u09c7\\u0964<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"2a77e8dd\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"hover_animation\":\"push\",\"button_text_color\":\"#FFFFFF\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"d19b27e\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e35d36c\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6280541\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"c232ea6\",\"settings\":{\"title\":\"\\u0995\\u09ae\\u09cd\\u09ac \\u09e7 - \\u09e8\\u09e9\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u200b\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#E7DEBE\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"37cf4e8\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2442ed4\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"5ab88a9\",\"settings\":{\"title\":\"\\u0995\\u09ae\\u09cd\\u09ac \\u09e8 - \\u09e8\\u09e8\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u200b\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#A2AD7D\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"2d70c32\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"01612b2\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3398d23\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7d76ea9\",\"settings\":{\"title\":\"Full Sleeve M1\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#E7DEBE\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"6d8dd64\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"736962c\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"d2f8739\",\"settings\":{\"title\":\"Full Sleeve M2\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#1b1917\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"d47e078\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bc07899\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dc3bfb6\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"837d4fc\",\"settings\":{\"title\":\"Full Sleeve M3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#01146D\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"bdd035c\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68ba1ea\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"8268a6a\",\"settings\":{\"title\":\"Hawaiian Shirt M4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#BC7D36\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"4ad0b00\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b6dd515\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bad1f48\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"873fef1\",\"settings\":{\"title\":\"Hawaiian Shirt M5\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#606C38\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"a100a0e\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16c824b\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"032fa76\",\"settings\":{\"title\":\"\\u098f\\u09ae\\u09ac\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u09b0\\u09bf \\u09b8\\u09be\\u09a6\\u09be \\u099f\\u09bf-\\u09b6\\u09be\\u09b0\\u09cd\\u099f\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#020202\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"65af7fe7\",\"settings\":{\"flex_gap\":{\"size\":0,\"column\":\"0\",\"row\":\"0\",\"unit\":\"px\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e9a22a\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d5d5000\",\"settings\":{\"editor\":\"<p>\\u09a8\\u09cb\\u099f\\u0983 \\u0986\\u09b2\\u09be\\u09a6\\u09be \\u0986\\u09b2\\u09be\\u09a6\\u09be \\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8 \\u098f\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09cb\\u09b6\\u09be\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0995\\u09bf\\u099b\\u09c1\\u099f\\u09be \\u09a4\\u09be\\u09b0\\u09a4\\u09ae\\u09cd\\u09af \\u09a6\\u09c7\\u0996\\u09be \\u09af\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD\",\"custom_css\":\".tsize table {\\r\\n  \\r\\n  border-collapse: collapse;\\r\\n  width: 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n}\\r\\n\\r\\n.tsize th {\\r\\n    padding: 15px 0 !important;\\r\\n    text-align: center !important;\\r\\n}\\r\\n\\r\\n.tsize td, .tsize th {\\r\\n  border: 1px solid #dddddd !important;\\r\\n  text-align: left;\\r\\n  padding: 8px;\\r\\n}\\r\\n\\r\\n.tsize tr:nth-child(odd) {\\r\\n  background-color: #f1f1f1;\\r\\n}\",\"_css_classes\":\"tsize\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"14b4c56\",\"settings\":{\"flex_direction\":\"column\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ff2dfa\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"hover_animation\":\"push\",\"button_text_color\":\"#FFFFFF\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"41fcf068\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"flex_gap\":{\"size\":0,\"column\":\"0\",\"row\":\"0\",\"unit\":\"px\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b350c2a\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_width\":\"full\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"-110\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9c2d10f\",\"settings\":{\"title\":\"Full Sleeve \\u09b8\\u09be\\u0987\\u099c \\u0997\\u09be\\u0987\\u09a1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7bb1bcae\",\"settings\":{\"style\":\"double\",\"width\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"icon\":{\"value\":\"\",\"library\":\"\"},\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"55017e3\",\"settings\":{\"editor\":\"<table><tbody><tr><th>SIZE (\\u09b8\\u09be\\u0987\\u099c)<\\/th><th>CHEST (\\u09ac\\u09c1\\u0995\\u09c7\\u09b0 \\u09ae\\u09be\\u09aa)<\\/th><th>LEANGTH (\\u09b2\\u09c7\\u09a8\\u09cd\\u09a5)<\\/th><\\/tr><tr><td>M<\\/td><td>42\\\"<\\/td><td>28\\\"<\\/td><\\/tr><tr><td>L<\\/td><td>44\\\"<\\/td><td>29\\\"<\\/td><\\/tr><tr><td>XL<\\/td><td>46\\\"<\\/td><td>30\\\"<\\/td><\\/tr><tr><td>XXL<\\/td><td>48\\\"<\\/td><td>41\\\"<\\/td><\\/tr><\\/tbody><\\/table>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD\",\"custom_css\":\".tsize table {\\r\\n  \\r\\n  border-collapse: collapse;\\r\\n  width: 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n}\\r\\n\\r\\n.tsize th {\\r\\n    padding: 15px 0 !important;\\r\\n    text-align: center !important;\\r\\n}\\r\\n\\r\\n.tsize td, .tsize th {\\r\\n  border: 1px solid #dddddd !important;\\r\\n  text-align: left;\\r\\n  padding: 8px;\\r\\n}\\r\\n\\r\\n.tsize tr:nth-child(odd) {\\r\\n  background-color: #f1f1f1;\\r\\n}\",\"_css_classes\":\"tsize\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"cab04f6\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"flex_gap\":{\"size\":0,\"column\":\"0\",\"row\":\"0\",\"unit\":\"px\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c8d075d\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_width\":\"full\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"-110\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"558d1ca\",\"settings\":{\"title\":\"Hawaiian \\u09b8\\u09be\\u0987\\u099c \\u0997\\u09be\\u0987\\u09a1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"ee3a0ae\",\"settings\":{\"style\":\"double\",\"width\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"icon\":{\"value\":\"\",\"library\":\"\"},\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"fb1c6a8\",\"settings\":{\"editor\":\"<table><tbody><tr><th>SIZE (\\u09b8\\u09be\\u0987\\u099c)<\\/th><th>CHEST (\\u09ac\\u09c1\\u0995\\u09c7\\u09b0 \\u09ae\\u09be\\u09aa)<\\/th><th>LEANGTH (\\u09b2\\u09c7\\u09a8\\u09cd\\u09a5)<\\/th><\\/tr><tr><td>M<\\/td><td>42\\\"<\\/td><td>27\\\"<\\/td><\\/tr><tr><td>L<\\/td><td>44\\\"<\\/td><td>28\\\"<\\/td><\\/tr><tr><td>XL<\\/td><td>46\\\"<\\/td><td>29\\\"<\\/td><\\/tr><tr><td>XXL<\\/td><td>48\\\"<\\/td><td>30\\\"<\\/td><\\/tr><\\/tbody><\\/table>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD\",\"custom_css\":\".tsize table {\\r\\n  \\r\\n  border-collapse: collapse;\\r\\n  width: 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n}\\r\\n\\r\\n.tsize th {\\r\\n    padding: 15px 0 !important;\\r\\n    text-align: center !important;\\r\\n}\\r\\n\\r\\n.tsize td, .tsize th {\\r\\n  border: 1px solid #dddddd !important;\\r\\n  text-align: left;\\r\\n  padding: 8px;\\r\\n}\\r\\n\\r\\n.tsize tr:nth-child(odd) {\\r\\n  background-color: #f1f1f1;\\r\\n}\",\"_css_classes\":\"tsize\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"2ae7e3ad\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ddc4ac2\",\"settings\":{\"before_text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u0995\\u09cd\\u09b0\\u09df \\u0995\\u09b0\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u0995\\u09bf \\u0995\\u09bf \",\"highlighted_text\":\"\\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#FF0000\",\"stroke_width\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"above_content\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#FF0000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"__globals__\":{\"title_color\":\"\",\"marker_color\":\"\"},\"__should_import\":true,\"after_text\":\"\\u0997\\u09c1\\u09b2\\u09cb \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u098f\\u0996\\u09a8\\u0987 \\u099c\\u09c7\\u09a8\\u09c7 \\u09a8\\u09bf\\u09a8!!\",\"title_color\":\"#000000\",\"hide_desktop\":\"hidden-desktop\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"4877b3c0\",\"settings\":{\"style\":\"double\",\"width\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"icon\":{\"value\":\"\",\"library\":\"\"},\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"257d304e\",\"settings\":{\"icon_list\":[{\"text\":\" \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b248c1e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0995\\u09c7\\u09b6 \\u0985\\u09a8 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"8840db7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09a3\\u09cd\\u09af \\u09b0\\u09bf\\u09b8\\u09bf\\u09ad \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u09a6\\u09c7\\u0996\\u09c7 \\u09a8\\u09c7\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09c1\\u09af\\u09cb\\u0997\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"6c965f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09be\\u0987\\u099c \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09b9\\u09b2\\u09c7 \\u09ed\\u09e8 \\u0998\\u09a3\\u09cd\\u099f\\u09be\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8\\u09c7\\u09b0 \\u09b8\\u09c1\\u09af\\u09cb\\u0997\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"50bb3f3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09e8\\u09ea \\u0998\\u09a3\\u09cd\\u099f\\u09be \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09cb\\u09ae\\u09be\\u09b0 \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b8\\u09be\\u09aa\\u09cb\\u09b0\\u09cd\\u099f\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"60c42ff\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09a3\\u09cd\\u09af \\u09ad\\u09be\\u09b2\\u09cb \\u09a8\\u09be \\u09b2\\u09be\\u0997\\u09b2\\u09c7 \\u09b0\\u09bf\\u09b0\\u09cd\\u099f\\u09be\\u09a8 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d04ec35\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"icon_color\":\"#000000\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"3732e2bd\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2518100a\",\"settings\":{\"title\":\"\\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\"},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"42e99475\",\"settings\":{\"carousel\":[],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"image_spacing\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"dcb727d\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"boxed_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f215e7\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09be \\u099c\\u0997\\u09be\\u09b0 \\u098f\\u09b0 \\u0995\\u09be\\u09aa\\u09dc \\u0987\\u09ae\\u09aa\\u09cb\\u09b0\\u09cd\\u099f\\u09c7\\u09a1\\u0964 \\u09e7\\u09e6\\u09e6 \\u09ad\\u09be\\u0997 \\u0995\\u099f\\u09a8 \\u09a4\\u09be\\u0987 <\\/br> \\u0997\\u09b0\\u09ae\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0996\\u09c1\\u09ac-\\u0987 \\u0986\\u09b0\\u09be\\u09ae\\u09a6\\u09be\\u09df\\u0995 \\u098f\\u09ac\\u0982 \\u09b0\\u0982 \\u09a8\\u09b7\\u09cd\\u099f \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u0987\\u09a8\\u09b6\\u09be\\u2014\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"0358635\",\"settings\":{\"title\":\"\\u0985\\u0997\\u09cd\\u09b0\\u09c0\\u09ae \\u0995\\u09cb\\u09a8 \\u099f\\u09be\\u0995\\u09be \\u09a8\\u09c7\\u0993\\u09df\\u09be \\u09b9\\u09df \\u09a8\\u09be\\u0964 \\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ae\\u09cd\\u09af\\u09be\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099f\\u09be\\u0995\\u09be \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"1db5c1e\",\"settings\":{\"flex_gap\":{\"size\":0,\"column\":\"0\",\"row\":\"0\",\"unit\":\"px\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"landing\",\"custom_css\":\"\\np#billing_country_field {\\n    display: none !important;\\n}\\n\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"16\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"_element_id\":\"order\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a1ac84e\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"-20\",\"bottom\":\"15\",\"left\":\"-20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=accent\"},\"content_width\":\"full\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60d3275f\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\"},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"abf4c81\",\"settings\":{\"title\":\"\\u09af\\u09c7\\u0995\\u09cb\\u09a8\\u09cb \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8  \\u09ed\\u09e8 \\u0998\\u09a8\\u09cd\\u099f\\u09be\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0964\",\"header_size\":\"span\",\"align\":\"center\",\"title_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_weight\":\"600\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4196d07\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u09b8\\u0982\\u0996\\u09cd\\u09af\\u09be \\u09a8\\u09bf\\u09b0\\u09cd\\u09a7\\u09be\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_skin\":\"classic\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btn_background_color_background\":\"classic\",\"__globals__\":{\"btn_background_color_color\":\"globals\\/colors?id=primary\",\"global_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"6fcb41c9\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"flex_gap\":{\"size\":0,\"column\":\"0\",\"row\":\"0\",\"unit\":\"px\",\"isLinked\":true},\"content_position\":\"middle\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#DEE0E3\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"16\",\"bottom\":\"24\",\"left\":\"16\",\"isLinked\":\"\"},\"border_border\":\"solid\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15236e5f\",\"settings\":{\"_column_size\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"space-between\",\"content_width\":\"full\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70bcd778\",\"settings\":{\"title\":\"\\u09b2\\u09c7\\u099f\\u09c7\\u09b8\\u09cd\\u099f \\u0986\\u09aa\\u09a1\\u09c7\\u099f \\u09aa\\u09c7\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09be\\u09a8\\u09c7\\u0995\\u09cd\\u099f \\u09a5\\u09be\\u0995\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"header_size\":\"h6\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"63f81627\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"68da452\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ec867e5\",\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#F8181800\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0.55\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"hover_border_color\":\"#000000\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"icon_spacing_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"hover_primary_color\":\"#000000\",\"hover_secondary_color\":\"#FFFFFF\",\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"image_border_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"social-icons\",\"elType\":\"widget\"},{\"id\":\"674b0faa\",\"settings\":{\"text\":\"Divider\",\"color\":\"#DEE0E3\",\"gap\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"61856bc0\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Refund policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5e9a798\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4e2c037\"},{\"text\":\"Terms of service\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f8d50c\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"32\",\"sizes\":[]},\"space_between_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#4959FF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text_color\":\"#566376\",\"text_color_hover\":\"#1A1E23\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\",\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"1156c445\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Business Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\">DPW<\\/a>\",\"header_size\":\"p\",\"align_mobile\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4154','1913','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4155','1913','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4156','1913','wcf_fields_billing','a:12:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}s:12:\"billing_size\";a:16:{s:4:\"type\";s:5:\"radio\";s:5:\"label\";s:12:\"সাইজ\";s:11:\"placeholder\";s:0:\"\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:11:\"label_class\";a:0:{}s:13:\"show_in_email\";s:0:\"\";s:8:\"required\";s:3:\"yes\";s:6:\"custom\";b:1;s:7:\"default\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}s:10:\"date_input\";s:14:\"datetime-local\";s:9:\"optimized\";s:0:\"\";s:5:\"width\";s:3:\"100\";s:4:\"name\";s:12:\"billing_size\";s:3:\"key\";s:12:\"billing_size\";s:7:\"enabled\";s:3:\"yes\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4157','1913','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4158','1913','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4159','1913','wcf-product-options','multiple-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4160','1913','wcf-enable-product-variation','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4161','1913','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4162','1913','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4163','1913','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4164','1913','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4165','1913','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4166','1913','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4167','1913','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4168','1913','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4169','1913','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4170','1913','wcf_field_order_shipping','a:9:{s:19:\"shipping_first_name\";a:11:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_1\";a:11:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"shipping_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:14:\"shipping_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"shipping_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4171','1913','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4172','1913','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4173','1913','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4174','1913','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4175','1913','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4176','1913','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4177','1913','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4178','1913','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4179','1913','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4180','1913','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4181','1913','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4182','1913','wcf_field_order_billing','a:12:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:91:\"আপনার ঠিকানা/এলাকার নাম, থানা, জেলা\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_size\";a:17:{s:4:\"type\";s:5:\"radio\";s:5:\"label\";s:12:\"সাইজ\";s:11:\"placeholder\";s:0:\"\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:11:\"label_class\";a:0:{}s:13:\"show_in_email\";b:0;s:8:\"required\";b:1;s:6:\"custom\";b:1;s:7:\"default\";s:0:\"\";s:7:\"options\";a:4:{s:1:\"M\";s:1:\"M\";s:1:\"L\";s:1:\"L\";s:2:\"XL\";s:2:\"XL\";s:3:\"XXL\";s:3:\"XXL\";}s:10:\"date_input\";s:14:\"datetime-local\";s:9:\"optimized\";b:0;s:5:\"width\";i:100;s:4:\"name\";s:12:\"billing_size\";s:3:\"key\";s:12:\"billing_size\";s:7:\"enabled\";b:1;s:8:\"priority\";i:120;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4183','1913','wcf-remove-product-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4184','1913','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4185','1913','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4186','1913','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4187','1913','wcf-animate-browser-tab','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4188','1913','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4189','1913','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4190','1913','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4191','1913','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4192','1913','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4195','1914','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4196','1914','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4197','1914','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4198','1914','_elementor_version','3.20.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4199','1914','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4200','1914','_elementor_page_settings','a:2:{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:1:\"0\";s:8:\"isLinked\";b:0;}s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4201','1914','_elementor_data','[{\"id\":\"3e3521fd\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"background_overlay_background\":\"classic\",\"shape_divider_bottom_negative\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]}},\"elements\":[{\"id\":\"18542059\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"1097cf9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":75,\"url\":\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/Test-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":77,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#DFDFDF\",\"align_mobile\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"934466c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09c7\\u099c\\u09c1\\u09af\\u09bc\\u09be\\u09b2 \\u0986\\u0989\\u099f\\u09ab\\u09bf\\u099f \\u0985\\u09ab\\u09bf\\u09b8 \\u0985\\u09a5\\u09ac\\u09be \\u09b8\\u09ac \\u09b0\\u0995\\u09ae \\u09aa\\u09cd\\u09b0\\u09cb\\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a5\\u09ac\\u09be \\u0995\\u09b2\\u09c7\\u099c \\u0987\\u0989\\u09a8\\u09bf\\u09ad\\u09be\\u09b0\\u09cd\\u09b8\\u09bf\\u099f\\u09bf \\u09b8\\u09ac \\u09b8\\u09ae\\u09af\\u09bc\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ac\\u09c7\\u09b8\\u09cd\\u099f \\u09ac\\u09c7\\u09b7\\u09cd\\u099f \\u0995\\u09c7\\u099c\\u09c1\\u09df\\u09be\\u09b2 \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u0995\\u09be\\u09b2\\u09c7\\u0995\\u09b6\\u09a8  \\u099c\\u0997\\u09be\\u09b0 \\u0986\\u0989\\u099f\\u09ab\\u09bf\\u099f\\u0964 \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b70afd\",\"elType\":\"widget\",\"settings\":{\"title\":\"<del>\\u0986\\u0997\\u09c7\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\u0983 \\u09e7\\u09ea\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/del>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"size\":\"medium\",\"_element_width\":\"inherit\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FF0000C7\",\"_margin\":{\"unit\":\"px\",\"top\":\"-34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e66fa8\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u0995\\u09c7\\u099c\\u09c1\\u09af\\u09bc\\u09be\\u09b2 \\u0986\\u0989\\u099f\\u09ab\\u09bf\\u099f \\u0985\\u09ab\\u09bf\\u09b8 \\u0985\\u09a5\\u09ac\\u09be \\u09b8\\u09ac \\u09b0\\u0995\\u09ae \\u09aa\\u09cd\\u09b0\\u09cb\\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a5\\u09ac\\u09be \\u0995\\u09b2\\u09c7\\u099c \\u0987\\u0989\\u09a8\\u09bf\\u09ad\\u09be\\u09b0\\u09cd\\u09b8\\u09bf\\u099f\\u09bf \\u09b8\\u09ac \\u09b8\\u09ae\\u09af\\u09bc\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ac\\u09c7\\u09b8\\u09cd\\u099f \\u0995\\u09ae\\u09cd\\u09ac   \\u0985\\u09ab\\u09be\\u09b0 \",\"highlighted_text\":\"\\u0995\\u09c7\\u099c\\u09c1\\u09df\\u09be\\u09b2 \\u09b6\\u09be\\u09b0\\u09cd\\u099f\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#FF0000\",\"stroke_width\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"above_content\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#FF0000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"__globals__\":{\"title_color\":\"\",\"marker_color\":\"\"},\"__should_import\":true,\"after_text\":\" \\u0995\\u09be\\u09b2\\u09c7\\u0995\\u09b6\\u09a8\",\"title_color\":\"#000000\",\"alignment_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d643b2c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"371d77a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7397d20c\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"hover_animation\":\"push\",\"button_text_color\":\"#FFFFFF\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"align_mobile\":\"center\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"458cc082\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/Oj33V0ZpUkA\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"id\":392,\"url\":\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-3-1.png\"},\"_border_border\":\"double\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"external_url\":{\"url\":\"https:\\/\\/youtu.be\\/6iV-tO2Z-w8?si=Hk7dBKhB9PBqA4Zy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"image_overlay\":{\"id\":393,\"url\":\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-1-1.png\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"4d84e576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09a6\\u09be\\u09ae\\u09c7 \\u09a8\\u09df, \\u0986\\u09ae\\u09b0\\u09be \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09be\\u09b8 \\u0995\\u09b0\\u09bf \\u0997\\u09c1\\u09a8\\u09c7, \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09be\\u09b8 \\u0995\\u09b0\\u09bf \\u09ae\\u09be\\u09a8\\u09c7\\u0964<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a77e8dd\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"hover_animation\":\"push\",\"button_text_color\":\"#FFFFFF\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d19b27e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"e35d36c\",\"elType\":\"container\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"6280541\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":394,\"url\":\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/IMG_0371-scaled-2.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c232ea6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09ae\\u09cd\\u09ac \\u09e7 - \\u09e8\\u09e9\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u200b\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#E7DEBE\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"37cf4e8\",\"elType\":\"container\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2442ed4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":356,\"url\":\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/IMG_0372-600x800-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5ab88a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09ae\\u09cd\\u09ac \\u09e8 - \\u09e8\\u09e8\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u200b\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#A2AD7D\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2d70c32\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"01612b2\",\"elType\":\"container\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"3398d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":395,\"url\":\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/IMG_0281-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d76ea9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full Sleeve M1\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#E7DEBE\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6d8dd64\",\"elType\":\"container\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"736962c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":396,\"url\":\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/IMG_0302-scaled-2.jpg\"},\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d2f8739\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full Sleeve M2\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#1b1917\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d47e078\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"bc07899\",\"elType\":\"container\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc3bfb6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":397,\"url\":\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/IMG_0349-scaled-2.jpg\"},\"width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"837d4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full Sleeve M3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#01146D\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"bdd035c\",\"elType\":\"container\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68ba1ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":376,\"url\":\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/IMG_0249-225x300-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8268a6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hawaiian Shirt M4\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#BC7D36\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4ad0b00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"b6dd515\",\"elType\":\"container\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bad1f48\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":398,\"url\":\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/IMG_0259-1.jpg\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"873fef1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hawaiian Shirt M5\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#606C38\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"a100a0e\",\"elType\":\"container\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16c824b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":399,\"url\":\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/\\u099f\\u09bf\\u09b6\\u09be\\u09b0\\u09cd\\u099f-scaled-1.jpg\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"032fa76\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u09ae\\u09ac\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u09b0\\u09bf \\u09b8\\u09be\\u09a6\\u09be \\u099f\\u09bf-\\u09b6\\u09be\\u09b0\\u09cd\\u099f\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#020202\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"65af7fe7\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"size\":0,\"column\":\"0\",\"row\":\"0\",\"unit\":\"px\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e9a22a\",\"elType\":\"container\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"content_width\":\"full\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d5d5000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09a8\\u09cb\\u099f\\u0983 \\u0986\\u09b2\\u09be\\u09a6\\u09be \\u0986\\u09b2\\u09be\\u09a6\\u09be \\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8 \\u098f\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09cb\\u09b6\\u09be\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0995\\u09bf\\u099b\\u09c1\\u099f\\u09be \\u09a4\\u09be\\u09b0\\u09a4\\u09ae\\u09cd\\u09af \\u09a6\\u09c7\\u0996\\u09be \\u09af\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD\",\"custom_css\":\".tsize table {\\r\\n  \\r\\n  border-collapse: collapse;\\r\\n  width: 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n}\\r\\n\\r\\n.tsize th {\\r\\n    padding: 15px 0 !important;\\r\\n    text-align: center !important;\\r\\n}\\r\\n\\r\\n.tsize td, .tsize th {\\r\\n  border: 1px solid #dddddd !important;\\r\\n  text-align: left;\\r\\n  padding: 8px;\\r\\n}\\r\\n\\r\\n.tsize tr:nth-child(odd) {\\r\\n  background-color: #f1f1f1;\\r\\n}\",\"_css_classes\":\"tsize\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"14b4c56\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ff2dfa\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"hover_animation\":\"push\",\"button_text_color\":\"#FFFFFF\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"41fcf068\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"flex_gap\":{\"size\":0,\"column\":\"0\",\"row\":\"0\",\"unit\":\"px\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"7b350c2a\",\"elType\":\"container\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_width\":\"full\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"-110\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c2d10f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Full Sleeve \\u09b8\\u09be\\u0987\\u099c \\u0997\\u09be\\u0987\\u09a1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bb1bcae\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"width\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"icon\":{\"value\":\"\",\"library\":\"\"},\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"55017e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table><tbody><tr><th>SIZE (\\u09b8\\u09be\\u0987\\u099c)<\\/th><th>CHEST (\\u09ac\\u09c1\\u0995\\u09c7\\u09b0 \\u09ae\\u09be\\u09aa)<\\/th><th>LEANGTH (\\u09b2\\u09c7\\u09a8\\u09cd\\u09a5)<\\/th><\\/tr><tr><td>M<\\/td><td>42\\\"<\\/td><td>28\\\"<\\/td><\\/tr><tr><td>L<\\/td><td>44\\\"<\\/td><td>29\\\"<\\/td><\\/tr><tr><td>XL<\\/td><td>46\\\"<\\/td><td>30\\\"<\\/td><\\/tr><tr><td>XXL<\\/td><td>48\\\"<\\/td><td>41\\\"<\\/td><\\/tr><\\/tbody><\\/table>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD\",\"custom_css\":\".tsize table {\\r\\n  \\r\\n  border-collapse: collapse;\\r\\n  width: 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n}\\r\\n\\r\\n.tsize th {\\r\\n    padding: 15px 0 !important;\\r\\n    text-align: center !important;\\r\\n}\\r\\n\\r\\n.tsize td, .tsize th {\\r\\n  border: 1px solid #dddddd !important;\\r\\n  text-align: left;\\r\\n  padding: 8px;\\r\\n}\\r\\n\\r\\n.tsize tr:nth-child(odd) {\\r\\n  background-color: #f1f1f1;\\r\\n}\",\"_css_classes\":\"tsize\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cab04f6\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"flex_gap\":{\"size\":0,\"column\":\"0\",\"row\":\"0\",\"unit\":\"px\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"c8d075d\",\"elType\":\"container\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"content_width\":\"full\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"-110\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"558d1ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hawaiian \\u09b8\\u09be\\u0987\\u099c \\u0997\\u09be\\u0987\\u09a1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee3a0ae\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"width\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"icon\":{\"value\":\"\",\"library\":\"\"},\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb1c6a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table><tbody><tr><th>SIZE (\\u09b8\\u09be\\u0987\\u099c)<\\/th><th>CHEST (\\u09ac\\u09c1\\u0995\\u09c7\\u09b0 \\u09ae\\u09be\\u09aa)<\\/th><th>LEANGTH (\\u09b2\\u09c7\\u09a8\\u09cd\\u09a5)<\\/th><\\/tr><tr><td>M<\\/td><td>42\\\"<\\/td><td>27\\\"<\\/td><\\/tr><tr><td>L<\\/td><td>44\\\"<\\/td><td>28\\\"<\\/td><\\/tr><tr><td>XL<\\/td><td>46\\\"<\\/td><td>29\\\"<\\/td><\\/tr><tr><td>XXL<\\/td><td>48\\\"<\\/td><td>30\\\"<\\/td><\\/tr><\\/tbody><\\/table>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD\",\"custom_css\":\".tsize table {\\r\\n  \\r\\n  border-collapse: collapse;\\r\\n  width: 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n}\\r\\n\\r\\n.tsize th {\\r\\n    padding: 15px 0 !important;\\r\\n    text-align: center !important;\\r\\n}\\r\\n\\r\\n.tsize td, .tsize th {\\r\\n  border: 1px solid #dddddd !important;\\r\\n  text-align: left;\\r\\n  padding: 8px;\\r\\n}\\r\\n\\r\\n.tsize tr:nth-child(odd) {\\r\\n  background-color: #f1f1f1;\\r\\n}\",\"_css_classes\":\"tsize\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ae7e3ad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ddc4ac2\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u0995\\u09cd\\u09b0\\u09df \\u0995\\u09b0\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u0995\\u09bf \\u0995\\u09bf \",\"highlighted_text\":\"\\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#FF0000\",\"stroke_width\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"above_content\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#FF0000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"__globals__\":{\"title_color\":\"\",\"marker_color\":\"\"},\"__should_import\":true,\"after_text\":\"\\u0997\\u09c1\\u09b2\\u09cb \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u098f\\u0996\\u09a8\\u0987 \\u099c\\u09c7\\u09a8\\u09c7 \\u09a8\\u09bf\\u09a8!!\",\"title_color\":\"#000000\",\"hide_desktop\":\"hidden-desktop\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"4877b3c0\",\"elType\":\"widget\",\"settings\":{\"style\":\"double\",\"width\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"icon\":{\"value\":\"\",\"library\":\"\"},\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=primary\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"257d304e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b248c1e\"},{\"text\":\"\\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0995\\u09c7\\u09b6 \\u0985\\u09a8 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"8840db7\"},{\"text\":\"\\u09aa\\u09a3\\u09cd\\u09af \\u09b0\\u09bf\\u09b8\\u09bf\\u09ad \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u09a6\\u09c7\\u0996\\u09c7 \\u09a8\\u09c7\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09c1\\u09af\\u09cb\\u0997\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"6c965f0\"},{\"text\":\"\\u09b8\\u09be\\u0987\\u099c \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09b9\\u09b2\\u09c7 \\u09ed\\u09e8 \\u0998\\u09a3\\u09cd\\u099f\\u09be\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8\\u09c7\\u09b0 \\u09b8\\u09c1\\u09af\\u09cb\\u0997\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"50bb3f3\"},{\"text\":\"\\u09e8\\u09ea \\u0998\\u09a3\\u09cd\\u099f\\u09be \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09cb\\u09ae\\u09be\\u09b0 \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b8\\u09be\\u09aa\\u09cb\\u09b0\\u09cd\\u099f\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"60c42ff\"},{\"text\":\"\\u09aa\\u09a3\\u09cd\\u09af \\u09ad\\u09be\\u09b2\\u09cb \\u09a8\\u09be \\u09b2\\u09be\\u0997\\u09b2\\u09c7 \\u09b0\\u09bf\\u09b0\\u09cd\\u099f\\u09be\\u09a8 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d04ec35\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"icon_color\":\"#000000\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"3732e2bd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2518100a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\"},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42e99475\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"1\":{\"id\":400,\"url\":\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/gal-2-1.png\"},\"3\":{\"id\":401,\"url\":\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/gal-4-1.png\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"image_spacing\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"dcb727d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"boxed_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"2f215e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09be \\u099c\\u0997\\u09be\\u09b0 \\u098f\\u09b0 \\u0995\\u09be\\u09aa\\u09dc \\u0987\\u09ae\\u09aa\\u09cb\\u09b0\\u09cd\\u099f\\u09c7\\u09a1\\u0964 \\u09e7\\u09e6\\u09e6 \\u09ad\\u09be\\u0997 \\u0995\\u099f\\u09a8 \\u09a4\\u09be\\u0987 <\\/br> \\u0997\\u09b0\\u09ae\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0996\\u09c1\\u09ac-\\u0987 \\u0986\\u09b0\\u09be\\u09ae\\u09a6\\u09be\\u09df\\u0995 \\u098f\\u09ac\\u0982 \\u09b0\\u0982 \\u09a8\\u09b7\\u09cd\\u099f \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u0987\\u09a8\\u09b6\\u09be\\u2014\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0358635\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u0997\\u09cd\\u09b0\\u09c0\\u09ae \\u0995\\u09cb\\u09a8 \\u099f\\u09be\\u0995\\u09be \\u09a8\\u09c7\\u0993\\u09df\\u09be \\u09b9\\u09df \\u09a8\\u09be\\u0964 \\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ae\\u09cd\\u09af\\u09be\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099f\\u09be\\u0995\\u09be \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1db5c1e\",\"elType\":\"container\",\"settings\":{\"flex_gap\":{\"size\":0,\"column\":\"0\",\"row\":\"0\",\"unit\":\"px\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"landing\",\"custom_css\":\"\\np#billing_country_field {\\n    display: none !important;\\n}\\n\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"16\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"_element_id\":\"order\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a1ac84e\",\"elType\":\"container\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"-20\",\"bottom\":\"15\",\"left\":\"-20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=accent\"},\"content_width\":\"full\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"60d3275f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\"},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4c81\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09af\\u09c7\\u0995\\u09cb\\u09a8\\u09cb \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8  \\u09ed\\u09e8 \\u0998\\u09a8\\u09cd\\u099f\\u09be\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0964\",\"header_size\":\"span\",\"align\":\"center\",\"title_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_weight\":\"600\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4196d07\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u09b8\\u0982\\u0996\\u09cd\\u09af\\u09be \\u09a8\\u09bf\\u09b0\\u09cd\\u09a7\\u09be\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_skin\":\"classic\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btn_background_color_background\":\"classic\",\"__globals__\":{\"btn_background_color_color\":\"globals\\/colors?id=primary\",\"global_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6fcb41c9\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"flex_gap\":{\"size\":0,\"column\":\"0\",\"row\":\"0\",\"unit\":\"px\",\"isLinked\":true},\"content_position\":\"middle\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#DEE0E3\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"16\",\"bottom\":\"24\",\"left\":\"16\",\"isLinked\":\"\"},\"border_border\":\"solid\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\"},\"elements\":[{\"id\":\"15236e5f\",\"elType\":\"container\",\"settings\":{\"_column_size\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"space-between\",\"content_width\":\"full\"},\"elements\":[{\"id\":\"70bcd778\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b2\\u09c7\\u099f\\u09c7\\u09b8\\u09cd\\u099f \\u0986\\u09aa\\u09a1\\u09c7\\u099f \\u09aa\\u09c7\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09be\\u09a8\\u09c7\\u0995\\u09cd\\u099f \\u09a5\\u09be\\u0995\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"header_size\":\"h6\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63f81627\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"68da452\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ec867e5\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#F8181800\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":\"0.55\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"hover_border_color\":\"#000000\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"icon_spacing_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"hover_primary_color\":\"#000000\",\"hover_secondary_color\":\"#FFFFFF\",\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=primary\",\"image_border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"674b0faa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#DEE0E3\",\"gap\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"61856bc0\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Refund policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5e9a798\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4e2c037\"},{\"text\":\"Terms of service\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7f8d50c\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"32\",\"sizes\":[]},\"space_between_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#4959FF\",\"icon_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text_color\":\"#566376\",\"text_color_hover\":\"#1A1E23\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\",\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1156c445\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Business Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\">DPW<\\/a>\",\"header_size\":\"p\",\"align_mobile\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4202','1914','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4204','1914','_elementor_controls_usage','a:13:{s:5:\"image\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:9;s:10:\"image_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:6:{s:5:\"align\";i:3;s:5:\"width\";i:9;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:19;s:4:\"size\";i:1;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:5:\"align\";i:19;s:21:\"typography_typography\";i:19;s:22:\"typography_font_family\";i:19;s:20:\"typography_font_size\";i:18;s:22:\"typography_font_weight\";i:18;s:22:\"typography_line_height\";i:6;s:11:\"title_color\";i:13;s:25:\"typography_letter_spacing\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:13;s:14:\"_element_width\";i:4;s:8:\"_padding\";i:8;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:4;s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:8;s:17:\"_background_color\";i:8;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:3:{s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:10:\"after_text\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:3:{s:12:\"marker_color\";i:2;s:12:\"stroke_width\";i:2;s:13:\"above_content\";i:2;}s:18:\"section_style_text\";a:9:{s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_font_weight\";i:2;s:11:\"words_color\";i:2;s:27:\"words_typography_typography\";i:2;s:28:\"words_typography_font_family\";i:2;s:28:\"words_typography_font_weight\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_element_width\";i:2;}s:19:\"_section_responsive\";a:1:{s:12:\"hide_desktop\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:2;s:5:\"align\";i:1;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:16:\"content_position\";i:1;s:3:\"gap\";i:2;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:2:{s:29:\"shape_divider_bottom_negative\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:3;s:4:\"link\";i:3;s:4:\"size\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:22:\"typography_font_weight\";i:3;s:15:\"hover_animation\";i:3;s:17:\"button_text_color\";i:3;s:12:\"align_mobile\";i:3;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:5:{s:11:\"youtube_url\";i:1;s:10:\"hosted_url\";i:1;s:12:\"external_url\";i:1;s:8:\"autoplay\";i:1;s:14:\"play_on_mobile\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:10:\"text_color\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:3;}s:15:\"_section_border\";a:2:{s:13:\"_border_width\";i:3;s:13:\"_border_color\";i:3;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:3;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:6:{s:14:\"flex_direction\";i:15;s:5:\"width\";i:4;s:13:\"content_width\";i:5;s:8:\"flex_gap\";i:5;s:16:\"flex_align_items\";i:5;s:11:\"boxed_width\";i:5;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:12;s:11:\"css_classes\";i:1;s:11:\"_element_id\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:6;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:4;s:12:\"border_width\";i:4;s:13:\"border_radius\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:4:{s:5:\"style\";i:3;s:5:\"width\";i:3;s:5:\"align\";i:3;s:4:\"icon\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:3;s:5:\"color\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:2;s:4:\"view\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:4:{s:13:\"space_between\";i:2;s:7:\"divider\";i:1;s:10:\"icon_align\";i:1;s:17:\"icon_align_mobile\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:2;s:10:\"icon_color\";i:2;}s:18:\"section_text_style\";a:6:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:1;s:10:\"text_color\";i:1;s:16:\"text_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:13:\"image_spacing\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:1:{s:16:\"social_icon_list\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:8:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:13:\"border_radius\";i:1;}s:20:\"section_social_hover\";a:3:{s:18:\"hover_border_color\";i:1;s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4205','1915','wcf-flow-id','1910');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4206','1915','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4207','1915','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4208','1915','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4209','1915','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4210','1915','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4211','1915','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4212','1915','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4213','1915','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4214','1915','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4215','1915','_astra_content_layout_flag','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4216','1915','site-post-title','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4217','1915','ast-title-bar-display','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4218','1915','ast-featured-img','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4219','1915','ast-site-content-layout','full-width-container');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4220','1915','site-sidebar-layout','no-sidebar');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4221','1915','_edit_lock','1717871461:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4222','1915','_elementor_data','[{\"id\":\"cb4ceaf\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f7eb0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4223','1915','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4225','1916','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4226','1916','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4227','1916','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4228','1916','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4229','1916','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4230','1916','_elementor_data','[{\"id\":\"cb4ceaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4f7eb0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4231','1916','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4232','1916','_elementor_controls_usage','a:1:{s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4233','1917','wcf-flow-id','1889');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4234','1917','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4235','1917','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4236','1917','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4237','1917','wcf-dynamic-css-version','1716442215');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4238','1917','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4239','1917','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4240','1917','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4241','1917','_elementor_version','3.20.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4242','1917','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4243','1917','_edit_lock','1711460329:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4244','1917','_elementor_data','[{\"id\":\"5f7c6d8b\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ccc6423\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5210b9ef\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"2665f596\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4ae5d638\",\"settings\":{\"editor\":\"<p>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0996\\u09c1\\u09ac \\u09b6\\u09c0\\u0998\\u09cd\\u09b0\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"4329f458\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FCFCFC\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6011d6a3\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":6,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"space_between_widgets\":0,\"box_shadow_box_shadow_type\":\"yes\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"082a880\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"78abbecf\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42f4fb6d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7baa8c54\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0997\\u09cd\\u09b0\\u09c1\\u09aa\\u09c7 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09b2\\u09c7\\u0987 \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=5c74819\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"113973a0\",\"settings\":{\"editor\":\"<p>\\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u0986\\u09aa\\u09a1\\u09c7\\u099f \\u09aa\\u09c7\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u0987\\u099c \\u0993 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u0997\\u09cd\\u09b0\\u09c1\\u09aa\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"3867aeae\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7afbdf3b\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c928252\",\"settings\":{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u099c\",\"align\":\"right\",\"align_mobile\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"background_color\":\"#0866FF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"500\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"f55b51a\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c7c28c8\",\"settings\":{\"text\":\"\\u098f\\u0996\\u09a8\\u0987 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u0997\\u09c1\\u09aa\\u09c7 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8\",\"align\":\"left\",\"align_mobile\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"500\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"794a9f7\",\"settings\":{\"text\":\"\\u0986\\u09b0\\u09cb \\u0985\\u09a8\\u09c7\\u0995 \\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09a6\\u09c7\\u0996\\u09a4\\u09c7 \\u09ad\\u09bf\\u099c\\u09bf\\u099f \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"500\",\"background_color\":\"#007AB5\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"117dd1f9\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c5bc625\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47082383\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\" style=\\\"color:red\\\">DPW<\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4245','1917','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4246','1917','_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4248','1918','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4249','1918','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4250','1918','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4251','1918','_elementor_version','3.20.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4252','1918','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4253','1918','_elementor_data','[{\"id\":\"5f7c6d8b\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ccc6423\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5210b9ef\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"2665f596\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4ae5d638\",\"settings\":{\"editor\":\"<p>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0996\\u09c1\\u09ac \\u09b6\\u09c0\\u0998\\u09cd\\u09b0\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"4329f458\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FCFCFC\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6011d6a3\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":6,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"space_between_widgets\":0,\"box_shadow_box_shadow_type\":\"yes\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"082a880\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"78abbecf\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42f4fb6d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7baa8c54\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0997\\u09cd\\u09b0\\u09c1\\u09aa\\u09c7 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09b2\\u09c7\\u0987 \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=5c74819\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"113973a0\",\"settings\":{\"editor\":\"<p>\\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u0986\\u09aa\\u09a1\\u09c7\\u099f \\u09aa\\u09c7\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u0987\\u099c \\u0993 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u0997\\u09cd\\u09b0\\u09c1\\u09aa\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"3867aeae\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7afbdf3b\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c928252\",\"settings\":{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u099c\",\"align\":\"right\",\"align_mobile\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"background_color\":\"#0866FF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"500\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"f55b51a\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c7c28c8\",\"settings\":{\"text\":\"\\u098f\\u0996\\u09a8\\u0987 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u0997\\u09c1\\u09aa\\u09c7 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8\",\"align\":\"left\",\"align_mobile\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"500\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"794a9f7\",\"settings\":{\"text\":\"\\u0986\\u09b0\\u09cb \\u0985\\u09a8\\u09c7\\u0995 \\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09a6\\u09c7\\u0996\\u09a4\\u09c7 \\u09ad\\u09bf\\u099c\\u09bf\\u099f \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"500\",\"background_color\":\"#007AB5\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"117dd1f9\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c5bc625\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47082383\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\" style=\\\"color:red\\\">DPW<\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4254','1918','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4255','1918','_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4256','1918','_elementor_controls_usage','a:6:{s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:2;s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:2;s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:21:\"space_between_widgets\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:16:\"background_color\";i:1;s:21:\"background_background\";i:1;}s:14:\"section_border\";a:3:{s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_radius\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:13:\"content_width\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:3;s:4:\"size\";i:3;s:13:\"selected_icon\";i:2;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:3;s:12:\"align_mobile\";i:3;s:16:\"background_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:22:\"typography_font_weight\";i:3;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4257','1920','wcf-flow-id','1919');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4258','1920','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4259','1920','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4260','1919','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1920;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1922;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1942;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4261','1922','wcf-flow-id','1919');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4262','1922','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4263','1922','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4264','1922','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4265','1922','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4266','1922','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4267','1922','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4268','1922','_edit_lock','1717966073:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4269','1922','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4270','1922','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4271','1922','_elementor_data','[{\"id\":\"2b3c079\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ABFFB6\",\"shape_divider_bottom_color\":\"#FAFAFA\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":259,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"shape_divider_top\":\"triangle\",\"shape_divider_top_color\":\"#8BEFA2\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"zigzag\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74e5410\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"91a93c0\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#DE5801\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"a543117\",\"settings\":{\"title\":\"\\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u0986\\u09ae\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"title_color\":\"#0A0A0A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"65bceb4\",\"settings\":{\"title\":\"<s>\\u0986\\u0997\\u09c7\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\u0983 \\u09e7\\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/s>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":573,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":549,\"sizes\":[]},\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"title_color\":\"#7E7E7E\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"09c1880\",\"settings\":{\"before_text\":\"\\u09b8\\u09c7\\u09b0\\u09be \\u0985\\u09ab\\u09be\\u09b0\\u0983   \\u09ea  \\u0995\\u09c7\\u099c\\u09bf\",\"highlighted_text\":\"690\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be (\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae  \\u09ab\\u09cd\\u09b0\\u09c0)\",\"marker_color\":\"#DE5801\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Animated Headline\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"7a9cbb9\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#DE5801\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3ace547\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#93DC9C\",\"shape_divider_top\":\"triangle\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45fb7d4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ca67923\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fd702d1\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d0c29c\",\"settings\":{\"slides\":[{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"ac54b46\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"faf8c2b\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"8ff395b\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"46e9306\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"bc3960e\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"height\":{\"unit\":\"px\",\"size\":407,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"slide_border_color\":\"#ADA8A8\",\"skin\":\"coverflow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"media-carousel\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"bd474e6\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#9AD29F\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bb43190\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"940dc12\",\"settings\":{\"title\":\"\\u09aa\\u09a8\\u09cd\\u09af \\u0997\\u09cd\\u09b0\\u09b9\\u09a8 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\",\"align\":\"center\",\"title_color\":\"#22A911\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"77693b3\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u098f\\u09a4\\u0987 \\u0995\\u09a8\\u09ab\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u09b8 \\u09af\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u0986\\u09b6\\u09be \\u09b0\\u09be\\u0996\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09be\\u09b8\\u09be\\u09af\\u09bc \\u09af\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09a6\\u09c7\\u0996\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09a8\\u09c7\\u0995\\u09cd\\u09b8\\u099f \\u099f\\u09be\\u0987\\u09ae \\u0986\\u09ac\\u09be\\u09b0\\u09cb \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u0964\\u0964 \\n\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"027e6e0\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fdb66dc\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6704c5d\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"caption\":\"Blue Panjabi\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#22A911\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"322274f\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f50a395\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#22A911\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"94239e9\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69a7d00\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#22A911\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"4a4f5ee\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b9efc99\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"96daa09\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#22A911\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"6d795c2\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c0260d0\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#22A911\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"afc7fb1\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5cf6177\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#22A911\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"9361b78\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#22A911\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3482309\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b7b965\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a788625\",\"settings\":{\"title\":\"\\u0995\\u09bf \\u0995\\u09bf \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u0995\\u09bf\\u09a8\\u09be \\u0989\\u099a\\u09bf\\u09ce!\",\"align\":\"left\",\"title_color\":\"#22A911\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1f8c75f\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":17,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"ca89e3f\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u0986\\u09ae\\u09b0\\u09be \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09a4\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5933f44\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"8a730af\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0\\u09a4\\u09c7 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u0995\\u09b0\\u09bf \\u09b8\\u09c1\\u09a4\\u09b0\\u09be\\u0982 \\u09aa\\u09a8\\u09cd\\u09af \\u0997\\u09cd\\u09b0\\u09b9\\u09a8 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4f9bf5b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0986\\u0997\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ae\\u09cd\\u09af\\u09be\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09be\\u09b8\\u09be\\u09af\\u09bc \\u09af\\u09be\\u09ac\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09a3\\u09cd\\u09af \\u09a6\\u09c7\\u0996\\u09c7 \\u09b6\\u09c1\\u09a8\\u09c7 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b7\\u09a6 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3b1c925\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#22A911\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_color\":\"#54595F\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":102.5},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3d879c5\",\"settings\":{\"background_background\":\"classic\",\"border_color\":\"#DE5801\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"88e95cc\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ec6499b\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#22A911\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"aad6116\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u098f\\u0987 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ab\\u09bf \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"400e0a6\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a4c711e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"13894d5\",\"elType\":\"widget\",\"settings\":{\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"layout\":\"two-column\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09b0\\u0982 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"order-form\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"heading_text_color\":\"#000000\",\"heading_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"0812fd0\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"81677c0\",\"settings\":{\"editor\":\"<p>Design by <span style=\\\"color: #ff0000;\\\"><a style=\\\"color: #ff0000;\\\" href=\\\"https:\\/\\/itgalaxi.com\\\">itgalaxi<\\/a><\\/span><\\/p>\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4272','1922','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4273','1922','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4274','1922','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4275','1922','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4276','1922','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4277','1922','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4278','1922','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4279','1922','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4280','1922','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4281','1922','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4282','1922','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4283','1922','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4284','1922','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4285','1922','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4286','1922','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4287','1922','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4288','1922','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4289','1922','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4290','1922','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4291','1922','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4292','1922','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4293','1922','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4294','1922','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4295','1922','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4296','1922','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4297','1922','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4298','1922','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4299','1922','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4300','1922','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4301','1922','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4302','1922','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4305','1923','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4306','1923','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4307','1923','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4308','1923','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4309','1923','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4310','1923','_elementor_data','[{\"id\":\"2b3c079\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ABFFB6\",\"shape_divider_bottom_color\":\"#FAFAFA\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":259,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"shape_divider_top\":\"triangle\",\"shape_divider_top_color\":\"#8BEFA2\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"zigzag\"},\"elements\":[{\"id\":\"74e5410\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"91a93c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":245,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#DE5801\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a543117\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u0986\\u09ae\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"title_color\":\"#0A0A0A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65bceb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"<s>\\u0986\\u0997\\u09c7\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\u0983 \\u09e7\\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/s>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":573,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":549,\"sizes\":[]},\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"title_color\":\"#7E7E7E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09c1880\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u09b8\\u09c7\\u09b0\\u09be \\u0985\\u09ab\\u09be\\u09b0\\u0983   \\u09ea  \\u0995\\u09c7\\u099c\\u09bf\",\"highlighted_text\":\"690\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be (\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae  \\u09ab\\u09cd\\u09b0\\u09c0)\",\"marker_color\":\"#DE5801\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Animated Headline\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"7a9cbb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#DE5801\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ace547\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#93DC9C\",\"shape_divider_top\":\"triangle\"},\"elements\":[{\"id\":\"45fb7d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ca67923\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fd702d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0d0c29c\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"image\":{\"id\":246,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon.webp\"},\"_id\":\"ac54b46\"},{\"image\":{\"id\":247,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8e401ee6-c68c-41fb-aff6-ce944ab496fa_5_11zon.webp\"},\"_id\":\"faf8c2b\"},{\"image\":{\"id\":248,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon.webp\"},\"_id\":\"8ff395b\"},{\"image\":{\"id\":249,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/32a32e67-661e-487e-ae08-797b800ddf78_7_11zon.webp\"},\"_id\":\"46e9306\"},{\"image\":{\"id\":250,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/789718a0-e8ed-46d8-873e-2b748ee85020_11_11zon.webp\"},\"_id\":\"bc3960e\"}],\"height\":{\"unit\":\"px\",\"size\":407,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"slide_border_color\":\"#ADA8A8\",\"skin\":\"coverflow\"},\"elements\":[],\"widgetType\":\"media-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd474e6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#9AD29F\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bb43190\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"940dc12\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09a8\\u09cd\\u09af \\u0997\\u09cd\\u09b0\\u09b9\\u09a8 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\",\"align\":\"center\",\"title_color\":\"#22A911\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77693b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u098f\\u09a4\\u0987 \\u0995\\u09a8\\u09ab\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u09b8 \\u09af\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u0986\\u09b6\\u09be \\u09b0\\u09be\\u0996\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09be\\u09b8\\u09be\\u09af\\u09bc \\u09af\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09a6\\u09c7\\u0996\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09a8\\u09c7\\u0995\\u09cd\\u09b8\\u099f \\u099f\\u09be\\u0987\\u09ae \\u0986\\u09ac\\u09be\\u09b0\\u09cb \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u0964\\u0964 \\n\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"027e6e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fdb66dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6704c5d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":250,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/789718a0-e8ed-46d8-873e-2b748ee85020_11_11zon.webp\"},\"caption\":\"Blue Panjabi\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#22A911\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"322274f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"f50a395\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":246,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon.webp\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#22A911\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"94239e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"69a7d00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":248,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon.webp\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#22A911\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a4f5ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b9efc99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"96daa09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":246,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon.webp\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#22A911\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6d795c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"c0260d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":247,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8e401ee6-c68c-41fb-aff6-ce944ab496fa_5_11zon.webp\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#22A911\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"afc7fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5cf6177\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":249,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/32a32e67-661e-487e-ae08-797b800ddf78_7_11zon.webp\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#22A911\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9361b78\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#22A911\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3482309\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6b7b965\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a788625\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09bf \\u0995\\u09bf \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u0995\\u09bf\\u09a8\\u09be \\u0989\\u099a\\u09bf\\u09ce!\",\"align\":\"left\",\"title_color\":\"#22A911\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f8c75f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":17,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ca89e3f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u0986\\u09ae\\u09b0\\u09be \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09a4\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5933f44\"},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"8a730af\"},{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0\\u09a4\\u09c7 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u0995\\u09b0\\u09bf \\u09b8\\u09c1\\u09a4\\u09b0\\u09be\\u0982 \\u09aa\\u09a8\\u09cd\\u09af \\u0997\\u09cd\\u09b0\\u09b9\\u09a8 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4f9bf5b\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0986\\u0997\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ae\\u09cd\\u09af\\u09be\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09be\\u09b8\\u09be\\u09af\\u09bc \\u09af\\u09be\\u09ac\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09a3\\u09cd\\u09af \\u09a6\\u09c7\\u0996\\u09c7 \\u09b6\\u09c1\\u09a8\\u09c7 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b7\\u09a6 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3b1c925\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#22A911\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_color\":\"#54595F\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":102.5},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d879c5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_color\":\"#DE5801\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"88e95cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ec6499b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#22A911\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aad6116\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u098f\\u0987 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ab\\u09bf \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"400e0a6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a4c711e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13894d5\",\"elType\":\"widget\",\"settings\":{\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"layout\":\"two-column\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09b0\\u0982 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"order-form\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"heading_text_color\":\"#000000\",\"heading_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0812fd0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"81677c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design by <span style=\\\"color: #ff0000;\\\"><a style=\\\"color: #ff0000;\\\" href=\\\"https:\\/\\/itgalaxi.com\\\">itgalaxi<\\/a><\\/span><\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4311','1923','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4313','1923','_elementor_controls_usage','a:11:{s:5:\"image\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:7;s:10:\"image_size\";i:1;s:7:\"caption\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:1;s:19:\"image_border_border\";i:7;s:18:\"image_border_width\";i:7;s:18:\"image_border_color\";i:7;s:19:\"image_border_radius\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:7;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:5:\"align\";i:7;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_font_weight\";i:7;s:22:\"typography_line_height\";i:2;s:11:\"title_color\";i:7;s:23:\"text_stroke_text_stroke\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:21:\"_element_custom_width\";i:2;}s:18:\"_section_transform\";a:3:{s:28:\"_transform_translateX_effect\";i:1;s:28:\"_transform_translateY_effect\";i:1;s:23:\"_transform_scale_effect\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:3:{s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:10:\"after_text\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:1;}s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:6:\"_title\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:13;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:1:{s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;}s:21:\"section_shape_divider\";a:8:{s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:17:\"shape_divider_top\";i:2;s:23:\"shape_divider_top_color\";i:1;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:20:\"shape_divider_bottom\";i:1;}s:14:\"section_border\";a:1:{s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:14:\"media-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_slides\";a:4:{s:6:\"slides\";i:1;s:6:\"height\";i:1;s:5:\"width\";i:1;s:4:\"skin\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_slides_style\";a:4:{s:13:\"space_between\";i:1;s:17:\"slide_border_size\";i:1;s:19:\"slide_border_radius\";i:1;s:18:\"slide_border_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"width\";i:1;s:5:\"align\";i:1;s:4:\"look\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:6:{s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;s:27:\"icon_typography_line_height\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4314','1925','wcf-flow-id','1924');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4315','1925','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4316','1925','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4317','1925','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4318','1925','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4319','1925','_elementor_version','3.20.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4320','1925','_elementor_pro_version','3.7.7');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4321','1925','_edit_lock','1717383952:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4322','1925','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4323','1925','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4324','1925','_elementor_data','[{\"id\":\"f19b53b\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#045304\",\"shape_divider_bottom\":\"mountains\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"overflow\":\"hidden\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":98.129},\"min_height\":{\"unit\":\"px\",\"size\":405,\"sizes\":[]},\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"bottom center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_size\":\"initial\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateX_effect\":\"yes\",\"background_motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":3.6,\"sizes\":[]},\"background_motion_fx_translateX_affectedRange\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":{\"start\":52,\"end\":100}},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c4f217\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6af9cad\",\"settings\":{\"flex_align_items\":\"center\",\"_flex_align_self\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":791,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":273,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#26492D\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_flex_size\":\"custom\",\"_flex_shrink\":0,\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ac2cfaf\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":64,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":22.3},\"_flex_size\":\"none\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"bdf0d52\",\"settings\":{\"title\":\"\\u099a\\u09be\\u0981\\u09aa\\u09be\\u0987\\u09a8\\u09ac\\u09be\\u09ac\\u0997\\u099e\\u09cd\\u099c\\u09c7\\u09b0 \\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0995\\u09be\\u09b0\\u09cd\\u09ac\\u09be\\u0987\\u09a1\\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09bf\\u09ae\\u09b8\\u09be\\u0997\\u09b0\\/\\u0996\\u09bf\\u09b0\\u09b8\\u09be\\u09aa\\u09be\\u09a4 \\u0986\\u09ae\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"-12\",\"bottom\":\"-12\",\"left\":\"-12\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5e2a7aa\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09be\\u099c\\u09be\\u09b0\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09ac\\u09be\\u0987\\u09a1\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09ac\\u09bf\\u09b7 \\u0986\\u09ae \\u0996\\u09be\\u09ac\\u09c7\\u09a8 \\u09a8\\u09be\\u0995\\u09bf \\u09ac\\u09bf\\u09b7\\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u0986\\u09ae \\u0996\\u09be\\u09ac\\u09c7\\u09a8 \\u09b8\\u09bf\\u09a6\\u09cd\\u09a7\\u09be\\u09a8\\u09cd\\u09a4 \\u0986\\u09aa\\u09a8\\u09be\\u09b0!<\\/p>\",\"align\":\"center\",\"align_mobile\":\"center\",\"text_color\":\"#FFF200\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"54f2a03\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#C9FFA9\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b78599\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":97.045},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42bc2c5\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":712,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e68d13b\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/XZERVqyuZrw?si=WUvAJtp97EdfBfj0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"loop\":\"yes\",\"css_filters_css_filter\":\"custom\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":11,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.76)\"},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"image_overlay\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"3dae9cc\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008021\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#00360F\",\"button_background_hover_color\":\"#F5F2F1\",\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"428cb68\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#7AE282\",\"background_color_b\":\"#31AC1A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d4da9b\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"24e171b\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"\\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u09ac\\u09be\\u0997\\u09be\\u09a8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u0982\\u0997\\u09c3\\u09b9\\u09c0\\u09a4\",\"_id\":\"ab75191\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09be\\u0995\\u09be\",\"_id\":\"b1de727\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5dec607\",\"text\":\"\\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09b8\\u09c7\\u09b0\\u09be \\u09ae\\u09be\\u09a8\\u09c7\\u09b0\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"ff74475\",\"text\":\"\\u09aa\\u09c7\\u09b8\\u099f\\u09bf\\u09b8\\u09be\\u0987\\u09a1 \\u09b0\\u09c7\\u09b8\\u09bf\\u09a1\\u09bf\\u0989 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":101.278},\"_flex_size\":\"none\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"0333757\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"96f35da\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b0fad23\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":90.85},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0a0f99a\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7\\u0987 \\u0995\\u09c7\\u09a8 \\u200d\\u09a8\\u09bf\\u09ac\\u09c7\\u09a8?\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"f713da9\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":95.425},\"min_height\":{\"unit\":\"px\",\"size\":339,\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"905fe3f\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u098f\\u09ac\\u0982 \\u09ad\\u09c7\\u099c\\u09be\\u09b2\\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u0986\\u09ae\\u0964\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1aa7bd6\",\"text\":\"\\u09b8\\u09b0\\u09be\\u09b8\\u09b0\\u09bf \\u09ac\\u09be\\u0997\\u09be\\u09a8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u0982\\u0997\\u09c3\\u09b9\\u09c0\\u09a4\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10b1807\",\"text\":\"\\u09b8\\u09b0\\u09be\\u09b8\\u09b0\\u09bf \\u09ac\\u09be\\u0997\\u09be\\u09a8 \\u09a5\\u09c7\\u0995\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09cc\\u0981\\u099b\\u09c7 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09a6\\u09be\\u09af\\u09bc\\u09bf\\u09a4\\u09cd\\u09ac \\u09a8\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u0986\\u09ae\\u09b0\\u09be\\u0987\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"df6e360\",\"text\":\"\\u0986\\u09ae \\u09aa\\u09be\\u09dc\\u09be\\u09b0 \\u09e8\\u09ea-\\u09ed\\u09e8 \\u0998\\u09a8\\u09cd\\u099f\\u09be\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09a2\\u09be\\u0995\\u09be \\u0993 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09be\\u09b9\\u09bf\\u09b0\\u09c7 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2d23f94\",\"text\":\"\\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u098f\\u09ac\\u0982 \\u09b8\\u09c1\\u09ae\\u09bf\\u09b7\\u09cd\\u099f \\u0986\\u09ae\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"289a820\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":521,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFD1D1\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cc18d7\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"align\":\"center\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":9,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.77)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"25af809\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008013\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#003D06\",\"button_background_hover_color\":\"#FFFFFF\",\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"4b123c6\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"overflow\":\"hidden\",\"background_color\":\"#C9FFA9\",\"width_mobile\":{\"unit\":\"px\",\"size\":307},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c27fc46\",\"settings\":{\"content_width\":\"full\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f789d9\",\"settings\":{\"content_width\":\"full\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#008024\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ef5f32\",\"settings\":{\"title\":\"\\ud83d\\udca5\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ae\\u09be\\u09a8\\u09bf\\u09a4 \\u0995\\u09be\\u09b7\\u09cd\\u099f\\u09ae\\u09be\\u09b0\\u09c7\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989\\ud83d\\udca5\",\"header_size\":\"span\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"align_mobile\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"e5ec235\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a1cd81d\",\"settings\":{\"slides\":[{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"33b0a58\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"ed03e79\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"8303a9d\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"height\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"slide_border_color\":\"#A3A2A2\",\"_element_width\":\"inherit\",\"speed\":301,\"autoplay_speed\":2000,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"media-carousel\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"2d7cda1\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e9e4344\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008021\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#00500C\",\"button_background_hover_color\":\"#FFFFFF\",\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"7420aae\",\"settings\":{\"content_width\":\"full\",\"_element_id\":\"order\",\"min_height_mobile\":{\"unit\":\"px\",\"size\":612,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c343378\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1318,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#045304\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"511c395\",\"settings\":{\"title\":\"\\u0986\\u09ae \\u09aa\\u099a\\u09a8\\u09b6\\u09c0\\u09b2 \\u09a4\\u09be\\u0987 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u0995\\u09b0\\u09c7 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4  \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"c3e50d3\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1318,\"sizes\":[]},\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"background_color\":\"#E7E8D0\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#9E9E9E\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b74127\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1216,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":347,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":495,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"84de227\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":47},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_flex_align_self\":\"flex-end\",\"_flex_order\":\"start\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7fd7869\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"align\":\"right\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"8a60647\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":49},\"min_height\":{\"unit\":\"px\",\"size\":158,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"be4afd0\",\"settings\":{\"title\":\"\\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 \\u09b8\\u09c7\\u09a8\\u09cd\\u09a1 \\u09ae\\u09be\\u09a8\\u09bf \\u0995\\u09b0\\u09c1\\u09a8\\u0983\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"665fd9f\",\"settings\":{\"title\":\"01792-823943\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"typography_font_weight\":\"700\",\"title_color\":\"#242424\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"08540e7\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":48.336},\"boxed_width\":{\"unit\":\"px\",\"size\":925,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":199,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"nowrap\",\"_flex_align_self\":\"flex-start\",\"_flex_order\":\"start\",\"_flex_size\":\"none\",\"_flex_grow\":6,\"position\":\"absolute\",\"z_index\":0,\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ee0398\",\"settings\":{\"title\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"b366dd1\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0986\\u09ae - \\u09e7\\u09eb\\u09e6\\u09f3\",\"_id\":\"555b161\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09e8\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0986\\u09ae - \\u09e8\\u09eb\\u09e6\\u09f3\",\"_id\":\"27cce58\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#00B620\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"icon_typography_font_style\":\"italic\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":99.345},\"_flex_size\":\"none\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"c7d595f\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#045304\",\"shape_divider_top_color\":\"#56FF07\",\"shape_divider_top_flip\":\"yes\",\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"px\",\"size\":1528,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f677770\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#C9FFA9\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#045304\",\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ca55b39\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#045304\",\"title_color\":\"#FFFFFF\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"05abf86\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"global_typography_typography\":\"custom\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"global_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"kohinoor\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"input_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_color\":\"#000000\",\"input_border_style\":\"solid\",\"input_border_size\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"input_border_color\":\"#045304\",\"input_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"buttons_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"buttons_typography_font_weight\":\"800\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#007715\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btn_border_border\":\"solid\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"btn_border_color\":\"#B0E8A3\",\"button_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_color\":\"#045304\",\"button_background_hover_color_background\":\"classic\",\"button_background_hover_color_color\":\"#E7FFE7\",\"highlight_flag_text_color\":\"#FFFFFF\",\"highlight_flag_bg_color\":\"#348541\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"edc1349\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"flex_justify_content_mobile\":\"center\",\"flex_align_items_mobile\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_flex_align_self_mobile\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#B3FD99\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#777777\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"de139c9\",\"settings\":{\"title\":\"\\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 - 01983 196 929 \",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6fd1e28\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"92cd923\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Facebook Group\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/groups\\/1805794863172480\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cdfe69c\"},{\"text\":\"Facebook Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\\/sahabafood1\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a4c98d\"}],\"space_between\":{\"unit\":\"rem\",\"size\":10,\"sizes\":[]},\"space_between_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"space_between_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"bold\",\"text_color\":\"#FFFFFF\",\"_flex_align_self_mobile\":\"center\",\"_background_background\":\"classic\",\"_background_color\":\"#045304\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4325','1925','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4326','1925','_yoast_wpseo_content_score','60');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4327','1925','_yoast_wpseo_estimated-reading-time-minutes','3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4328','1925','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4329','1925','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4330','1925','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4331','1925','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4332','1925','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4333','1925','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4334','1925','wcf-product-variation-options','popup');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4335','1925','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4336','1925','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4337','1925','wcf-checkout-place-order-button-text','অর্ডার কনফার্ম করুন');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4338','1925','wcf-checkout-place-order-button-lock','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4339','1925','wcf-checkout-place-order-button-price-display','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4340','1925','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4341','1925','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4342','1925','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4343','1925','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:28:\"আপনার নামঃ\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:60:\"আপনার নাম লিখুন এখানে...\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:62:\"আপনার সম্পুর্ণ ঠিকানাঃ\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:91:\"এখানে আপনার সম্পুর্ণ ঠিকানা লিখুন\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:20;s:8:\"required\";b:1;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:50:\"আপনার ফোন নাম্বারঃ\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:30;s:5:\"width\";i:100;s:11:\"placeholder\";s:79:\"এখানে আপনার ফোন নাম্বার লিখুন\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:50;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:70;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:80;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:90;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:100;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4344','1925','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4345','1925','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4346','1925','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4347','1925','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4348','1925','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4349','1925','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4350','1925','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4351','1925','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4352','1925','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4353','1925','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4354','1925','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4355','1925','_oembed_time_e5df9a2eb3ad46153d39d63b18913bef','1716840370');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4356','1925','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4357','1925','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4358','1925','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4359','1925','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4360','1925','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4361','1925','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4362','1925','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4363','1925','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4364','1925','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4367','1924','wcf-steps','a:2:{i:0;a:3:{s:2:\"id\";i:1925;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:1983;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4368','1926','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4369','1926','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4370','1926','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4371','1926','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4372','1926','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4373','1926','_elementor_data','[{\"id\":\"eb1d65f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F60\",\"shape_divider_bottom\":\"wave-brush\",\"shape_divider_bottom_color\":\"#DAE7FF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"b840d99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8d3442e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a22ae1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 (Digital Timer Switch AC 220V ) \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09af\\u09c7\\u0995\\u09cb\\u09a8 \\u0987\\u09b2\\u09c7\\u0995\\u09cd\\u099f\\u09cd\\u09b0\\u09a8\\u09bf\\u0995\\u09cd\\u09b8 \\u09af\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b8\\u09ae\\u09df\\u09ae\\u09a4 \\u09ac\\u09a8\\u09cd\\u09a7 \\u0993 \\u099a\\u09be\\u09b2\\u09c1 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8, \\u09ac\\u09be\\u0981\\u099a\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u0985\\u09a8\\u09be\\u0995\\u09be\\u0999\\u09cd\\u0996\\u09bf\\u09a4 \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09a4\\u09c7\\u09b0 \\u0985\\u09aa\\u099a\\u09df\\u0964\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7beeb70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1e94b59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c60a291\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09e7\\u09eb\\u09eb\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"alignment\":\"right\",\"alignment_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"words_color\":\"#FF3E3E\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":true},{\"id\":\"014af8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15ab4ba\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"<span style=\\\"color:red\\\">\\u09e8\\u09e9{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} <\\/span> \\u099b\\u09be\\u09dc\\u09c7 \\u0985\\u09ab\\u09be\\u09b0  \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09e7\\u09e7\\u09ef\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"alignment\":\"left\",\"alignment_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"words_color\":\"#FF3E3E\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d92f04\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":192,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/428032616_122124272660149555_5864529653850465611_n.jpg\"},{\"id\":193,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/428081984_122124272702149555_5743743261868910294_n.jpg\"},{\"id\":194,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/428194276_122124272612149555_3814611115758490521_n.jpg\"}],\"thumbnail_size\":\"medium\",\"slides_to_show\":\"1\",\"navigation\":\"dots\",\"dots_position\":\"inside\",\"image_border_border\":\"groove\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"0145997\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#2C3F60\",\"background_color\":\"#DAE7FF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#C50101\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_animation\":\"bounceIn\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35b9caf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#DAE7FF\",\"shape_divider_bottom\":\"wave-brush\",\"shape_divider_bottom_color\":\"#2C3F60\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"551fcfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dfa3cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09af\\u09c7 \\u09b8\\u0995\\u09b2 \\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8\\u09c7 \\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 \\u09b8\\u09c1\\u0987\\u099a \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#2C3F60\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17a0dd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5f7f2bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"3d0b8dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09c3\\u09a4 \\u098f\\u09df\\u09be\\u09b0\\u09c7\\u099f\\u09b0\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"f30cd49\"},{\"text\":\"\\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09aa\\u09be\\u09ae\\u09cd\\u09aa\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"6f6a8e7\"},{\"text\":\"\\u09b8\\u09bf\\u0995\\u09bf\\u0989\\u09b0\\u09bf\\u099f\\u09bf \\u09b2\\u09be\\u0987\\u099f\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"fc1b2ef\"},{\"text\":\"\\u09b2\\u09be\\u0987\\u099f, \\u09ab\\u09cd\\u09af\\u09be\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"d65a7e3\"},{\"text\":\"\\u09ac\\u09be\\u0997\\u09be\\u09a8, \\u0996\\u09be\\u09ae\\u09be\\u09b0 \\u09ac\\u09be \\u0995\\u09c3\\u09b7\\u09bf \\u09af\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"b23f76a\"},{\"text\":\"\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09b9\\u09bf\\u099f\\u09be\\u09b0\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"fa5713c\"},{\"text\":\"\\u09ac\\u09bf\\u09b2 \\u09ac\\u09cb\\u09b0\\u09cd\\u09a1\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"0766c73\"},{\"text\":\"\\u098f\\u0995\\u09c1\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"8473b33\"},{\"text\":\"\\u099f\\u09bf\\u09ad\\u09bf \\u0987\\u09a4\\u09cd\\u09af\\u09be\\u09a6\\u09bf\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"3adcf8c\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider\":\"yes\",\"divider_style\":\"dashed\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"icon_color\":\"#2C3F60\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"divider_color\":\"#2C3F60\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2C3F60\",\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"613b8f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c0a58d\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=EhNJbwZ-NqU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"image_overlay\":{\"id\":195,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-1-1-1.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0328f21\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#2C3F60\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#C50101\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_animation\":\"bounceIn\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8fae027\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F60\",\"shape_divider_bottom\":\"wave-brush\",\"shape_divider_bottom_color\":\"#DAE7FF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d1cf95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f0df4cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u0985\\u099f\\u09cb \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0\\u09c7\\u09b0\\u09b0 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u0986\\u09b0\\u09cb \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0:\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82f8540\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09af\\u09c7\\u0995\\u09cb\\u09a8 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09af\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u098f\\u099f\\u09bf\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be\\u09ae\\u09a4 On\\/Off \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"33cd2a9\"},{\"text\":\"\\u098f\\u099f\\u09bf\\u09b0 \\u09b8\\u09be\\u09b9\\u09af\\u09cd\\u09af\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09be\\u09b0\\u09cd\\u09ae\\u09c7\\u09b0, \\u09ac\\u09be\\u09dc\\u09bf\\u09b0, \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09c7\\u09b0 \\u09ac\\u09be\\u09a4\\u09bf automitic \\u099c\\u09cd\\u09ac\\u09be\\u09b2\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"42fc8c1\"},{\"text\":\"\\u09b8\\u09c7\\u099a \\u09aa\\u09be\\u09ae\\u09cd\\u09aa autometic \\u09ad\\u09be\\u09ac\\u09c7 \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"a7f60d5\"},{\"text\":\"\\u09ac\\u09be\\u09b8\\u09be \\u09ac\\u09be\\u09dc\\u09bf\\u09b0 \\u09b8\\u09be\\u09ac\\u09ae\\u09be\\u09b0\\u09b8\\u09bf\\u09ac\\u09b2 \\u09aa\\u09be\\u09ae\\u09cd\\u09aa Autometic \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b309150\"},{\"text\":\"\\u09b0\\u09be\\u09b8\\u09cd\\u09a4\\u09be\\u09b0 \\u09ac\\u09be\\u09a4\\u09bf Autometic \\u099c\\u09cd\\u09ac\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09a8\\u09c7\\u09ad\\u09be\\u09a8\\u09cb\\u09b0 \\u0995\\u09be\\u099c\\u09c7 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"42e6be4\"},{\"text\":\"Biofloc \\u098f\\u09b0 Air pump Autometic On\\/Off \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u0995\\u09b0\\u09c7 \\u0985\\u09a4\\u09bf\\u09b0\\u09bf\\u0995\\u09cd\\u09a4 Air pump \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8 \\u09b9\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b7a500e\"},{\"text\":\"\\u099b\\u09be\\u09a6 \\u09ac\\u09be\\u0997\\u09be\\u09a8\\u09c7 Autometic \\u09aa\\u09be\\u09a8\\u09bf \\u09a6\\u09c7\\u09ac\\u09be\\u09b0\\/\\u09b8\\u09c7\\u099a\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09aa\\u09be\\u09ae\\u09cd\\u09aa\\u09c7 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2390883\"},{\"text\":\"\\u09b0\\u09ae\\u099c\\u09be\\u09a8 \\u09ae\\u09be\\u09b8\\u09c7 \\u09ae\\u09b8\\u099c\\u09bf\\u09a6\\u09c7 \\u099a\\u09c7\\u09b9\\u09c7\\u09b0\\u09bf\\u09b0 \\u09b8\\u09ae\\u09df Autometic \\u09b8\\u09be\\u0987\\u09b0\\u09c7\\u09a8\\/\\u0997\\u099c\\u09b2 \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb\\u09b0 \\u0995\\u09be\\u099c\\u09c7 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d0eeecc\"},{\"text\":\"\\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09ae\\u09a4 Wifi Router On\\/Off \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"410eb2c\"},{\"text\":\"\\u09ab\\u09cd\\u09b0\\u09bf\\u099c\\/\\u09b0\\u09c7\\u09ab\\u09cd\\u09b0\\u09bf\\u099c\\u09be\\u09b0\\u09c7\\u099f\\u09b0 \\u09b8\\u09ac\\u09b8\\u09ae\\u09df \\u099a\\u09b2\\u09a4\\u09c7 \\u09a5\\u09be\\u0995\\u09b2\\u09c7 \\u098f\\u099f\\u09bf\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09a8\\u09bf\\u09b0\\u09cd\\u09a6\\u09bf\\u09b8\\u09cd\\u099f \\u09b8\\u09ae\\u09df\\u09c7 On\\/Off \\u0995\\u09b0\\u09c7 \\u09ab\\u09cd\\u09b0\\u09c0\\u099c \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09af\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ab\\u09bf\\u099c \\u09a8\\u09a4\\u09c1\\u09a8\\u09c7\\u09b0 \\u09ae\\u09a4 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7 \\u0993 \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09ce \\u09ac\\u09bf\\u09b2 \\u0995\\u09ae \\u0986\\u09b8\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"0bc04fb\"},{\"text\":\"\\u09b8\\u09b0\\u09be\\u09b0\\u09be\\u09a4\\/\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09bf\\u09a8 \\/ \\u09ac\\u09c7\\u09b6\\u09c0 \\u09b8\\u09ae\\u09df \\u09a7\\u09b0\\u09c7 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u099a\\u09be\\u09b0\\u09cd\\u09af\\u09c7 \\u09b0\\u09be\\u0996\\u09b2\\u09c7 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09b8\\u09cd\\u099f \\u09ac\\u09be \\u09a6\\u09c1\\u09b0\\u09cd\\u0998\\u099f\\u09a8\\u09be \\u09b9\\u09ac\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ad\\u09be\\u09ac\\u09a8\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u099f\\u09bf\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09bf\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09df \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09c7 \\u099a\\u09be\\u09b0\\u09cd\\u09af \\u09a6\\u09c7\\u0993\\u09df\\u09be \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"a758695\"},{\"text\":\"\\u09ac\\u09be\\u09b8\\u09be, \\u09ac\\u09be\\u09dc\\u09bf\\u09b0 \\u09ac\\u09be\\u09a4\\u09bf, \\u09ab\\u09cd\\u09af\\u09be\\u09a8 \\u0987\\u09a4\\u09cd\\u09af\\u09be\\u09a6\\u09bf On\\/Off \\u0995\\u09b0\\u09be\\u09b0 \\u0995\\u09be\\u099c\\u09c7 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"5fbc203\"},{\"text\":\"\\u099a\\u09be\\u09b0\\u09cd\\u099c\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09bf\\u09a4 \\u09b8\\u0995\\u09b2 \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b0 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09a8\\u09bf\\u0995\\u09cd\\u09b8 \\u09ac\\u09be\\u0987\\u0995 \\u0985\\u099f\\u09cb\\u09b0\\u09bf\\u0995\\u09b6\\u09be \\u09ad\\u09cd\\u09af\\u09be\\u09a8 \\u09a8\\u09bf\\u09b0\\u09cd\\u09a6\\u09bf\\u09b7\\u09cd\\u099f \\u099f\\u09be\\u0987\\u09ae \\u0985\\u09a8\\u09c1\\u09af\\u09be\\u09af\\u09bc\\u09c0 \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"4236abe\"},{\"text\":\"\\u098f\\u0995\\u09c1\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u0995\\u09b0\\u09be\\u09b0 \\u0995\\u09cd\\u09b7\\u09c7\\u09a4\\u09cd\\u09b0\\u09c7 \\u098f\\u0987 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 \\u09ae\\u09c7\\u09b6\\u09bf\\u09a8 \\u0996\\u09c1\\u09ac\\u0987 \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099f\\u09be\\u0987\\u09ae \\u0985\\u09a8\\u09c1\\u09af\\u09be\\u09af\\u09bc\\u09c0 \\u09b8\\u09c1\\u0987\\u099a \\u0985\\u09a8 \\u0985\\u09ab \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c24069c\"},{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a5\\u09be\\u09ce \\u098f\\u09b0 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af\\u09c7 \\u09a6\\u09c8\\u09a8\\u09a8\\u09cd\\u09a6\\u09bf\\u09a8 \\u09ac\\u09b9\\u09c1\\u09b2 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09c3\\u09a4 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8\\u0997\\u09c1\\u09b2\\u09cb\\u0995\\u09c7 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09ae\\u09a4 \\u099f\\u09be\\u0987\\u09ae \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09c7 \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09af\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u0995\\u09cb\\u09a8 \\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8\\u0995\\u09c7 \\u09ac\\u09be\\u09b0 \\u09ac\\u09be\\u09b0 On\\/Off \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09df \\u09a8\\u09be\\u0964 \\u098f\\u099f\\u09bf\\u09a4\\u09c7 \\u098f\\u0995\\u09ac\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09b2\\u09c7\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09af\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\/\\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8\\u099f\\u09bf \\u09b8\\u09c7\\u0987 \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09be \\u09b8\\u09ae\\u09df \\u0985\\u09a8\\u09c1\\u09af\\u09be\\u09df\\u09c0 On\\/Off \\u09b9\\u09a4\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d04774e\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c99ec14\",\"elType\":\"widget\",\"settings\":{\"title\":\"*** \\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 ***\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe2be29\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09e7\\u09ec \\u099f\\u09bf \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u099c\\u09a8\\u0995 \\u0986\\u09b2\\u09be\\u09a6\\u09be \\u09b8\\u09ae\\u09df\\u09c7 ON\\/OFF \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964 \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09ce \\u099a\\u09b2\\u09c7 \\u0997\\u09c7\\u09b2\\u09c7\\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b8\\u09c7\\u09ad \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u0995\\u09ac\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09b2\\u09c7 \\u09a4\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u09a8\\u09be \\u0995\\u09b0\\u09be \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u0985\\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09bf\\u09a4 \\u09a5\\u09be\\u0995\\u09c7\\u0964\\u09ae\\u09cd\\u09af\\u09be\\u09a8\\u09c1\\u09df\\u09be\\u09b2 \\u09ae\\u09c1\\u09a1\\u09c7 \\u0985\\u09a8 \\u09ac\\u09be \\u0985\\u09ab \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09a6\\u09bf\\u09a8\\u09c7 ON\\/OFF \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\u0987\\u09a8\\u09cd\\u09b8\\u099f\\u09b2 \\u0995\\u09b0\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09b9\\u099c, \\u09aa\\u09cd\\u09b2\\u09be\\u0997 \\u09b2\\u09be\\u0997\\u09be\\u09a8\\u09cb \\u0986\\u099b\\u09c7\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bdbe029\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#2C3F60\",\"background_color\":\"#DAE7FF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#C50101\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf26112\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#DAE7FF\",\"shape_divider_top_color\":\"#DAE7FF\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_color\":\"#2C3F60\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"a2ddde0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"96cf82d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 \\u09b8\\u09c1\\u0987\\u099a (Digital Timer Switch) \\u098f\\u09b0 \\u09ac\\u09bf\\u09ac\\u09b0\\u09a3\\u09c0:\",\"align\":\"center\",\"title_color\":\"#2C3F60\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2337bc0\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":20,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#2C3F60\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2973509\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"350999a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"037fb6b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae: \\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 \\u09b8\\u09c1\\u0987\\u099a (Digital Timer Switch)\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"f30cd49\"},{\"text\":\"\\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09a6\\u09c7\\u09b6: \\u099a\\u09be\\u09df\\u09a8\\u09be\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"6f6a8e7\"},{\"text\":\"\\u09ad\\u09cb\\u09b2\\u09cd\\u099f\\u09c7\\u099c: \\u09e8\\u09e8\\u09e6-\\u09e8\\u09ea\\u09e6 \\u09ad\\u09cb\\u09b2\\u09cd\\u099f\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"fc1b2ef\"},{\"text\":\"\\u09b0\\u09c7\\u099f\\u09c7\\u09a1 \\u09aa\\u09be\\u0993\\u09df\\u09be\\u09b0: \\u09e8\\u09e9\\u09e6\\u09e6 \\u0993\\u09df\\u09be\\u099f\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"d65a7e3\"},{\"text\":\"\\u09ab\\u09cd\\u09b0\\u09bf\\u0995\\u09c1\\u09df\\u09c7\\u09a8\\u09cd\\u09b8\\u09bf : \\u09eb\\u09e6\\u09b9\\u09be\\u09b0\\u09cd\\u099c\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"b23f76a\"},{\"text\":\"\\u09b8\\u09be\\u0987\\u099c: \\u09e7\\u09e6.\\u09ebx\\u09ecx\\u09ea cm\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"fa5713c\"},{\"text\":\" \\u0993\\u099c\\u09a8: \\u09e7\\u09ea\\u09eb \\u0997\\u09cd\\u09b0\\u09be\\u09ae\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"0766c73\"},{\"text\":\"\\u09aa\\u09cd\\u09b2\\u09be\\u0997 \\u099f\\u09be\\u0987\\u09aa:\\u0987 \\u0987\\u0989 \\u09aa\\u09cd\\u09b2\\u09be\\u0997\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"8473b33\"},{\"text\":\"\\u09ac\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09bf \\u09ac\\u09cd\\u09af\\u09be\\u0995\\u0986\\u09aa: \\u09e7\\u09e8 V \\u2013 \\u09ee\\u09e6mAH\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"3adcf8c\"},{\"text\":\"\\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09ce \\u09b8\\u09be\\u09b6\\u09cd\\u09b0\\u09df\\u09c0\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"d2e9a4f\"},{\"text\":\"LED Display \\u098f\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u0995\\u09a8\\u09cd\\u099f\\u09cd\\u09b0\\u09cb\\u09b2 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"e57ce6c\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider_style\":\"dashed\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"icon_color\":\"#2C3F60\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_color\":\"#2C3F60\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7310d0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28ce0c9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":196,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-4-1.png\"},{\"id\":197,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-1.png\"},{\"id\":198,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-3-1.png\"},{\"id\":199,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-5-1.png\"},{\"id\":200,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-1.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"image_stretch\":\"yes\",\"navigation\":\"none\",\"arrows_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"arrows_color\":\"#2C3F60\",\"dots_position\":\"inside\",\"dots_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"dots_inactive_color\":\"#2C3F60\",\"dots_color\":\"#F70505\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Image Carousel\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"de3e1d7\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#2C3F60\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#C50101\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0f64fd5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8, \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u0986\\u09aa\\u09a1\\u09c7\\u099f \\u09aa\\u09c7\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09c7\\u099c\\u099f\\u09bf \\u09ab\\u09b2\\u09cb \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#2C3F60\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"849415e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"af62ba2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"059a3ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u099c\",\"align\":\"right\",\"size\":\"lg\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/arabelectronicgadgets\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#2C3F60\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#C50101\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"52b2199\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e15018a\",\"elType\":\"widget\",\"settings\":{\"text\":\"01819000000\",\"align\":\"left\",\"size\":\"lg\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#2C3F60\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#C50101\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c559378\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#DAE7FF\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a6b06a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#2C3F60\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72090b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#2C3F60\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#2C3F60\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_bgcolor\":\"#DAE7FF\",\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"payment_section_bg_color\":\"#DAE7FF\",\"payment_info_bg_color\":\"#DAE7FF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3d773d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F60\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fa53a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ccff08\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4374','1926','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4375','1926','_elementor_controls_usage','a:11:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:8;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:8;s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:8;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_font_weight\";i:8;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:5:{s:6:\"marker\";i:1;s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:10:\"after_text\";i:2;s:9:\"alignment\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_style_text\";a:8:{s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"words_color\";i:2;s:27:\"words_typography_typography\";i:2;s:28:\"words_typography_font_family\";i:2;s:28:\"words_typography_font_weight\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:14;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}s:14:\"section_layout\";a:1:{s:3:\"gap\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}s:21:\"section_shape_divider\";a:8:{s:20:\"shape_divider_bottom\";i:3;s:26:\"shape_divider_bottom_color\";i:4;s:26:\"shape_divider_bottom_width\";i:4;s:27:\"shape_divider_bottom_height\";i:4;s:25:\"shape_divider_bottom_flip\";i:1;s:23:\"shape_divider_top_color\";i:1;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:6;s:6:\"margin\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:5:{s:8:\"carousel\";i:2;s:14:\"thumbnail_size\";i:2;s:14:\"slides_to_show\";i:2;s:10:\"navigation\";i:2;s:13:\"image_stretch\";i:1;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:6:{s:13:\"dots_position\";i:2;s:11:\"arrows_size\";i:1;s:12:\"arrows_color\";i:1;s:9:\"dots_size\";i:1;s:19:\"dots_inactive_color\";i:1;s:10:\"dots_color\";i:1;}s:19:\"section_style_image\";a:2:{s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:14:\"_section_style\";a:1:{s:6:\"_title\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:6;s:4:\"size\";i:6;s:4:\"link\";i:6;s:13:\"selected_icon\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:12:{s:5:\"align\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:17:\"button_text_color\";i:6;s:16:\"background_color\";i:6;s:11:\"hover_color\";i:6;s:29:\"button_background_hover_color\";i:6;s:15:\"hover_animation\";i:6;s:13:\"border_radius\";i:6;s:12:\"align_mobile\";i:6;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:6:{s:13:\"space_between\";i:3;s:7:\"divider\";i:1;s:13:\"divider_style\";i:2;s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:13:\"divider_color\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:3;s:9:\"icon_size\";i:3;}s:18:\"section_text_style\";a:6:{s:26:\"icon_typography_typography\";i:3;s:27:\"icon_typography_font_family\";i:3;s:25:\"icon_typography_font_size\";i:3;s:27:\"icon_typography_font_weight\";i:3;s:10:\"text_color\";i:3;s:27:\"icon_typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"style\";i:1;s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:1;s:6:\"weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4376','1927','wcf-flow-id','1894');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4377','1927','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4378','1927','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4379','1927','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4380','1927','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4381','1927','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4382','1927','_astra_content_layout_flag','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4383','1927','site-post-title','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4384','1927','ast-title-bar-display','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4385','1927','ast-featured-img','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4386','1927','ast-site-content-layout','full-width-container');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4387','1927','site-sidebar-layout','no-sidebar');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4388','1927','_edit_lock','1717965484:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4389','1927','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4390','1927','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4391','1927','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4392','1927','_elementor_data','[{\"id\":\"169d1f2\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#A6C793\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b8501ba\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dba2c2e\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FC7F01\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"cf11801\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#266600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"4dd44b5\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6, \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2 \\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"abc4fa7\",\"settings\":{\"editor\":\"<p>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"bae0f86\",\"elType\":\"widget\",\"settings\":{\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"section_heading_typography_typography\":\"custom\",\"section_heading_typography_font_family\":\"Hind Siliguri\",\"section_text_typography_typography\":\"custom\",\"section_text_typography_font_family\":\"Hind Siliguri\",\"section_text_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"section_text_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2b0d1ae\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=757836c\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"931b94b\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17a8e79\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4393','1927','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4394','1927','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:2;s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4395','1927','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4396','1928','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4397','1928','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4398','1928','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4399','1928','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4400','1928','_elementor_data','[{\"id\":\"169d1f2\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#A6C793\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"b8501ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dba2c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FC7F01\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cf11801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#266600\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4dd44b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6, \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2 \\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abc4fa7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bae0f86\",\"elType\":\"widget\",\"settings\":{\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"section_heading_typography_typography\":\"custom\",\"section_heading_typography_font_family\":\"Hind Siliguri\",\"section_text_typography_typography\":\"custom\",\"section_text_typography_font_family\":\"Hind Siliguri\",\"section_text_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"section_text_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0d1ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=757836c\"}},\"elements\":[{\"id\":\"931b94b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"17a8e79\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4401','1928','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4402','1928','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:2;s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4403','1928','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4404','1930','wcf-flow-id','1929');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4405','1930','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4406','1930','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4407','1929','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1930;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1932;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1981;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4408','1932','wcf-flow-id','1929');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4409','1932','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4410','1932','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4411','1932','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4412','1932','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4413','1932','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4414','1932','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4415','1932','_edit_lock','1716584392:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4416','1932','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4417','1932','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4418','1932','_elementor_data','[{\"id\":\"119afa54\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"initial\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#F2CA4D12\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":172},\"background_video_fallback\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_color_b\":\"#F6121C21\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":130},\"content_width\":{\"unit\":\"px\",\"size\":1170},\"gap\":\"no\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_color\":\"#E7D1D154\",\"background_xpos\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":73,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"vh\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"vh\",\"size\":0,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position_mobile\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"contain\",\"background_overlay_size_mobile\":\"cover\",\"overlay_blend_mode\":\"screen\",\"shape_divider_bottom\":\"waves\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":219,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"reverse_order_mobile\":\"reverse-mobile\",\"__globals__\":{\"background_overlay_color_b\":\"\",\"background_overlay_color\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fed3b07\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"em\",\"top\":\"22\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26319b45\",\"settings\":{\"title\":\"Owner away? We\'ll sit & stay.\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.9,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#0D0D0E\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2355eb8a\",\"settings\":{\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"\"},\"align_mobile\":\"center\",\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"2b0d7d27\",\"settings\":{\"button_type\":\"danger\",\"text\":\"our services\",\"align\":\"center\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"45\",\"bottom\":\"18\",\"left\":\"45\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"background_color\":\"#F9F6F4\",\"button_hover_border_color\":\"#E9BF93\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"hover_color\":\"#FFFFFF\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\",\"button_hover_border_color\":\"\",\"button_background_hover_color\":\"\"},\"align_mobile\":\"justify\",\"_element_width\":\"auto\",\"button_text_color\":\"#EF7823\",\"border_color\":\"#EF7823\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_background_hover_color\":\"#EF7823\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"1a8b659b\",\"settings\":{\"button_type\":\"danger\",\"text\":\"book now\",\"align\":\"left\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"45\",\"bottom\":\"18\",\"left\":\"45\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"background_color\":\"#EF7823\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"hover_color\":\"#FFFFFF\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=9ec738a\",\"button_background_hover_color\":\"globals\\/colors?id=9ec738a\"},\"align_mobile\":\"justify\",\"icon_align\":\"right\",\"button_text_color\":\"#FFFFFF\",\"_element_width\":\"auto\",\"border_color\":\"#EF7823\",\"border_border\":\"solid\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"4323595\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54b8eea5\",\"settings\":{\"icon\":\"fa fa-paw\",\"view\":\"stacked\",\"shape\":\"square\",\"size\":{\"unit\":\"px\",\"size\":30},\"icon_padding\":{\"unit\":\"px\",\"size\":14},\"rotate\":{\"unit\":\"deg\",\"size\":4},\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-grin-beam\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"_animation\":\"rotateIn\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":-5,\"blur\":18,\"spread\":-11,\"color\":\"rgba(0, 0, 0, 0.25)\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"size\":27,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":20.996,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y\":{\"size\":25,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"size\":15,\"unit\":\"vh\"},\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"primary_color\":\"#E9BF93\",\"secondary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"60f96469\",\"settings\":{\"icon\":\"fa fa-paw\",\"shape\":\"square\",\"size\":{\"unit\":\"px\",\"size\":70},\"icon_padding\":{\"unit\":\"px\",\"size\":14},\"rotate\":{\"unit\":\"deg\",\"size\":4},\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-bacon\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"_animation\":\"rubberBand\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":-5,\"blur\":18,\"spread\":-11,\"color\":\"rgba(0, 0, 0, 0.25)\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x_end\":{\"size\":58,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":52,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"vh\",\"size\":33,\"sizes\":[]},\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"size_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_offset_x\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":-6,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"primary_color\":\"#E4966E\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"1ea92df0\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"structure\":\"40\",\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ceac2e8\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30b40977\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-dog\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Dog walking\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"primary_color\":\"#E9BF93\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":2,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"title_color\":\"#0A0A0A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_border_color\":\"#7A7A7A45\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":false},\"_border_hover_border\":\"dotted\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=9ec738a\",\"title_color\":\"\",\"_border_color\":\"\",\"_border_hover_color\":\"globals\\/colors?id=d8c9c0\",\"secondary_color\":\"\"},\"secondary_color\":\"#F4EEEE\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-box\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"483b2b25\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e3024f4\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-football-ball\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Exercising\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"primary_color\":\"#F6CD38\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":2,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"title_color\":\"#121010\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_border_color\":\"#7A7A7A45\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":false},\"_border_hover_border\":\"dotted\",\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"\",\"_border_color\":\"\",\"_border_hover_color\":\"globals\\/colors?id=d8c9c0\",\"secondary_color\":\"\"},\"secondary_color\":\"#F9F7F3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-box\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"55095520\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b0df38\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-eye\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Pet Sitting\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"primary_color\":\"#95E6ED\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":2,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"title_color\":\"#131212\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_border_color\":\"#7A7A7A45\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":false},\"_border_hover_border\":\"dotted\",\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"\",\"_border_color\":\"\",\"_border_hover_color\":\"globals\\/colors?id=d8c9c0\",\"secondary_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-box\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"2dab5e9e\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6051d4e7\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-paw\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Short Term Care\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"primary_color\":\"#6EE4A0\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":2,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"title_color\":\"#0F0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_border_color\":\"#7A7A7A45\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":false},\"_border_hover_border\":\"dotted\",\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"\",\"_border_color\":\"\",\"_border_hover_color\":\"globals\\/colors?id=d8c9c0\",\"secondary_color\":\"\"},\"secondary_color\":\"#D6FBD5\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-box\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"56cfd713\",\"settings\":{\"gap\":\"no\",\"background_color\":\"#FFFFFF\",\"content_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_repeat\":\"no-repeat\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":-40,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":69,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"563663da\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f8dc01f\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ebc4006\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_color\":\"#db6159\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(51,51,51,0)\",\"background_overlay_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":25},\"background_overlay_color_b\":\"#333333\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":210},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9},\"background_overlay_hover_color\":\"#db6159\",\"background_overlay_hover_color_b\":\"#db6159\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.7},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.2},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"684a73f8\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"b064abd\",\"settings\":{\"icon\":\"fa fa-paw\",\"shape\":\"square\",\"size\":{\"unit\":\"px\",\"size\":70},\"icon_padding\":{\"unit\":\"px\",\"size\":14},\"rotate\":{\"unit\":\"deg\",\"size\":4},\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-bacon\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"_animation\":\"rubberBand\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":-5,\"blur\":18,\"spread\":-11,\"color\":\"rgba(0, 0, 0, 0.25)\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x_end\":{\"size\":58,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":50.875,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"vh\",\"size\":33,\"sizes\":[]},\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"size_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_offset_x\":{\"size\":13.704,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"primary_color\":\"#E4966E\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"8cba89d\",\"settings\":{\"icon\":\"fa fa-paw\",\"shape\":\"square\",\"size\":{\"unit\":\"px\",\"size\":43},\"icon_padding\":{\"unit\":\"px\",\"size\":14},\"rotate\":{\"unit\":\"deg\",\"size\":4},\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-baseball-ball\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"_animation\":\"rubberBand\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":-5,\"blur\":18,\"spread\":-11,\"color\":\"rgba(0, 0, 0, 0.25)\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x_end\":{\"size\":58,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":21.635,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"vh\",\"size\":33,\"sizes\":[]},\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"size_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_offset_x\":{\"size\":67.926,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"primary_color\":\"#A9E08B\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"782353d1\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"150\",\"height\":\"150\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":63,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"image_border_radius_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"bounceIn\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":7,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":-6,\"sizes\":[]},\"_offset_x_mobile\":{\"size\":-4,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end\":{\"size\":\"\",\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":9.225,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"size\":48,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_end_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":116,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":61,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=379b66e9\"},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":35,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"107c0eaf\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_color\":\"#ffffff\",\"background_overlay_color\":\"rgba(51,51,51,0)\",\"background_overlay_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":25},\"background_overlay_color_b\":\"#333333\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":210},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9},\"background_overlay_hover_color\":\"#db6159\",\"background_overlay_hover_color_b\":\"#db6159\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.7},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.2},\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a71626d\",\"settings\":{\"title\":\"professional Pet Sitters\",\"size\":\"medium\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#EF7823\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"capitalize\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6e364faa\",\"settings\":{\"title\":\"Finally, pet care you can trust.\",\"size\":\"xl\",\"align\":\"left\",\"title_color\":\"#353535\",\"typography_font_family\":\"Poppins\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.5},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1377f7bc\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>Ut elit tellus, dolor sit\\u00a0mattis, pulvinar dolor sit\\u00a0leo. Dolor sit\\u00a0tellus, luctus nec is mattis, professinall dapibus leo. Ut elit bool, luctus nec dolor sit.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"align\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3f1c2e5b\",\"settings\":{\"gap\":\"no\",\"background_color\":\"#FFFFFF\",\"content_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":60,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_repeat\":\"no-repeat\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":-40,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":69,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15ca0b9b\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61ec4dee\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b59edc9\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_color\":\"#ffffff\",\"background_overlay_color\":\"rgba(51,51,51,0)\",\"background_overlay_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":25},\"background_overlay_color_b\":\"#333333\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":210},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9},\"background_overlay_hover_color\":\"#db6159\",\"background_overlay_hover_color_b\":\"#db6159\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.7},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.2},\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67766b22\",\"settings\":{\"title\":\"professional Pet Sitters\",\"size\":\"medium\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#EF7823\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"capitalize\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"64d492af\",\"settings\":{\"title\":\"Our professional trainers listen to your needs.\",\"align\":\"left\",\"title_color\":\"#353535\",\"typography_font_family\":\"Poppins\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.4},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5383b680\",\"settings\":{\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"align\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"69a3caf3\",\"settings\":{\"button_type\":\"danger\",\"text\":\"meet our team\",\"align\":\"left\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"45\",\"bottom\":\"18\",\"left\":\"45\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"button_background_hover_color\":\"#EF7823\",\"button_hover_border_color\":\"#E9BF93\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#EF7823\",\"hover_color\":\"#FFFFFF\",\"button_text_color\":\"#EF7823\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\",\"button_hover_border_color\":\"\",\"button_background_hover_color\":\"\"},\"align_mobile\":\"justify\",\"background_color\":\"#F9F6F4\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"7d1ccd34\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"animation\":\"fadeIn\",\"_inline_size_tablet\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e79d6a5\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":97,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":349,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"551e3561\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"100\",\"height\":\"100\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"image_border_radius_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"bounceIn\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-3,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end_tablet\":{\"size\":4.998,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":9.225,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"size\":27,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_end_tablet\":{\"size\":60,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_end_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=9ec738a\"},\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"28cb132f\",\"settings\":{\"icon\":\"fa fa-paw\",\"view\":\"stacked\",\"shape\":\"square\",\"primary_color\":\"#EF6823\",\"secondary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":30},\"icon_padding\":{\"unit\":\"px\",\"size\":14},\"rotate\":{\"unit\":\"deg\",\"size\":316},\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-heart\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"_animation\":\"rotateIn\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":-5,\"blur\":18,\"spread\":-11,\"color\":\"rgba(0, 0, 0, 0.25)\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"_offset_x_end\":{\"size\":-7,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":12,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"72109108\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":30},\"background_overlay_color_b\":\"rgba(238,238,238,0.5)\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.48},\"shape_divider_top\":\"waves\",\"shape_divider_top_color\":\"#FFFFFF\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":199,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":101,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":70,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"778ee296\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1aa76a45\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"vh\",\"size\":58,\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"730f8d6f\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e2532ce\",\"settings\":{\"title\":\"Why Choose Us?\",\"align\":\"left\",\"title_color\":\"#F6F1F1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.9},\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"73a87a41\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70df5e2a\",\"settings\":{\"icon\":\"fa fa-smile-o\",\"view\":\"stacked\",\"shape\":\"square\",\"size\":{\"unit\":\"px\",\"size\":20},\"rotate\":{\"unit\":\"deg\",\"size\":0},\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"-2\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-smile\",\"library\":\"fa-regular\"},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":37,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"__fa4_migrated\":{\"selected_icon\":true},\"align\":\"left\",\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_z_index\":2,\"primary_color\":\"#EF7823\",\"secondary_color\":\"#FFF6F6\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"75c48ba0\",\"settings\":{\"title\":\"Our happy clients & their humans\",\"size\":\"medium\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"2\",\"isLinked\":false},\"typography_text_transform\":\"capitalize\",\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"59684f76\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"testimonial_image_size\":\"thumbnail\",\"testimonial_name\":\"John Doe\",\"testimonial_job\":\"Designer\",\"content_content_color\":\"#3b3b3b\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"content_typography_font_weight\":\"500\",\"content_typography_font_style\":\"italic\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"name_text_color\":\"#000000\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Poppins\",\"name_typography_font_weight\":\"700\",\"name_typography_text_transform\":\"uppercase\",\"job_text_color\":\"#54595f\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Poppins\",\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"61\",\"bottom\":\"75\",\"left\":\"58\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":-9,\"vertical\":10,\"blur\":40,\"spread\":-15,\"color\":\"rgba(0,0,0,0.5)\"},\"testimonial_alignment\":\"left\",\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":86,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"testimonial\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#E9E9E9\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#6EC1E4\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#6EC1E4\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4419','1932','_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4420','1932','_oembed_94620249a73cc10a0679692ba61fad2b','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4421','1932','_oembed_047ec1a1e4732153f83b573bd07c0e6f','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4422','1932','_oembed_time_047ec1a1e4732153f83b573bd07c0e6f','1708497492');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4423','1932','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4424','1932','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4425','1932','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4426','1932','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4427','1932','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4428','1932','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4429','1932','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4430','1932','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4431','1932','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4432','1932','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4433','1932','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4434','1932','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4435','1932','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4436','1932','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4437','1932','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4438','1932','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4439','1932','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4440','1932','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4441','1932','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4442','1932','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4443','1932','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4444','1932','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4445','1932','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4446','1932','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4447','1932','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4448','1932','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4449','1932','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4450','1932','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4451','1932','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4452','1932','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4453','1932','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4454','1932','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4455','1932','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4456','1932','_oembed_time_94620249a73cc10a0679692ba61fad2b','1710927601');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4457','1932','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4458','1932','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4459','1932','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4462','1933','wcf-flow-id','1826');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4463','1933','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4464','1933','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4465','1933','wcf-show-overview-section','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4466','1933','wcf-show-details-section','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4467','1933','wcf-show-billing-section','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4468','1933','wcf-show-shipping-section','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4469','1933','wcf-show-tq-redirect-section','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4470','1933','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4471','1933','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4472','1933','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4473','1933','_astra_content_layout_flag','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4474','1933','site-post-title','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4475','1933','ast-title-bar-display','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4476','1933','ast-featured-img','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4477','1933','site-content-layout','page-builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4478','1933','site-sidebar-layout','no-sidebar');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4479','1933','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4480','1933','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4481','1933','_elementor_data','[{\"id\":\"764943f\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"800\",\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"40\",\"bottom\":\"92\",\"left\":\"40\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"68\",\"left\":\"24\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"31\",\"left\":\"20\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#FFE600\",\"shape_divider_bottom\":\"opacity-fan\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53753228\",\"settings\":{\"_column_size\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71d1ad27\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#000000\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"size_mobile\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"667a9355\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.5\",\"sizes\":[]},\"align\":\"center\",\"header_size\":\"h1\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"484f2103\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\",\"header_size\":\"p\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"d490292\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"812\",\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#F8F6F8\",\"background_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"80\",\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"80\",\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"64\",\"left\":\"40\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"48\",\"left\":\"24\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29ce87b\",\"settings\":{\"_column_size\":\"100\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#DEE0E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":\"1\"},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"64\",\"blur\":\"80\",\"spread\":\"-40\",\"color\":\"rgba(0, 0, 0, 0.12)\"},\"padding\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"48\",\"bottom\":\"48\",\"left\":\"48\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"32\",\"bottom\":\"32\",\"left\":\"32\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"24\",\"left\":\"20\",\"isLinked\":\"\"},\"z_index\":\"1\",\"z_index_tablet\":\"1\",\"z_index_mobile\":\"1\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33cd50b\",\"elType\":\"widget\",\"settings\":{\"thankyou_text\":\"Your order has been received.\",\"heading_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"sections_spacing\":{\"unit\":\"px\",\"size\":\"4\",\"sizes\":[]},\"heading_align\":\"left\",\"heading_color\":\"#1A1E23\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Inter\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"section_heading_color\":\"#1A1E23\",\"section_heading_typography_typography\":\"custom\",\"section_heading_typography_font_family\":\"Inter\",\"section_heading_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"section_text_color\":\"#566376\",\"section_text_typography_typography\":\"custom\",\"section_text_typography_font_family\":\"Inter\",\"section_all_background_color_background\":\"classic\",\"section_all_background_color_color\":\"#F8F6F8\",\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"section_order_review_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"5464874d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a380bc2\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"603dee82\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4482','1933','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4483','1933','_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4484','1933','enable-to-import','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4485','1933','_thumbnail_id','53789');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4486','1933','cartflows_imported_step','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4487','1933','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4488','1933','_edit_lock','1717964957:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4489','1933','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4491','1934','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4492','1934','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4493','1934','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4494','1934','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4495','1934','_elementor_data','[{\"id\":\"764943f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"800\",\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"40\",\"bottom\":\"92\",\"left\":\"40\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"68\",\"left\":\"24\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"31\",\"left\":\"20\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#FFE600\",\"shape_divider_bottom\":\"opacity-fan\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]}},\"elements\":[{\"id\":\"53753228\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"71d1ad27\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#000000\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"size_mobile\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"667a9355\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.5\",\"sizes\":[]},\"align\":\"center\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"484f2103\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\",\"header_size\":\"p\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"d490292\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"812\",\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#F8F6F8\",\"background_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"80\",\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"80\",\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"64\",\"left\":\"40\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"48\",\"left\":\"24\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ce87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"border_color\":\"#DEE0E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":\"1\"},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":\"1\"},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"64\",\"blur\":\"80\",\"spread\":\"-40\",\"color\":\"rgba(0, 0, 0, 0.12)\"},\"padding\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"48\",\"bottom\":\"48\",\"left\":\"48\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"32\",\"bottom\":\"32\",\"left\":\"32\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"24\",\"left\":\"20\",\"isLinked\":\"\"},\"z_index\":\"1\",\"z_index_tablet\":\"1\",\"z_index_mobile\":\"1\"},\"elements\":[{\"id\":\"33cd50b\",\"elType\":\"widget\",\"settings\":{\"thankyou_text\":\"Your order has been received.\",\"heading_spacing\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"sections_spacing\":{\"unit\":\"px\",\"size\":\"4\",\"sizes\":[]},\"heading_align\":\"left\",\"heading_color\":\"#1A1E23\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Inter\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"section_heading_color\":\"#1A1E23\",\"section_heading_typography_typography\":\"custom\",\"section_heading_typography_font_family\":\"Inter\",\"section_heading_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"section_text_color\":\"#566376\",\"section_text_typography_typography\":\"custom\",\"section_text_typography_font_family\":\"Inter\",\"section_all_background_color_background\":\"classic\",\"section_all_background_color_color\":\"#F8F6F8\",\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"section_order_review_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5464874d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3a380bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"603dee82\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4496','1934','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4497','1934','_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4498','1934','_thumbnail_id','53789');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4499','1934','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4500','1934','_elementor_controls_usage','a:5:{s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:4:\"size\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:1;s:25:\"typography_letter_spacing\";i:1;s:5:\"align\";i:2;s:22:\"typography_line_height\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:6:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:7:\"z_index\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:2;s:3:\"gap\";i:2;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:3;s:6:\"margin\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:1;}s:21:\"section_shape_divider\";a:2:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}s:14:\"section_border\";a:1:{s:12:\"border_width\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4501','1936','wcf-flow-id','1935');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4502','1936','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4503','1936','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4504','1935','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1936;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1938;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1960;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4505','1938','wcf-flow-id','1935');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4506','1938','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4507','1938','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4508','1938','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4509','1938','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4510','1938','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4511','1938','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4512','1938','_edit_lock','1716560788:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4513','1938','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4514','1938','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4515','1938','_elementor_data','[{\"id\":\"34492a26\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#F6F2F2\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"vw\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"vh\",\"size\":-12,\"sizes\":[]},\"background_size\":\"cover\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"gap\":\"no\",\"background_attachment\":\"fixed\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#F3F0EB\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.06,\"sizes\":[]},\"overlay_blend_mode\":\"multiply\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49160db4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"space-between\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ac526f8\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"11c0fdea\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2043a7c\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"px\",\"size\":72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"1bc67e45\",\"settings\":{\"title\":\"s<br>\\na<br>\\nk<br>\\na<br>\\ni<br>\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#E61313\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Julee\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4.2,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"5df4675c\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#E3E0DD\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"607f1a2\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\",\"align_mobile\":\"space-between\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8cd6bbf\",\"settings\":{\"text\":\"about us\",\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"rgba(2, 1, 1, 0.02)\",\"button_hover_border_color\":\"rgba(2, 1, 1, 0.03)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"b4bc800\",\"settings\":{\"text\":\"lunch\",\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"rgba(2, 1, 1, 0.02)\",\"button_hover_border_color\":\"rgba(2, 1, 1, 0.03)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"2d5560b\",\"settings\":{\"text\":\"specials\",\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"rgba(2, 1, 1, 0.02)\",\"button_hover_border_color\":\"rgba(2, 1, 1, 0.03)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"1f5a8b31\",\"settings\":{\"text\":\"dinner\",\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"rgba(2, 1, 1, 0.02)\",\"button_hover_border_color\":\"rgba(2, 1, 1, 0.03)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"42a88c34\",\"settings\":{\"text\":\"dinner\",\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"rgba(2, 1, 1, 0.02)\",\"button_hover_border_color\":\"rgba(2, 1, 1, 0.03)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"c197181\",\"settings\":{\"text\":\"delivery\",\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"rgba(2, 1, 1, 0.02)\",\"button_hover_border_color\":\"rgba(2, 1, 1, 0.03)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"bc570e5\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":720,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vw\",\"size\":40,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.48,\"sizes\":[]},\"overlay_blend_mode\":\"overlay\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a35aef9\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6706e472\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7e9bbc3c\",\"settings\":{\"title\":\"The ultimate Japanese fusion experience.\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.4,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"none\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"549a49f\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"7e977eab\",\"settings\":{\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_style\":\"italic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"91cd129\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-angle-down\",\"library\":\"fa-solid\"},\"size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"primary_color\":\"#ED1414\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"7349ac9b\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F3F0EB\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"345741ed\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c8d88e7\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":720,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31d3e9b6\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"175c293e\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.&nbsp;<\\/p><p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit.<\\/p><p><br><\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"text_columns\":\"2\",\"column_gap\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align_mobile\":\"center\",\"text_columns_mobile\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"193feb1d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F3F0EB\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":5,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"162248fa\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dfd7deb\",\"settings\":{\"height_inner\":\"min-height\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f16fd32\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e920347\",\"settings\":{\"title\":\"featured\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Yeseva One\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c6ef148\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_text\":\"Lorem ipsum dolor  $9\",\"description_text\":\"consectetur adipiscing elit, sed do eiusmod tempor \",\"position\":\"left\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Muli\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Muli\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"18f5f63c\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.49,\"sizes\":[]},\"overlay_blend_mode\":\"overlay\",\"margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23be4c4e\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"4a3fc0e2\",\"settings\":{\"height_inner\":\"min-height\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c476ce9\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32441624\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"65152e8e\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16e8a43f\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"18717aca\",\"settings\":{\"text\":\"all specials\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(242, 17, 17, 0.96)\",\"button_hover_border_color\":\"rgba(2, 1, 1, 0.03)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"rgba(2, 1, 1, 0.03)\",\"align_mobile\":\"justify\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"498307f6\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":720,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vw\",\"size\":40,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.48,\"sizes\":[]},\"overlay_blend_mode\":\"overlay\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2de5c40c\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f8cd043\",\"settings\":{\"title\":\"25{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} off\",\"header_size\":\"span\",\"align\":\"center\",\"title_color\":\"#EF1212\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Yesteryear\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":7.5,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"22dbdc88\",\"settings\":{\"title\":\"When you order online during our Stay-at-Home promotion.\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Yeseva One\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.7,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5ba9f13b\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"72efa769\",\"settings\":{\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_style\":\"italic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"4884f1b2\",\"settings\":{\"text\":\"order now\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(242, 17, 17, 0.96)\",\"button_hover_border_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(2, 1, 1, 0.03)\",\"align_mobile\":\"justify\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"24e42bf5\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F3F0EB\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"2\",\"left\":\"4\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36d28643\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"83aeded\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5681911d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50972e9e\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":91,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"our guarantee\",\"text_color\":\"#EF1414\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Yeseva One\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"5fe291a6\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"text_columns\":\"1\",\"column_gap\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"367f6604\",\"settings\":{\"title\":\"meet our chefs\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"39854e0\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":34,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-stop-circle\",\"library\":\"fa-solid\"},\"color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"primary_color\":\"#EF3C0D\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"1dee1365\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53f11372\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":16,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b337abb\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"4688ae7e\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"2931534e\",\"settings\":{\"title\":\"Ben Sakai\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Yeseva One\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"70950305\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":16,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f2dc4ae\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7647a596\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"4c27814e\",\"settings\":{\"title\":\"Gerald Levign\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Yeseva One\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"27ba4ec7\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":16,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42e0835d\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"150\",\"height\":\"150\"},\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"45fa09eb\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"3c8c075c\",\"settings\":{\"title\":\"Ken Sakai\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Yeseva One\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#E9E9E9\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#6EC1E4\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#6EC1E4\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4516','1938','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4517','1938','_oembed_94620249a73cc10a0679692ba61fad2b','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4518','1938','_oembed_047ec1a1e4732153f83b573bd07c0e6f','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4519','1938','_oembed_time_047ec1a1e4732153f83b573bd07c0e6f','1708497492');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4520','1938','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4521','1938','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4522','1938','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4523','1938','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4524','1938','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4525','1938','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4526','1938','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4527','1938','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4528','1938','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4529','1938','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4530','1938','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4531','1938','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4532','1938','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4533','1938','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4534','1938','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4535','1938','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4536','1938','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4537','1938','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4538','1938','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4539','1938','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4540','1938','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4541','1938','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4542','1938','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4543','1938','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4544','1938','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4545','1938','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4546','1938','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4547','1938','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4548','1938','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4549','1938','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4550','1938','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4551','1938','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4552','1938','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4553','1938','_oembed_time_94620249a73cc10a0679692ba61fad2b','1710927601');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4554','1938','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4555','1938','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4556','1938','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4559','1939','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4560','1939','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4561','1939','wcf-dynamic-css-version','1710879359');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4562','1939','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4563','1939','_elementor_data','[{\"id\":\"544a9410\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FDDF31\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73127f30\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f66c4a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"263fdaed\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"5e1d0b7a\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"20ba40ed\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"18716410\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"387b344\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"749ebec\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fffb705\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"550f666d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2dce0932\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"246ae515\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Business Name | This website made with \\u2764\\ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4564','1939','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4565','1939','_elementor_version','3.20.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4566','1939','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4567','1939','_edit_lock','1711359413:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4568','1939','wcf-flow-id','1883');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4569','1939','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4570','1939','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4571','1939','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4573','1940','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4574','1940','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4575','1940','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4576','1940','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4577','1940','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4578','1940','_elementor_data','[{\"id\":\"34492a26\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"column_position\":\"stretch\",\"content_position\":\"space-evenly\",\"background_background\":\"classic\",\"background_color\":\"#F6F2F2\",\"background_image\":{\"id\":304,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pexels-photo-3298060.jpeg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"vw\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"vh\",\"size\":-12,\"sizes\":[]},\"background_size\":\"cover\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"gap\":\"no\",\"background_attachment\":\"fixed\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#F3F0EB\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.06,\"sizes\":[]},\"overlay_blend_mode\":\"multiply\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49160db4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"space-between\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ac526f8\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"11c0fdea\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2043a7c\",\"settings\":{\"image\":{\"id\":303,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/fish_publicdomain.png\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"px\",\"size\":72,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"1bc67e45\",\"settings\":{\"title\":\"s<br>\\na<br>\\nk<br>\\na<br>\\ni<br>\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#E61313\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Julee\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4.2,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"5df4675c\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#E3E0DD\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"607f1a2\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"space-between\",\"align_mobile\":\"space-between\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8cd6bbf\",\"settings\":{\"text\":\"about us\",\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"rgba(2, 1, 1, 0.02)\",\"button_hover_border_color\":\"rgba(2, 1, 1, 0.03)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"b4bc800\",\"settings\":{\"text\":\"lunch\",\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"rgba(2, 1, 1, 0.02)\",\"button_hover_border_color\":\"rgba(2, 1, 1, 0.03)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"2d5560b\",\"settings\":{\"text\":\"specials\",\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"rgba(2, 1, 1, 0.02)\",\"button_hover_border_color\":\"rgba(2, 1, 1, 0.03)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"1f5a8b31\",\"settings\":{\"text\":\"dinner\",\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"rgba(2, 1, 1, 0.02)\",\"button_hover_border_color\":\"rgba(2, 1, 1, 0.03)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"42a88c34\",\"settings\":{\"text\":\"dinner\",\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"rgba(2, 1, 1, 0.02)\",\"button_hover_border_color\":\"rgba(2, 1, 1, 0.03)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"c197181\",\"settings\":{\"text\":\"delivery\",\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"rgba(2, 1, 1, 0.02)\",\"button_hover_border_color\":\"rgba(2, 1, 1, 0.03)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"bc570e5\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":720,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vw\",\"size\":40,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":305,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pexels-photo-3296542.jpeg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.48,\"sizes\":[]},\"overlay_blend_mode\":\"overlay\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a35aef9\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6706e472\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7e9bbc3c\",\"settings\":{\"title\":\"The ultimate Japanese fusion experience.\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.4,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"none\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"549a49f\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"7e977eab\",\"settings\":{\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_style\":\"italic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"91cd129\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-angle-down\",\"library\":\"fa-solid\"},\"size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"primary_color\":\"#ED1414\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"7349ac9b\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F3F0EB\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"345741ed\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c8d88e7\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":720,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31d3e9b6\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"175c293e\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.&nbsp;<\\/p><p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit.<\\/p><p><br><\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"text_columns\":\"2\",\"column_gap\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align_mobile\":\"center\",\"text_columns_mobile\":\"1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"193feb1d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F3F0EB\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":310,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Japanese-Folk-Wave-Pattern-2014081446.png\"},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":5,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"162248fa\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dfd7deb\",\"settings\":{\"height_inner\":\"min-height\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f16fd32\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"background_background\":\"classic\",\"background_image\":{\"id\":306,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/marina-grynykha-FBgCgJhPO2I-unsplash.jpg\"},\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e920347\",\"settings\":{\"title\":\"featured\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Yeseva One\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c6ef148\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_text\":\"Lorem ipsum dolor  $9\",\"description_text\":\"consectetur adipiscing elit, sed do eiusmod tempor \",\"position\":\"left\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Muli\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Muli\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"18f5f63c\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"background_background\":\"classic\",\"background_image\":{\"id\":307,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pexels-photo-3297804.jpeg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.49,\"sizes\":[]},\"overlay_blend_mode\":\"overlay\",\"margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23be4c4e\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"4a3fc0e2\",\"settings\":{\"height_inner\":\"min-height\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c476ce9\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"background_background\":\"classic\",\"background_image\":{\"id\":308,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pexels-photo-3662104-1.jpeg\"},\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-8\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32441624\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"65152e8e\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"background_background\":\"classic\",\"background_image\":{\"id\":309,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pexels-photo-2827263.jpeg\"},\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16e8a43f\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"18717aca\",\"settings\":{\"text\":\"all specials\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(242, 17, 17, 0.96)\",\"button_hover_border_color\":\"rgba(2, 1, 1, 0.03)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"rgba(2, 1, 1, 0.03)\",\"align_mobile\":\"justify\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"498307f6\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":720,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vw\",\"size\":40,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":311,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pexels-photo-3297806.jpeg\"},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.48,\"sizes\":[]},\"overlay_blend_mode\":\"overlay\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2de5c40c\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f8cd043\",\"settings\":{\"title\":\"25{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} off\",\"header_size\":\"span\",\"align\":\"center\",\"title_color\":\"#EF1212\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Yesteryear\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":7.5,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"22dbdc88\",\"settings\":{\"title\":\"When you order online during our Stay-at-Home promotion.\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Yeseva One\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.7,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5ba9f13b\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"72efa769\",\"settings\":{\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_style\":\"italic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"4884f1b2\",\"settings\":{\"text\":\"order now\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(242, 17, 17, 0.96)\",\"button_hover_border_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"rgba(2, 1, 1, 0.03)\",\"align_mobile\":\"justify\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"24e42bf5\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F3F0EB\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"2\",\"left\":\"4\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36d28643\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"83aeded\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5681911d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50972e9e\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":91,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"our guarantee\",\"text_color\":\"#EF1414\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Yeseva One\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"5fe291a6\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Muli\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"text_columns\":\"1\",\"column_gap\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"367f6604\",\"settings\":{\"title\":\"meet our chefs\",\"header_size\":\"h5\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"39854e0\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":34,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-stop-circle\",\"library\":\"fa-solid\"},\"color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"primary_color\":\"#EF3C0D\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"1dee1365\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53f11372\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":16,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b337abb\",\"settings\":{\"image\":{\"id\":312,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pexels-photo-3761521.jpeg\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"4688ae7e\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"2931534e\",\"settings\":{\"title\":\"Ben Sakai\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Yeseva One\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"70950305\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":16,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f2dc4ae\",\"settings\":{\"image\":{\"id\":313,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/chef-cropped.png\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7647a596\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"4c27814e\",\"settings\":{\"title\":\"Gerald Levign\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Yeseva One\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"27ba4ec7\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":16,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42e0835d\",\"settings\":{\"image\":{\"id\":314,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pexels-photo-1747178.jpeg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"150\",\"height\":\"150\"},\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"45fa09eb\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.7,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"3c8c075c\",\"settings\":{\"title\":\"Ken Sakai\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Yeseva One\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#E9E9E9\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#6EC1E4\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#6EC1E4\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4579','1940','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4580','1940','_elementor_controls_usage','a:10:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:4;s:10:\"image_size\";i:4;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:4;s:19:\"image_border_radius\";i:3;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:8;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:5:\"align\";i:11;s:11:\"title_color\";i:9;s:21:\"typography_typography\";i:10;s:22:\"typography_font_family\";i:9;s:20:\"typography_font_size\";i:10;s:25:\"typography_text_transform\";i:8;s:22:\"typography_line_height\";i:1;s:22:\"typography_font_weight\";i:9;s:25:\"typography_letter_spacing\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:19;s:5:\"align\";i:1;s:16:\"content_position\";i:5;s:21:\"space_between_widgets\";i:4;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:4:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:4;s:19:\"background_position\";i:4;s:15:\"background_size\";i:4;}s:26:\"section_background_overlay\";a:3:{s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:7;s:6:\"margin\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:3:\"gap\";i:5;s:13:\"content_width\";i:5;s:6:\"height\";i:3;s:13:\"custom_height\";i:3;s:15:\"column_position\";i:1;s:16:\"content_position\";i:1;s:12:\"height_inner\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:8;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:9;s:16:\"background_color\";i:7;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:15:\"background_xpos\";i:1;s:15:\"background_ypos\";i:1;s:15:\"background_size\";i:3;s:21:\"background_attachment\";i:3;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:3;s:26:\"background_overlay_opacity\";i:4;s:18:\"overlay_blend_mode\";i:3;s:24:\"background_overlay_image\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:8;s:13:\"selected_icon\";i:2;s:10:\"icon_align\";i:2;s:11:\"icon_indent\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_element_width\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:17:{s:21:\"typography_typography\";i:8;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:8;s:25:\"typography_text_transform\";i:8;s:26:\"typography_text_decoration\";i:8;s:25:\"typography_letter_spacing\";i:8;s:17:\"button_text_color\";i:8;s:16:\"background_color\";i:8;s:25:\"button_hover_border_color\";i:8;s:13:\"border_border\";i:8;s:12:\"border_width\";i:8;s:13:\"border_radius\";i:8;s:12:\"text_padding\";i:8;s:5:\"align\";i:2;s:11:\"hover_color\";i:2;s:29:\"button_background_hover_color\";i:2;s:12:\"align_mobile\";i:2;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:7;s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:21:\"typography_font_style\";i:2;s:22:\"typography_line_height\";i:4;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:3:{s:6:\"editor\";i:2;s:12:\"text_columns\";i:2;s:10:\"column_gap\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:4:\"size\";i:1;s:13:\"primary_color\";i:1;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:1:{s:8:\"position\";i:1;}s:21:\"section_style_content\";a:12:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:31:\"title_typography_text_transform\";i:1;s:31:\"title_typography_letter_spacing\";i:1;s:17:\"description_color\";i:1;s:33:\"description_typography_typography\";i:1;s:34:\"description_typography_font_family\";i:1;s:32:\"description_typography_font_size\";i:1;s:34:\"description_typography_line_height\";i:1;s:28:\"title_typography_font_weight\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:5:{s:5:\"width\";i:2;s:5:\"align\";i:2;s:4:\"look\";i:2;s:4:\"text\";i:1;s:4:\"icon\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_text_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:25:\"typography_text_transform\";i:1;s:25:\"typography_letter_spacing\";i:1;}s:21:\"section_divider_style\";a:1:{s:5:\"color\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:13:\"primary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4581','1941','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4582','1941','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4583','1941','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4584','1941','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4585','1941','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4586','1941','_elementor_data','[{\"id\":\"119afa54\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90},\"background_background\":\"classic\",\"background_image\":{\"id\":284,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/alvan-nee-1061137-unsplash.jpg\"},\"background_position\":\"initial\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#F2CA4D12\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":172},\"background_video_fallback\":{\"id\":285,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-3.png\"},\"background_overlay_color_b\":\"#F6121C21\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":130},\"content_width\":{\"unit\":\"px\",\"size\":1170},\"gap\":\"no\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4},\"column_position\":\"stretch\",\"structure\":\"20\",\"background_color\":\"#E7D1D154\",\"background_xpos\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":73,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"vh\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"vh\",\"size\":0,\"sizes\":[]},\"background_overlay_image\":{\"id\":286,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/video-sec-bg.png\"},\"background_overlay_position_mobile\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"contain\",\"background_overlay_size_mobile\":\"cover\",\"overlay_blend_mode\":\"screen\",\"shape_divider_bottom\":\"waves\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":219,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"reverse_order_mobile\":\"reverse-mobile\",\"__globals__\":{\"background_overlay_color_b\":\"\",\"background_overlay_color\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fed3b07\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"em\",\"top\":\"22\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26319b45\",\"settings\":{\"title\":\"Owner away? We\'ll sit & stay.\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.9,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"\"},\"align_mobile\":\"center\",\"title_color\":\"#0D0D0E\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2355eb8a\",\"settings\":{\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"\"},\"align_mobile\":\"center\",\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"2b0d7d27\",\"settings\":{\"button_type\":\"danger\",\"text\":\"our services\",\"align\":\"center\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"45\",\"bottom\":\"18\",\"left\":\"45\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"background_color\":\"#F9F6F4\",\"button_hover_border_color\":\"#E9BF93\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"hover_color\":\"#FFFFFF\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\",\"button_hover_border_color\":\"\",\"button_background_hover_color\":\"\"},\"align_mobile\":\"justify\",\"_element_width\":\"auto\",\"button_text_color\":\"#EF7823\",\"border_color\":\"#EF7823\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_background_hover_color\":\"#EF7823\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"1a8b659b\",\"settings\":{\"button_type\":\"danger\",\"text\":\"book now\",\"align\":\"left\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"45\",\"bottom\":\"18\",\"left\":\"45\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"background_color\":\"#EF7823\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"hover_color\":\"#FFFFFF\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=9ec738a\",\"button_background_hover_color\":\"globals\\/colors?id=9ec738a\"},\"align_mobile\":\"justify\",\"icon_align\":\"right\",\"button_text_color\":\"#FFFFFF\",\"_element_width\":\"auto\",\"border_color\":\"#EF7823\",\"border_border\":\"solid\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"4323595\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54b8eea5\",\"settings\":{\"icon\":\"fa fa-paw\",\"view\":\"stacked\",\"shape\":\"square\",\"size\":{\"unit\":\"px\",\"size\":30},\"icon_padding\":{\"unit\":\"px\",\"size\":14},\"rotate\":{\"unit\":\"deg\",\"size\":4},\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-grin-beam\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"_animation\":\"rotateIn\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":-5,\"blur\":18,\"spread\":-11,\"color\":\"rgba(0, 0, 0, 0.25)\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"size\":27,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":20.996,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y\":{\"size\":25,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"size\":15,\"unit\":\"vh\"},\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"primary_color\":\"#E9BF93\",\"secondary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"60f96469\",\"settings\":{\"icon\":\"fa fa-paw\",\"shape\":\"square\",\"size\":{\"unit\":\"px\",\"size\":70},\"icon_padding\":{\"unit\":\"px\",\"size\":14},\"rotate\":{\"unit\":\"deg\",\"size\":4},\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-bacon\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"_animation\":\"rubberBand\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":-5,\"blur\":18,\"spread\":-11,\"color\":\"rgba(0, 0, 0, 0.25)\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x_end\":{\"size\":58,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":52,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"vh\",\"size\":33,\"sizes\":[]},\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"size_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_offset_x\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":-6,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"primary_color\":\"#E4966E\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"1ea92df0\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"structure\":\"40\",\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ceac2e8\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30b40977\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-dog\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Dog walking\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"primary_color\":\"#E9BF93\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":2,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"title_color\":\"#0A0A0A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_border_color\":\"#7A7A7A45\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":false},\"_border_hover_border\":\"dotted\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=9ec738a\",\"title_color\":\"\",\"_border_color\":\"\",\"_border_hover_color\":\"globals\\/colors?id=d8c9c0\",\"secondary_color\":\"\"},\"secondary_color\":\"#F4EEEE\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-box\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"483b2b25\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e3024f4\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-football-ball\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Exercising\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"primary_color\":\"#F6CD38\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":2,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"title_color\":\"#121010\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_border_color\":\"#7A7A7A45\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":false},\"_border_hover_border\":\"dotted\",\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"\",\"_border_color\":\"\",\"_border_hover_color\":\"globals\\/colors?id=d8c9c0\",\"secondary_color\":\"\"},\"secondary_color\":\"#F9F7F3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-box\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"55095520\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b0df38\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-eye\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Pet Sitting\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"primary_color\":\"#95E6ED\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":2,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"title_color\":\"#131212\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_border_color\":\"#7A7A7A45\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":false},\"_border_hover_border\":\"dotted\",\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"\",\"_border_color\":\"\",\"_border_hover_color\":\"globals\\/colors?id=d8c9c0\",\"secondary_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-box\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"2dab5e9e\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"em\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6051d4e7\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-paw\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Short Term Care\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"primary_color\":\"#6EE4A0\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"rotate\":{\"unit\":\"deg\",\"size\":2,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"title_color\":\"#0F0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_border_color\":\"#7A7A7A45\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":false},\"_border_hover_border\":\"dotted\",\"__globals__\":{\"primary_color\":\"\",\"title_color\":\"\",\"_border_color\":\"\",\"_border_hover_color\":\"globals\\/colors?id=d8c9c0\",\"secondary_color\":\"\"},\"secondary_color\":\"#D6FBD5\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-box\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"56cfd713\",\"settings\":{\"gap\":\"no\",\"background_color\":\"#FFFFFF\",\"content_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"background_image\":{\"id\":290,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/PngItem_5212065.png\"},\"background_repeat\":\"no-repeat\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":290,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/PngItem_5212065.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":-40,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":69,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"563663da\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f8dc01f\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ebc4006\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_color\":\"#db6159\",\"background_image\":{\"id\":287,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pete-bellis-419451-unsplash.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(51,51,51,0)\",\"background_overlay_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":25},\"background_overlay_color_b\":\"#333333\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":210},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9},\"background_overlay_hover_color\":\"#db6159\",\"background_overlay_hover_color_b\":\"#db6159\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.7},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.2},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"684a73f8\",\"settings\":{\"image\":{\"id\":287,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pete-bellis-419451-unsplash.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":288,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/1.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"b064abd\",\"settings\":{\"icon\":\"fa fa-paw\",\"shape\":\"square\",\"size\":{\"unit\":\"px\",\"size\":70},\"icon_padding\":{\"unit\":\"px\",\"size\":14},\"rotate\":{\"unit\":\"deg\",\"size\":4},\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-bacon\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"_animation\":\"rubberBand\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":-5,\"blur\":18,\"spread\":-11,\"color\":\"rgba(0, 0, 0, 0.25)\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x_end\":{\"size\":58,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":50.875,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"vh\",\"size\":33,\"sizes\":[]},\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"size_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_offset_x\":{\"size\":13.704,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"primary_color\":\"#E4966E\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"8cba89d\",\"settings\":{\"icon\":\"fa fa-paw\",\"shape\":\"square\",\"size\":{\"unit\":\"px\",\"size\":43},\"icon_padding\":{\"unit\":\"px\",\"size\":14},\"rotate\":{\"unit\":\"deg\",\"size\":4},\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-baseball-ball\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true},\"_animation\":\"rubberBand\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":-5,\"blur\":18,\"spread\":-11,\"color\":\"rgba(0, 0, 0, 0.25)\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x_end\":{\"size\":58,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":21.635,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"vh\",\"size\":33,\"sizes\":[]},\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"size_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_offset_x\":{\"size\":67.926,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"primary_color\":\"#A9E08B\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"782353d1\",\"settings\":{\"image\":{\"id\":289,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/anton-darius-thesollers-590562-unsplash.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"150\",\"height\":\"150\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":63,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"image_border_radius_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"bounceIn\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":7,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":-6,\"sizes\":[]},\"_offset_x_mobile\":{\"size\":-4,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end\":{\"size\":\"\",\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":9.225,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"size\":48,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_end_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":116,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":61,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=379b66e9\"},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":35,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"107c0eaf\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_color\":\"#ffffff\",\"background_overlay_color\":\"rgba(51,51,51,0)\",\"background_overlay_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":25},\"background_overlay_color_b\":\"#333333\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":210},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9},\"background_overlay_hover_color\":\"#db6159\",\"background_overlay_hover_color_b\":\"#db6159\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.7},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.2},\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a71626d\",\"settings\":{\"title\":\"professional Pet Sitters\",\"size\":\"medium\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#EF7823\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"capitalize\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6e364faa\",\"settings\":{\"title\":\"Finally, pet care you can trust.\",\"size\":\"xl\",\"align\":\"left\",\"title_color\":\"#353535\",\"typography_font_family\":\"Poppins\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.5},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1377f7bc\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>Ut elit tellus, dolor sit\\u00a0mattis, pulvinar dolor sit\\u00a0leo. Dolor sit\\u00a0tellus, luctus nec is mattis, professinall dapibus leo. Ut elit bool, luctus nec dolor sit.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"align\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3f1c2e5b\",\"settings\":{\"gap\":\"no\",\"background_color\":\"#FFFFFF\",\"content_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":60,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"id\":290,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/PngItem_5212065.png\"},\"background_repeat\":\"no-repeat\",\"background_overlay_image\":{\"id\":290,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/PngItem_5212065.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":-40,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":69,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15ca0b9b\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61ec4dee\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b59edc9\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_color\":\"#ffffff\",\"background_overlay_color\":\"rgba(51,51,51,0)\",\"background_overlay_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":25},\"background_overlay_color_b\":\"#333333\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":210},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9},\"background_overlay_hover_color\":\"#db6159\",\"background_overlay_hover_color_b\":\"#db6159\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.7},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.2},\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67766b22\",\"settings\":{\"title\":\"professional Pet Sitters\",\"size\":\"medium\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#EF7823\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"capitalize\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"64d492af\",\"settings\":{\"title\":\"Our professional trainers listen to your needs.\",\"align\":\"left\",\"title_color\":\"#353535\",\"typography_font_family\":\"Poppins\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.4},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5383b680\",\"settings\":{\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"align\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"69a3caf3\",\"settings\":{\"button_type\":\"danger\",\"text\":\"meet our team\",\"align\":\"left\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"45\",\"bottom\":\"18\",\"left\":\"45\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"button_background_hover_color\":\"#EF7823\",\"button_hover_border_color\":\"#E9BF93\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#EF7823\",\"hover_color\":\"#FFFFFF\",\"button_text_color\":\"#EF7823\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"\",\"button_hover_border_color\":\"\",\"button_background_hover_color\":\"\"},\"align_mobile\":\"justify\",\"background_color\":\"#F9F6F4\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"7d1ccd34\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"animation\":\"fadeIn\",\"_inline_size_tablet\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e79d6a5\",\"settings\":{\"image\":{\"id\":291,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/s-a-r-a-h-s-h-a-r-p-973479-unsplash.jpg\"},\"align\":\"left\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_mask_image\":{\"id\":288,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/1.png\"},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":97,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":349,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"551e3561\",\"settings\":{\"image\":{\"id\":292,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pete-bellis-535144-unsplash.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"100\",\"height\":\"100\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"dotted\",\"image_border_radius\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"image_border_radius_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_radius_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"bounceIn\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-3,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"size\":5,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end_tablet\":{\"size\":4.998,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":9.225,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"size\":27,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_end_tablet\":{\"size\":60,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_end_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=9ec738a\"},\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"28cb132f\",\"settings\":{\"icon\":\"fa fa-paw\",\"view\":\"stacked\",\"shape\":\"square\",\"primary_color\":\"#EF6823\",\"secondary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":30},\"icon_padding\":{\"unit\":\"px\",\"size\":14},\"rotate\":{\"unit\":\"deg\",\"size\":316},\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-heart\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true},\"_animation\":\"rotateIn\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":-5,\"blur\":18,\"spread\":-11,\"color\":\"rgba(0, 0, 0, 0.25)\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"_offset_x_end\":{\"size\":-7,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_x_end_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"size\":12,\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\"},\"_offset_y_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"72109108\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":293,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/nikita-kuvshinov-596389-unsplash.jpg\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":30},\"background_overlay_color_b\":\"rgba(238,238,238,0.5)\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":220},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.48},\"shape_divider_top\":\"waves\",\"shape_divider_top_color\":\"#FFFFFF\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":199,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":101,\"sizes\":[]},\"shape_divider_top_negative\":\"yes\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":96,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":70,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"778ee296\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1aa76a45\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"vh\",\"size\":58,\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"730f8d6f\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e2532ce\",\"settings\":{\"title\":\"Why Choose Us?\",\"align\":\"left\",\"title_color\":\"#F6F1F1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.9},\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"73a87a41\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70df5e2a\",\"settings\":{\"icon\":\"fa fa-smile-o\",\"view\":\"stacked\",\"shape\":\"square\",\"size\":{\"unit\":\"px\",\"size\":20},\"rotate\":{\"unit\":\"deg\",\"size\":0},\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"_margin\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"-2\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-smile\",\"library\":\"fa-regular\"},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":37,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"__fa4_migrated\":{\"selected_icon\":true},\"align\":\"left\",\"icon_padding\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_z_index\":2,\"primary_color\":\"#EF7823\",\"secondary_color\":\"#FFF6F6\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"75c48ba0\",\"settings\":{\"title\":\"Our happy clients & their humans\",\"size\":\"medium\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"em\",\"top\":\"-1\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"2\",\"isLinked\":false},\"typography_text_transform\":\"capitalize\",\"align_mobile\":\"center\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"59684f76\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"testimonial_image\":{\"id\":289,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/anton-darius-thesollers-590562-unsplash.jpg\"},\"testimonial_image_size\":\"thumbnail\",\"testimonial_name\":\"John Doe\",\"testimonial_job\":\"Designer\",\"content_content_color\":\"#3b3b3b\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"content_typography_font_weight\":\"500\",\"content_typography_font_style\":\"italic\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1},\"name_text_color\":\"#000000\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Poppins\",\"name_typography_font_weight\":\"700\",\"name_typography_text_transform\":\"uppercase\",\"job_text_color\":\"#54595f\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Poppins\",\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"61\",\"bottom\":\"75\",\"left\":\"58\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":-9,\"vertical\":10,\"blur\":40,\"spread\":-15,\"color\":\"rgba(0,0,0,0.5)\"},\"testimonial_alignment\":\"left\",\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":86,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"testimonial\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#E9E9E9\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":286,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/video-sec-bg.png\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#6EC1E4\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#6EC1E4\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4587','1941','_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4588','1941','_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:4;s:4:\"size\";i:4;s:4:\"link\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:21:\"typography_typography\";i:8;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_font_weight\";i:8;s:11:\"title_color\";i:7;s:5:\"align\";i:7;s:25:\"typography_text_transform\";i:4;s:22:\"typography_line_height\";i:6;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:6;s:14:\"_element_width\";i:2;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:10:\"text_color\";i:3;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:11:\"button_type\";i:3;s:4:\"text\";i:3;s:4:\"size\";i:3;s:10:\"icon_align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:5:\"align\";i:3;s:13:\"border_radius\";i:3;s:12:\"text_padding\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:16:\"background_color\";i:3;s:25:\"button_hover_border_color\";i:2;s:12:\"border_width\";i:3;s:11:\"hover_color\";i:3;s:25:\"typography_letter_spacing\";i:3;s:12:\"align_mobile\";i:3;s:17:\"button_text_color\";i:3;s:12:\"border_color\";i:3;s:29:\"button_background_hover_color\";i:2;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:14:\"_element_width\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:15;s:16:\"content_position\";i:5;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:4:{s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:10:{s:24:\"background_overlay_color\";i:3;s:29:\"background_overlay_color_stop\";i:3;s:26:\"background_overlay_color_b\";i:3;s:33:\"background_overlay_gradient_angle\";i:3;s:26:\"background_overlay_opacity\";i:3;s:30:\"background_overlay_hover_color\";i:3;s:32:\"background_overlay_hover_color_b\";i:3;s:32:\"background_overlay_hover_opacity\";i:3;s:35:\"background_overlay_hover_transition\";i:3;s:29:\"background_overlay_background\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:4:\"view\";i:3;s:5:\"shape\";i:6;s:13:\"selected_icon\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:8:{s:4:\"size\";i:6;s:12:\"icon_padding\";i:6;s:6:\"rotate\";i:6;s:12:\"border_width\";i:6;s:13:\"border_radius\";i:6;s:13:\"primary_color\";i:6;s:15:\"secondary_color\";i:3;s:5:\"align\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:8:{s:7:\"_margin\";i:6;s:14:\"_element_width\";i:6;s:9:\"_position\";i:5;s:21:\"_offset_orientation_h\";i:2;s:13:\"_offset_x_end\";i:6;s:9:\"_offset_y\";i:5;s:9:\"_offset_x\";i:4;s:8:\"_z_index\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:5;}s:15:\"_section_border\";a:3:{s:14:\"_border_radius\";i:5;s:27:\"_box_shadow_box_shadow_type\";i:2;s:22:\"_box_shadow_box_shadow\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:9:{s:6:\"height\";i:3;s:13:\"custom_height\";i:3;s:13:\"content_width\";i:3;s:3:\"gap\";i:8;s:15:\"column_position\";i:2;s:6:\"layout\";i:2;s:16:\"content_position\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:10:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:5;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:2;s:25:\"background_video_fallback\";i:1;s:16:\"background_color\";i:7;s:15:\"background_xpos\";i:1;s:15:\"background_ypos\";i:1;}s:26:\"section_background_overlay\";a:15:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_color_b\";i:2;s:33:\"background_overlay_gradient_angle\";i:2;s:26:\"background_overlay_opacity\";i:4;s:24:\"background_overlay_image\";i:3;s:29:\"background_overlay_attachment\";i:1;s:23:\"background_overlay_size\";i:3;s:18:\"overlay_blend_mode\";i:1;s:27:\"background_overlay_position\";i:2;s:23:\"background_overlay_xpos\";i:2;s:23:\"background_overlay_ypos\";i:2;s:25:\"background_overlay_repeat\";i:2;s:27:\"background_overlay_bg_width\";i:2;s:29:\"background_overlay_color_stop\";i:1;}s:21:\"section_shape_divider\";a:10:{s:26:\"shape_divider_bottom_color\";i:1;s:27:\"shape_divider_bottom_height\";i:2;s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_width\";i:2;s:25:\"shape_divider_bottom_flip\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:26:\"shape_divider_top_negative\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:5;s:6:\"margin\";i:5;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:4;s:4:\"view\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:5:{s:13:\"primary_color\";i:4;s:9:\"icon_size\";i:4;s:6:\"rotate\";i:4;s:13:\"border_radius\";i:4;s:15:\"secondary_color\";i:3;}s:21:\"section_style_content\";a:10:{s:11:\"title_color\";i:4;s:27:\"title_typography_typography\";i:4;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:4;s:28:\"title_typography_font_weight\";i:4;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:34:\"description_typography_line_height\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:8:\"_padding\";i:4;}s:15:\"_section_border\";a:5:{s:14:\"_border_border\";i:4;s:13:\"_border_width\";i:4;s:13:\"_border_color\";i:4;s:14:\"_border_radius\";i:4;s:20:\"_border_hover_border\";i:4;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:4;s:10:\"image_size\";i:2;s:22:\"image_custom_dimension\";i:2;}}s:8:\"advanced\";a:3:{s:16:\"_section_masking\";a:3:{s:12:\"_mask_switch\";i:2;s:11:\"_mask_shape\";i:2;s:11:\"_mask_image\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;}s:14:\"_section_style\";a:8:{s:14:\"_element_width\";i:2;s:9:\"_position\";i:2;s:9:\"_offset_x\";i:2;s:13:\"_offset_x_end\";i:2;s:21:\"_offset_orientation_v\";i:2;s:9:\"_offset_y\";i:2;s:13:\"_offset_y_end\";i:2;s:7:\"_margin\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:10:{s:5:\"width\";i:2;s:19:\"image_border_border\";i:2;s:19:\"image_border_radius\";i:2;s:5:\"align\";i:1;s:22:\"css_filters_css_filter\";i:1;s:22:\"css_filters_brightness\";i:1;s:20:\"css_filters_contrast\";i:1;s:20:\"css_filters_saturate\";i:1;s:15:\"css_filters_hue\";i:1;s:18:\"image_border_width\";i:1;}}}}s:11:\"testimonial\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_testimonial\";a:3:{s:17:\"testimonial_image\";i:1;s:22:\"testimonial_image_size\";i:1;s:21:\"testimonial_alignment\";i:1;}}s:5:\"style\";a:3:{s:33:\"section_style_testimonial_content\";a:8:{s:21:\"content_content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:30:\"content_typography_font_weight\";i:1;s:29:\"content_typography_font_style\";i:1;s:30:\"content_typography_line_height\";i:1;s:33:\"content_typography_letter_spacing\";i:1;s:28:\"content_typography_font_size\";i:1;}s:30:\"section_style_testimonial_name\";a:5:{s:15:\"name_text_color\";i:1;s:26:\"name_typography_typography\";i:1;s:27:\"name_typography_font_family\";i:1;s:27:\"name_typography_font_weight\";i:1;s:30:\"name_typography_text_transform\";i:1;}s:29:\"section_style_testimonial_job\";a:3:{s:14:\"job_text_color\";i:1;s:25:\"job_typography_typography\";i:1;s:26:\"job_typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_radius\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4589','1942','wcf-flow-id','1919');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4590','1942','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4591','1942','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4592','1942','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4593','1942','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4594','1942','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4595','1942','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4596','1942','_edit_lock','1716443406:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4597','1942','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4598','1942','wcf-dynamic-css-version','1716442215');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4599','1942','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4600','1942','_elementor_data','[{\"id\":\"3d0c27a\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"800\",\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"40\",\"bottom\":\"92\",\"left\":\"40\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"68\",\"left\":\"24\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"31\",\"left\":\"20\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#0F5149\",\"shape_divider_bottom\":\"opacity-fan\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"shape_divider_top\":\"drops\",\"shape_divider_top_color\":\"#123024\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8788fe7\",\"settings\":{\"_column_size\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"09fae76\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"size_mobile\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"a718b25\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.5\",\"sizes\":[]},\"align\":\"center\",\"header_size\":\"h1\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"f63900b\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"5be417f\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4400b50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"4d49cf89\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00000017\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d1aa5cd\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a692d55\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\\" style=\\\"color:red\\\">itgalaxi<\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4601','1942','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4602','1942','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4604','1943','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4605','1943','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4606','1943','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4607','1943','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4608','1943','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4609','1943','_elementor_data','[{\"id\":\"3d0c27a\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"800\",\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"40\",\"bottom\":\"92\",\"left\":\"40\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"68\",\"left\":\"24\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"31\",\"left\":\"20\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#0F5149\",\"shape_divider_bottom\":\"opacity-fan\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"shape_divider_top\":\"drops\",\"shape_divider_top_color\":\"#123024\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8788fe7\",\"settings\":{\"_column_size\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"09fae76\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"size_mobile\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"a718b25\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.5\",\"sizes\":[]},\"align\":\"center\",\"header_size\":\"h1\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"f63900b\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"5be417f\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4400b50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"4d49cf89\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00000017\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d1aa5cd\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a692d55\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\\" style=\\\"color:red\\\">itgalaxi<\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4610','1943','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4611','1943','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4612','1943','_elementor_controls_usage','a:5:{s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:4:\"size\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:2;s:25:\"typography_letter_spacing\";i:1;s:5:\"align\";i:3;s:22:\"typography_line_height\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:21:\"section_shape_divider\";a:6:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;s:24:\"shape_divider_top_height\";i:1;s:22:\"shape_divider_top_flip\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4613','1944','wcf-flow-id','1902');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4614','1944','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4615','1944','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4616','1944','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4617','1944','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4618','1944','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4619','1944','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4620','1944','_edit_lock','1717965598:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4621','1944','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4622','1944','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4623','1944','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4624','1944','_elementor_data','[{\"id\":\"f7ae924\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F60\",\"shape_divider_bottom\":\"wave-brush\",\"shape_divider_bottom_color\":\"#DAE7FF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"90\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e9c12ee\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0c25282\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"ee305a8\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#FFFFFF\",\"_border_border\":\"none\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"ea90041\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"933784a\",\"settings\":{\"editor\":\"<p>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"7612d16\",\"elType\":\"widget\",\"settings\":{\"heading_color\":\"#FFFFFF\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"section_heading_typography_typography\":\"custom\",\"section_heading_typography_font_family\":\"Hind Siliguri\",\"section_text_typography_typography\":\"custom\",\"section_text_typography_font_family\":\"Hind Siliguri\",\"section_order_review_typography_typography\":\"custom\",\"section_order_review_typography_font_family\":\"Hind Siliguri\",\"section_downloads_heading_typography_typography\":\"custom\",\"section_downloads_heading_typography_font_family\":\"Hind Siliguri\",\"section_downloads_text_typography_typography\":\"custom\",\"section_downloads_text_typography_font_family\":\"Hind Siliguri\",\"section_order_details_heading_typography_typography\":\"custom\",\"section_order_details_heading_typography_font_family\":\"Hind Siliguri\",\"section_order_details_text_typography_typography\":\"custom\",\"section_order_details_text_typography_font_family\":\"Hind Siliguri\",\"section_customer_details_heading_typography_typography\":\"custom\",\"section_customer_details_heading_typography_font_family\":\"Hind Siliguri\",\"section_customer_details_text_typography_typography\":\"custom\",\"section_customer_details_text_typography_font_family\":\"Hind Siliguri\",\"__globals__\":{\"section_order_review_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"94e6bf3\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F60\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f758af\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d50ea45\",\"settings\":{\"title\":\"  Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4625','1944','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4627','1945','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4628','1945','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4629','1945','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4630','1945','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4631','1945','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4632','1945','_elementor_data','[{\"id\":\"f7ae924\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F60\",\"shape_divider_bottom\":\"wave-brush\",\"shape_divider_bottom_color\":\"#DAE7FF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"90\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e9c12ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0c25282\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ee305a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#FFFFFF\",\"_border_border\":\"none\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"ea90041\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"933784a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7612d16\",\"elType\":\"widget\",\"settings\":{\"heading_color\":\"#FFFFFF\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"section_heading_typography_typography\":\"custom\",\"section_heading_typography_font_family\":\"Hind Siliguri\",\"section_text_typography_typography\":\"custom\",\"section_text_typography_font_family\":\"Hind Siliguri\",\"section_order_review_typography_typography\":\"custom\",\"section_order_review_typography_font_family\":\"Hind Siliguri\",\"section_downloads_heading_typography_typography\":\"custom\",\"section_downloads_heading_typography_font_family\":\"Hind Siliguri\",\"section_downloads_text_typography_typography\":\"custom\",\"section_downloads_text_typography_font_family\":\"Hind Siliguri\",\"section_order_details_heading_typography_typography\":\"custom\",\"section_order_details_heading_typography_font_family\":\"Hind Siliguri\",\"section_order_details_text_typography_typography\":\"custom\",\"section_order_details_text_typography_font_family\":\"Hind Siliguri\",\"section_customer_details_heading_typography_typography\":\"custom\",\"section_customer_details_heading_typography_font_family\":\"Hind Siliguri\",\"section_customer_details_text_typography_typography\":\"custom\",\"section_customer_details_text_typography_font_family\":\"Hind Siliguri\",\"__globals__\":{\"section_order_review_text_color\":\"\"}},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94e6bf3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F60\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f758af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d50ea45\",\"elType\":\"widget\",\"settings\":{\"title\":\"  Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4633','1945','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4634','1945','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:1:{s:14:\"_border_border\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:2;s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:21:\"section_shape_divider\";a:4:{s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4635','1946','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4636','1946','_elementor_data','[{\"id\":\"544a9410\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FDDF31\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73127f30\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f66c4a\",\"settings\":{\"image\":{\"id\":\"113\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo-1.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"263fdaed\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"5e1d0b7a\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"20ba40ed\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"18716410\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"387b344\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"749ebec\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fffb705\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"550f666d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2dce0932\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"246ae515\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Business Name | This website made with \\u2764\\ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4637','1946','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4638','1946','_elementor_version','3.20.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4639','1946','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4640','1946','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4641','1946','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4642','1946','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4643','1948','wcf-flow-id','1947');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4644','1948','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4645','1948','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4646','1947','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1948;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1950;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1968;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4647','1950','wcf-flow-id','1947');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4648','1950','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4649','1950','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4650','1950','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4651','1950','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4652','1950','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4653','1950','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4654','1950','_edit_lock','1717961851:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4655','1950','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4656','1950','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4657','1950','_elementor_data','[{\"id\":\"d07e630\",\"settings\":{\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=757836c\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75e01da\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a981e41\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"c785163\",\"settings\":{\"title\":\"\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf: \\u0986\\u09a6\\u09b0\\u09c7\\u09b0 \\u09b8\\u09a8\\u09cd\\u09a4\\u09be\\u09a8, \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7 \\u09ac\\u09be\\u09ac\\u09be-\\u09ae\\u09be, \\u09a1\\u09be\\u09af\\u09bc\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09b0\\u09cb\\u0997\\u09c0 \\u0993 \\u09a1\\u09be\\u09af\\u09bc\\u09c7\\u099f\\u09b0\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"f493693\",\"settings\":{\"editor\":\"<p>\\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09be\\u09b0\\u0995 \\u09b8\\u09be\\u09a6\\u09be \\u099a\\u09bf\\u09a8\\u09bf \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf\\u09b0 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a8\\u09cd\\u09af\\u09be\\u099a\\u09be\\u09b0\\u09be\\u09b2 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf \\u0996\\u09c7\\u09a4\\u09c7 \\u0985\\u09ad\\u09cd\\u09af\\u09c7\\u09b8 \\u0995\\u09b0\\u09c1\\u09a8, \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u098f\\u09ac\\u0982 \\u09aa\\u09cd\\u09b0\\u09bf\\u09df\\u099c\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09c7\\u09b0 \\u09af\\u09a4\\u09cd\\u09a8\\u09c7 \\u0986\\u099c\\u0987 \\u09a8\\u09bf\\u09a8\\u00a0 <span style=\\\"color: #d00140;\\\">\\\"\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf\\\"<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"be878b1\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"800\",\"background_color\":\"#D00140\",\"button_background_hover_color\":\"#91002C\",\"hover_animation\":\"push\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=5c74819\",\"button_background_hover_color\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"390dcd3\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d369371\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48071f4\",\"settings\":{\"title\":\"\\u09af\\u09c7 \\u0989\\u09aa\\u09a6\\u09be\\u09a8\\u0997\\u09c1\\u09b2\\u09cb \\u09a6\\u09bf\\u09df\\u09c7 \\u09a4\\u09c8\\u09b0\\u09c0 \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u09c7\\u099b\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"title_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"288e225\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b63705a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"765041d\",\"settings\":{\"border_border\":\"none\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"056fc78\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"none\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"06f33ce\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_border\":\"solid\",\"image_border_color\":\"#840E0E\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":70,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"2d3ed65\",\"settings\":{\"editor\":\"<p>\\u098f\\u0987 \\u09a6\\u09be\\u09b0\\u09c1\\u09a8 \\u09ae\\u099c\\u09be\\u09b0 \\u09ac\\u09b0\\u09ab\\u09bf \\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09bf\\u099c\\u09a8 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u0995\\u09df\\u09c7\\u0995 \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b0 \\u09ad\\u09be\\u09b2\\u09cb \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0, \\u0995\\u09be\\u099c\\u09c1, \\u09aa\\u09c7\\u09b8\\u09cd\\u09a4\\u09be, \\u0995\\u09be\\u09a0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u098f\\u09ac\\u0982 \\u09b8\\u09cd\\u09ac\\u09b0\\u09c7\\u09b0 \\u0998\\u09bf, \\u09b8\\u09be\\u09a6\\u09be \\u09a4\\u09bf\\u09b2 \\u09a6\\u09bf\\u09df\\u09c7 \\u09b8\\u09ac \\u09b0\\u0995\\u09ae\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09ac\\u09bf\\u09a7\\u09bf \\u09ae\\u09c7\\u09a8\\u09c7 \\u0998\\u09b0\\u09cb\\u09df\\u09be \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09bf \\u09af\\u09be \\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09b0 \\u0995\\u09be\\u09b2\\u09be\\u09b0, \\u09aa\\u09cd\\u09b0\\u09bf\\u099c\\u09be\\u09b0\\u09ad\\u09c7\\u099f\\u09bf\\u09ad \\u0993 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09b8\\u09be\\u09a6\\u09be \\u099a\\u09bf\\u09a8\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"6fc0ee4\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=757836c\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4092de9\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e5050d9\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/9NYtlTXxRak\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"_border_border\":\"double\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\"},\"image_overlay\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"312b1f2\",\"settings\":{\"title\":\"\\u09b8\\u09c1\\u0996\\u09be\\u09a6\\u09cd\\u09af \\u098f\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 <span style=\\\"color: #D00140\\\">\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf<\\/span> \\u098f\\u09a4\\u099f\\u09be\\u0987 \\u09ae\\u099c\\u09be\\u09a6\\u09be\\u09b0 \\u098f\\u09ac\\u0982 \\u0985\\u09a4\\u09c1\\u09b2\\u09a8\\u09c0\\u09df \\u09af\\u09c7 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7 \\u09b8\\u09ac\\u09be\\u0987  \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09ac\\u09c7  \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf!\",\"align\":\"center\",\"title_color\":\"#030303\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"b2a146c\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"800\",\"background_color\":\"#D00140\",\"button_background_hover_color\":\"#91002C\",\"hover_animation\":\"push\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=5c74819\",\"button_background_hover_color\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"c9621b0\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b248307\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40b6607\",\"settings\":{\"title\":\"\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf \\u0995\\u09c7\\u09a8\\u09cb \\u0996\\u09be\\u0993\\u09df\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8?\",\"align\":\"center\",\"title_color\":\"#D00140\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"title_color\":\"globals\\/colors?id=26ec5dd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"a7b0fc6\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7644200\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5c74819\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"244321e\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"title_text\":\"\\u09b6\\u09be\\u09b0\\u09c0\\u09b0\\u09bf\\u0995 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\",\"description_text\":\"\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0993 \\u09ac\\u09be\\u09a6\\u09be\\u09ae\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be, \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09c7\\u0964\",\"image_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"description_color\":\"#000000\",\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"280\",\"height\":\"280\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"2190bee\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5c74819\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e3a4c4\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"title_text\":\"\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\",\"description_text\":\"\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0993 \\u09ac\\u09be\\u09a6\\u09be\\u09ae\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u09ae\\u09bf\\u09a8\\u09be\\u09b0\\u09c7\\u09b2 \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964\",\"image_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"description_color\":\"#000000\",\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"280\",\"height\":\"280\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"f35113a\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5c74819\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dfa46e0\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"title_text\":\"\\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09af\\u09bc\",\"description_text\":\"\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0993 \\u09ac\\u09be\\u09a6\\u09be\\u09ae\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u098f\\u09ac\\u0982 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09af\\u09bc\\u0964\\n\",\"image_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"description_color\":\"#000000\",\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"280\",\"height\":\"280\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"f09b847\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=757836c\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e0a91b\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"163029b\",\"settings\":{\"border_border\":\"none\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"511bfaf\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"none\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"355ab2e\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_border\":\"solid\",\"image_border_color\":\"#840E0E\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"19c44ce\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bb0c2bf\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5c74819\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b88a9f\",\"settings\":{\"price_list\":[{\"title\":\"\\u09eb\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf\",\"item_description\":\"\\u09e7\\u09ee \\u09a5\\u09c7\\u0995\\u09c7 \\u09e8\\u09e8 \\u09aa\\u09bf\\u09b8 \\u09ac\\u09b0\\u09ab\\u09bf\",\"price\":\"\\u09f3\\u09ed\\u09eb\\u09e6\\/=\",\"_id\":\"f0f094c\",\"image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf\",\"item_description\":\"\\u09e9\\u09ee \\u09a5\\u09c7\\u0995\\u09c7 \\u09ea\\u09e8 \\u09aa\\u09bf\\u09b8 \\u09ac\\u09b0\\u09ab\\u09bf\",\"price\":\"\\u09f3\\u09e7\\u09e9\\u09e6\\u09e6\\/=\",\"_id\":\"224a828\",\"image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\\u09e8 \\u0995\\u09c7\\u099c\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf\",\"item_description\":\"\\u09ed\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ee\\u09e6 \\u09aa\\u09bf\\u09b8 \\u09ac\\u09b0\\u09ab\\u09bf\",\"price\":\"\\u09f3\\u09e8\\u09eb\\u09e6\\u09e6\\/=\",\"_id\":\"683e6cc\",\"image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Anek Bangla\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Hind Siliguri\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"description_typography_font_weight\":\"700\",\"separator_spacing\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Roboto\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"heading_color\":\"globals\\/colors?id=5c74819\",\"price_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"price-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"142f1af\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=757836c\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"eadf7f9\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ca200c6\",\"settings\":{\"title\":\"\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"59b4b0f\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"800\",\"background_color\":\"#D00140\",\"button_background_hover_color\":\"#91002C\",\"hover_animation\":\"push\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=5c74819\",\"button_background_hover_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"5f71f79\",\"settings\":{\"title\":\"( \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09ab\\u09cd\\u09b0\\u09c0 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf )\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=5c74819\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"be570b3\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order-form\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4bea656d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5c74819\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37676298\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#3C494E\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a03de62\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"product_options_position\":\"before-customer\",\"__globals__\":{\"btn_background_color_color\":\"globals\\/colors?id=5c74819\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\"},\"product_options_skin\":\"cards\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"62ac697\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d12cb75\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b037eab\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4658','1950','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4659','1950','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4660','1950','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4661','1950','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4662','1950','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4663','1950','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4664','1950','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4665','1950','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4666','1950','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4667','1950','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4668','1950','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:69:\"আপনার ফোন নাম্বারটি লেখুন\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4669','1950','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4670','1950','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4671','1950','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4672','1950','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4673','1950','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4674','1950','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4675','1950','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4676','1950','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4677','1950','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4678','1950','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4679','1950','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4680','1950','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4681','1950','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4682','1950','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4683','1950','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4684','1950','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4685','1950','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4686','1950','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4687','1950','wcf-product-options','multiple-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4688','1950','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4689','1950','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4690','1950','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4691','1950','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4692','1950','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4693','1950','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4694','1950','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4697','1952','wcf-flow-id','1951');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4698','1952','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4699','1952','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4700','1952','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4701','1952','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4702','1952','_elementor_version','3.15.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4703','1952','_elementor_pro_version','3.15.0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4704','1952','_edit_lock','1704050834:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4706','1951','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1952;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1954;s:5:\"title\";s:12:\"Khejurer Gur\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1970;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4707','1953','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4708','1953','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4709','1953','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4710','1953','_elementor_version','3.15.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4711','1953','_elementor_pro_version','3.15.0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4713','1954','wcf-flow-id','1951');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4714','1954','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4715','1954','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4716','1954','wcf_fields_billing','a:4:{s:18:\"billing_first_name\";a:7:{s:5:\"label\";s:9:\"নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:11:\"placeholder\";s:44:\"আপনার নাম লিখুন।\";s:17:\"custom_attributes\";a:0:{}}s:17:\"billing_address_1\";a:7:{s:5:\"label\";s:18:\"ঠিকানা\";s:11:\"placeholder\";s:53:\"আপনার ঠিকানা লিখুন।\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:20;s:17:\"custom_attributes\";a:0:{}}s:13:\"billing_phone\";a:9:{s:5:\"label\";s:34:\"মোবাইল নম্বর\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:30;s:11:\"placeholder\";s:75:\"আপনার মোবাইল নম্বরটি লিখুন।\";s:17:\"custom_attributes\";a:0:{}}s:15:\"billing_country\";a:8:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:4:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";i:3;s:28:\"inspire_checkout_fields_hide\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:11:\"placeholder\";s:0:\"\";s:17:\"custom_attributes\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4717','1954','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:14:\"State / County\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4718','1954','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4719','1954','wcf-product-options','multiple-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4720','1954','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4721','1954','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4722','1954','wcf-enable-product-quantity','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4723','1954','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4724','1954','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4725','1954','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4726','1954','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4727','1954','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4728','1954','_astra_content_layout_flag','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4729','1954','site-post-title','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4730','1954','ast-title-bar-display','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4731','1954','ast-featured-img','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4732','1954','site-content-layout','page-builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4733','1954','site-sidebar-layout','no-sidebar');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4734','1954','_edit_lock','1718129899:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4735','1954','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4736','1954','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4737','1954','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4738','1954','_elementor_data','[{\"id\":\"2b8db9c7\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54a41f\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_negative\":\"yes\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"20\",\"bottom\":\"36\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46ad4f2c\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a708d6\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"4b1f0631\",\"settings\":{\"title\":\"\\u09b6\\u09c0\\u09a4\\u09c7\\u09b0 \\u0990\\u09a4\\u09bf\\u09b9\\u09cd\\u09af \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09a1\\u09bc \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_animation\":\"fadeInDown\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"243a54fd\",\"settings\":{\"title\":\"\\u09b8\\u09c1\\u09a6\\u09c1\\u09b0 \\u099a\\u09c1\\u09af\\u09bc\\u09be\\u09a1\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b8\\u09b0\\u09cb\\u099c\\u0997\\u099e\\u09cd\\u099c \\u09a5\\u09c7\\u0995\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09b0\\u09b8 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7,\\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0997\\u09c1\\u09dc \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7 \\u09af\\u09a4\\u09cd\\u09a8 \\u09b8\\u09b9\\u0995\\u09be\\u09b0\\u09c7 \\u09aa\\u09cc\\u099b\\u09c7 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0998\\u09b0\\u09c7 \\u0964\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4c8f7a75\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"far fa-hand-point-down\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#F3DE2C\",\"hover_animation\":\"push\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"311cf4b3\",\"settings\":{\"background_background\":\"classic\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color\":\"#FFFFFF\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76f64aa8\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1fab6ac\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"image_border_color\":\"#54a41f\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"3f798473\",\"settings\":{\"editor\":\"\\u0998\\u09b0\\u09c7 \\u09ac\\u09b8\\u09c7 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u0996\\u09be\\u0981\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09c0 \\u0997\\u09c1\\u09dc \\u0993 \\u09a6\\u09be\\u09a8\\u09be\\u09a6\\u09be\\u09b0 \\u0997\\u09c1\\u09dc \\u09a8\\u09c7\\u09df\\u09be\\u09b0 \\u09b2\\u09cb\\u09ad\\u09a8\\u09c0\\u09df \\u09b8\\u09c1\\u09af\\u09cb\\u0997\\u0964\",\"align\":\"center\",\"align_mobile\":\"center\",\"text_color\":\"#54a41f\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"58d3016b\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\"},\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"22af972\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5911e3d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d7b7815\",\"settings\":{\"title\":\"\\u0997\\u09c1\\u09a1\\u09bc \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u099a\\u09c7\\u09a8\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09df \",\"align\":\"center\",\"title_color\":\"#54A41F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a30eda5\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#54A41F\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"b7771d2\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"87ed60e\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3703204\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"5b6d25e\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5414a21\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09dc \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09a7\\u09b0\\u09a8\\u09c7 \\u09ae\\u09c1\\u0996\\u09b0\\u09cb\\u099a\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5006653\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ab\\u09bf\\u09b0\\u09a8\\u09cd\\u09a8\\u09bf,\\u09aa\\u09be\\u09df\\u09c7\\u09b8,\\u0997\\u09c1\\u09dc\\u09c7\\u09b0  \\u09b6\\u09b0\\u09ac\\u09a4,\\u0997\\u09c1\\u09dc\\u09c7\\u09b0 \\u099a\\u09be,\\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u09a1\\u09bf\\u099c\\u09be\\u09b0\\u09cd\\u099f \\u0986\\u0987\\u099f\\u09c7\\u09ae \\u09a4\\u09c8\\u09b0\\u09c0 \\u09b9\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"d9a6268\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" \\u09b6\\u09c0\\u09a4\\u09c7 \\u09aa\\u09bf\\u09a0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09dc\\u09be \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u0996\\u09c1\\u09ac\\u0987 \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09df\\u0964\\u09af\\u09c7\\u09ae\\u09a8- \\u09ad\\u09be\\u09aa\\u09be \\u09aa\\u09bf\\u09a0\\u09be,\\u09aa\\u09be\\u099f\\u09bf\\u09b8\\u09be\\u09aa\\u099f\\u09be \\u09aa\\u09bf\\u09a0\\u09be,\\u09a8\\u0995\\u09b6\\u09c0 \\u09aa\\u09bf\\u09a0\\u09be, \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u09aa\\u09bf\\u09a0\\u09be,\\u0997\\u09c1\\u09dc\\u09c7\\u09b0 \\u099c\\u09bf\\u09b2\\u09be\\u09aa\\u09bf,\\u09a6\\u09c1\\u09a7-\\u09aa\\u09c1\\u09b2\\u09bf \\u09aa\\u09bf\\u09a0\\u09be,\\u0995\\u09cd\\u09b7\\u09bf\\u09dc \\u09aa\\u09bf\\u09a0\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"14ad024\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 \\u0997\\u09c1\\u09dc \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u0985\\u099e\\u09cd\\u099a\\u09b2\\u09c7\\u09b0 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09a7\\u09b0\\u09a8\\u09c7 \\u09aa\\u09bf\\u09a0\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"318c4d2\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#54A41F\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"8ab4e9e\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"1a82c8a\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54A41F\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a4cf9b7\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e65aeeb\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8 ?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"e355f94\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"669cf6c\",\"settings\":{\"content_position\":\"middle\",\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e0803b\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9dc50f4\",\"settings\":{\"icon_list\":[{\"text\":\"100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u09aa\\u09cd\\u09b0\\u09bf\\u099c\\u09be\\u09b0\\u09ad\\u09c7\\u099f\\u09bf\\u09ad \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u0997\\u09c1\\u09dc \\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5006653\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0997\\u09c1\\u09dc \\u099a\\u09bf\\u09a8\\u09bf , \\u09b0\\u09be\\u09b8\\u09be\\u09af\\u09bc\\u09a8\\u09bf\\u0995 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 , \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ac\\u09be\\u0987\\u0995\\u09c7 \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09bf\\u09a8\\u09cd\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09c0 \\u0997\\u09c1\\u09dc\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u0989\\u09aa\\u09ad\\u09cb\\u0997 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"d9a6268\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09c1\\u09a6\\u09c1\\u09b0 \\u099a\\u09c1\\u09af\\u09bc\\u09be\\u09a1\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b8\\u09b0\\u09cb\\u099c\\u0997\\u099e\\u09cd\\u099c \\u09a5\\u09c7\\u0995\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09b0\\u09b8 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7,\\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0997\\u09c1\\u09dc \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7 \\u09af\\u09a4\\u09cd\\u09a8 \\u09b8\\u09b9\\u0995\\u09be\\u09b0\\u09c7 \\u09aa\\u09cc\\u099b\\u09c7 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0998\\u09b0\\u09c7 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"14ad024\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09aa\\u09a8\\u09bf \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09df \\u099c\\u09be\\u09a8\\u09c7\\u09a8 \\u09af\\u09c7, \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09ac\\u099b\\u09b0 \\u09b8\\u09b0\\u09cd\\u09ac\\u099a\\u09cd\\u099a \\u09b6\\u09bf\\u09a4 \\u09aa\\u09dc\\u09c7 \\u099a\\u09c1\\u09af\\u09bc\\u09be\\u09a1\\u09be\\u0999\\u09cd\\u0997\\u09be \\u099c\\u09c7\\u09b2\\u09be\\u09a4\\u09c7 \\u0964 \\u09b6\\u09bf\\u09a4 \\u09ac\\u09c7\\u09b6\\u09bf \\u09aa\\u09dc\\u09b2\\u09c7 \\u09b0\\u09b8 \\u09ad\\u09be\\u09b2\\u09c7\\u09be \\u09b9\\u09df, \\u0986\\u09b0 \\u09b0\\u09b8 \\u09af\\u09a6\\u09bf \\u0996\\u09be\\u099f\\u09bf \\u09ad\\u09be\\u09b2\\u09c7\\u09be \\u09b9\\u09df \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u0997\\u09c1\\u09dc \\u0993 \\u09ad\\u09be\\u09b2\\u09c7\\u09be \\u09b9\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"318c4d2\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09dc 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0995\\u09cd\\u09af\\u09be\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u098f\\u09ac\\u0982 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09b9\\u09be\\u0987\\u099c\\u09c7\\u09a8 \\u09ae\\u09c7\\u0987\\u09a8\\u099f\\u09c7\\u0987\\u09a8 \\u0995\\u09b0\\u09c7 \\u09ac\\u09be\\u09a8\\u09be\\u09a8\\u09cb \\u09b9\\u09df\\u0964 \\u09af\\u09be \\u0995\\u09bf\\u09a8\\u09be \\u0986\\u09aa\\u09a8\\u09bf \\u0997\\u09c1\\u09dc \\u09b9\\u09be\\u09a4\\u09c7 \\u099f\\u09c7\\u09b8\\u09cd\\u099f \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df\\u0987 \\u09ac\\u09c1\\u099d\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"a780182\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" \\u0986\\u09aa\\u09a8\\u09bf \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ae\\u09cd\\u09af\\u09be\\u09a8 \\u098f\\u09b0 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u099f\\u09c7\\u09b8\\u09cd\\u099f \\u0995\\u09b0\\u09c7 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ef871ec\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09dc \\u0996\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u09aa\\u09b0 ,\\u0986\\u09aa\\u09a8\\u09bf \\u09ac\\u09b2\\u09a4\\u09c7 \\u09ac\\u09be\\u09a7\\u09cd\\u09af \\u09b9\\u09ac\\u09c7\\u09a8 ,\\u09ad\\u09be\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09a6\\u09c7\\u09b0 \\u0997\\u09c1\\u09dc \\u09a8\\u09be \\u09a8\\u09bf\\u09b2\\u09c7 \\u09ad\\u09c1\\u09b2 \\u0995\\u09b0\\u09a4\\u09be\\u09ae\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c08645d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#FFFFFF\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"612f6b4\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"72c8bee5\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.74,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33f9c9c7\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FB6107\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54966cce\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\" \\u09e9 \\u0995\\u09c7\\u099c\\u09bf \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u0997\\u09c1\\u09dc\",\"highlighted_text\":\"\\u09e7\\u09eb\\u09e6\\u09e6\\/=\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"title_color\":\"#54A41F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"__globals__\":{\"marker_color\":\"\",\"words_color\":\"\"},\"marker_color\":\"#FB6107\",\"words_color\":\"#FB6107\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"36cbf02a\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09a6\\u09c7\\u09b6\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FB0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"bounceIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"f15224d\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FB6107\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bf36621\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"\\u09e8.\\u09eb \\u0995\\u09c7\\u099c\\u09bf \\u09a8\\u09b2\\u09c7\\u09a8 \\u09a6\\u09be\\u09a8\\u09be\\u09a6\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\",\"highlighted_text\":\"\\u09e7\\u09e8\\u09e6\\u09e6\\/=\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"title_color\":\"#54A41F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"__globals__\":{\"marker_color\":\"\",\"words_color\":\"\"},\"marker_color\":\"#FB6107\",\"words_color\":\"#FB6107\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"51947c3\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09a6\\u09c7\\u09b6\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FB0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"bounceIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"1bef41e\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_position\":\"middle\",\"background_color\":\"#54A41F\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a4ef61\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5cb113e\",\"settings\":{\"title\":\"\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u0985\\u09a5\\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c6d301b\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3e921a3a\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"checkout\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33f9d690\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#54A41F\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e07956c\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09a4\\u09a5\\u09cd\\u09af \\u09a6\\u09bf\\u09df\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae \\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"title_color\":\"#54A41F\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2d1411af\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"global_primary_color\":\"\"},\"global_primary_color\":\"#54A41F\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"global_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"@media only screen and (max-width: 768px){\\r\\n\\t.wcf-order-wrap {\\r\\n   \\t\\t margin-top: -70px;\\r\\n\\t}\\r\\n}\\r\\n\\r\\np#billing_first_name_field {\\r\\n    width: 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n}\\r\\n\\r\\n\\r\\np#billing_country_field {\\r\\n    display: none;\\r\\n}\\r\\n\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"29102872\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6bbaaf75\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b4c414a\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"text_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4739','1954','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4740','1954','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4741','1954','wcf-remove-product-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4742','1954','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4743','1954','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4744','1954','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4745','1954','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4746','1954','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4747','1954','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4748','1954','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4749','1954','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4750','1954','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4751','1954','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4752','1954','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4753','1954','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4754','1954','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4755','1954','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4756','1954','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4757','1954','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4758','1954','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4759','1954','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4760','1954','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4761','1954','wcf_field_order_billing','a:4:{s:18:\"billing_first_name\";a:12:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:11:\"placeholder\";s:44:\"আপনার নাম লিখুন।\";s:17:\"custom_attributes\";a:0:{}s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:12:{s:5:\"label\";s:34:\"আপনার ঠিকানা\";s:11:\"placeholder\";s:53:\"আপনার ঠিকানা লিখুন।\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:20;s:17:\"custom_attributes\";a:0:{}s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:14:{s:5:\"label\";s:34:\"মোবাইল নম্বর\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:30;s:11:\"placeholder\";s:75:\"আপনার মোবাইল নম্বরটি লিখুন।\";s:17:\"custom_attributes\";a:0:{}s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:13:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:4:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";i:3;s:28:\"inspire_checkout_fields_hide\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:11:\"placeholder\";s:0:\"\";s:17:\"custom_attributes\";a:0:{}s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4762','1954','wcf_field_order_shipping','a:9:{s:19:\"shipping_first_name\";a:11:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:18:\"shipping_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:16:\"shipping_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:16:\"shipping_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_1\";a:11:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"shipping_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:14:\"shipping_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:14:\"State / County\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"shipping_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4763','1954','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4764','1954','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4765','1954','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4766','1954','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4767','1954','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4768','1954','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4771','1956','wcf-flow-id','1955');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4772','1956','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4773','1956','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4774','1955','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1956;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1958;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:1989;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4775','1958','wcf-flow-id','1955');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4776','1958','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4777','1958','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4778','1958','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4779','1958','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4780','1958','wcf-enable-product-options','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4781','1958','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4782','1958','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4783','1958','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4784','1958','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4785','1958','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4786','1958','wcf-checkout-place-order-button-text','অর্ডার করুন');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4787','1958','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4788','1958','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4789','1958','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4790','1958','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4791','1958','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4792','1958','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:40:\"মোবাইল নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:30;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:34:\"আপনার ঠিকানা\";s:11:\"placeholder\";s:91:\"আপনার ঠিকানা/এলাকার নাম, থানা, জেলা\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:50;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:60;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:70;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:80;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:90;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4793','1958','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4794','1958','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4795','1958','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4796','1958','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4797','1958','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4798','1958','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4799','1958','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4800','1958','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4801','1958','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4802','1958','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4803','1958','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4804','1958','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4805','1958','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4806','1958','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4807','1958','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4808','1958','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4809','1958','_edit_lock','1717962287:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4810','1958','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4811','1958','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4812','1958','_elementor_data','[{\"id\":\"479ecbe8\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"gap\":\"no\",\"background_color\":\"#DEEDD6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37a08a91\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7677392a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"6d246aa\\\" name=\\\"site-url\\\" settings=\\\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}7B{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"100\",\"height\":\"100\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"309356af\",\"settings\":{\"title\":\"\\u09b9\\u09c7 \\u09ac\\u09a8\\u09bf \\u0986\\u09a6\\u09ae \\u09aa\\u09cd\\u09b0\\u09a4\\u09cd\\u09af\\u09c7\\u0995 \\u09a8\\u09be\\u09ae\\u09be\\u099c\\u09c7\\u09b0 \\u09b8\\u09ae\\u09df \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u09aa\\u09cb\\u09b6\\u09be\\u0995 \\u09aa\\u09b0\\u09bf\\u09a7\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09a8\\u09be\\u0993\",\"align\":\"center\",\"title_color\":\"#70254f\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c5a4461\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09cd\\u09af\\u09c7\\u0995\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u09be\\u099c \\u09b9\\u09cb\\u0995 \\u09b8\\u09b9\\u09bf\\u09b9 \\u0993 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\\"\\u0986\\u09ac\\u09be\\u09b0\\u09a8\\u09bf\\\"\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"794dcfcc\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7aff62a1\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f51110a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"1215ddb9\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#108910\",\"button_background_hover_color\":\"#70254f\",\"hover_animation\":\"pulse\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_shadow_text_shadow_type\":\"yes\",\"_transform_rotate_popover\":\"transform\",\"_transform_translate_popover\":\"transform\",\"_transform_scale_popover\":\"transform\",\"_transform_skew_popover\":\"transform\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"25e17d21\",\"settings\":{\"editor\":\"<p>\\\"\\u0986\\u09ac\\u09be\\u09df\\u09be-\\u0987 \\u09a8\\u09be\\u0996\\u09bf\\u09b2\\\" \\u098f\\u0987 \\u09ae\\u09c1\\u09b9\\u09c2\\u09b0\\u09cd\\u09a4\\u09c7\\u09b0 \\u09b8\\u09b0\\u09cd\\u09ac\\u09be\\u09a7\\u09bf\\u0995 \\u099a\\u09be\\u09b9\\u09bf\\u09a6\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ac\\u09cb\\u09b0\\u0996\\u09be\\u0964\\u00a0\\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09ad\\u09be\\u0987\\u09b0\\u09be\\u09b2 \\u098f\\u0987 \\u09a1\\u09bf\\u099c\\u09be\\u0987\\u09a8 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u09be\\u09a4\\u09c7\\u0987 \\u09a4\\u09c8\\u09b0\\u09bf\\u0964\\u00a0\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09aa\\u09c1\\u09b0\\u09be \\u0996\\u09c1\\u09ac\\u0987 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c7\\u099b\\u09c7\\u09a8 \\u098f\\u0987 \\u09ac\\u09cb\\u09b0\\u0996\\u09be\\u099f\\u09bf\\u0964\\u00a0\\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a8 \\u098f\\u0996\\u09a8\\u0987!<\\/p>\",\"align\":\"center\",\"text_color\":\"#F70303\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"703febe1\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#DEEDD6\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60a45041\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f9cd04c\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u09b2\\u09be\\u09b9 \\u09b2\\u0982 \\u0996\\u09bf\\u09ae\\u09be\\u09b0 (\\u09ab\\u09cd\\u09b0\\u09c0 \\u09b8\\u09be\\u0987\\u099c)\",\"align\":\"center\",\"title_color\":\"#70254f\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"59020f7\",\"settings\":{\"title\":\"\\u09a8\\u09be\\u09ae\\u09be\\u099c\\u09c7\\u09b0 \\u09aa\\u09cb\\u09b6\\u09be\\u0995 \\u09a8\\u09bf\\u09df\\u09c7 \\u099a\\u09bf\\u09a8\\u09cd\\u09a4\\u09be \\u09ae\\u09c1\\u0995\\u09cd\\u09a4, \\u09a8\\u09be\\u09ae\\u09be\\u099c\\u09c7 \\u0985\\u09b8\\u09cd\\u09ac\\u09b8\\u09cd\\u09a5\\u09bf \\u0986\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be \\u09a4\\u09be\\u0987 \\u0987\\u09ac\\u09be\\u09a6\\u09be\\u09a4 \\u09b9\\u09ac\\u09c7 \\u09a4\\u09c3\\u09aa\\u09cd\\u09a4\\u09bf\\u09ae\\u09a4, \\u09a8\\u09be\\u09ae\\u09be\\u099c\\u09c7 \\u0997\\u09b0\\u09ae \\u09b2\\u09be\\u0997\\u09be\\u09b0 \\u0995\\u09cb\\u09a8\\u0987 \\u0985\\u09ac\\u0995\\u09be\\u09b6 \\u09a8\\u09c7\\u0987\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"58c10d9\",\"settings\":{\"carousel\":[],\"thumbnail_size\":\"full\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"image_spacing\":\"custom\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"arrows_size\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"},{\"id\":\"46d67cc5\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09e7\\u09ea\\u09e6\\u09e6\\/-\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"marker_color\":\"#D81159\",\"title_color\":\"#333D51\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_color\":\"#333D51\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"7a7903af\",\"settings\":{\"before_text\":\"\\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\",\"highlighted_text\":\"\\u09e7\\u09e8\\u09ef\\u09e6\\/-\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"marker_color\":\"#38B000\",\"title_color\":\"#70254F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"words_color\":\"#38B000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-74\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"26643684\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#108910\",\"button_background_hover_color\":\"#70254f\",\"hover_animation\":\"pulse\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"text_shadow_text_shadow_type\":\"yes\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"_transform_rotate_popover\":\"transform\",\"_transform_translate_popover\":\"transform\",\"_transform_scale_popover\":\"transform\",\"_transform_skew_popover\":\"transform\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"43189d5b\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"730e058d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8dc6c1e\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"a62d8ea\",\"settings\":{\"title\":\"\\u0995\\u09c7\\u09a8 \\u098f\\u0987 \\u09b2\\u0982 \\u0996\\u09bf\\u09ae\\u09be\\u09b0\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0983\",\"align\":\"left\",\"align_mobile\":\"center\",\"title_color\":\"#70254F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6b0ef903\",\"settings\":{\"style\":\"dashed\",\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"text\":\"Divider\",\"color\":\"#38B000\",\"weight\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"4a8ee2d2\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ac\\u09be\\u09b8\\u09be\\u09b0 \\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a8 \\u0993\\u09b0\\u09cd\\u09a8\\u09be \\u09a6\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c1\\u09b0\\u09cd\\u09a8 \\u09b8\\u09a4\\u09b0 \\u09a2\\u09be\\u0995\\u09be \\u0995\\u09b8\\u09cd\\u099f\\u0995\\u09b0\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b33f859\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09be\\u09a5\\u09be\\u09b0 \\u099a\\u09c1\\u09b2 \\u09ac\\u09c7\\u09b0 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09df\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"893640a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0995\\u0996\\u09a8\\u09cb \\u09a5\\u09c1\\u09a4\\u09a8\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u0997\\u09b2\\u09be\\u09b0 \\u0985\\u0982\\u09b6 \\u09ac\\u09c7\\u09b0 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09df\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"806c3a8\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09be\\u09b2\\u09cb\\u09df\\u09be\\u09b0\\u09c7 \\u09b0\\u09c1\\u0995\\u09c1\\/\\u09b8\\u09bf\\u099c\\u09a6\\u09be\\u09df \\u099f\\u09be\\u0996\\u09a8\\u09c1 \\u09ac\\u09c7\\u09b0 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ad\\u09be\\u09ac\\u09a8\\u09be \\u09a5\\u09be\\u0995\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"32b4c98\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#70254F\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"5cc3e1c5\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#108910\",\"button_background_hover_color\":\"#70254f\",\"hover_animation\":\"pulse\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"text_shadow_text_shadow_type\":\"yes\",\"_transform_rotate_popover\":\"transform\",\"_transform_translate_popover\":\"transform\",\"_transform_scale_popover\":\"transform\",\"_transform_skew_popover\":\"transform\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2f5ea9bc\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F4F3EA\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2bef2549\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79581f2c\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09b9\\u09cb\\u09df\\u09be\\u099f\\u09b8\\u0986\\u09aa \\u0995\\u09b0\\u09c1\\u09a8\\u0983 01819000000\",\"link\":{\"url\":\"http:\\/\\/wa.me\\/01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"title_color\":\"#70254f\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"264d685e\",\"settings\":{\"text\":\"01819000000\",\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#70254F\",\"button_background_hover_color\":\"#108910\",\"hover_animation\":\"pulse\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"link\":{\"url\":\"http:\\/\\/wa.me\\/8801819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"text_shadow_text_shadow_type\":\"yes\",\"_transform_rotate_popover\":\"transform\",\"_transform_translate_popover\":\"transform\",\"_transform_scale_popover\":\"transform\",\"_transform_skew_popover\":\"transform\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"6e82db13\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_element_id\":\"order\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"custom_css\":\"@media only screen and (max-width: 768px){\\r\\n\\t.wcf-order-wrap {\\r\\n    \\t\\tmargin-top: -90px;\\r\\n\\t}\\r\\n}\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7df6459f\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a538152\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995 \\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09c1\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#70254f\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6c223687\",\"settings\":{\"editor\":\"<p>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09a4\\u09c7, \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u0993 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u099f\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae\\\" \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<br \\/>\\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u0995\\u09cb\\u09a8 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u09a8\\u09be \\u09a6\\u09bf\\u09df\\u09c7\\u0987, \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7, \\u0996\\u09bf\\u09ae\\u09be\\u09b0\\u099f\\u09bf \\u09a6\\u09c7\\u0996\\u09c7 \\u09a4\\u09be\\u0981\\u09b0\\u09aa\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u0989\\u09aa\\u09ad\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"111fa1d3\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"global_primary_color\":\"#D3AC2B\",\"global_text_color\":\"#000000\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"500\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"classic\",\"product_options_images\":\"yes\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#70254F\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3cb2f0db\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f0f8efe\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c7d42c0\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4813','1958','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4814','1958','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4815','1958','_oembed_7befe71c04536851b6485e7b012d3f0d','<iframe title=\"Video Placeholder\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4816','1958','_oembed_time_7befe71c04536851b6485e7b012d3f0d','1709317495');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4817','1958','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4818','1958','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4819','1958','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4820','1958','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4821','1958','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4822','1958','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4824','1958','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4825','1958','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4826','1958','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4828','1959','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4829','1959','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4830','1959','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4831','1959','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4832','1959','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4833','1959','_elementor_data','[{\"id\":\"d07e630\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=757836c\"}},\"elements\":[{\"id\":\"75e01da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a981e41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c785163\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf: \\u0986\\u09a6\\u09b0\\u09c7\\u09b0 \\u09b8\\u09a8\\u09cd\\u09a4\\u09be\\u09a8, \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7 \\u09ac\\u09be\\u09ac\\u09be-\\u09ae\\u09be, \\u09a1\\u09be\\u09af\\u09bc\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09b0\\u09cb\\u0997\\u09c0 \\u0993 \\u09a1\\u09be\\u09af\\u09bc\\u09c7\\u099f\\u09b0\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f493693\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09be\\u09b0\\u0995 \\u09b8\\u09be\\u09a6\\u09be \\u099a\\u09bf\\u09a8\\u09bf \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf\\u09b0 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a8\\u09cd\\u09af\\u09be\\u099a\\u09be\\u09b0\\u09be\\u09b2 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf \\u0996\\u09c7\\u09a4\\u09c7 \\u0985\\u09ad\\u09cd\\u09af\\u09c7\\u09b8 \\u0995\\u09b0\\u09c1\\u09a8, \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u098f\\u09ac\\u0982 \\u09aa\\u09cd\\u09b0\\u09bf\\u09df\\u099c\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09c7\\u09b0 \\u09af\\u09a4\\u09cd\\u09a8\\u09c7 \\u0986\\u099c\\u0987 \\u09a8\\u09bf\\u09a8\\u00a0 <span style=\\\"color: #d00140;\\\">\\\"\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf\\\"<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be878b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"800\",\"background_color\":\"#D00140\",\"button_background_hover_color\":\"#91002C\",\"hover_animation\":\"push\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=5c74819\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"390dcd3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"d369371\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"48071f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09af\\u09c7 \\u0989\\u09aa\\u09a6\\u09be\\u09a8\\u0997\\u09c1\\u09b2\\u09cb \\u09a6\\u09bf\\u09df\\u09c7 \\u09a4\\u09c8\\u09b0\\u09c0 \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u09c7\\u099b\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"title_color\":\"globals\\/colors?id=26ec5dd\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"288e225\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"b63705a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"765041d\",\"elType\":\"section\",\"settings\":{\"border_border\":\"none\"},\"elements\":[{\"id\":\"056fc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"none\"},\"elements\":[{\"id\":\"06f33ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":324,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/shukhaddo-khejur-badam-borfi-19-1-scaled-1.webp\"},\"image_border_border\":\"solid\",\"image_border_color\":\"#840E0E\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2d3ed65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u098f\\u0987 \\u09a6\\u09be\\u09b0\\u09c1\\u09a8 \\u09ae\\u099c\\u09be\\u09b0 \\u09ac\\u09b0\\u09ab\\u09bf \\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09bf\\u099c\\u09a8 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u0995\\u09df\\u09c7\\u0995 \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b0 \\u09ad\\u09be\\u09b2\\u09cb \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0, \\u0995\\u09be\\u099c\\u09c1, \\u09aa\\u09c7\\u09b8\\u09cd\\u09a4\\u09be, \\u0995\\u09be\\u09a0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u098f\\u09ac\\u0982 \\u09b8\\u09cd\\u09ac\\u09b0\\u09c7\\u09b0 \\u0998\\u09bf, \\u09b8\\u09be\\u09a6\\u09be \\u09a4\\u09bf\\u09b2 \\u09a6\\u09bf\\u09df\\u09c7 \\u09b8\\u09ac \\u09b0\\u0995\\u09ae\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09ac\\u09bf\\u09a7\\u09bf \\u09ae\\u09c7\\u09a8\\u09c7 \\u0998\\u09b0\\u09cb\\u09df\\u09be \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09bf \\u09af\\u09be \\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09b0 \\u0995\\u09be\\u09b2\\u09be\\u09b0, \\u09aa\\u09cd\\u09b0\\u09bf\\u099c\\u09be\\u09b0\\u09ad\\u09c7\\u099f\\u09bf\\u09ad \\u0993 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09b8\\u09be\\u09a6\\u09be \\u099a\\u09bf\\u09a8\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fc0ee4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=757836c\"}},\"elements\":[{\"id\":\"4092de9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e5050d9\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/9NYtlTXxRak\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"_border_border\":\"double\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\"},\"image_overlay\":{\"id\":325,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-8.png\"}},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"312b1f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09c1\\u0996\\u09be\\u09a6\\u09cd\\u09af \\u098f\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 <span style=\\\"color: #D00140\\\">\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf<\\/span> \\u098f\\u09a4\\u099f\\u09be\\u0987 \\u09ae\\u099c\\u09be\\u09a6\\u09be\\u09b0 \\u098f\\u09ac\\u0982 \\u0985\\u09a4\\u09c1\\u09b2\\u09a8\\u09c0\\u09df \\u09af\\u09c7 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7 \\u09b8\\u09ac\\u09be\\u0987  \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09ac\\u09c7  \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf!\",\"align\":\"center\",\"title_color\":\"#030303\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2a146c\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"800\",\"background_color\":\"#D00140\",\"button_background_hover_color\":\"#91002C\",\"hover_animation\":\"push\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=5c74819\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9621b0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"b248307\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40b6607\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf \\u0995\\u09c7\\u09a8\\u09cb \\u0996\\u09be\\u0993\\u09df\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8?\",\"align\":\"center\",\"title_color\":\"#D00140\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"title_color\":\"globals\\/colors?id=26ec5dd\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7b0fc6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7644200\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5c74819\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"244321e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":326,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-1.jpg\"},\"title_text\":\"\\u09b6\\u09be\\u09b0\\u09c0\\u09b0\\u09bf\\u0995 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\",\"description_text\":\"\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0993 \\u09ac\\u09be\\u09a6\\u09be\\u09ae\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be, \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09c7\\u0964\",\"image_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"description_color\":\"#000000\",\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"280\",\"height\":\"280\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2190bee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5c74819\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e3a4c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":327,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-scaled-1.webp\"},\"title_text\":\"\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\",\"description_text\":\"\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0993 \\u09ac\\u09be\\u09a6\\u09be\\u09ae\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u09ae\\u09bf\\u09a8\\u09be\\u09b0\\u09c7\\u09b2 \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964\",\"image_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"description_color\":\"#000000\",\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"280\",\"height\":\"280\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f35113a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5c74819\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"dfa46e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":328,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-3.jpg\"},\"title_text\":\"\\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09af\\u09bc\",\"description_text\":\"\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0993 \\u09ac\\u09be\\u09a6\\u09be\\u09ae\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u098f\\u09ac\\u0982 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09af\\u09bc\\u0964\\n\",\"image_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"description_color\":\"#000000\",\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"280\",\"height\":\"280\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f09b847\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=757836c\"}},\"elements\":[{\"id\":\"3e0a91b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"163029b\",\"elType\":\"section\",\"settings\":{\"border_border\":\"none\"},\"elements\":[{\"id\":\"511bfaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"none\"},\"elements\":[{\"id\":\"355ab2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":329,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Khajur-barfi.webp\"},\"image_border_border\":\"solid\",\"image_border_color\":\"#840E0E\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19c44ce\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"bb0c2bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5c74819\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b88a9f\",\"elType\":\"widget\",\"settings\":{\"price_list\":[{\"title\":\"\\u09eb\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf\",\"item_description\":\"\\u09e7\\u09ee \\u09a5\\u09c7\\u0995\\u09c7 \\u09e8\\u09e8 \\u09aa\\u09bf\\u09b8 \\u09ac\\u09b0\\u09ab\\u09bf\",\"price\":\"\\u09f3\\u09ed\\u09eb\\u09e6\\/=\",\"_id\":\"f0f094c\"},{\"title\":\"\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf\",\"item_description\":\"\\u09e9\\u09ee \\u09a5\\u09c7\\u0995\\u09c7 \\u09ea\\u09e8 \\u09aa\\u09bf\\u09b8 \\u09ac\\u09b0\\u09ab\\u09bf\",\"price\":\"\\u09f3\\u09e7\\u09e9\\u09e6\\u09e6\\/=\",\"_id\":\"224a828\"},{\"title\":\"\\u09e8 \\u0995\\u09c7\\u099c\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf\",\"item_description\":\"\\u09ed\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ee\\u09e6 \\u09aa\\u09bf\\u09b8 \\u09ac\\u09b0\\u09ab\\u09bf\",\"price\":\"\\u09f3\\u09e8\\u09eb\\u09e6\\u09e6\\/=\",\"_id\":\"683e6cc\"}],\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Anek Bangla\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Hind Siliguri\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"description_typography_font_weight\":\"700\",\"separator_spacing\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Roboto\",\"price_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"heading_color\":\"globals\\/colors?id=5c74819\",\"price_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"price-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"142f1af\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=757836c\"}},\"elements\":[{\"id\":\"eadf7f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ca200c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59b4b0f\",\"elType\":\"widget\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"800\",\"background_color\":\"#D00140\",\"button_background_hover_color\":\"#91002C\",\"hover_animation\":\"push\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=5c74819\",\"button_background_hover_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5f71f79\",\"elType\":\"widget\",\"settings\":{\"title\":\"( \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09ab\\u09cd\\u09b0\\u09c0 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf )\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=5c74819\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be570b3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order-form\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\"},\"elements\":[{\"id\":\"4bea656d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5c74819\"}},\"elements\":[{\"id\":\"37676298\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#3C494E\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a03de62\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"product_options_position\":\"before-customer\",\"__globals__\":{\"btn_background_color_color\":\"globals\\/colors?id=5c74819\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\"},\"product_options_skin\":\"cards\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62ac697\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1d12cb75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6b037eab\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4834','1959','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4836','1959','_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:3;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:2;s:19:\"image_border_radius\";i:3;s:19:\"image_border_border\";i:2;s:18:\"image_border_color\";i:2;s:32:\"image_box_shadow_box_shadow_type\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:7;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:7;s:22:\"typography_line_height\";i:2;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:3;s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:3;s:4:\"link\";i:3;s:4:\"size\";i:3;s:13:\"selected_icon\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:5:\"align\";i:3;s:12:\"align_mobile\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:16:\"background_color\";i:3;s:29:\"button_background_hover_color\";i:3;s:15:\"hover_animation\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:15;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:9;s:12:\"border_width\";i:7;s:13:\"border_radius\";i:4;}s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:8;s:13:\"content_width\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_border\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:10;s:6:\"margin\";i:4;s:11:\"_element_id\";i:1;s:11:\"css_classes\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:3:{s:11:\"youtube_url\";i:1;s:8:\"autoplay\";i:1;s:14:\"play_on_mobile\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:14:\"thumbnail_size\";i:3;s:26:\"thumbnail_custom_dimension\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:2:{s:11:\"image_space\";i:3;s:18:\"title_bottom_space\";i:3;}s:19:\"section_style_image\";a:1:{s:10:\"image_size\";i:3;}s:21:\"section_style_content\";a:5:{s:27:\"title_typography_typography\";i:3;s:28:\"title_typography_font_family\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;}}}}s:10:\"price-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:10:\"price_list\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_list_style\";a:13:{s:29:\"heading_typography_typography\";i:1;s:30:\"heading_typography_font_family\";i:1;s:28:\"heading_typography_font_size\";i:1;s:30:\"heading_typography_font_weight\";i:1;s:17:\"description_color\";i:1;s:33:\"description_typography_typography\";i:1;s:34:\"description_typography_font_family\";i:1;s:32:\"description_typography_font_size\";i:1;s:34:\"description_typography_font_weight\";i:1;s:17:\"separator_spacing\";i:1;s:27:\"price_typography_typography\";i:1;s:28:\"price_typography_font_family\";i:1;s:28:\"price_typography_font_weight\";i:1;}s:18:\"section_item_style\";a:1:{s:7:\"row_gap\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4837','1960','wcf-flow-id','1935');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4838','1960','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4839','1960','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4840','1960','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4841','1960','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4842','1960','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4843','1960','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4844','1960','_edit_lock','1716483671:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4845','1960','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4846','1960','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4847','1960','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4848','1960','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4849','1960','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4851','1961','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4852','1961','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4853','1961','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4854','1961','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4855','1961','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4856','1961','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":\"296\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/dfgdfg-1.webp\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4857','1961','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4858','1961','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4859','1962','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4860','1962','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4861','1962','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4862','1962','_elementor_version','3.20.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4863','1962','_elementor_pro_version','3.7.7');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4864','1962','_elementor_data','[{\"id\":\"f19b53b\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#045304\",\"shape_divider_bottom\":\"mountains\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":102,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"overflow\":\"hidden\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":98.129},\"min_height\":{\"unit\":\"px\",\"size\":405,\"sizes\":[]},\"background_image\":{\"id\":267,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/himsagor-premium-e1717010173221-1024x638-1.jpg\"},\"background_position\":\"bottom center\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_size\":\"initial\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateX_effect\":\"yes\",\"background_motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":3.6,\"sizes\":[]},\"background_motion_fx_translateX_affectedRange\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":{\"start\":52,\"end\":100}},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c4f217\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6af9cad\",\"settings\":{\"flex_align_items\":\"center\",\"_flex_align_self\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":0,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":791,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":273,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#26492D\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_flex_size\":\"custom\",\"_flex_shrink\":0,\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ac2cfaf\",\"settings\":{\"image\":{\"id\":266,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Logo-1-01-e1710439185699-1.png\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":64,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":22.3},\"_flex_size\":\"none\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"bdf0d52\",\"settings\":{\"title\":\"\\u099a\\u09be\\u0981\\u09aa\\u09be\\u0987\\u09a8\\u09ac\\u09be\\u09ac\\u0997\\u099e\\u09cd\\u099c\\u09c7\\u09b0 \\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0995\\u09be\\u09b0\\u09cd\\u09ac\\u09be\\u0987\\u09a1\\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09bf\\u09ae\\u09b8\\u09be\\u0997\\u09b0\\/\\u0996\\u09bf\\u09b0\\u09b8\\u09be\\u09aa\\u09be\\u09a4 \\u0986\\u09ae\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"-12\",\"bottom\":\"-12\",\"left\":\"-12\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5e2a7aa\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09be\\u099c\\u09be\\u09b0\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09ac\\u09be\\u0987\\u09a1\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09ac\\u09bf\\u09b7 \\u0986\\u09ae \\u0996\\u09be\\u09ac\\u09c7\\u09a8 \\u09a8\\u09be\\u0995\\u09bf \\u09ac\\u09bf\\u09b7\\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u0986\\u09ae \\u0996\\u09be\\u09ac\\u09c7\\u09a8 \\u09b8\\u09bf\\u09a6\\u09cd\\u09a7\\u09be\\u09a8\\u09cd\\u09a4 \\u0986\\u09aa\\u09a8\\u09be\\u09b0!<\\/p>\",\"align\":\"center\",\"align_mobile\":\"center\",\"text_color\":\"#FFF200\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"54f2a03\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#C9FFA9\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b78599\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":97.045},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42bc2c5\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":712,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e68d13b\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/XZERVqyuZrw?si=WUvAJtp97EdfBfj0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"loop\":\"yes\",\"css_filters_css_filter\":\"custom\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":11,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.76)\"},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"image_overlay\":{\"id\":268,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-1-2.png\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"3dae9cc\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008021\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#00360F\",\"button_background_hover_color\":\"#F5F2F1\",\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"428cb68\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#7AE282\",\"background_color_b\":\"#31AC1A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d4da9b\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"24e171b\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"\\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u09ac\\u09be\\u0997\\u09be\\u09a8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u0982\\u0997\\u09c3\\u09b9\\u09c0\\u09a4\",\"_id\":\"ab75191\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09be\\u0995\\u09be\",\"_id\":\"b1de727\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5dec607\",\"text\":\"\\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09b8\\u09c7\\u09b0\\u09be \\u09ae\\u09be\\u09a8\\u09c7\\u09b0\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"ff74475\",\"text\":\"\\u09aa\\u09c7\\u09b8\\u099f\\u09bf\\u09b8\\u09be\\u0987\\u09a1 \\u09b0\\u09c7\\u09b8\\u09bf\\u09a1\\u09bf\\u0989 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":101.278},\"_flex_size\":\"none\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"0333757\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"96f35da\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b0fad23\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":90.85},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0a0f99a\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7\\u0987 \\u0995\\u09c7\\u09a8 \\u200d\\u09a8\\u09bf\\u09ac\\u09c7\\u09a8?\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"f713da9\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":95.425},\"min_height\":{\"unit\":\"px\",\"size\":339,\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"905fe3f\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u098f\\u09ac\\u0982 \\u09ad\\u09c7\\u099c\\u09be\\u09b2\\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u0986\\u09ae\\u0964\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1aa7bd6\",\"text\":\"\\u09b8\\u09b0\\u09be\\u09b8\\u09b0\\u09bf \\u09ac\\u09be\\u0997\\u09be\\u09a8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u0982\\u0997\\u09c3\\u09b9\\u09c0\\u09a4\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"10b1807\",\"text\":\"\\u09b8\\u09b0\\u09be\\u09b8\\u09b0\\u09bf \\u09ac\\u09be\\u0997\\u09be\\u09a8 \\u09a5\\u09c7\\u0995\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09cc\\u0981\\u099b\\u09c7 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09a6\\u09be\\u09af\\u09bc\\u09bf\\u09a4\\u09cd\\u09ac \\u09a8\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u0986\\u09ae\\u09b0\\u09be\\u0987\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"df6e360\",\"text\":\"\\u0986\\u09ae \\u09aa\\u09be\\u09dc\\u09be\\u09b0 \\u09e8\\u09ea-\\u09ed\\u09e8 \\u0998\\u09a8\\u09cd\\u099f\\u09be\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09a2\\u09be\\u0995\\u09be \\u0993 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09be\\u09b9\\u09bf\\u09b0\\u09c7 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2d23f94\",\"text\":\"\\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u098f\\u09ac\\u0982 \\u09b8\\u09c1\\u09ae\\u09bf\\u09b7\\u09cd\\u099f \\u0986\\u09ae\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"289a820\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":521,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFD1D1\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cc18d7\",\"settings\":{\"image\":{\"id\":269,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-2.png\"},\"align\":\"center\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":9,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.77)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"25af809\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008013\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#003D06\",\"button_background_hover_color\":\"#FFFFFF\",\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"4b123c6\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"overflow\":\"hidden\",\"background_color\":\"#C9FFA9\",\"width_mobile\":{\"unit\":\"px\",\"size\":307},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c27fc46\",\"settings\":{\"content_width\":\"full\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f789d9\",\"settings\":{\"content_width\":\"full\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#008024\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ef5f32\",\"settings\":{\"title\":\"\\ud83d\\udca5\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ae\\u09be\\u09a8\\u09bf\\u09a4 \\u0995\\u09be\\u09b7\\u09cd\\u099f\\u09ae\\u09be\\u09b0\\u09c7\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989\\ud83d\\udca5\",\"header_size\":\"span\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"align_mobile\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"e5ec235\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a1cd81d\",\"settings\":{\"slides\":[{\"image\":{\"id\":270,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/06-1.jpg\"},\"_id\":\"33b0a58\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":271,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/07.jpg\"},\"_id\":\"ed03e79\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":272,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/08.jpg\"},\"_id\":\"8303a9d\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"height\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"slide_border_color\":\"#A3A2A2\",\"_element_width\":\"inherit\",\"speed\":301,\"autoplay_speed\":2000,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"media-carousel\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"2d7cda1\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e9e4344\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008021\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#00500C\",\"button_background_hover_color\":\"#FFFFFF\",\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"7420aae\",\"settings\":{\"content_width\":\"full\",\"_element_id\":\"order\",\"min_height_mobile\":{\"unit\":\"px\",\"size\":612,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c343378\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1318,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#045304\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"511c395\",\"settings\":{\"title\":\"\\u0986\\u09ae \\u09aa\\u099a\\u09a8\\u09b6\\u09c0\\u09b2 \\u09a4\\u09be\\u0987 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u0995\\u09b0\\u09c7 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4  \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"c3e50d3\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1318,\"sizes\":[]},\"flex_align_items\":\"center\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"background_color\":\"#E7E8D0\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#9E9E9E\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b74127\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1216,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":347,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":495,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"84de227\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":47},\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"flex_wrap\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_flex_align_self\":\"flex-end\",\"_flex_order\":\"start\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7fd7869\",\"settings\":{\"image\":{\"id\":273,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/bbbjkj-1.jpg\"},\"align\":\"right\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"8a60647\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":49},\"min_height\":{\"unit\":\"px\",\"size\":158,\"sizes\":[]},\"_flex_align_self\":\"flex-end\",\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"be4afd0\",\"settings\":{\"title\":\"\\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 \\u09b8\\u09c7\\u09a8\\u09cd\\u09a1 \\u09ae\\u09be\\u09a8\\u09bf \\u0995\\u09b0\\u09c1\\u09a8\\u0983\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"665fd9f\",\"settings\":{\"title\":\"01792-823943\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"typography_font_weight\":\"700\",\"title_color\":\"#242424\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"08540e7\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":48.336},\"boxed_width\":{\"unit\":\"px\",\"size\":925,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":199,\"sizes\":[]},\"flex_justify_content\":\"space-evenly\",\"flex_align_items\":\"flex-start\",\"flex_wrap\":\"nowrap\",\"_flex_align_self\":\"flex-start\",\"_flex_order\":\"start\",\"_flex_size\":\"none\",\"_flex_grow\":6,\"position\":\"absolute\",\"z_index\":0,\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ee0398\",\"settings\":{\"title\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"b366dd1\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0986\\u09ae - \\u09e7\\u09eb\\u09e6\\u09f3\",\"_id\":\"555b161\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09e8\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0986\\u09ae - \\u09e8\\u09eb\\u09e6\\u09f3\",\"_id\":\"27cce58\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_color\":\"#00B620\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"icon_typography_font_style\":\"italic\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":99.345},\"_flex_size\":\"none\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"c7d595f\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#045304\",\"shape_divider_top_color\":\"#56FF07\",\"shape_divider_top_flip\":\"yes\",\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"px\",\"size\":1528,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f677770\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#C9FFA9\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#045304\",\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ca55b39\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#045304\",\"title_color\":\"#FFFFFF\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"05abf86\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"global_typography_typography\":\"custom\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"global_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"kohinoor\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"input_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_color\":\"#000000\",\"input_border_style\":\"solid\",\"input_border_size\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"input_border_color\":\"#045304\",\"input_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"buttons_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"buttons_typography_font_weight\":\"800\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#007715\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btn_border_border\":\"solid\",\"btn_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"btn_border_color\":\"#B0E8A3\",\"button_box_shadow_box_shadow_type\":\"yes\",\"btn_hover_color\":\"#045304\",\"button_background_hover_color_background\":\"classic\",\"button_background_hover_color_color\":\"#E7FFE7\",\"highlight_flag_text_color\":\"#FFFFFF\",\"highlight_flag_bg_color\":\"#348541\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"edc1349\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"flex_justify_content_mobile\":\"center\",\"flex_align_items_mobile\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_flex_align_self_mobile\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#B3FD99\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#777777\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"de139c9\",\"settings\":{\"title\":\"\\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 - 01983 196 929 \",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6fd1e28\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"92cd923\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Facebook Group\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/groups\\/1805794863172480\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cdfe69c\"},{\"text\":\"Facebook Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\\/sahabafood1\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a4c98d\"}],\"space_between\":{\"unit\":\"rem\",\"size\":10,\"sizes\":[]},\"space_between_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"space_between_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"bold\",\"text_color\":\"#FFFFFF\",\"_flex_align_self_mobile\":\"center\",\"_background_background\":\"classic\",\"_background_color\":\"#045304\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4865','1962','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4866','1962','_elementor_controls_usage','a:8:{s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:3;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:1;s:5:\"align\";i:2;s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:15:\"_section_border\";a:6:{s:14:\"_border_radius\";i:1;s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:9;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:4;s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:9;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:9;s:22:\"typography_font_weight\";i:9;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:2;s:17:\"_background_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:28;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:24:\"section_layout_container\";a:9:{s:16:\"flex_align_items\";i:4;s:13:\"content_width\";i:16;s:5:\"width\";i:8;s:11:\"boxed_width\";i:9;s:10:\"min_height\";i:6;s:14:\"flex_direction\";i:5;s:20:\"flex_justify_content\";i:2;s:8:\"flex_gap\";i:2;s:9:\"flex_wrap\";i:2;}s:33:\"section_layout_additional_options\";a:1:{s:8:\"overflow\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:10:{s:16:\"_flex_align_self\";i:4;s:7:\"padding\";i:3;s:10:\"_flex_size\";i:9;s:12:\"_flex_shrink\";i:1;s:11:\"_flex_order\";i:2;s:10:\"_flex_grow\";i:1;s:8:\"position\";i:1;s:7:\"z_index\";i:1;s:6:\"margin\";i:2;s:11:\"_element_id\";i:1;}}s:5:\"style\";a:4:{s:26:\"section_background_overlay\";a:4:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:3;s:26:\"background_overlay_opacity\";i:2;s:26:\"background_overlay_color_b\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_radius\";i:4;s:12:\"border_width\";i:2;s:13:\"border_border\";i:1;s:12:\"border_color\";i:1;}s:18:\"section_background\";a:10:{s:21:\"background_background\";i:9;s:16:\"background_color\";i:10;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:38:\"background_motion_fx_translateX_effect\";i:1;s:37:\"background_motion_fx_translateX_speed\";i:1;s:45:\"background_motion_fx_translateX_affectedRange\";i:1;s:18:\"background_color_b\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:23:\"shape_divider_top_color\";i:1;s:22:\"shape_divider_top_flip\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_video\";a:4:{s:11:\"youtube_url\";i:1;s:8:\"autoplay\";i:1;s:14:\"play_on_mobile\";i:1;s:4:\"loop\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_video_style\";a:1:{s:22:\"css_filters_css_filter\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:3;s:4:\"link\";i:3;s:13:\"selected_icon\";i:3;s:4:\"size\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:14:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:21:\"typography_font_style\";i:3;s:17:\"button_text_color\";i:3;s:16:\"background_color\";i:3;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:11:\"hover_color\";i:3;s:29:\"button_background_hover_color\";i:3;s:15:\"hover_animation\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:2;s:9:\"icon_list\";i:4;}}s:5:\"style\";a:3:{s:18:\"section_text_style\";a:6:{s:26:\"icon_typography_typography\";i:4;s:25:\"icon_typography_font_size\";i:4;s:27:\"icon_typography_font_weight\";i:4;s:27:\"icon_typography_font_family\";i:2;s:26:\"icon_typography_font_style\";i:1;s:10:\"text_color\";i:1;}s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:1;s:17:\"icon_align_mobile\";i:1;}s:18:\"section_icon_style\";a:4:{s:9:\"icon_size\";i:3;s:10:\"icon_color\";i:2;s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;s:10:\"_flex_size\";i:2;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:14:\"media-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_slides\";a:3:{s:6:\"slides\";i:1;s:6:\"height\";i:1;s:5:\"width\";i:1;}s:26:\"section_additional_options\";a:2:{s:5:\"speed\";i:1;s:14:\"autoplay_speed\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_slides_style\";a:3:{s:17:\"slide_border_size\";i:1;s:19:\"slide_border_radius\";i:1;s:18:\"slide_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_element_width\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4867','1964','wcf-flow-id','1963');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4868','1964','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4869','1964','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4870','1963','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1964;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1966;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2060;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4871','1966','wcf-flow-id','1963');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4872','1966','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4873','1966','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4874','1966','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4875','1966','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4876','1966','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4877','1966','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4878','1966','_edit_lock','1717962357:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4879','1966','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4880','1966','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4881','1966','_elementor_data','[{\"id\":\"97cb241\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"768689e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a35d3b\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":177,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"db545ea\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed \\u09a6\\u09bf\\u09a8\\u09c7\\u0987 \\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09ad\\u09be\\u09ac \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u0995\\u09b0\\u09c1\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a8 \\u0997\\u09cb\\u09b2\\u09be\\u09aa\\u09c0 !!\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"align\":\"center\",\"title_color\":\"#EB1C54\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"289a6ab\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#EB1C54\",\"border_radius\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"korian-product\",\"custom_css\":\".korian-product{\\n    margin: 0 20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n}\\n\\n@media only screen and (max-width: 767px) {\\n  .korian-product {\\n    margin: 2{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n  }\\n}\",\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"713aa76\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d7f1aba\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"b48c146\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.331,\"_inline_size_mobile\":60,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e4a3bd8\",\"settings\":{\"title\":\"\\u098f\\u099f\\u09bf \\u098f\\u0995\\u099f\\u09bf \\u0995\\u09cb\\u09b0\\u09bf\\u09df\\u09be\\u09a8 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"900\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"align_mobile\":\"center\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":152},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_vertical_align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"7619261\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7685c73\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":40.953},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"4f787a8\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#EB1C54\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"korian-product\",\"custom_css\":\".korian-product{\\n    margin: 0 20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n}\\n\\n@media only screen and (max-width: 767px) {\\n  .korian-product {\\n    margin: 2{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n  }\\n}\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66d94a7\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"660d4b5\",\"settings\":{\"text\":\"\\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"500\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_background_hover_color\":\"#B60031\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#B60031\",\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\",\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\"},\"align_mobile\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"41\",\"bottom\":\"8\",\"left\":\"41\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"8e25a07\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#B60031\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#EB1C54\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c8bcee\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36aad05\",\"settings\":{\"editor\":\"\\u09ab\\u09cd\\u09b0\\u09c0 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09b6\\u09c1\\u09a7\\u09c1\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#EB1C54\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3d11fed\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a84ad3\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dc3398e\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/gqLL4bWJh9U\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"controls\":\"\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_overlay\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"d41b7fe\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":25,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#EB1C54\",\"weight\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"d4d82fa\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"content_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3316a50\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"df63cf4\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995\\u099f\\u09bf \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"22\",\"bottom\":\"-6\",\"left\":\"22\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"19\",\"bottom\":\"9\",\"left\":\"19\",\"isLinked\":false},\"align_mobile\":\"center\",\"_element_vertical_align_mobile\":\"center\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"title_color\":\"#EB1C54\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2b1b753\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"2\",\"bottom\":\"-17\",\"left\":\"2\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"6282600\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09a0\\u09cb\\u099f \\u09ab\\u09be\\u099f\\u09be \\u099c\\u09a8\\u09bf\\u09a4 \\u09b8\\u0995\\u09b2 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"cfafbd5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u09aa\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u09a8\\u09c7\\u09a8\\u09cd\\u099f\\u09b2\\u09c0 \\u0997\\u09cb\\u09b2\\u09be\\u09aa\\u09c0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"94967e0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09b0\\u09be \\u099a\\u09be\\u09ae\\u09a1\\u09bc\\u09be \\u0989\\u09a0\\u09bf\\u09af\\u09bc\\u09c7 \\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u09a3\\u09ac\\u09a8\\u09cd\\u09a4\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"fbe2827\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u099b\\u09c7\\u09b2\\u09c7 \\u0993 \\u09ae\\u09c7\\u09af\\u09bc\\u09c7 \\u09b8\\u09ac\\u09be\\u0987 \\u098f\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"6260f32\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed \\u09a6\\u09bf\\u09a8\\u09c7 \\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u09ac\\u09cd\\u09b2\\u09be\\u0995\\u09bf\\u09b6 \\u09ad\\u09be\\u09ac \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"ba99ec5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a6\\u09c0\\u09b0\\u09cd\\u0998 \\u09b8\\u09ae\\u09af\\u09bc \\u09a7\\u09b0\\u09c7 \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09b6\\u09a8 \\u09a7\\u09b0\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"49a9efb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u09b0 \\u09ab\\u09cd\\u09b0\\u09c7\\u0997\\u09a8\\u09c7\\u09a8\\u09cd\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ae\\u09a8\\u0995\\u09c7 \\u09b8\\u09a4\\u09c7\\u099c \\u0995\\u09b0\\u09c7 \\u09a4\\u09c1\\u09b2\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"f5388d2\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a6\\u09c0\\u09b0\\u09cd\\u0998\\u09a6\\u09bf\\u09a8 \\u09b2\\u09bf\\u09aa\\u09cd\\u09b8\\u099f\\u09bf\\u0995 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0993 \\u09b8\\u09bf\\u0997\\u09be\\u09b0\\u09c7\\u099f \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"c33241b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u09af\\u09c7 \\u0995\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac \\u09b9\\u09af\\u09bc \\u09a4\\u09be \\u09aa\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u09a8\\u09c7\\u09a8\\u09cd\\u099f\\u09b2\\u09c0 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"a0cb2e3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u099f\\u09cb\\u09b2\\u09cb\\u099c\\u09bf\\u09b8\\u09cd\\u099f \\u09a6\\u09cd\\u09ac\\u09be\\u09b0\\u09be \\u099f\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09a1 \\u09b9\\u0993\\u09af\\u09bc\\u09be\\u09af\\u09bc \\u09b8\\u09c7\\u09a8\\u09b8\\u09bf\\u099f\\u09bf\\u09ad  \\u09b8\\u09cd\\u0995\\u09bf\\u09a8\\u09c7 \\u0995\\u09cb\\u09a8\\u09b0\\u09c2\\u09aa \\u0987\\u09b0\\u09bf\\u099f\\u09c7\\u09b6\\u09a8 \\u09b8\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u0995\\u09b0\\u09c7 \\u09a8\\u09be\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"c650f51\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"38b516b\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":25,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#EB1C54\",\"weight\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"de9a14f\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0041068\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b060a36\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#EB1C54\",\"border_radius\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"korian-product\",\"custom_css\":\".korian-product{\\n    margin: 0 20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n}\\n\\n@media only screen and (max-width: 767px) {\\n  .korian-product {\\n    margin: 2{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n  }\\n}\",\"background_background\":\"classic\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14d9463\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":20,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d61a0cd\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"1f3a869\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.331,\"_inline_size_mobile\":60,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bef9dfc\",\"settings\":{\"title\":\"\\u0987\\u09a8\\u0997\\u09cd\\u09b0\\u09c7\\u09a1\\u09bf\\u09df\\u09c7\\u09a8\\u09cd\\u099f\\u09b8 \\u0995\\u09c0?\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#EB1A52\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"title_color\":\"#EB1C54\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"d3f848e\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fbcd787\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"098aa8b\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"11\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78542b0\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f56fdbb\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b2\\u09cd\\u09af\\u09be\\u09a8\\u09c7\\u0987\\u099c \\u09b2\\u09bf\\u09aa \\u09b8\\u09cd\\u09b2\\u09bf\\u09aa\\u09bf\\u0982 \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09b9\\u09b2 \\u098f\\u0995\\u099f\\u09bf \\u09b2\\u09bf\\u09ad-\\u0985\\u09a8 \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09af\\u09be  \\u09b0\\u09be\\u09a4\\u09be\\u09b0\\u09be\\u09a4\\u09bf \\u09a0\\u09cb\\u0981\\u099f\\u0995\\u09c7 \\u09aa\\u09cd\\u09b0\\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u09a6\\u09c7\\u09df \\u098f\\u09ac\\u0982 \\u09ae\\u09df\\u09b6\\u09cd\\u099a\\u09be\\u09b0\\u09be\\u0987\\u099c \\u0995\\u09b0\\u09c7\\u0964  \\u09b9\\u09be\\u0987\\u09b2\\u09c1\\u09b0\\u09cb\\u09a8\\u09bf\\u0995 \\u0985\\u09cd\\u09af\\u09be\\u09b8\\u09bf\\u09a1 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09bf\\u0982, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2  \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09af\\u09be \\u098f\\u0995\\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7  \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u0986\\u09b0\\u09cd\\u09a6\\u09cd\\u09b0\\u09a4\\u09be \\u0986\\u099f\\u0995\\u09be\\u09a4\\u09c7 \\u09ac\\u09be\\u09a7\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"cfafbd5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u0987 \\u09b2\\u09bf\\u09aa \\u09b8\\u09cd\\u09b2\\u09bf\\u09aa\\u09bf\\u0982 \\u09ae\\u09be\\u09b8\\u09cd\\u0995\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u09a8\\u09b0\\u09ae \\u099f\\u09c7\\u0995\\u09cd\\u09b8\\u099a\\u09be\\u09b0 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09af\\u09be  \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09b6\\u09cb\\u09b7\\u09a3\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0998\\u09a8\\u09bf\\u09b7\\u09cd\\u09a0\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09c7 \\u09af\\u09be\\u09df\\u0964  \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f\\u09c7 \\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7, \\u09ac\\u09c7\\u09b0\\u09bf \\u09ae\\u09bf\\u0995\\u09cd\\u09b8  \\u0995\\u09ae\\u09aa\\u09cd\\u09b2\\u09c7\\u0995\\u09cd\\u09b8 \\u09b0\\u09be\\u09b8\\u09cd\\u09aa\\u09ac\\u09c7\\u09b0\\u09bf\\u09b0 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf \\u098f\\u09ac\\u0982  \\u09b8\\u09c1\\u0997\\u09a8\\u09cd\\u09a7\\u09bf \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"17c688d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_vertical_offset_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"divider\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"c1fd0ed\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b9d7ad\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4168cbd\",\"settings\":{\"title\":\"\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"22\",\"bottom\":\"-2\",\"left\":\"22\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"align_mobile\":\"center\",\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"title_color\":\"#EB1C54\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"93ee357\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"f4d0f88\",\"settings\":{\"title\":\"\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09cd\\u09b2\\u09bf\\u0995\\u09c7\\u099f\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7,\\u09b8\\u09a8\\u09cd\\u09a7\\u09cd\\u09af\\u09be\\u09df \\u09a0\\u09cb\\u0981\\u099f\\u09c7 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09bf\\u0982 \\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09b2\\u09be\\u0997\\u09be\\u09a8 \\u098f\\u09ac\\u0982 \\u09b8\\u09be\\u09b0\\u09be\\u09b0\\u09be\\u09a4 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a6\\u09bf\\u09a8\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7 \\u0986\\u09b2\\u09a4\\u09cb \\u0995\\u09b0\\u09c7 \\u09ae\\u09c1\\u099b\\u09c1\\u09a8 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"align\":\"center\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"6bd7ffd\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ec6a1b\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e9a5ed8\",\"settings\":{\"title\":\"\\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"align_mobile\":\"center\",\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"title_color\":\"#EB1C54\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"fb2be6d\",\"settings\":{\"carousel\":[],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"gallery_vertical_align\":\"center\",\"image_spacing\":\"custom\",\"image_border_color\":\"#EB1C54\",\"_border_border\":\"solid\",\"_border_color\":\"#EB1C54\",\"dots_position\":\"inside\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"d91e9c8\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-26\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dfe1bd\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e45b10c\",\"settings\":{\"title\":\"\\u0995\\u09b2 \\u0995\\u09b0\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align_mobile\":\"center\",\"_element_width_mobile\":\"inherit\",\"title_color\":\"#EB1C54\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"9f4c191\",\"settings\":{\"text\":\"01819000000\",\"align\":\"center\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bensen\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_radius\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_shadow_text_shadow_type\":\"yes\",\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D0063C\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-2\",\"bottom\":\"-6\",\"left\":\"-2\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#EB1C54\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"2667048\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e9b3650\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61efb42\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ea8eb4a\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#EB1C54\",\"border_radius\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"text_align\":\"left\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56a5c6e\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"content_position_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f2de42d\",\"settings\":{\"before_text\":\"\",\"highlighted_text\":\"\\u09e7\\u09e7\\u09eb\\u09e6 \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker\":\"diagonal\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"marker_color\":\"#EB1C54\",\"title_color\":\"#EB1C54\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_weight\":\"600\",\"words_color\":\"#EB1C54\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"6cc2f5a\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"content_position_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ba595de\",\"settings\":{\"title\":\"\\u09b6\\u09c1\\u09a7\\u09c1\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af<\\/br><span style=\\\"font-size: 45px; color:#EB1C54\\\">\\u09ed\\u09eb\\u09e6\\u099f\\u09be\\u0995\\u09be<\\/span>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_border_color\":\"#EB1C54\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"a7eefc0\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#EB1C54\",\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CC0339\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"096afe9\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"349b72e\",\"settings\":{\"title\":\"\\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u099b\\u09be\\u09dc\\u09be \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#EB1C54\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#CC0339\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"0ce1f46\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9263f48\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2549b4f\",\"elType\":\"widget\",\"settings\":{\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"layout\":\"two-column\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"global_typography_typography\":\"custom\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#CC0339\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"global_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"700\",\"_element_id\":\"order\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"ed539f7\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6df7726\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9376935\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4882','1966','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4883','1966','_oembed_7befe71c04536851b6485e7b012d3f0d','<iframe title=\"Video Placeholder\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4884','1966','_oembed_time_7befe71c04536851b6485e7b012d3f0d','1706688503');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4885','1966','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4886','1966','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4887','1966','wcf-enable-product-options','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4888','1966','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4889','1966','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4890','1966','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4891','1966','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4892','1966','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4893','1966','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4894','1966','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4895','1966','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4896','1966','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4897','1966','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4898','1966','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4899','1966','wcf_field_order_shipping','a:9:{s:19:\"shipping_first_name\";a:11:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_1\";a:11:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"shipping_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:14:\"shipping_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"shipping_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4900','1966','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4901','1966','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4902','1966','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4903','1966','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4904','1966','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4905','1966','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4906','1966','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4907','1966','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4908','1966','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4909','1966','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4910','1966','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4911','1966','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4912','1966','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4913','1966','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4914','1966','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4915','1966','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4918','1967','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4919','1967','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4920','1967','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4921','1967','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4922','1967','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4923','1967','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4924','1967','_elementor_data','[{\"id\":\"2b8db9c7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54a41f\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_negative\":\"yes\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"20\",\"bottom\":\"36\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"46ad4f2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9a708d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b1f0631\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b6\\u09c0\\u09a4\\u09c7\\u09b0 \\u0990\\u09a4\\u09bf\\u09b9\\u09cd\\u09af \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09a1\\u09bc \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_animation\":\"fadeInDown\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"243a54fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09c1\\u09a6\\u09c1\\u09b0 \\u099a\\u09c1\\u09af\\u09bc\\u09be\\u09a1\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b8\\u09b0\\u09cb\\u099c\\u0997\\u099e\\u09cd\\u099c \\u09a5\\u09c7\\u0995\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09b0\\u09b8 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7,\\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0997\\u09c1\\u09dc \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7 \\u09af\\u09a4\\u09cd\\u09a8 \\u09b8\\u09b9\\u0995\\u09be\\u09b0\\u09c7 \\u09aa\\u09cc\\u099b\\u09c7 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0998\\u09b0\\u09c7 \\u0964\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c8f7a75\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"far fa-hand-point-down\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#F3DE2C\",\"hover_animation\":\"push\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"311cf4b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"76f64aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fab6ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":342,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-12-24-at-7.50.04-PM.jpeg\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"image_border_color\":\"#54a41f\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f798473\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u0998\\u09b0\\u09c7 \\u09ac\\u09b8\\u09c7 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u0996\\u09be\\u0981\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09c0 \\u0997\\u09c1\\u09dc \\u0993 \\u09a6\\u09be\\u09a8\\u09be\\u09a6\\u09be\\u09b0 \\u0997\\u09c1\\u09dc \\u09a8\\u09c7\\u09df\\u09be\\u09b0 \\u09b2\\u09cb\\u09ad\\u09a8\\u09c0\\u09df \\u09b8\\u09c1\\u09af\\u09cb\\u0997\\u0964\",\"align\":\"center\",\"align_mobile\":\"center\",\"text_color\":\"#54a41f\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58d3016b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\"},\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22af972\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5911e3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d7b7815\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0997\\u09c1\\u09a1\\u09bc \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u099a\\u09c7\\u09a8\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09df \",\"align\":\"center\",\"title_color\":\"#54A41F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a30eda5\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#54A41F\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b7771d2\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"87ed60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3703204\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":343,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/danahh-Organic-Food-1-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5b6d25e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5414a21\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09dc \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09a7\\u09b0\\u09a8\\u09c7 \\u09ae\\u09c1\\u0996\\u09b0\\u09cb\\u099a\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5006653\"},{\"text\":\"\\u09ab\\u09bf\\u09b0\\u09a8\\u09cd\\u09a8\\u09bf,\\u09aa\\u09be\\u09df\\u09c7\\u09b8,\\u0997\\u09c1\\u09dc\\u09c7\\u09b0  \\u09b6\\u09b0\\u09ac\\u09a4,\\u0997\\u09c1\\u09dc\\u09c7\\u09b0 \\u099a\\u09be,\\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u09a1\\u09bf\\u099c\\u09be\\u09b0\\u09cd\\u099f \\u0986\\u0987\\u099f\\u09c7\\u09ae \\u09a4\\u09c8\\u09b0\\u09c0 \\u09b9\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"d9a6268\"},{\"text\":\" \\u09b6\\u09c0\\u09a4\\u09c7 \\u09aa\\u09bf\\u09a0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09dc\\u09be \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u0996\\u09c1\\u09ac\\u0987 \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09df\\u0964\\u09af\\u09c7\\u09ae\\u09a8- \\u09ad\\u09be\\u09aa\\u09be \\u09aa\\u09bf\\u09a0\\u09be,\\u09aa\\u09be\\u099f\\u09bf\\u09b8\\u09be\\u09aa\\u099f\\u09be \\u09aa\\u09bf\\u09a0\\u09be,\\u09a8\\u0995\\u09b6\\u09c0 \\u09aa\\u09bf\\u09a0\\u09be, \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u09aa\\u09bf\\u09a0\\u09be,\\u0997\\u09c1\\u09dc\\u09c7\\u09b0 \\u099c\\u09bf\\u09b2\\u09be\\u09aa\\u09bf,\\u09a6\\u09c1\\u09a7-\\u09aa\\u09c1\\u09b2\\u09bf \\u09aa\\u09bf\\u09a0\\u09be,\\u0995\\u09cd\\u09b7\\u09bf\\u09dc \\u09aa\\u09bf\\u09a0\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"14ad024\"},{\"text\":\"\\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 \\u0997\\u09c1\\u09dc \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u0985\\u099e\\u09cd\\u099a\\u09b2\\u09c7\\u09b0 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09a7\\u09b0\\u09a8\\u09c7 \\u09aa\\u09bf\\u09a0\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"318c4d2\"}],\"icon_color\":\"#54A41F\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"8ab4e9e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a82c8a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54A41F\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"a4cf9b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e65aeeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8 ?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e355f94\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"669cf6c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"5e0803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc50f4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u09aa\\u09cd\\u09b0\\u09bf\\u099c\\u09be\\u09b0\\u09ad\\u09c7\\u099f\\u09bf\\u09ad \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u0997\\u09c1\\u09dc \\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5006653\"},{\"text\":\"\\u0997\\u09c1\\u09dc \\u099a\\u09bf\\u09a8\\u09bf , \\u09b0\\u09be\\u09b8\\u09be\\u09af\\u09bc\\u09a8\\u09bf\\u0995 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 , \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ac\\u09be\\u0987\\u0995\\u09c7 \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09bf\\u09a8\\u09cd\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09c0 \\u0997\\u09c1\\u09dc\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u0989\\u09aa\\u09ad\\u09cb\\u0997 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"d9a6268\"},{\"text\":\"\\u09b8\\u09c1\\u09a6\\u09c1\\u09b0 \\u099a\\u09c1\\u09af\\u09bc\\u09be\\u09a1\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b8\\u09b0\\u09cb\\u099c\\u0997\\u099e\\u09cd\\u099c \\u09a5\\u09c7\\u0995\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09b0\\u09b8 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7,\\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0997\\u09c1\\u09dc \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7 \\u09af\\u09a4\\u09cd\\u09a8 \\u09b8\\u09b9\\u0995\\u09be\\u09b0\\u09c7 \\u09aa\\u09cc\\u099b\\u09c7 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0998\\u09b0\\u09c7 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"14ad024\"},{\"text\":\"\\u0986\\u09aa\\u09a8\\u09bf \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09df \\u099c\\u09be\\u09a8\\u09c7\\u09a8 \\u09af\\u09c7, \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09ac\\u099b\\u09b0 \\u09b8\\u09b0\\u09cd\\u09ac\\u099a\\u09cd\\u099a \\u09b6\\u09bf\\u09a4 \\u09aa\\u09dc\\u09c7 \\u099a\\u09c1\\u09af\\u09bc\\u09be\\u09a1\\u09be\\u0999\\u09cd\\u0997\\u09be \\u099c\\u09c7\\u09b2\\u09be\\u09a4\\u09c7 \\u0964 \\u09b6\\u09bf\\u09a4 \\u09ac\\u09c7\\u09b6\\u09bf \\u09aa\\u09dc\\u09b2\\u09c7 \\u09b0\\u09b8 \\u09ad\\u09be\\u09b2\\u09c7\\u09be \\u09b9\\u09df, \\u0986\\u09b0 \\u09b0\\u09b8 \\u09af\\u09a6\\u09bf \\u0996\\u09be\\u099f\\u09bf \\u09ad\\u09be\\u09b2\\u09c7\\u09be \\u09b9\\u09df \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u0997\\u09c1\\u09dc \\u0993 \\u09ad\\u09be\\u09b2\\u09c7\\u09be \\u09b9\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"318c4d2\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09dc 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0995\\u09cd\\u09af\\u09be\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u098f\\u09ac\\u0982 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09b9\\u09be\\u0987\\u099c\\u09c7\\u09a8 \\u09ae\\u09c7\\u0987\\u09a8\\u099f\\u09c7\\u0987\\u09a8 \\u0995\\u09b0\\u09c7 \\u09ac\\u09be\\u09a8\\u09be\\u09a8\\u09cb \\u09b9\\u09df\\u0964 \\u09af\\u09be \\u0995\\u09bf\\u09a8\\u09be \\u0986\\u09aa\\u09a8\\u09bf \\u0997\\u09c1\\u09dc \\u09b9\\u09be\\u09a4\\u09c7 \\u099f\\u09c7\\u09b8\\u09cd\\u099f \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df\\u0987 \\u09ac\\u09c1\\u099d\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"a780182\"},{\"text\":\" \\u0986\\u09aa\\u09a8\\u09bf \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ae\\u09cd\\u09af\\u09be\\u09a8 \\u098f\\u09b0 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u099f\\u09c7\\u09b8\\u09cd\\u099f \\u0995\\u09b0\\u09c7 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ef871ec\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09dc \\u0996\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u09aa\\u09b0 ,\\u0986\\u09aa\\u09a8\\u09bf \\u09ac\\u09b2\\u09a4\\u09c7 \\u09ac\\u09be\\u09a7\\u09cd\\u09af \\u09b9\\u09ac\\u09c7\\u09a8 ,\\u09ad\\u09be\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09a6\\u09c7\\u09b0 \\u0997\\u09c1\\u09dc \\u09a8\\u09be \\u09a8\\u09bf\\u09b2\\u09c7 \\u09ad\\u09c1\\u09b2 \\u0995\\u09b0\\u09a4\\u09be\\u09ae\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c08645d\"}],\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#FFFFFF\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"612f6b4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72c8bee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.74,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"structure\":\"20\"},\"elements\":[{\"id\":\"33f9c9c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FB6107\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54966cce\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\" \\u09e9 \\u0995\\u09c7\\u099c\\u09bf \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u0997\\u09c1\\u09dc\",\"highlighted_text\":\"\\u09e7\\u09eb\\u09e6\\u09e6\\/=\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"title_color\":\"#54A41F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"__globals__\":{\"marker_color\":\"\",\"words_color\":\"\"},\"marker_color\":\"#FB6107\",\"words_color\":\"#FB6107\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"36cbf02a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09a6\\u09c7\\u09b6\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FB0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f15224d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FB6107\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bf36621\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"\\u09e8.\\u09eb \\u0995\\u09c7\\u099c\\u09bf \\u09a8\\u09b2\\u09c7\\u09a8 \\u09a6\\u09be\\u09a8\\u09be\\u09a6\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\",\"highlighted_text\":\"\\u09e7\\u09e8\\u09e6\\u09e6\\/=\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"title_color\":\"#54A41F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"__globals__\":{\"marker_color\":\"\",\"words_color\":\"\"},\"marker_color\":\"#FB6107\",\"words_color\":\"#FB6107\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"51947c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09a6\\u09c7\\u09b6\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FB0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1bef41e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_position\":\"middle\",\"background_color\":\"#54A41F\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1a4ef61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5cb113e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u0985\\u09a5\\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6d301b\",\"elType\":\"widget\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3e921a3a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"checkout\"},\"elements\":[{\"id\":\"33f9d690\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#54A41F\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e07956c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09a4\\u09a5\\u09cd\\u09af \\u09a6\\u09bf\\u09df\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae \\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"title_color\":\"#54A41F\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d1411af\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"global_primary_color\":\"\"},\"global_primary_color\":\"#54A41F\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"global_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_css\":\"@media only screen and (max-width: 768px){\\r\\n\\t.wcf-order-wrap {\\r\\n   \\t\\t margin-top: -70px;\\r\\n\\t}\\r\\n}\\r\\n\\r\\np#billing_first_name_field {\\r\\n    width: 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n}\\r\\n\\r\\n\\r\\np#billing_country_field {\\r\\n    display: none;\\r\\n}\\r\\n\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29102872\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bbaaf75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b4c414a\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4925','1967','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4926','1967','_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:2;s:19:\"image_border_radius\";i:3;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:8;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:5:\"align\";i:8;s:21:\"typography_typography\";i:8;s:22:\"typography_font_family\";i:8;s:22:\"typography_font_weight\";i:8;s:20:\"typography_font_size\";i:6;s:23:\"text_stroke_text_stroke\";i:5;s:11:\"title_color\";i:8;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:8;}s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:2;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:5;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:5;s:4:\"link\";i:5;s:4:\"size\";i:5;s:13:\"selected_icon\";i:2;s:10:\"icon_align\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:14:{s:5:\"align\";i:5;s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:16:\"background_color\";i:5;s:11:\"hover_color\";i:5;s:29:\"button_background_hover_color\";i:5;s:15:\"hover_animation\";i:5;s:13:\"border_border\";i:5;s:12:\"border_width\";i:5;s:12:\"border_color\";i:5;s:13:\"border_radius\";i:2;s:17:\"button_text_color\";i:3;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:5;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:12;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:13:\"border_radius\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:4;s:36:\"background_motion_fx_motion_fx_mouse\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;}s:26:\"section_background_overlay\";a:3:{s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:2:{s:20:\"shape_divider_bottom\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:6;s:11:\"_element_id\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:3;s:3:\"gap\";i:10;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:2;s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"style\";i:2;s:5:\"width\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:2;s:6:\"weight\";i:2;s:3:\"gap\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:10:\"text_color\";i:2;}s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:2;s:7:\"divider\";i:2;s:13:\"divider_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:2;s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:10:\"after_text\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:28:\"title_typography_font_weight\";i:2;s:27:\"words_typography_typography\";i:2;s:28:\"words_typography_font_family\";i:2;s:28:\"words_typography_font_weight\";i:2;s:11:\"words_color\";i:2;s:26:\"title_typography_font_size\";i:2;}s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:2;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4927','1968','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4928','1968','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4929','1968','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4930','1968','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4931','1968','_elementor_data','[{\"id\":\"544a9410\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=757836c\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73127f30\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f66c4a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"263fdaed\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"5e1d0b7a\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"20ba40ed\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"18716410\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"387b344\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"749ebec\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fffb705\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"550f666d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2dce0932\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"246ae515\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4932','1968','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4933','1968','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4934','1968','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4935','1968','_edit_lock','1717961970:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4936','1968','wcf-flow-id','1947');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4937','1968','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4938','1968','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4939','1968','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4941','1969','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4942','1969','_elementor_data','[{\"id\":\"544a9410\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=757836c\"}},\"elements\":[{\"id\":\"73127f30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"64f66c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"263fdaed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5e1d0b7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20ba40ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18716410\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"387b344\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"749ebec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fffb705\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"550f666d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2dce0932\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246ae515\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4943','1969','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4944','1969','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4945','1969','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4946','1969','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4947','1969','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4948','1969','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4949','1970','wcf-flow-id','1951');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4950','1970','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4951','1970','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4952','1970','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4953','1970','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4954','1970','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4955','1970','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4956','1970','_astra_content_layout_flag','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4957','1970','site-post-title','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4958','1970','ast-title-bar-display','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4959','1970','ast-featured-img','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4960','1970','site-content-layout','page-builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4961','1970','_edit_lock','1718130045:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4962','1970','site-sidebar-layout','no-sidebar');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4963','1970','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4964','1970','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4965','1970','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4966','1970','_elementor_data','[{\"id\":\"7988cac2\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"800\",\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"40\",\"bottom\":\"92\",\"left\":\"40\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"68\",\"left\":\"24\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"31\",\"left\":\"20\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#0F5149\",\"shape_divider_bottom\":\"opacity-fan\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7faabef\",\"settings\":{\"_column_size\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"517c0f7\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"size_mobile\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"59c662fc\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.5\",\"sizes\":[]},\"align\":\"center\",\"header_size\":\"h1\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"620a7c78\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"678f58f\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b5b3ed\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9194c01\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"22d6f5f4\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c3b578e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2dd2c378\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4967','1970','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4968','1970','_elementor_page_settings','a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4970','1971','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4971','1971','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4972','1971','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4973','1971','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4974','1971','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4975','1971','_elementor_data','[{\"id\":\"7988cac2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"800\",\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"40\",\"bottom\":\"92\",\"left\":\"40\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"68\",\"left\":\"24\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"31\",\"left\":\"20\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#0F5149\",\"shape_divider_bottom\":\"opacity-fan\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]}},\"elements\":[{\"id\":\"7faabef\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"517c0f7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"size_mobile\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"59c662fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.5\",\"sizes\":[]},\"align\":\"center\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"620a7c78\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"678f58f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4b5b3ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9194c01\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22d6f5f4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c3b578e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dd2c378\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4976','1971','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4977','1971','_elementor_page_settings','a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4978','1971','_elementor_controls_usage','a:4:{s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:4:\"size\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:2;s:25:\"typography_letter_spacing\";i:1;s:5:\"align\";i:3;s:22:\"typography_line_height\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:21:\"section_shape_divider\";a:2:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4979','1972','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4980','1972','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4981','1972','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4982','1972','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4983','1972','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4984','1972','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4985','1972','_elementor_data','[{\"id\":\"479ecbe8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_background\":\"classic\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"280\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"gap\":\"no\",\"background_color\":\"#DEEDD6\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"37a08a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7677392a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_background\":\"classic\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"6d246aa\\\" name=\\\"site-url\\\" settings=\\\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}7B{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}7D\\\"]\"},\"image_custom_dimension\":{\"width\":\"100\",\"height\":\"100\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"309356af\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b9\\u09c7 \\u09ac\\u09a8\\u09bf \\u0986\\u09a6\\u09ae \\u09aa\\u09cd\\u09b0\\u09a4\\u09cd\\u09af\\u09c7\\u0995 \\u09a8\\u09be\\u09ae\\u09be\\u099c\\u09c7\\u09b0 \\u09b8\\u09ae\\u09df \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u09aa\\u09cb\\u09b6\\u09be\\u0995 \\u09aa\\u09b0\\u09bf\\u09a7\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09a8\\u09be\\u0993\",\"align\":\"center\",\"title_color\":\"#70254f\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5a4461\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09cd\\u09af\\u09c7\\u0995\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u09be\\u099c \\u09b9\\u09cb\\u0995 \\u09b8\\u09b9\\u09bf\\u09b9 \\u0993 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\\"\\u0986\\u09ac\\u09be\\u09b0\\u09a8\\u09bf\\\"\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"794dcfcc\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7aff62a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f51110a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":357,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/01-1.jpg\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1215ddb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#108910\",\"button_background_hover_color\":\"#70254f\",\"hover_animation\":\"pulse\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_shadow_text_shadow_type\":\"yes\",\"_transform_rotate_popover\":\"transform\",\"_transform_translate_popover\":\"transform\",\"_transform_scale_popover\":\"transform\",\"_transform_skew_popover\":\"transform\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"25e17d21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\\"\\u0986\\u09ac\\u09be\\u09df\\u09be-\\u0987 \\u09a8\\u09be\\u0996\\u09bf\\u09b2\\\" \\u098f\\u0987 \\u09ae\\u09c1\\u09b9\\u09c2\\u09b0\\u09cd\\u09a4\\u09c7\\u09b0 \\u09b8\\u09b0\\u09cd\\u09ac\\u09be\\u09a7\\u09bf\\u0995 \\u099a\\u09be\\u09b9\\u09bf\\u09a6\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ac\\u09cb\\u09b0\\u0996\\u09be\\u0964\\u00a0\\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09ad\\u09be\\u0987\\u09b0\\u09be\\u09b2 \\u098f\\u0987 \\u09a1\\u09bf\\u099c\\u09be\\u0987\\u09a8 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u09be\\u09a4\\u09c7\\u0987 \\u09a4\\u09c8\\u09b0\\u09bf\\u0964\\u00a0\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09aa\\u09c1\\u09b0\\u09be \\u0996\\u09c1\\u09ac\\u0987 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c7\\u099b\\u09c7\\u09a8 \\u098f\\u0987 \\u09ac\\u09cb\\u09b0\\u0996\\u09be\\u099f\\u09bf\\u0964\\u00a0\\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a8 \\u098f\\u0996\\u09a8\\u0987!<\\/p>\",\"align\":\"center\",\"text_color\":\"#F70303\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.8,\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"703febe1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#DEEDD6\"},\"elements\":[{\"id\":\"60a45041\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f9cd04c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u09b2\\u09be\\u09b9 \\u09b2\\u0982 \\u0996\\u09bf\\u09ae\\u09be\\u09b0 (\\u09ab\\u09cd\\u09b0\\u09c0 \\u09b8\\u09be\\u0987\\u099c)\",\"align\":\"center\",\"title_color\":\"#70254f\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59020f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a8\\u09be\\u09ae\\u09be\\u099c\\u09c7\\u09b0 \\u09aa\\u09cb\\u09b6\\u09be\\u0995 \\u09a8\\u09bf\\u09df\\u09c7 \\u099a\\u09bf\\u09a8\\u09cd\\u09a4\\u09be \\u09ae\\u09c1\\u0995\\u09cd\\u09a4, \\u09a8\\u09be\\u09ae\\u09be\\u099c\\u09c7 \\u0985\\u09b8\\u09cd\\u09ac\\u09b8\\u09cd\\u09a5\\u09bf \\u0986\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be \\u09a4\\u09be\\u0987 \\u0987\\u09ac\\u09be\\u09a6\\u09be\\u09a4 \\u09b9\\u09ac\\u09c7 \\u09a4\\u09c3\\u09aa\\u09cd\\u09a4\\u09bf\\u09ae\\u09a4, \\u09a8\\u09be\\u09ae\\u09be\\u099c\\u09c7 \\u0997\\u09b0\\u09ae \\u09b2\\u09be\\u0997\\u09be\\u09b0 \\u0995\\u09cb\\u09a8\\u0987 \\u0985\\u09ac\\u0995\\u09be\\u09b6 \\u09a8\\u09c7\\u0987\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58c10d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":358,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/05-1.jpg\"},{\"id\":359,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/04-1.jpg\"},{\"id\":360,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/03-1.jpg\"}],\"thumbnail_size\":\"full\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"image_spacing\":\"custom\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"arrows_size\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"46d67cc5\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09e7\\u09ea\\u09e6\\u09e6\\/-\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"marker_color\":\"#D81159\",\"title_color\":\"#333D51\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_color\":\"#333D51\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"7a7903af\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\",\"highlighted_text\":\"\\u09e7\\u09e8\\u09ef\\u09e6\\/-\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"marker_color\":\"#38B000\",\"title_color\":\"#70254F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"words_color\":\"#38B000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-74\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"26643684\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#108910\",\"button_background_hover_color\":\"#70254f\",\"hover_animation\":\"pulse\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"text_shadow_text_shadow_type\":\"yes\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"_transform_rotate_popover\":\"transform\",\"_transform_translate_popover\":\"transform\",\"_transform_scale_popover\":\"transform\",\"_transform_skew_popover\":\"transform\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43189d5b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"-5\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"730e058d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8dc6c1e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":361,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/jinaanshop1-600x514-1-1.jpg\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a62d8ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09c7\\u09a8 \\u098f\\u0987 \\u09b2\\u0982 \\u0996\\u09bf\\u09ae\\u09be\\u09b0\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0983\",\"align\":\"left\",\"align_mobile\":\"center\",\"title_color\":\"#70254F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b0ef903\",\"elType\":\"widget\",\"settings\":{\"style\":\"dashed\",\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"center\",\"text\":\"Divider\",\"color\":\"#38B000\",\"weight\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4a8ee2d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ac\\u09be\\u09b8\\u09be\\u09b0 \\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a8 \\u0993\\u09b0\\u09cd\\u09a8\\u09be \\u09a6\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c1\\u09b0\\u09cd\\u09a8 \\u09b8\\u09a4\\u09b0 \\u09a2\\u09be\\u0995\\u09be \\u0995\\u09b8\\u09cd\\u099f\\u0995\\u09b0\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b33f859\"},{\"text\":\"\\u09ae\\u09be\\u09a5\\u09be\\u09b0 \\u099a\\u09c1\\u09b2 \\u09ac\\u09c7\\u09b0 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09df\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"893640a\"},{\"text\":\"\\u0995\\u0996\\u09a8\\u09cb \\u09a5\\u09c1\\u09a4\\u09a8\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u0997\\u09b2\\u09be\\u09b0 \\u0985\\u0982\\u09b6 \\u09ac\\u09c7\\u09b0 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09df\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"806c3a8\"},{\"text\":\"\\u09b8\\u09be\\u09b2\\u09cb\\u09df\\u09be\\u09b0\\u09c7 \\u09b0\\u09c1\\u0995\\u09c1\\/\\u09b8\\u09bf\\u099c\\u09a6\\u09be\\u09df \\u099f\\u09be\\u0996\\u09a8\\u09c1 \\u09ac\\u09c7\\u09b0 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ad\\u09be\\u09ac\\u09a8\\u09be \\u09a5\\u09be\\u0995\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"32b4c98\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#70254F\",\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5cc3e1c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#108910\",\"button_background_hover_color\":\"#70254f\",\"hover_animation\":\"pulse\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"text_shadow_text_shadow_type\":\"yes\",\"_transform_rotate_popover\":\"transform\",\"_transform_translate_popover\":\"transform\",\"_transform_scale_popover\":\"transform\",\"_transform_skew_popover\":\"transform\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f5ea9bc\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F4F3EA\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2bef2549\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79581f2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09b9\\u09cb\\u09df\\u09be\\u099f\\u09b8\\u0986\\u09aa \\u0995\\u09b0\\u09c1\\u09a8\\u0983 01819000000\",\"link\":{\"url\":\"http:\\/\\/wa.me\\/01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"title_color\":\"#70254f\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"264d685e\",\"elType\":\"widget\",\"settings\":{\"text\":\"01819000000\",\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#70254F\",\"button_background_hover_color\":\"#108910\",\"hover_animation\":\"pulse\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"link\":{\"url\":\"http:\\/\\/wa.me\\/8801819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"text_shadow_text_shadow_type\":\"yes\",\"_transform_rotate_popover\":\"transform\",\"_transform_translate_popover\":\"transform\",\"_transform_scale_popover\":\"transform\",\"_transform_skew_popover\":\"transform\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e82db13\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_element_id\":\"order\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"custom_css\":\"@media only screen and (max-width: 768px){\\r\\n\\t.wcf-order-wrap {\\r\\n    \\t\\tmargin-top: -90px;\\r\\n\\t}\\r\\n}\"},\"elements\":[{\"id\":\"7df6459f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a538152\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995 \\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09c1\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#70254f\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c223687\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09a4\\u09c7, \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u0993 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u099f\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae\\\" \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<br \\/>\\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u0995\\u09cb\\u09a8 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u09a8\\u09be \\u09a6\\u09bf\\u09df\\u09c7\\u0987, \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7, \\u0996\\u09bf\\u09ae\\u09be\\u09b0\\u099f\\u09bf \\u09a6\\u09c7\\u0996\\u09c7 \\u09a4\\u09be\\u0981\\u09b0\\u09aa\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u0989\\u09aa\\u09ad\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.1,\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"111fa1d3\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"global_primary_color\":\"#D3AC2B\",\"global_text_color\":\"#000000\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"500\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"classic\",\"product_options_images\":\"yes\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#70254F\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cb2f0db\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f0f8efe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4c7d42c0\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4986','1972','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4987','1972','_elementor_controls_usage','a:10:{s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:3;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:22:\"image_custom_dimension\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:3;s:19:\"image_border_radius\";i:3;}}s:8:\"advanced\";a:1:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:8;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:8;s:11:\"title_color\";i:7;s:21:\"typography_typography\";i:8;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_font_weight\";i:8;s:22:\"typography_line_height\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:4;s:3:\"gap\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}s:21:\"section_shape_divider\";a:1:{s:27:\"shape_divider_bottom_height\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:6;s:6:\"margin\";i:2;s:11:\"_element_id\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:4:\"size\";i:4;s:13:\"selected_icon\";i:4;s:4:\"link\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:12:{s:5:\"align\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:16:\"background_color\";i:4;s:29:\"button_background_hover_color\";i:4;s:15:\"hover_animation\";i:4;s:13:\"border_border\";i:4;s:12:\"border_width\";i:4;s:13:\"border_radius\";i:4;s:28:\"text_shadow_text_shadow_type\";i:4;}}s:8:\"advanced\";a:1:{s:18:\"_section_transform\";a:4:{s:25:\"_transform_rotate_popover\";i:4;s:28:\"_transform_translate_popover\";i:4;s:24:\"_transform_scale_popover\";i:4;s:23:\"_transform_skew_popover\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:2;s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:4:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:2:{s:13:\"image_spacing\";i:1;s:19:\"image_border_radius\";i:1;}s:24:\"section_style_navigation\";a:1:{s:11:\"arrows_size\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:1;s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:10:\"after_text\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:2;}s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_font_weight\";i:2;s:11:\"words_color\";i:2;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"style\";i:1;s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:1;s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;s:10:\"text_color\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4988','1974','wcf-flow-id','1973');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4989','1974','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4990','1974','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4991','1973','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1974;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1976;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2048;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4992','1976','wcf-flow-id','1973');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4993','1976','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4994','1976','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4995','1976','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4996','1976','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4997','1976','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4998','1976','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('4999','1976','_edit_lock','1717966645:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5000','1976','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5001','1976','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5002','1976','_elementor_data','[{\"id\":\"97cb241\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F5C9C9\",\"shape_divider_top\":\"drops\",\"shape_divider_top_color\":\"#FAA8A8\",\"shape_divider_bottom\":\"zigzag\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":153,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"768689e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a35d3b\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":177,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"db545ea\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed \\u09a6\\u09bf\\u09a8\\u09c7\\u0987 \\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09ad\\u09be\\u09ac \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u0995\\u09b0\\u09c1\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a8 \\u0997\\u09cb\\u09b2\\u09be\\u09aa\\u09c0 !!\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"align\":\"center\",\"title_color\":\"#EB1C54\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4f787a8\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#EB1C54\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"korian-product\",\"custom_css\":\".korian-product{\\n    margin: 0 20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n}\\n\\n@media only screen and (max-width: 767px) {\\n  .korian-product {\\n    margin: 2{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n  }\\n}\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66d94a7\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"660d4b5\",\"settings\":{\"text\":\"\\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"500\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_background_hover_color\":\"#B60031\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#B60031\",\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\",\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\"},\"align_mobile\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"41\",\"bottom\":\"8\",\"left\":\"41\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"8e25a07\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#B60031\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#EB1C54\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c8bcee\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36aad05\",\"settings\":{\"editor\":\"\\u09ab\\u09cd\\u09b0\\u09c0 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09b6\\u09c1\\u09a7\\u09c1\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#EB1C54\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3d11fed\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFBCBC\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a84ad3\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dc3398e\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/gqLL4bWJh9U\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"controls\":\"\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_overlay\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"d41b7fe\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":25,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#EB1C54\",\"weight\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"d4d82fa\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"content_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFBCBC\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3316a50\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"df63cf4\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995\\u099f\\u09bf \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"22\",\"bottom\":\"-6\",\"left\":\"22\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"19\",\"bottom\":\"9\",\"left\":\"19\",\"isLinked\":false},\"align_mobile\":\"center\",\"_element_vertical_align_mobile\":\"center\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"title_color\":\"#EB1C54\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2b1b753\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"2\",\"bottom\":\"-17\",\"left\":\"2\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"6282600\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09a0\\u09cb\\u099f \\u09ab\\u09be\\u099f\\u09be \\u099c\\u09a8\\u09bf\\u09a4 \\u09b8\\u0995\\u09b2 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"cfafbd5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u09aa\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u09a8\\u09c7\\u09a8\\u09cd\\u099f\\u09b2\\u09c0 \\u0997\\u09cb\\u09b2\\u09be\\u09aa\\u09c0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"94967e0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09b0\\u09be \\u099a\\u09be\\u09ae\\u09a1\\u09bc\\u09be \\u0989\\u09a0\\u09bf\\u09af\\u09bc\\u09c7 \\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u09a3\\u09ac\\u09a8\\u09cd\\u09a4\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"fbe2827\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u099b\\u09c7\\u09b2\\u09c7 \\u0993 \\u09ae\\u09c7\\u09af\\u09bc\\u09c7 \\u09b8\\u09ac\\u09be\\u0987 \\u098f\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"6260f32\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed \\u09a6\\u09bf\\u09a8\\u09c7 \\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u09ac\\u09cd\\u09b2\\u09be\\u0995\\u09bf\\u09b6 \\u09ad\\u09be\\u09ac \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"ba99ec5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a6\\u09c0\\u09b0\\u09cd\\u0998 \\u09b8\\u09ae\\u09af\\u09bc \\u09a7\\u09b0\\u09c7 \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09b6\\u09a8 \\u09a7\\u09b0\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"49a9efb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u09b0 \\u09ab\\u09cd\\u09b0\\u09c7\\u0997\\u09a8\\u09c7\\u09a8\\u09cd\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ae\\u09a8\\u0995\\u09c7 \\u09b8\\u09a4\\u09c7\\u099c \\u0995\\u09b0\\u09c7 \\u09a4\\u09c1\\u09b2\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"f5388d2\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a6\\u09c0\\u09b0\\u09cd\\u0998\\u09a6\\u09bf\\u09a8 \\u09b2\\u09bf\\u09aa\\u09cd\\u09b8\\u099f\\u09bf\\u0995 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0993 \\u09b8\\u09bf\\u0997\\u09be\\u09b0\\u09c7\\u099f \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"c33241b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u09af\\u09c7 \\u0995\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac \\u09b9\\u09af\\u09bc \\u09a4\\u09be \\u09aa\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u09a8\\u09c7\\u09a8\\u09cd\\u099f\\u09b2\\u09c0 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"a0cb2e3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u099f\\u09cb\\u09b2\\u09cb\\u099c\\u09bf\\u09b8\\u09cd\\u099f \\u09a6\\u09cd\\u09ac\\u09be\\u09b0\\u09be \\u099f\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09a1 \\u09b9\\u0993\\u09af\\u09bc\\u09be\\u09af\\u09bc \\u09b8\\u09c7\\u09a8\\u09b8\\u09bf\\u099f\\u09bf\\u09ad  \\u09b8\\u09cd\\u0995\\u09bf\\u09a8\\u09c7 \\u0995\\u09cb\\u09a8\\u09b0\\u09c2\\u09aa \\u0987\\u09b0\\u09bf\\u099f\\u09c7\\u09b6\\u09a8 \\u09b8\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u0995\\u09b0\\u09c7 \\u09a8\\u09be\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"c650f51\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"38b516b\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":25,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#EB1C54\",\"weight\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"de9a14f\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0041068\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b060a36\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#EB1C54\",\"border_radius\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"korian-product\",\"custom_css\":\".korian-product{\\n    margin: 0 20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n}\\n\\n@media only screen and (max-width: 767px) {\\n  .korian-product {\\n    margin: 2{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n  }\\n}\",\"background_background\":\"classic\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14d9463\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":20,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d61a0cd\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"1f3a869\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.331,\"_inline_size_mobile\":60,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bef9dfc\",\"settings\":{\"title\":\"\\u0987\\u09a8\\u0997\\u09cd\\u09b0\\u09c7\\u09a1\\u09bf\\u09df\\u09c7\\u09a8\\u09cd\\u099f\\u09b8 \\u0995\\u09c0?\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#EB1A52\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"title_color\":\"#EB1C54\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"d3f848e\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fbcd787\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"098aa8b\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"11\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78542b0\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f56fdbb\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b2\\u09cd\\u09af\\u09be\\u09a8\\u09c7\\u0987\\u099c \\u09b2\\u09bf\\u09aa \\u09b8\\u09cd\\u09b2\\u09bf\\u09aa\\u09bf\\u0982 \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09b9\\u09b2 \\u098f\\u0995\\u099f\\u09bf \\u09b2\\u09bf\\u09ad-\\u0985\\u09a8 \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09af\\u09be  \\u09b0\\u09be\\u09a4\\u09be\\u09b0\\u09be\\u09a4\\u09bf \\u09a0\\u09cb\\u0981\\u099f\\u0995\\u09c7 \\u09aa\\u09cd\\u09b0\\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u09a6\\u09c7\\u09df \\u098f\\u09ac\\u0982 \\u09ae\\u09df\\u09b6\\u09cd\\u099a\\u09be\\u09b0\\u09be\\u0987\\u099c \\u0995\\u09b0\\u09c7\\u0964  \\u09b9\\u09be\\u0987\\u09b2\\u09c1\\u09b0\\u09cb\\u09a8\\u09bf\\u0995 \\u0985\\u09cd\\u09af\\u09be\\u09b8\\u09bf\\u09a1 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09bf\\u0982, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2  \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09af\\u09be \\u098f\\u0995\\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7  \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u0986\\u09b0\\u09cd\\u09a6\\u09cd\\u09b0\\u09a4\\u09be \\u0986\\u099f\\u0995\\u09be\\u09a4\\u09c7 \\u09ac\\u09be\\u09a7\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"cfafbd5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u0987 \\u09b2\\u09bf\\u09aa \\u09b8\\u09cd\\u09b2\\u09bf\\u09aa\\u09bf\\u0982 \\u09ae\\u09be\\u09b8\\u09cd\\u0995\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u09a8\\u09b0\\u09ae \\u099f\\u09c7\\u0995\\u09cd\\u09b8\\u099a\\u09be\\u09b0 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09af\\u09be  \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09b6\\u09cb\\u09b7\\u09a3\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0998\\u09a8\\u09bf\\u09b7\\u09cd\\u09a0\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09c7 \\u09af\\u09be\\u09df\\u0964  \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f\\u09c7 \\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7, \\u09ac\\u09c7\\u09b0\\u09bf \\u09ae\\u09bf\\u0995\\u09cd\\u09b8  \\u0995\\u09ae\\u09aa\\u09cd\\u09b2\\u09c7\\u0995\\u09cd\\u09b8 \\u09b0\\u09be\\u09b8\\u09cd\\u09aa\\u09ac\\u09c7\\u09b0\\u09bf\\u09b0 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf \\u098f\\u09ac\\u0982  \\u09b8\\u09c1\\u0997\\u09a8\\u09cd\\u09a7\\u09bf \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"17c688d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_vertical_offset_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"divider\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"c1fd0ed\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFB3B3\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b9d7ad\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4168cbd\",\"settings\":{\"title\":\"\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"22\",\"bottom\":\"-2\",\"left\":\"22\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"align_mobile\":\"center\",\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"title_color\":\"#EB1C54\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"93ee357\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"f4d0f88\",\"settings\":{\"title\":\"\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09cd\\u09b2\\u09bf\\u0995\\u09c7\\u099f\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7,\\u09b8\\u09a8\\u09cd\\u09a7\\u09cd\\u09af\\u09be\\u09df \\u09a0\\u09cb\\u0981\\u099f\\u09c7 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09bf\\u0982 \\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09b2\\u09be\\u0997\\u09be\\u09a8 \\u098f\\u09ac\\u0982 \\u09b8\\u09be\\u09b0\\u09be\\u09b0\\u09be\\u09a4 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a6\\u09bf\\u09a8\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7 \\u0986\\u09b2\\u09a4\\u09cb \\u0995\\u09b0\\u09c7 \\u09ae\\u09c1\\u099b\\u09c1\\u09a8 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"align\":\"center\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"6bd7ffd\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FF7E7E\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ec6a1b\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e9a5ed8\",\"settings\":{\"title\":\"\\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"align_mobile\":\"center\",\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"title_color\":\"#EB1C54\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"fb2be6d\",\"settings\":{\"carousel\":[],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"gallery_vertical_align\":\"center\",\"image_spacing\":\"custom\",\"image_border_color\":\"#EB1C54\",\"_border_border\":\"solid\",\"_border_color\":\"#EB1C54\",\"dots_position\":\"inside\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"d91e9c8\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-26\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dfe1bd\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e45b10c\",\"settings\":{\"title\":\"\\u0995\\u09b2 \\u0995\\u09b0\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align_mobile\":\"center\",\"_element_width_mobile\":\"inherit\",\"title_color\":\"#EB1C54\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"9f4c191\",\"settings\":{\"text\":\"01819000000\",\"align\":\"center\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bensen\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_radius\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_shadow_text_shadow_type\":\"yes\",\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D0063C\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-2\",\"bottom\":\"-6\",\"left\":\"-2\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#EB1C54\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"2667048\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e9b3650\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61efb42\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ea8eb4a\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#EB1C54\",\"border_radius\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"text_align\":\"left\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56a5c6e\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"content_position_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f2de42d\",\"settings\":{\"before_text\":\"\",\"highlighted_text\":\"\\u09e7\\u09e7\\u09eb\\u09e6 \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker\":\"diagonal\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"marker_color\":\"#EB1C54\",\"title_color\":\"#EB1C54\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_weight\":\"600\",\"words_color\":\"#EB1C54\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"6cc2f5a\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"content_position_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ba595de\",\"settings\":{\"title\":\"\\u09b6\\u09c1\\u09a7\\u09c1\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af<\\/br><span style=\\\"font-size: 45px; color:#EB1C54\\\">\\u09ed\\u09eb\\u09e6\\u099f\\u09be\\u0995\\u09be<\\/span>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_border_color\":\"#EB1C54\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"a7eefc0\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#EB1C54\",\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CC0339\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"096afe9\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"349b72e\",\"settings\":{\"title\":\"\\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u099b\\u09be\\u09dc\\u09be \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#EB1C54\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#CC0339\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"0ce1f46\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F7B6B6\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9263f48\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2549b4f\",\"elType\":\"widget\",\"settings\":{\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"layout\":\"two-column\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"global_typography_typography\":\"custom\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#CC0339\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"global_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"700\",\"_element_id\":\"order\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"ed539f7\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6df7726\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9376935\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5003','1976','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5004','1976','_oembed_7befe71c04536851b6485e7b012d3f0d','<iframe title=\"Video Placeholder\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5005','1976','_oembed_time_7befe71c04536851b6485e7b012d3f0d','1706688503');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5006','1976','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5007','1976','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5008','1976','wcf-enable-product-options','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5009','1976','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5010','1976','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5011','1976','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5012','1976','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5013','1976','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5014','1976','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5015','1976','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5016','1976','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5017','1976','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5018','1976','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5019','1976','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5020','1976','wcf_field_order_shipping','a:9:{s:19:\"shipping_first_name\";a:11:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_1\";a:11:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"shipping_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:14:\"shipping_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"shipping_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5021','1976','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5022','1976','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5023','1976','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5024','1976','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5025','1976','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5026','1976','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5027','1976','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5028','1976','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5029','1976','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5030','1976','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5031','1976','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5032','1976','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5033','1976','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5034','1976','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5035','1976','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5036','1976','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5039','1978','wcf-flow-id','1977');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5040','1978','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5041','1978','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5042','1977','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1978;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1980;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2087;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5043','1980','wcf-flow-id','1977');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5044','1980','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5045','1980','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5046','1980','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5047','1980','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5048','1980','_elementor_version','3.21.8');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5049','1980','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5050','1980','_edit_lock','1780987489:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5051','1980','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5052','1980','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5053','1980','_elementor_data','[{\"id\":\"2b3c079\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#244151\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.17,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74e5410\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"91a93c0\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":495,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":218,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FCFCFC\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"space\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":14,\"sizes\":[]},\"space_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":21,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"a543117\",\"settings\":{\"title\":\" <span style=\\\"color: white\\\">  \\u09a6\\u09c0\\u09b0\\u09cd\\u0998\\u09ae\\u09c7\\u09df\\u09be\\u09a6\\u09c7 \\u09aa\\u09be\\u09df\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09a8\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\u09b2\\u09c7 <\\/span> <span style=\\\"color: red\\\"> \\u099a\\u09be\\u09ae\\u09dc\\u09be\\u09b0 \\u09b2\\u09cb\\u09ab\\u09be\\u09b0 \\u099c\\u09c1\\u09a4\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 ! <\\/span>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"title_color\":\"#EFEFEF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"65bceb4\",\"settings\":{\"title\":\"\\u09ac\\u09be\\u09af\\u09bc\\u09c1 \\u09aa\\u09cd\\u09b0\\u09ac\\u09be\\u09b9\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09c7\\u09a4\\u09cd\\u09b0\\u09c7 \\u09aa\\u09b6\\u09c1\\u09b0 \\u099a\\u09be\\u09ae\\u09a1\\u09bc\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0 \\u0985\\u09a4\\u09bf\\u09b0\\u09bf\\u0995\\u09cd\\u09a4 \\u0998\\u09be\\u09ae\\u09be\\u09df \\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09a6\\u09c1\\u09b0\\u09cd\\u0997\\u09a8\\u09cd\\u09a7 \\u099b\\u09dc\\u09be\\u09df \\u09a8\\u09be!\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":573,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":549,\"sizes\":[]},\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"ca67923\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fd702d1\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1838497\",\"settings\":{\"slides\":[{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"ac54b46\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"faf8c2b\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"8ff395b\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"46e9306\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"bc3960e\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"c82efb8\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"height\":{\"unit\":\"px\",\"size\":407,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"slide_border_color\":\"#ADA8A8\",\"skin\":\"coverflow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"media-carousel\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"7a9cbb9\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#290580\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"bd474e6\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#141D6F\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#C7B61B\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bb43190\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0e07bea\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"940dc12\",\"settings\":{\"title\":\" <span style=\\\"color:red \\\"> \\u0985\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u099a\\u09be\\u09ae\\u09a1\\u09bc\\u09be  <\\/span>\\u099a\\u09c7\\u09a8\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09af\\u09bc\\n\",\"align\":\"center\",\"title_color\":\"#FDFDFD\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1f8c75f\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":60,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#FFFFFF\",\"primary_color\":\"#FFFFFF\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"ca89e3f\",\"settings\":{\"icon_list\":[{\"text\":\"\\ud83d\\udc49 \\u09ab\\u09be\\u09df\\u09be\\u09b0 \\u099f\\u09c7\\u09b8\\u09cd\\u099f \\u0985\\u09b0\\u09cd\\u09a5\\u09be\\u09ce \\u0986\\u0997\\u09c1\\u09a8\\u09c7 \\u09aa\\u09cb\\u09dc\\u09be\\u09b2\\u09c7 \\u09b8\\u09b9\\u099c\\u09c7 \\u09aa\\u09c1\\u09dc\\u09ac\\u09c7 \\u09a8\\u09be, \\u0997\\u09b2\\u09ac\\u09c7 \\u09a8\\u09be \\u09a5\\u09be\\u0995\\u09ac\\u09c7 \\u0985\\u0995\\u09cd\\u09b7\\u09a4\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ce6bf6d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49 \\u09b9\\u09be\\u09a4 \\u09a6\\u09bf\\u09df\\u09c7 \\u099a\\u09be\\u09aa \\u09a6\\u09bf\\u09b2\\u09c7 \\u099a\\u09be\\u09ae\\u09dc\\u09be \\u09b9\\u09b2\\u09c7 \\u09ab\\u09be\\u099f\\u09ac\\u09c7 \\u09a8\\u09be \\u0995\\u09bf\\u099b\\u09c1 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be, \\u0986\\u09b0\\u09cd\\u099f\\u09bf\\u09ab\\u09bf\\u09b6\\u09bf\\u09af\\u09bc\\u09be\\u09b2 \\u09b9\\u09b2\\u09c7 \\u09ab\\u09c7\\u099f\\u09c7 \\u09af\\u09be\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"67f5824\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49 \\u09a8\\u09be\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09a8\\u09bf\\u09b2\\u09c7 \\u099a\\u09be\\u09ae\\u09dc\\u09be \\u0997\\u09a8\\u09cd\\u09a7 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u0986\\u09b0\\u09cd\\u099f\\u09bf\\u09ab\\u09bf\\u09b6\\u09bf\\u09af\\u09bc\\u09be\\u09b2 \\u09b9\\u09b2\\u09c7 \\u0997\\u09a8\\u09cd\\u09a7 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09a8\\u09be\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"794b6e5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49 \\u0995\\u09c3\\u09a4\\u09cd\\u09b0\\u09bf\\u09ae \\u099a\\u09be\\u09ae\\u09dc\\u09be \\u09ac\\u09be \\u09b0\\u09c7\\u0995\\u09cd\\u09b8\\u09bf\\u09a8\\u09c7 \\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3\\u09a4 \\u0995\\u09cb\\u09a8 \\u09a8\\u09be \\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09aa\\u09dc \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a4\\u09be\\u09b0 \\u0989\\u09aa\\u09b0 \\u09aa\\u09b2\\u09bf\\u09ae\\u09be\\u09b0 \\u09a6\\u09bf\\u09df\\u09c7 \\u0995\\u09cb\\u099f\\u09bf\\u0982 \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u0986\\u09b0 \\u098f \\u099c\\u09a8\\u09cd\\u09af \\u0995\\u09c3\\u09a4\\u09cd\\u09b0\\u09bf\\u09ae \\u099a\\u09be\\u09ae\\u09dc\\u09be\\u09df \\u09a4\\u09c8\\u09b0\\u09bf \\u09aa\\u09a8\\u09cd\\u09af\\u099f\\u09bf \\u0993\\u09b2\\u09cd\\u099f\\u09be\\u09b2\\u09c7\\u0987 \\u0995\\u09be\\u09aa\\u09dc\\u09c7\\u09b0 \\u0986\\u09b8\\u09cd\\u09a4\\u09b0\\u09a3 \\u09aa\\u09be\\u0993\\u09df\\u09be \\u09af\\u09be\\u09df\\u0964 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u099a\\u09be\\u09ae\\u09dc\\u09be\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u09aa\\u09a8\\u09cd\\u09af\\u09c7 \\u098f\\u09ae\\u09a8 \\u0995\\u09bf\\u099b\\u09c1 \\u09a6\\u09c7\\u0996\\u09be \\u09af\\u09be\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"e826400\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#B7C213\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_color\":\"#FDFDFD\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":102.5},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"9361b78\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#DE5801\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"f3a7b6b\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b7a936b\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"95de469\",\"settings\":{\"title\":\" <span style=\\\"color: #0000ff\\\"> \\u0995\\u09cd\\u09af\\u099c\\u09c1\\u09df\\u09c7\\u09b2 \\u099c\\u09c1\\u09a4\\u09be<\\/span> \\u0995\\u09c7\\u09a8 \\u09aa\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n\",\"align\":\"center\",\"title_color\":\"#F1A50D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"866b447\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#C1C1C1\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"-4\",\"bottom\":\"-4\",\"left\":\"-4\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2909330\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"},\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d2523ab\",\"settings\":{\"icon_list\":[{\"text\":\"\\ud83d\\udc49  \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09c0\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09be\\u09a8\\u09be\\u09a8\\u09b8\\u0987\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"85973ee\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49  \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0987\\u0989\\u09a8\\u09bf\\u0995\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"2b0fc84\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49  \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b2\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09cd\\u09af\\u09be\\u099a \\u09b9\\u09af\\u09bc\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"620b571\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49  \\u09a8\\u09bf\\u099c\\u09c7\\u0995\\u09c7 \\u0986\\u09b0\\u09cd\\u0995\\u09b7\\u09a8\\u09c0\\u09af\\u09bc \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"2d33317\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49   \\u0987\\u0989\\u09a8\\u09bf\\u0995 \\u09a1\\u09bf\\u099c\\u09be\\u0987\\u09a8\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u09c7\\u099b\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"2f98ffc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_typography_font_weight\":\"bold\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"258cdec\",\"settings\":{\"button_type\":\"warning\",\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#C2631B\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"7b4357a\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d659f54\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"edca32c\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0b4c54e\",\"settings\":{\"title\":\" <span style=\\\"color: red\\\"> jildshop <\\/span> \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8 ?\\n\\n\",\"align\":\"center\",\"title_color\":\"#F1A50D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"c91f3ba\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#C1C1C1\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"-4\",\"bottom\":\"-4\",\"left\":\"-4\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b4f23df\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"},\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3668fa9\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2c71dfd\",\"settings\":{\"button_type\":\"warning\",\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#C2631B\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"b07ed9d\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76aa801\",\"settings\":{\"icon_list\":[{\"text\":\"\\ud83d\\udc49 \\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0985\\u09b0\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u0997\\u09b0\\u09c1\\u09b0 \\u099a\\u09be\\u09ae\\u09dc\\u09be\\u0964\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"2f98ffc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49 \\u09b0\\u09be\\u09ac\\u09be\\u09b0 \\u0995\\u09c7\\u09b0\\u09c7\\u09aa \\u09b8\\u09cb\\u09b2\\u0964\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"51b0ec6\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49 \\u09ec \\u09ae\\u09be\\u09b8\\u09c7\\u09b0 \\u0993\\u09df\\u09be\\u09b0\\u09c7\\u09a8\\u09cd\\u099f\\u09bf \\u0964\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a40e998\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49 \\u09a1\\u0995\\u09cd\\u099f\\u09b0 \\u0987\\u09a8\\u09b8\\u09cb\\u09b2 \\u0987\\u0989\\u099c \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u09c7\\u099b\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"07c0f3e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49\\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a8 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u0964\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7aa7c3b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49   \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0985\\u0997\\u09cd\\u09b0\\u09c0\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be, \\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09af\\u09bc\\u09c7 \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u099f\\u09be\\u0995\\u09be \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"85973ee\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49  \\u09af\\u09a6\\u09bf \\u099c\\u09c1\\u09a4\\u09be \\u099a\\u09be\\u09ae\\u09a1\\u09bc\\u09be\\u09b0 \\u09a8\\u09be \\u09b9\\u09df \\u09aa\\u09cd\\u09b0\\u09ae\\u09be\\u09a3 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09b2\\u09c7 \\u09e7\\u09e6 \\u09b9\\u09be\\u099c\\u09be\\u09b0 \\u099f\\u09be\\u0995\\u09be \\u09aa\\u09c1\\u09b0\\u09b8\\u09cd\\u0995\\u09be\\u09b0\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"2b0fc84\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49  \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09b2 \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09af\\u09bc\\u09c7 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7\\u09c7\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be\\u0964\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"620b571\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49  \\u099c\\u09c1\\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u0987\\u099c \\u09aa\\u09be\\u09df\\u09c7 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u098f\\u0995\\u09cd\\u09b8\\u099a\\u09c7\\u099e\\u09cd\\u099c \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"2d33317\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_font_weight\":\"bold\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"3482309\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b7b965\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a788625\",\"settings\":{\"title\":\"\\u09ac\\u09bf:\\u09a6\\u09cd\\u09b0: \\u09a4\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09b8\\u09be\\u0987\\u099c \\u09a8\\u09bf\\u09df\\u09c7 \\u0995\\u09a8\\u09ab\\u09bf\\u0989\\u099c \\u09b9\\u09b2\\u09c7 \\u098f\\u09b8\\u09cd\\u0995\\u09c7\\u09b2 \\u09ac\\u09be \\u09ab\\u09bf\\u09a4\\u09be \\u09ae\\u09c7\\u09aa\\u09c7 \\u09aa\\u09be\\u09df\\u09c7\\u09b0 \\u09ab\\u099f\\u09cb \\u09a6\\u09bf\\u09a8 <br\\/> <span style=\\\"color:red\\\"> Whatsapp 01923529627<\\/span>\",\"align\":\"center\",\"title_color\":\"#4020A5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/api.whatsapp.com\\/send?phone=+8801960552321&text= \\u0986\\u09ae\\u09bf \\u09b2\\u09cb\\u09ab\\u09be\\u09b0 \\u09a8\\u09bf\\u09a4\\u09c7 \\u099a\\u09be\\u0987 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"9b9c2f5\",\"settings\":{\"text\":\"Call Now \",\"link\":{\"url\":\"tel:01923529627\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"background_color\":\"#4B9615\",\"_background_background\":\"classic\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"877f6f0\",\"settings\":{\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F4F3EA\",\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3bfc7cc\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"2\",\"right\":\"20\",\"bottom\":\"2\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5413740\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u0987\\u099c \\u0997\\u09be\\u0987\\u09a1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"9de2556\",\"settings\":{\"text\":\"Divider\",\"style\":\"double\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":15,\"sizes\":[]},\"align\":\"center\",\"color\":\"#DE5801\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"a629d28\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"space\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":74,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"image_border_color\":\"#F4732D\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"height\":{\"unit\":\"px\",\"size\":481,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":277,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"526f14e\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1cd206d\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09a8\\u09cd\\u09af\\u09c7\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"3d879c5\",\"settings\":{\"background_background\":\"classic\",\"border_color\":\"#DE5801\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"88e95cc\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d0c29c\",\"settings\":{\"slides\":[{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"ac54b46\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"faf8c2b\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"8ff395b\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"46e9306\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"bc3960e\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"a83ab0e\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"height\":{\"unit\":\"px\",\"size\":407,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"slide_border_color\":\"#ADA8A8\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"media-carousel\",\"elType\":\"widget\"},{\"id\":\"ec6499b\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"aad6116\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u098f\\u0987 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ab\\u09bf \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"400e0a6\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"border_color\":\"#ED9337\",\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a4c711e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54c437c\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"grid_rows_grid\":{\"unit\":\"fr\",\"size\":1,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b627f2d\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\u0983 \",\"highlighted_text\":\"\\u09e8\\u09ee\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"stroke_width\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"above_content\":\"yes\",\"rounded_edges\":\"yes\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"words_color\":\"#FFF9F9\",\"words_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#128742\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#DA9220\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"8df0a00\",\"settings\":{\"marker\":\"double_underline\",\"before_text\":\"\\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\u0983 \",\"highlighted_text\":\"\\u09e8\\u09e8\\u09ef\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be \",\"marker_color\":\"#FF0000\",\"title_color\":\"#FCFCFC\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"words_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#128742\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#DA9220\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"bc1c4f8\",\"settings\":{\"title\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09ab\\u09cd\\u09b0\\u09c0\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FF0000\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"13894d5\",\"elType\":\"widget\",\"settings\":{\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"layout\":\"two-column\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09b0\\u0982 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Orienta\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Open Sans\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"order-form\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"heading_text_color\":\"#000000\",\"heading_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"1e2ad87\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5054','1980','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5055','1980','wcf_fields_billing','a:12:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}s:12:\"billing_test\";a:15:{s:4:\"type\";s:5:\"radio\";s:5:\"label\";s:4:\"test\";s:11:\"placeholder\";s:0:\"\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:11:\"label_class\";a:0:{}s:13:\"show_in_email\";s:0:\"\";s:8:\"required\";s:0:\"\";s:6:\"custom\";b:1;s:7:\"default\";s:0:\"\";s:7:\"options\";a:2:{s:4:\"test\";s:4:\"test\";s:4:\"fgjh\";s:4:\"fgjh\";}s:9:\"optimized\";s:0:\"\";s:5:\"width\";s:3:\"100\";s:4:\"name\";s:12:\"billing_test\";s:3:\"key\";s:12:\"billing_test\";s:7:\"enabled\";s:3:\"yes\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5056','1980','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5057','1980','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5058','1980','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5059','1980','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5060','1980','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5061','1980','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5062','1980','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5063','1980','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5064','1980','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5065','1980','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5066','1980','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5067','1980','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5068','1980','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5069','1980','wcf_field_order_billing','a:12:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_test\";a:16:{s:4:\"type\";s:5:\"radio\";s:5:\"label\";s:12:\"সাইজ\";s:11:\"placeholder\";s:0:\"\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:11:\"label_class\";a:0:{}s:13:\"show_in_email\";b:0;s:8:\"required\";b:1;s:6:\"custom\";b:1;s:7:\"default\";s:0:\"\";s:7:\"options\";a:6:{s:6:\"৩৯\";s:6:\"৩৯\";s:6:\"৪০\";s:6:\"৪০\";s:6:\"৪১\";s:6:\"৪১\";s:6:\"৪২\";s:6:\"৪২\";s:6:\"৪৩\";s:6:\"৪৩\";s:6:\"৪৪\";s:6:\"৪৪\";}s:9:\"optimized\";b:0;s:5:\"width\";i:100;s:4:\"name\";s:12:\"billing_test\";s:3:\"key\";s:12:\"billing_test\";s:7:\"enabled\";b:1;s:8:\"priority\";i:120;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5070','1980','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5071','1980','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5072','1980','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5073','1980','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5074','1980','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5075','1980','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5076','1980','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5077','1980','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5078','1980','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5079','1980','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5080','1980','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5081','1980','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5082','1980','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5083','1980','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5084','1980','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5087','1981','wcf-flow-id','1929');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5088','1981','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5089','1981','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5090','1981','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5091','1981','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5092','1981','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5093','1981','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5094','1981','_edit_lock','1716483671:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5095','1981','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5096','1981','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5097','1981','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5098','1981','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5099','1981','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5101','1982','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5102','1982','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5103','1982','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5104','1982','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5105','1982','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5106','1982','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":296,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/dfgdfg-1.webp\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5107','1982','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5108','1982','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5109','1983','wcf-flow-id','1924');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5110','1983','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5111','1983','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5112','1983','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5113','1983','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5114','1983','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5115','1983','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5116','1983','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5117','1983','_elementor_version','3.20.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5118','1983','_elementor_pro_version','3.7.7');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5119','1983','_edit_lock','1717354903:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5120','1983','_elementor_data','[{\"id\":\"26c224c\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#045304\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c3e8a1e\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c0a4e39\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":11,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":29,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"1cb235e\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6 \\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u099f\\u09bf \\u0986\\u09ae\\u09b0\\u09be \\u09aa\\u09c7\\u09df\\u09c7\\u099b\\u09bf\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"0f5832f\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#C9FFA9\",\"animation\":\"none\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f571483\",\"elType\":\"widget\",\"settings\":{\"thankyou_text\":\"\\u0985\\u09a4\\u09bf\\u09a6\\u09cd\\u09b0\\u09c1\\u09a4\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c7 \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"heading_align\":\"center\",\"heading_color\":\"#045304\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"order-details-form\"},{\"id\":\"2cc9f87\",\"settings\":{\"title\":\"\\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 - 01983 196 929 \",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#045304\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"48b74ed\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"92cd923\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Facebook Group\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/groups\\/1805794863172480\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cdfe69c\"},{\"text\":\"Facebook Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\\/sahabafood1\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a4c98d\"}],\"space_between\":{\"unit\":\"rem\",\"size\":10,\"sizes\":[]},\"space_between_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"space_between_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#FFFFFF\",\"_flex_align_self_mobile\":\"center\",\"_background_background\":\"classic\",\"_background_color\":\"#045304\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5121','1983','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5122','1983','_yoast_wpseo_content_score','90');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5123','1983','_yoast_wpseo_estimated-reading-time-minutes','1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5125','1985','wcf-flow-id','1984');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5126','1985','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5127','1985','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5128','1984','wcf-steps','a:4:{i:0;a:3:{s:2:\"id\";i:1985;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1987;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2004;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}i:3;a:3:{s:2:\"id\";i:2006;s:5:\"title\";s:21:\"হিমসাগর\";s:4:\"type\";s:8:\"checkout\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5129','1987','wcf-flow-id','1984');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5130','1987','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5131','1987','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5132','1987','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5133','1987','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5134','1987','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5135','1987','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5136','1987','_edit_lock','1780986950:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5137','1987','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5138','1987','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5139','1987','_elementor_data','[{\"id\":\"2b3c079\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFE1BA\",\"shape_divider_bottom_color\":\"#FF8800\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"shape_divider_top\":\"drops\",\"shape_divider_top_color\":\"#F59B47\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"shape_divider_bottom\":\"opacity-fan\"},\"elements\":[{\"id\":\"74e5410\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"91a93c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2142,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/62377b17-7d55-45c5-b128-b993e01ae1f7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#DE5801\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a543117\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u0986\\u09ae\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"title_color\":\"#0A0A0A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65bceb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"<s>\\u0986\\u0997\\u09c7\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\u0983 \\u09e7\\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/s>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":573,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":549,\"sizes\":[]},\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"title_color\":\"#7E7E7E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09c1880\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u09b8\\u09c7\\u09b0\\u09be \\u0985\\u09ab\\u09be\\u09b0\\u0983   \\u09ea  \\u0995\\u09c7\\u099c\\u09bf\",\"highlighted_text\":\"1000\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be (\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae  \\u09ab\\u09cd\\u09b0\\u09c0)\",\"marker_color\":\"#FFFFFF\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Animated Headline\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"601222e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F4F3EA\"},\"elements\":[{\"id\":\"506fab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ae\\u09cd\\u09af\\u09be\\u0982\\u0997\\u09cb\\u09b0\\u09be\\u099c \\u0995\\u09c7\\u09a8 \\u09b8\\u09c7\\u09b0\\u09be  <span style=\\\"color: red\\\">? <\\/span>\\n\",\"align\":\"center\",\"title_color\":\"#FF7400\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74c1541\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":844,\"sizes\":[]}},\"elements\":[{\"id\":\"d3ee39f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"lazy_load\":\"yes\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"id\":2142,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/62377b17-7d55-45c5-b128-b993e01ae1f7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":77,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_color\":\"#FF7400\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"2f5d6cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"background_color\":\"#DE5801\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ace547\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45fb7d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ca67923\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fd702d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0d0c29c\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"image\":{\"id\":2142,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/62377b17-7d55-45c5-b128-b993e01ae1f7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"ac54b46\"},{\"image\":{\"id\":2142,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/62377b17-7d55-45c5-b128-b993e01ae1f7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"bc3960e\"}],\"height\":{\"unit\":\"px\",\"size\":407,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"slide_border_color\":\"#ADA8A8\",\"image\":{\"id\":1163,\"url\":\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/a0eaa9e3-9232-49d8-90fd-ae6c80f0e05b_13_11zon.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"media-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd474e6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F4F3EA\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bb43190\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0f00fa2\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#DE5801\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"940dc12\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09a8\\u09cd\\u09af \\u0997\\u09cd\\u09b0\\u09b9\\u09a8 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\",\"align\":\"center\",\"title_color\":\"#FF7400\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77693b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u098f\\u09a4\\u0987 \\u0995\\u09a8\\u09ab\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u09b8 \\u09af\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u0986\\u09b6\\u09be \\u09b0\\u09be\\u0996\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09be\\u09b8\\u09be\\u09af\\u09bc \\u09af\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09a6\\u09c7\\u0996\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09a8\\u09c7\\u0995\\u09cd\\u09b8\\u099f \\u099f\\u09be\\u0987\\u09ae \\u0986\\u09ac\\u09be\\u09b0\\u09cb \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u0964\\u0964 \\n\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"027e6e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fdb66dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"f50a395\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2142,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/62377b17-7d55-45c5-b128-b993e01ae1f7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FFD38C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"322274f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6704c5d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2143,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/fc721dd8-d92e-4070-a025-16757ef31f00.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"caption\":\"Blue Panjabi\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FFD38C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"94239e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"69a7d00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2142,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/62377b17-7d55-45c5-b128-b993e01ae1f7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FFD38C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ec9ca61\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#DE5801\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3482309\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6b7b965\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a788625\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09bf \\u0995\\u09bf \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u0995\\u09bf\\u09a8\\u09be \\u0989\\u099a\\u09bf\\u09ce!\",\"align\":\"center\",\"title_color\":\"#FF7400\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f8c75f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":17,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ca89e3f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u0986\\u09ae\\u09b0\\u09be \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09a4\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5933f44\"},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"8a730af\"},{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0\\u09a4\\u09c7 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u0995\\u09b0\\u09bf \\u09b8\\u09c1\\u09a4\\u09b0\\u09be\\u0982 \\u09aa\\u09a8\\u09cd\\u09af \\u0997\\u09cd\\u09b0\\u09b9\\u09a8 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4f9bf5b\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0986\\u0997\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ae\\u09cd\\u09af\\u09be\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09be\\u09b8\\u09be\\u09af\\u09bc \\u09af\\u09be\\u09ac\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09a3\\u09cd\\u09af \\u09a6\\u09c7\\u0996\\u09c7 \\u09b6\\u09c1\\u09a8\\u09c7 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b7\\u09a6 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3b1c925\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#01CDFF\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_color\":\"#54595F\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":102.5},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d879c5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_color\":\"#DE5801\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"88e95cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ec6499b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0 \\u09b8\\u09ae\\u09c2\\u09b9\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FF7400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3797e4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"css_classes\":\"oreder\"},\"elements\":[{\"id\":\"9d68e4c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#FF7400\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ce1199d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u09b9\\u09bf\\u09ae\\u09b8\\u09be\\u0997\\u09b0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6f2064f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6e9554\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"988ad84\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u09ac\\u09be\\u09a1\\u09bc\\u09bf -\\u09ea\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5a59132\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b284e10\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"de603e0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u09ab\\u099c\\u09b2\\u09bf\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7134893\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ae99c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"697a975\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u09a4\\u09cb\\u09a4\\u09be\\u09aa\\u09b0\\u09c0 \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d1f98b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e95544b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"eaee218\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#FF7400\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"f991b37\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u09b2\\u09cd\\u09af\\u09be\\u0982\\u09a1\\u09bc\\u09be \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4e08e1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2aaaed3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"313c12a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u0986\\u09ae\\u09cd\\u09b0\\u09c1\\u09aa\\u09be\\u09b2\\u09c0 \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"background_color\":\"#FF7400\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fea5adc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2343a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"edadd9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u0997\\u09c1\\u099f\\u09bf\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0585ee5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09feaba\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ceaab92\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u0986\\u09b6\\u09cd\\u09ac\\u09bf\\u09a8\\u09be \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c033c4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"942b0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef15288\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"040d32f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d8549e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09b6\\u09b0\\u09cd\\u09a4\\u09be\\u09ac\\u09b2\\u09c0\\u0983\",\"align\":\"center\",\"title_color\":\"#FF7400\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7cef7d4\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":17,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48a1c9d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09e6\\u09e7\\u0964 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09be\\u0987\\u09b0\\u09c7 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09b6\\u09c1\\u09a7\\u09c1 \\u099c\\u09c7\\u09b2\\u09be \\u09b8\\u09a6\\u09b0\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09af\\u09cb\\u099c\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5933f44\"},{\"text\":\"\\u09e6\\u09e8\\u0964 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09b9\\u09b2\\u09c7 \\u09a4\\u09be\\u09b0 \\u09a6\\u09be\\u09df\\u09ad\\u09be\\u09b0 \\u0995\\u09c1\\u09b0\\u09bf\\u09df\\u09be\\u09b0 \\u0995\\u09b0\\u09cd\\u09a4\\u09c3\\u09aa\\u0995\\u09cd\\u09b7 \\u09ac\\u09b9\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"8a730af\"},{\"text\":\"\\u09e9\\u0964 \\u0986\\u09ae \\u09b0\\u09bf\\u09b8\\u09bf\\u09ad \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u0997\\u09cd\\u09b0\\u09be\\u09b9\\u0995\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993 \\u09a7\\u09be\\u09b0\\u09a3 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u0995\\u09b0\\u099b\\u09bf\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4f9bf5b\"},{\"text\":\"\\u09ea\\u0964 \\u0993\\u09df\\u09c7\\u09ac\\u09b8\\u09be\\u0987\\u099f \\u098f \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09c7\\u09a4\\u09cd\\u09b0\\u09c7 \\u09b6\\u09c1\\u09a7\\u09c1 Steadfast \\u0995\\u09c1\\u09b0\\u09bf\\u09df\\u09be\\u09b0\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u0986\\u09ae \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\\u0964 \\u0985\\u09a8\\u09cd\\u09af\\u09be \\u0995\\u09cb\\u09a8 \\u0995\\u09c1\\u09b0\\u09bf\\u09b0\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u0986\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a8\\u09bf\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\u09b2\\u09c7 MangoRaj \\u098f\\u09b0 \\u0995\\u09a8\\u09cd\\u099f\\u09be\\u0995\\u09cd\\u099f \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 (01733601555) \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c7 \\u099c\\u09be\\u09a8\\u09be\\u09a8\\u09cb\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2\\u09cb\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3b1c925\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#E4881D\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_color\":\"#54595F\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":102.5},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"400e0a6\",\"elType\":\"section\",\"settings\":{\"_element_id\":\"order\"},\"elements\":[{\"id\":\"a4c711e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13894d5\",\"elType\":\"widget\",\"settings\":{\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"layout\":\"two-column\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"order-form\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"heading_text_color\":\"#000000\",\"heading_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0812fd0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"81677c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design by itgalaxi<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7a93074\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5140','1987','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5141','1987','wcf_fields_billing','a:13:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}s:17:\"billing_steadfast\";a:15:{s:4:\"type\";s:6:\"select\";s:5:\"label\";s:40:\"কুরিয়ারের নাম\";s:11:\"placeholder\";s:0:\"\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:11:\"label_class\";a:0:{}s:13:\"show_in_email\";s:0:\"\";s:8:\"required\";s:3:\"yes\";s:6:\"custom\";b:1;s:7:\"default\";s:9:\"Steadfast\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}s:9:\"optimized\";s:0:\"\";s:5:\"width\";s:3:\"100\";s:4:\"name\";s:17:\"billing_steadfast\";s:3:\"key\";s:17:\"billing_steadfast\";s:7:\"enabled\";s:3:\"yes\";}s:9:\"billing__\";a:15:{s:4:\"type\";s:6:\"select\";s:5:\"label\";s:34:\"ডেলিভারি ধরন\";s:11:\"placeholder\";s:0:\"\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:11:\"label_class\";a:0:{}s:13:\"show_in_email\";s:0:\"\";s:8:\"required\";s:3:\"yes\";s:6:\"custom\";b:1;s:7:\"default\";s:0:\"\";s:7:\"options\";a:2:{s:47:\"পয়েন্ট ডেলিভারি \";s:47:\"পয়েন্ট ডেলিভারি \";s:34:\"হোম ডেলিভারি\";s:34:\"হোম ডেলিভারি\";}s:9:\"optimized\";s:0:\"\";s:5:\"width\";s:3:\"100\";s:4:\"name\";s:9:\"billing__\";s:3:\"key\";s:9:\"billing__\";s:7:\"enabled\";s:3:\"yes\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5142','1987','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5143','1987','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5144','1987','wcf-product-options','multiple-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5145','1987','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5146','1987','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5147','1987','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5148','1987','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5149','1987','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5150','1987','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5151','1987','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5152','1987','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5153','1987','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5154','1987','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5155','1987','wcf_field_order_billing','a:13:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:40:\"কুরিয়ারের নাম\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:50;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:60;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:70;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:80;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:90;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_steadfast\";a:16:{s:4:\"type\";s:6:\"select\";s:5:\"label\";s:40:\"কুরিয়ারের নাম\";s:11:\"placeholder\";s:0:\"\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:11:\"label_class\";a:0:{}s:13:\"show_in_email\";b:0;s:8:\"required\";b:1;s:6:\"custom\";b:1;s:7:\"default\";s:9:\"Steadfast\";s:7:\"options\";a:1:{s:9:\"Steadfast\";s:9:\"Steadfast\";}s:9:\"optimized\";b:0;s:5:\"width\";i:100;s:4:\"name\";s:17:\"billing_steadfast\";s:3:\"key\";s:17:\"billing_steadfast\";s:7:\"enabled\";b:1;s:8:\"priority\";i:110;}s:9:\"billing__\";a:16:{s:4:\"type\";s:6:\"select\";s:5:\"label\";s:34:\"ডেলিভারি ধরন\";s:11:\"placeholder\";s:0:\"\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:11:\"label_class\";a:0:{}s:13:\"show_in_email\";b:0;s:8:\"required\";b:1;s:6:\"custom\";b:1;s:7:\"default\";s:34:\"ডেলিভারি ধরন\";s:7:\"options\";a:2:{s:46:\"পয়েন্ট ডেলিভারি\";s:46:\"পয়েন্ট ডেলিভারি\";s:34:\"হোম ডেলিভারি\";s:34:\"হোম ডেলিভারি\";}s:9:\"optimized\";b:0;s:5:\"width\";i:100;s:4:\"name\";s:9:\"billing__\";s:3:\"key\";s:9:\"billing__\";s:7:\"enabled\";b:1;s:8:\"priority\";i:120;}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:130;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5156','1987','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5157','1987','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5158','1987','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5159','1987','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5160','1987','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5161','1987','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5162','1987','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5163','1987','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5164','1987','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5165','1987','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5166','1987','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5167','1987','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5168','1987','_oembed_6cf41a009c03f9a5d4fd5756b853e246','<iframe title=\"Video Placeholder\" width=\"720\" height=\"405\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5169','1987','_oembed_time_6cf41a009c03f9a5d4fd5756b853e246','1716705207');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5170','1987','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5171','1987','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5172','1987','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5175','1988','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5176','1988','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5177','1988','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5178','1988','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5179','1988','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5180','1988','_elementor_data','[{\"id\":\"2b3c079\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#C3FFC5\",\"shape_divider_bottom_color\":\"#34C74E\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"shape_divider_top\":\"drops\",\"shape_divider_top_color\":\"#5FB461\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"shape_divider_bottom\":\"opacity-fan\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74e5410\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"91a93c0\",\"settings\":{\"image\":{\"id\":434,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-9ec36b25-759a-4e9b-8aec-a0ee40de2cab-removebg-preview-1.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#DE5801\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"a543117\",\"settings\":{\"title\":\"\\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u0986\\u09ae\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"title_color\":\"#0A0A0A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"65bceb4\",\"settings\":{\"title\":\"<s>\\u0986\\u0997\\u09c7\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\u0983 \\u09e7\\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/s>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":573,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":549,\"sizes\":[]},\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"title_color\":\"#7E7E7E\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"09c1880\",\"settings\":{\"before_text\":\"\\u09b8\\u09c7\\u09b0\\u09be \\u0985\\u09ab\\u09be\\u09b0\\u0983   \\u09ea  \\u0995\\u09c7\\u099c\\u09bf\",\"highlighted_text\":\"1000\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be (\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae  \\u09ab\\u09cd\\u09b0\\u09c0)\",\"marker_color\":\"#DE5801\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Animated Headline\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"601222e\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F4F3EA\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"506fab7\",\"settings\":{\"title\":\"\\u09ae\\u09cd\\u09af\\u09be\\u0982\\u0997\\u09cb\\u09b0\\u09be\\u099c \\u0995\\u09c7\\u09a8 \\u09b8\\u09c7\\u09b0\\u09be  <span style=\\\"color: red\\\">? <\\/span>\\n\",\"align\":\"center\",\"title_color\":\"#FF7400\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"74c1541\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":844,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d3ee39f\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"lazy_load\":\"yes\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"id\":435,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-1.webp\"},\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":77,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_color\":\"#FF7400\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"2f5d6cd\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"background_color\":\"#DE5801\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"3ace547\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45fb7d4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ca67923\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fd702d1\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d0c29c\",\"settings\":{\"slides\":[{\"image\":{\"id\":436,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/2474edc1-3fe7-4316-bec5-98c4e21ab2ea_11zon.webp\"},\"_id\":\"ac54b46\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":435,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-1.webp\"},\"_id\":\"faf8c2b\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":437,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon.webp\"},\"_id\":\"8ff395b\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":438,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/789718a0-e8ed-46d8-873e-2b748ee85020_11_11zon-1.webp\"},\"_id\":\"46e9306\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":439,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/147ea10b-c06f-44d3-8870-2de198a19173_9_11zon.webp\"},\"_id\":\"bc3960e\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"height\":{\"unit\":\"px\",\"size\":407,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"slide_border_color\":\"#ADA8A8\",\"image\":{\"id\":1163,\"url\":\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/a0eaa9e3-9232-49d8-90fd-ae6c80f0e05b_13_11zon.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"media-carousel\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"bd474e6\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F4F3EA\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bb43190\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0f00fa2\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#DE5801\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"940dc12\",\"settings\":{\"title\":\"\\u09aa\\u09a8\\u09cd\\u09af \\u0997\\u09cd\\u09b0\\u09b9\\u09a8 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\",\"align\":\"center\",\"title_color\":\"#FF7400\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"77693b3\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u098f\\u09a4\\u0987 \\u0995\\u09a8\\u09ab\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u09b8 \\u09af\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u0986\\u09b6\\u09be \\u09b0\\u09be\\u0996\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09be\\u09b8\\u09be\\u09af\\u09bc \\u09af\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09a6\\u09c7\\u0996\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09a8\\u09c7\\u0995\\u09cd\\u09b8\\u099f \\u099f\\u09be\\u0987\\u09ae \\u0986\\u09ac\\u09be\\u09b0\\u09cb \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u0964\\u0964 \\n\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"027e6e0\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fdb66dc\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6704c5d\",\"settings\":{\"image\":{\"id\":440,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/985cf9ca-ef40-46d4-9289-0d542ff2c2ea_11zon.webp\"},\"caption\":\"Blue Panjabi\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FFD38C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"322274f\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f50a395\",\"settings\":{\"image\":{\"id\":437,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon.webp\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FFD38C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"94239e9\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69a7d00\",\"settings\":{\"image\":{\"id\":441,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon.webp\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FFD38C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"4a4f5ee\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b9efc99\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"96daa09\",\"settings\":{\"image\":{\"id\":442,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-1.webp\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FFD38C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"6d795c2\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c0260d0\",\"settings\":{\"image\":{\"id\":443,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/81437237-4bdd-451c-9445-a4dc4b629824_12_11zon.webp\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FFD38C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"afc7fb1\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5cf6177\",\"settings\":{\"image\":{\"id\":444,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon.webp\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FFD38C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"ec9ca61\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#DE5801\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3482309\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b7b965\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a788625\",\"settings\":{\"title\":\"\\u0995\\u09bf \\u0995\\u09bf \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u0995\\u09bf\\u09a8\\u09be \\u0989\\u099a\\u09bf\\u09ce!\",\"align\":\"center\",\"title_color\":\"#FF7400\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1f8c75f\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":17,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"ca89e3f\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u0986\\u09ae\\u09b0\\u09be \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09a4\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5933f44\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"8a730af\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0\\u09a4\\u09c7 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u0995\\u09b0\\u09bf \\u09b8\\u09c1\\u09a4\\u09b0\\u09be\\u0982 \\u09aa\\u09a8\\u09cd\\u09af \\u0997\\u09cd\\u09b0\\u09b9\\u09a8 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4f9bf5b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0986\\u0997\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ae\\u09cd\\u09af\\u09be\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09be\\u09b8\\u09be\\u09af\\u09bc \\u09af\\u09be\\u09ac\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09a3\\u09cd\\u09af \\u09a6\\u09c7\\u0996\\u09c7 \\u09b6\\u09c1\\u09a8\\u09c7 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b7\\u09a6 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3b1c925\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#01CDFF\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_color\":\"#54595F\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":102.5},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"3d879c5\",\"settings\":{\"background_background\":\"classic\",\"border_color\":\"#DE5801\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"88e95cc\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ec6499b\",\"settings\":{\"title\":\"\\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0 \\u09b8\\u09ae\\u09c2\\u09b9\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FF7400\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"b3797e4\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"css_classes\":\"oreder\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9d68e4c\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#FF7400\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ce1199d\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u09b9\\u09bf\\u09ae\\u09b8\\u09be\\u0997\\u09b0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"6f2064f\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c6e9554\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"988ad84\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u09ac\\u09be\\u09a1\\u09bc\\u09bf -\\u09ea\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"5a59132\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"b284e10\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"de603e0\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u09ab\\u099c\\u09b2\\u09bf\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"7134893\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2ae99c1\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"697a975\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u09a4\\u09cb\\u09a4\\u09be\\u09aa\\u09b0\\u09c0 \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"d1f98b1\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"e95544b\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"eaee218\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#FF7400\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f991b37\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u09b2\\u09cd\\u09af\\u09be\\u0982\\u09a1\\u09bc\\u09be \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"4e08e1e\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2aaaed3\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"313c12a\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u0986\\u09ae\\u09cd\\u09b0\\u09c1\\u09aa\\u09be\\u09b2\\u09c0 \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"background_color\":\"#FF7400\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"fea5adc\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c2343a1\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"edadd9a\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u0997\\u09c1\\u099f\\u09bf\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"0585ee5\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"09feaba\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"ceaab92\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u0986\\u09b6\\u09cd\\u09ac\\u09bf\\u09a8\\u09be \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"c033c4f\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"942b0cf\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"ef15288\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"040d32f\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d8549e6\",\"settings\":{\"title\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09b6\\u09b0\\u09cd\\u09a4\\u09be\\u09ac\\u09b2\\u09c0\\u0983\",\"align\":\"center\",\"title_color\":\"#FF7400\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7cef7d4\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":17,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"48a1c9d\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09e6\\u09e7\\u0964 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09be\\u0987\\u09b0\\u09c7 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09b6\\u09c1\\u09a7\\u09c1 \\u099c\\u09c7\\u09b2\\u09be \\u09b8\\u09a6\\u09b0\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09af\\u09cb\\u099c\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5933f44\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09e6\\u09e8\\u0964 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09b9\\u09b2\\u09c7 \\u09a4\\u09be\\u09b0 \\u09a6\\u09be\\u09df\\u09ad\\u09be\\u09b0 \\u0995\\u09c1\\u09b0\\u09bf\\u09df\\u09be\\u09b0 \\u0995\\u09b0\\u09cd\\u09a4\\u09c3\\u09aa\\u0995\\u09cd\\u09b7 \\u09ac\\u09b9\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"8a730af\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09e9\\u0964 \\u0986\\u09ae \\u09b0\\u09bf\\u09b8\\u09bf\\u09ad \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u0997\\u09cd\\u09b0\\u09be\\u09b9\\u0995\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993 \\u09a7\\u09be\\u09b0\\u09a3 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u0995\\u09b0\\u099b\\u09bf\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4f9bf5b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ea\\u0964 \\u0993\\u09df\\u09c7\\u09ac\\u09b8\\u09be\\u0987\\u099f \\u098f \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09c7\\u09a4\\u09cd\\u09b0\\u09c7 \\u09b6\\u09c1\\u09a7\\u09c1 Steadfast \\u0995\\u09c1\\u09b0\\u09bf\\u09df\\u09be\\u09b0\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u0986\\u09ae \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\\u0964 \\u0985\\u09a8\\u09cd\\u09af\\u09be \\u0995\\u09cb\\u09a8 \\u0995\\u09c1\\u09b0\\u09bf\\u09b0\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u0986\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a8\\u09bf\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\u09b2\\u09c7 MangoRaj \\u098f\\u09b0 \\u0995\\u09a8\\u09cd\\u099f\\u09be\\u0995\\u09cd\\u099f \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 (01733601555) \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c7 \\u099c\\u09be\\u09a8\\u09be\\u09a8\\u09cb\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2\\u09cb\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3b1c925\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#E4881D\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_color\":\"#54595F\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":102.5},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"400e0a6\",\"settings\":{\"_element_id\":\"order\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a4c711e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"13894d5\",\"elType\":\"widget\",\"settings\":{\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"layout\":\"two-column\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"order-form\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"heading_text_color\":\"#000000\",\"heading_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"0812fd0\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"81677c0\",\"settings\":{\"editor\":\"<p>Design by itgalaxi<\\/p>\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"7a93074\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5181','1988','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5183','1988','_elementor_controls_usage','a:12:{s:5:\"image\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:7;s:10:\"image_size\";i:1;s:7:\"caption\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:1;s:19:\"image_border_border\";i:7;s:18:\"image_border_width\";i:7;s:18:\"image_border_color\";i:7;s:19:\"image_border_radius\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:24;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:24;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:5:\"align\";i:24;s:21:\"typography_typography\";i:24;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:24;s:22:\"typography_font_weight\";i:7;s:22:\"typography_line_height\";i:2;s:11:\"title_color\";i:8;s:23:\"text_stroke_text_stroke\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:21:\"_element_custom_width\";i:3;}s:18:\"_section_transform\";a:3:{s:28:\"_transform_translateX_effect\";i:1;s:28:\"_transform_translateY_effect\";i:1;s:23:\"_transform_scale_effect\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:3:{s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:10:\"after_text\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:1;}s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:6:\"_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:14;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:1:{s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:2;}s:21:\"section_shape_divider\";a:8:{s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:20:\"shape_divider_bottom\";i:1;}s:14:\"section_border\";a:1:{s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:11:\"_element_id\";i:1;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:1:{s:9:\"lazy_load\";i:1;}s:21:\"section_image_overlay\";a:2:{s:18:\"show_image_overlay\";i:1;s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:21:\"_element_custom_width\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:11;s:4:\"link\";i:11;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:11;s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:3;s:16:\"background_color\";i:11;s:22:\"typography_font_family\";i:3;s:22:\"typography_font_weight\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:11:\"boxed_width\";i:1;s:14:\"flex_direction\";i:6;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:13:\"border_radius\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:2:{s:6:\"margin\";i:2;s:11:\"css_classes\";i:1;}}}}s:14:\"media-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_slides\";a:3:{s:6:\"slides\";i:1;s:6:\"height\";i:1;s:5:\"width\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_slides_style\";a:4:{s:13:\"space_between\";i:1;s:17:\"slide_border_size\";i:1;s:19:\"slide_border_radius\";i:1;s:18:\"slide_border_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"width\";i:2;s:5:\"align\";i:2;s:4:\"look\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:2;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:6:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:27:\"icon_typography_line_height\";i:2;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5184','1989','wcf-flow-id','1955');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5185','1989','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5186','1989','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5187','1989','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5188','1989','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5189','1989','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5190','1989','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5191','1989','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5192','1989','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5193','1989','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5194','1989','_edit_lock','1717962298:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5195','1989','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5196','1989','_elementor_data','[{\"id\":\"415041cf\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49bbe943\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"55d9dc34\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"59103ce\",\"settings\":{\"title\":\"Congratulations , Your Order Has Been Received Successfully \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b71dfc8\",\"settings\":{\"editor\":\"<p>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u099c\\u09c7 \\u09b2\\u09be\\u0987\\u0995 \\u09a6\\u09bf\\u09df\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u0982\\u0997\\u09c7\\u0987 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=5c74819\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"f474c4\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-53\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2fa79695\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"149bd0f0\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01303832348\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"background_color\":\"#000000\",\"button_text_color\":\"#DABE6B\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"231ec003\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f769ee\",\"settings\":{\"text\":\"like our page\",\"align\":\"left\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"background_color\":\"#0207FA\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"29\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"318aae18\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-117\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5492a52a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48f97d30\",\"elType\":\"widget\",\"settings\":{\"heading_align\":\"center\",\"thankyou_text\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\",\"heading_color\":\"#000000\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"section_text_typography_typography\":\"custom\",\"section_text_typography_font_family\":\"Hind Siliguri\",\"section_text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"section_text_typography_font_weight\":\"500\",\"section_all_background_color_background\":\"classic\",\"section_all_background_color_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#CECECE\",\"_border_border\":\"solid\",\"heading_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=cf5c418\"}},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"353efdfe\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66a27ba\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c9cdc09\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5197','1989','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5199','1990','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5200','1990','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5201','1990','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5202','1990','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5203','1990','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5204','1990','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5205','1990','_elementor_data','[{\"id\":\"415041cf\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\"},\"elements\":[{\"id\":\"49bbe943\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55d9dc34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59103ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Congratulations , Your Order Has Been Received Successfully \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b71dfc8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u099c\\u09c7 \\u09b2\\u09be\\u0987\\u0995 \\u09a6\\u09bf\\u09df\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u0982\\u0997\\u09c7\\u0987 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=5c74819\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f474c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-53\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2fa79695\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"149bd0f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01303832348\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"background_color\":\"#000000\",\"button_text_color\":\"#DABE6B\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"231ec003\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6f769ee\",\"elType\":\"widget\",\"settings\":{\"text\":\"like our page\",\"align\":\"left\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"background_color\":\"#0207FA\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"29\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"318aae18\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-117\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5492a52a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"48f97d30\",\"elType\":\"widget\",\"settings\":{\"heading_align\":\"center\",\"thankyou_text\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\",\"heading_color\":\"#000000\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"section_text_typography_typography\":\"custom\",\"section_text_typography_font_family\":\"Hind Siliguri\",\"section_text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"section_text_typography_font_weight\":\"500\",\"section_all_background_color_background\":\"classic\",\"section_all_background_color_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#CECECE\",\"_border_border\":\"solid\",\"heading_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=cf5c418\"}},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"353efdfe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"66a27ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9cdc09\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5206','1990','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5207','1990','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"align\";i:1;s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:2;s:4:\"link\";i:1;s:4:\"size\";i:2;s:13:\"selected_icon\";i:2;s:11:\"icon_indent\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:2;s:16:\"background_color\";i:2;s:17:\"button_text_color\";i:1;s:12:\"align_mobile\";i:2;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:21:\"section_shape_divider\";a:4:{s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5208','1991','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5209','1991','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5210','1991','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5211','1991','_elementor_version','3.20.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5212','1991','_elementor_pro_version','3.7.7');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5213','1991','_elementor_data','[{\"id\":\"26c224c\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#045304\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c3e8a1e\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c0a4e39\",\"settings\":{\"image\":{\"id\":266,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Logo-1-01-e1710439185699-1.png\"},\"image_size\":\"medium\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":11,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":29,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"1cb235e\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6 \\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u099f\\u09bf \\u0986\\u09ae\\u09b0\\u09be \\u09aa\\u09c7\\u09df\\u09c7\\u099b\\u09bf\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"0f5832f\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#C9FFA9\",\"animation\":\"none\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f571483\",\"elType\":\"widget\",\"settings\":{\"thankyou_text\":\"\\u0985\\u09a4\\u09bf\\u09a6\\u09cd\\u09b0\\u09c1\\u09a4\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c7 \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"heading_align\":\"center\",\"heading_color\":\"#045304\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"order-details-form\"},{\"id\":\"2cc9f87\",\"settings\":{\"title\":\"\\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 - 01983 196 929 \",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#045304\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"48b74ed\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"92cd923\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Facebook Group\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/groups\\/1805794863172480\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cdfe69c\"},{\"text\":\"Facebook Page\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/facebook.com\\/sahabafood1\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a4c98d\"}],\"space_between\":{\"unit\":\"rem\",\"size\":10,\"sizes\":[]},\"space_between_tablet\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"space_between_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#FFFFFF\",\"_flex_align_self_mobile\":\"center\",\"_background_background\":\"classic\",\"_background_color\":\"#045304\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5214','1991','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5215','1991','_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:2;s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:13:\"content_width\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:1;s:9:\"icon_list\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;s:17:\"icon_align_mobile\";i:1;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5216','1993','wcf-flow-id','1992');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5217','1993','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5218','1993','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5219','1992','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1993;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1995;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2007;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5220','1995','wcf-flow-id','1992');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5221','1995','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5222','1995','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5223','1995','wcf_fields_billing','a:5:{s:18:\"billing_first_name\";a:7:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:11:\"placeholder\";s:0:\"\";s:17:\"custom_attributes\";a:0:{}}s:13:\"billing_phone\";a:9:{s:5:\"label\";s:40:\"মোবাইল নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:20;s:11:\"placeholder\";s:0:\"\";s:17:\"custom_attributes\";a:0:{}}s:17:\"billing_address_1\";a:7:{s:5:\"label\";s:34:\"আপনার ঠিকানা\";s:11:\"placeholder\";s:0:\"\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:30;s:17:\"custom_attributes\";a:0:{}}s:15:\"billing_country\";a:8:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:4:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";i:3;s:28:\"inspire_checkout_fields_hide\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:11:\"placeholder\";s:0:\"\";s:17:\"custom_attributes\";a:0:{}}s:34:\"billing_billing__________new_field\";a:16:{s:4:\"type\";s:4:\"text\";s:5:\"label\";s:28:\"নতুন ফিল্ড\";s:11:\"placeholder\";s:0:\"\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:11:\"label_class\";a:0:{}s:13:\"show_in_email\";s:0:\"\";s:8:\"required\";s:0:\"\";s:6:\"custom\";b:1;s:7:\"default\";s:0:\"\";s:7:\"options\";s:0:\"\";s:10:\"date_input\";s:14:\"datetime-local\";s:9:\"optimized\";s:0:\"\";s:5:\"width\";s:3:\"100\";s:4:\"name\";s:34:\"billing_billing__________new_field\";s:3:\"key\";s:34:\"billing_billing__________new_field\";s:7:\"enabled\";s:3:\"yes\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5224','1995','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:14:\"State / County\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5225','1995','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5226','1995','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5227','1995','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5228','1995','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5229','1995','_astra_content_layout_flag','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5230','1995','site-post-title','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5231','1995','ast-title-bar-display','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5232','1995','ast-featured-img','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5233','1995','site-content-layout','page-builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5234','1995','site-sidebar-layout','no-sidebar');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5235','1995','_edit_lock','1780986463:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5236','1995','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5237','1995','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5238','1995','_elementor_data','[{\"id\":\"6c5a2f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#3A531C\",\"shape_divider_bottom\":\"wave-brush\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff314df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"997f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2136,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ae207ae6-4f6e-4149-ac5c-901975502708.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89b4c17\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e7\\u09e6\\u09e6\\u09e6+ \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u099a\\u09c1\\u09b2 \\u09aa\\u09be\\u0995\\u09be, \\u099a\\u09c1\\u09b2 \\u09aa\\u09dc\\u09be, \\u099a\\u09c1\\u09b2\\u09c7 \\u0996\\u09c1\\u09b6\\u0995\\u09bf \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u0995\\u09b0\\u09c7\\u099b\\u09c7 \\\"\\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09c0 \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\\"\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c81a1fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u09b8\\u09ac \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09ae\\u09bf\\u0995\\u09cd\\u09b8\\u09bf\\u0982 \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-26\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"64505f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFF3F\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_border\":\"double\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5837298\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"215d4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bbac98e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2136,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ae207ae6-4f6e-4149-ac5c-901975502708.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5582d6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#3A531C\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f71a3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6ade757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b0\\u09be\\u09b8\\u09c2\\u09b2\\u09c1\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 (\\u09b8\\u09be.) \\u09ac\\u09b2\\u09c7\\u09a8, \\u09af\\u09c7 \\u09ac\\u09cd\\u09af\\u0995\\u09cd\\u09a4\\u09bf \\u099a\\u09c1\\u09b2\\u09c7 \\u0995\\u09be\\u09b2\\u09cb \\u0995\\u09b2\\u09aa \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7 \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09a4\\u09be\\u09df\\u09be\\u09b2\\u09be\\n\\u0995\\u09bf\\u09df\\u09be\\u09ae\\u09a4\\u09c7\\u09b0 \\u09a6\\u09bf\\u09a8 \\u09a4\\u09be\\u09b0 \\u099a\\u09c7\\u09b9\\u09be\\u09b0\\u09be \\u0995\\u09be\\u09b2\\u09cb \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8640ce4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a4\\u09c1\\u09b9\\u09ab\\u09be\\u09a4\\u09c1\\u09b2 \\u0986\\u09b9\\u0993\\u09df\\u09be\\u09af\\u09bf: \\u09eb\\/\\u09e9\\u09eb\\u09eb\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed2f48b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"c129915\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"76dabf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09b2\\u09c7 \\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u09af\\u09c7 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#3A531C\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9e1f3f1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"085c97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2bddd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u099a\\u09c1\\u09b2 \\u09aa\\u09be\\u0995\\u09be \\u09ac\\u09a8\\u09cd\\u09a7 \\u0995\\u09b0\\u09c7\\u0964\",\"_id\":\"cc2a863\"},{\"text\":\"\\u099a\\u09c1\\u09b2 \\u0997\\u09cb\\u09dc\\u09be \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09bf \\u0995\\u09b0\\u09c7\\u0964\",\"_id\":\"ad5fd58\"},{\"text\":\"\\u099a\\u09c1\\u09b2 \\u09b9\\u09c7\\u09b2\\u09a6\\u09bf \\u0995\\u09b0\\u09c7\\u0964\",\"_id\":\"f0f1c05\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"493531a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0d4d6f3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u099a\\u09c1\\u09b2\\u09c7 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09a6\\u09bf\\u09b2\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb \\u0998\\u09c1\\u09ae \\u09b9\\u09df\\u0964\",\"_id\":\"cc2a863\"},{\"text\":\"\\u099a\\u09c1\\u09b2 \\u09b8\\u09be\\u0987\\u09a8\\u09bf, \\u09b8\\u09bf\\u09b2\\u09cd\\u0995\\u09bf \\u0995\\u09b0\\u09c7\\u0964\",\"_id\":\"ad5fd58\"},{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"_id\":\"55af717\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d022293\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#3A531C\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f116ad\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e213a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"09e81fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u099a\\u09c1\\u09b2 \\u09aa\\u09be\\u0995\\u09be, \\u099a\\u09c1\\u09b2 \\u09aa\\u09dc\\u09be, \\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u0996\\u09c1\\u09b6\\u0995\\u09bf, \\u099a\\u09c1\\u09b2 \\u09b0\\u09c1\\u0995\\u09cd\\u09b7 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09ac \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09af\\u09a6\\u09bf \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u09a8? \\u0995\\u09cb\\u09a8 \\u09aa\\u09be\\u09b0\\u09cd\\u09b6\\u09cd\\u09ac-\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u0995\\u09cd\\u09b0\\u09bf\\u09df\\u09be \\u099b\\u09be\\u09dc\\u09be \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u098f\\u0996\\u09a8\\u09bf \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09ae\\u09bf\\u0995\\u09cd\\u09b8\\u09bf\\u0982 \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#FD0404\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e6c376\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2136,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ae207ae6-4f6e-4149-ac5c-901975502708.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"76a9d38\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#3A531C\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"797c9c9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"40b8c3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c62b2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09c7\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099a\\u09c1\\u09b2\\u09c7 \\u0995\\u09b2\\u09ab \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09a8\\u09be \\u0995\\u09b0\\u09c7 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u0989\\u099a\\u09bf\\u09a4?\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#3A531C\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60172af\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"eb24c3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5b26d9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0995\\u09b2\\u09ab \\u0995\\u09b0\\u09b2\\u09c7 \\u099a\\u09c1\\u09b2 \\u099d\\u09dc\\u09c7 \\u09aa\\u09dc\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"cc2a863\"},{\"text\":\"\\u0995\\u09b2\\u09ab \\u0995\\u09b0\\u09b2\\u09c7 \\u099a\\u09c1\\u09b2 \\u09b0\\u09c1\\u0995\\u09cd\\u09b7 \\u09b6\\u09c1\\u09b7\\u09cd\\u0995 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"dd7a04a\"},{\"text\":\"\\u0995\\u09b2\\u09ab \\u0995\\u09b0\\u09b2\\u09c7 \\u099a\\u09c1\\u09b2 \\u0986\\u09b0\\u09cb \\u09ac\\u09c7\\u09b6\\u09bf \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8\\u09c7 \\u09aa\\u09c7\\u0995\\u09c7 \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"bd9e58e\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7ff4af9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b1ef3b2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u099a\\u09c1\\u09b2\\u09c7 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09a6\\u09bf\\u09b2\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb \\u0998\\u09c1\\u09ae \\u09b9\\u09df\\u0964\",\"_id\":\"cc2a863\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"}},{\"text\":\"\\u099a\\u09c1\\u09b2 \\u09b8\\u09be\\u0987\\u09a8\\u09bf, \\u09b8\\u09bf\\u09b2\\u09cd\\u0995\\u09bf \\u0995\\u09b0\\u09c7\\u0964\",\"_id\":\"ad5fd58\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"}},{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"_id\":\"55af717\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46e5031\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#3A531C\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d9cb8d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color\":\"#3A531C\"},\"elements\":[{\"id\":\"8861972\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"570b970\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b33db4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b8\\u09ae\\u09b0\\u09cd\\u09aa\\u09c1\\u09a8 \\u09a8\\u09cd\\u09af\\u09be\\u099a\\u09be\\u09b0\\u09be\\u09b2 \\u0997\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"cc2a863\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09c0 \\u09aa\\u09be\\u09a4\\u09be \\u0997\\u09c1\\u09a1\\u09bc\\u09be\\u09a4\\u09c7  \\u0995\\u09cb\\u09a8 \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09a8\\u09c7\\u0987\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"dd7a04a\"},{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09b6\\u09c1\\u09a7\\u09c1 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09aa\\u09be\\u09a4\\u09be\\u09af\\u09bc \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09a8\\u09be \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09b6\\u09bf\\u0995\\u09be\\u0995\\u09be\\u0987, \\u0986\\u09ae\\u09b2\\u0995\\u09bf \\u0997\\u09c1\\u09a1\\u09bc\\u09be \\u09ae\\u09bf\\u0995\\u09cd\\u09b8\\u09bf\\u0982 \\u0995\\u09b0\\u09c7  \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"bd9e58e\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u099f\\u09bf \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09b9\\u09be\\u09b2\\u09be\\u09b2 \\u098f\\u09ac\\u0982 \\u09b6\\u09a4\\u09b6\\u09a4 \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u098f\\u0987 \\u09b9\\u09c7\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u0989\\u09aa\\u0995\\u09be\\u09b0 \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"4cae869\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10b30b9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#3A531C\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44bcfd6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc0f08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4adf93c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b6\\u09a4 \\u09b6\\u09a4 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0 \\u09aa\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u0987\\u099c\\u09c7 \\u0986\\u099b\\u09c7\\u0964 \\u09a4\\u09be\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09bf\\u099b\\u09c1 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989 \\u098f\\u0996\\u09be\\u09a8\\u09c7 \\u09a6\\u09c7\\u09df\\u09be \\u09b9\\u09b2\\u0983\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#3A531C\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14a2a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/a1ff130e-64cc-495f-bbb2-34ee8b7c01ed.png\",\"id\":2138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"83b6ff7\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#3A531C\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db65a57\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#18240B\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74bd626\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7e31315\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09ea\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u09c7\\u09b0 \\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09e7\\u09e8\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"marker_color\":\"#F10202\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#FFFFFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"69f2cb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09ee\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"align\":\"center\",\"title_color\":\"#FFFF3F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf2f4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"(\\u09ab\\u09cd\\u09b0\\u09bf \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf!!)\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7eef05\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFFFFF\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"b969f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#3A531C\"},\"elements\":[{\"id\":\"b80ff61\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 <br>\\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Order Now \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9c3da2f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\"},\"elements\":[{\"id\":\"ab2aca8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#160D0D75\"},\"elements\":[{\"id\":\"9bc0799\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"global_text_color\":\"#000000\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_text_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#3BB44A\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"256d8ee\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"c4c2f4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"95de950\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5239','1995','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5240','1995','wcf-enable-product-options','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5241','1995','wcf-product-options','multiple-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5242','1995','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5243','1995','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5244','1995','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5245','1995','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5246','1995','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5247','1995','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5248','1995','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5249','1995','wcf_field_order_billing','a:5:{s:18:\"billing_first_name\";a:12:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:11:\"placeholder\";s:0:\"\";s:17:\"custom_attributes\";a:0:{}s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:14:{s:5:\"label\";s:40:\"মোবাইল নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:20;s:11:\"placeholder\";s:0:\"\";s:17:\"custom_attributes\";a:0:{}s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:12:{s:5:\"label\";s:18:\"ঠিকানা\";s:11:\"placeholder\";s:0:\"\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:30;s:17:\"custom_attributes\";a:0:{}s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:13:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:4:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";i:3;s:28:\"inspire_checkout_fields_hide\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:11:\"placeholder\";s:0:\"\";s:17:\"custom_attributes\";a:0:{}s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:34:\"billing_billing__________new_field\";a:17:{s:4:\"type\";s:4:\"text\";s:5:\"label\";s:28:\"নতুন ফিল্ড\";s:11:\"placeholder\";s:0:\"\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:11:\"label_class\";a:0:{}s:13:\"show_in_email\";b:0;s:8:\"required\";b:0;s:6:\"custom\";b:1;s:7:\"default\";s:0:\"\";s:7:\"options\";s:0:\"\";s:10:\"date_input\";s:14:\"datetime-local\";s:9:\"optimized\";b:0;s:5:\"width\";i:100;s:4:\"name\";s:34:\"billing_billing__________new_field\";s:3:\"key\";s:34:\"billing_billing__________new_field\";s:7:\"enabled\";b:1;s:8:\"priority\";i:50;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5250','1995','wcf_field_order_shipping','a:9:{s:19:\"shipping_first_name\";a:11:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_1\";a:11:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"shipping_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:14:\"shipping_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:14:\"State / County\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"shipping_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5251','1995','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5252','1995','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5253','1995','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5254','1995','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5255','1995','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5256','1995','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5257','1995','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5258','1995','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5259','1995','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5260','1995','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5261','1995','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5262','1995','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5263','1995','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5264','1995','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5265','1995','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5266','1995','_oembed_8e4afe93a75b00ea30e82786c6733627','<iframe title=\"মেহেদী হেয়ার প্যাক\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/4zBwboumKa4?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5267','1995','_oembed_time_8e4afe93a75b00ea30e82786c6733627','1706334317');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5268','1995','_oembed_87b947de7716efd8672902a3875e0696','<iframe title=\"Video Placeholder\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5269','1995','_oembed_time_87b947de7716efd8672902a3875e0696','1706717586');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5270','1995','_oembed_f8a21e0e6a462ed42bd0798b2950cb9c','<iframe title=\"Video Placeholder\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5271','1995','_oembed_time_f8a21e0e6a462ed42bd0798b2950cb9c','1706986409');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5277','1997','wcf-flow-id','1996');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5278','1997','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5279','1997','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5280','1996','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:1997;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:1999;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2002;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5281','1999','wcf-flow-id','1996');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5282','1999','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5283','1999','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5284','1999','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5285','1999','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5286','1999','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5287','1999','_astra_content_layout_flag','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5288','1999','site-post-title','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5289','1999','ast-title-bar-display','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5290','1999','ast-featured-img','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5291','1999','_edit_lock','1780986533:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5292','1999','ast-site-content-layout','full-width-container');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5293','1999','site-sidebar-layout','no-sidebar');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5294','1999','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5295','1999','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5296','1999','_elementor_data','[{\"id\":\"a3e1d5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#E7F0E1\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_b\":\"#B0CF9C\",\"background_gradient_type\":\"radial\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FF42AC\",\"shape_divider_top\":\"triangle\",\"shape_divider_top_color\":\"#4F0534\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":127,\"sizes\":[]},\"shape_divider_bottom\":\"wave-brush\"},\"elements\":[{\"id\":\"ae19893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"1303061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2133,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#A21581\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3702568\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"d6913b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cdbeb12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rosemary Mint Scalp & Hair Strengthening Oil\",\"align_mobile\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-33\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0231586\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Rosemary:<\\/strong>\\u00a0Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"8864e9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation\":\"fadeInUp\",\"box_shadow_box_shadow_type\":\"yes\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"92d0329\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2133,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\"},{\"id\":2134,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/e956d34a-1cbf-46e3-a049-ab86322c876a.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"dots_position\":\"inside\",\"image_border_border\":\"dotted\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"#C6267C\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fceebe3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"dd61e80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68f924c\",\"elType\":\"section\",\"settings\":{\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f65597\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FF3B89\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"a06266b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2134,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/e956d34a-1cbf-46e3-a049-ab86322c876a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a562f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Use for daily hair care or specialized scalp treatments\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#C0077D\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc9b16c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c57d802\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FF28C8\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"zoomIn\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"53bd132\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2133,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9fbee41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Features more than 30 essential oils and extracts\\n\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#C0077D\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c44832c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_animation\":\"bounce\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9b843fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FF3B89\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"f8f4e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2134,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/e956d34a-1cbf-46e3-a049-ab86322c876a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e747d90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Helps improve length retention\\n\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#C0077D\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f8b209\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"da76ee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call if necessary or click the button below to call\",\"align\":\"center\",\"title_color\":\"#C0077D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ba9e63\",\"elType\":\"widget\",\"settings\":{\"text\":\"+971 50 278 0363\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Gotu\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c94202\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"76e0391\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#B74573\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#8C1142\"},\"elements\":[{\"id\":\"6bff2d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why take from us?\",\"align\":\"center\",\"title_color\":\"#102A00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc5ac54\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} authentic product\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"9e8f154\"},{\"text\":\"Our products will stop your hair loss\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"1799e92\"},{\"text\":\"Helps in hair growth\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"a35fe15\"},{\"text\":\"Infused with Biotin\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"28aa9f8\"},{\"text\":\"Features more than 30 essential oils and extracts\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"cc51c74\"},{\"text\":\"Delivery is free all over the UAE\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"3f66d7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#E3E3E3\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#DEDEDE\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"860d03e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8991467\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e6a814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e6d7c96\",\"elType\":\"widget\",\"settings\":{\"title\":\"Key Ingredients:\\n\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b988c9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Rosemary: Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2d5ffa7\"},{\"text\":\"Mint: Invigorates scalp\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"fccdefe\"},{\"text\":\"Biotin: Nourishes hair follicles, improving strength, and elasticity. Glycine Soja (Soybean) Oil, Ricinus Communis (Castor) Seed Oil, Rosmarinus Officinalis (Rosemary) Leaf Oil, Simmondsia Chinensis (Jojoba) Seed Oil, Mentha Piperita (Peppermint) Oil, Eucalyptus Globolus (Eucalyptus) Leaf Oil, Menthol, Melalueca Alternifolia (Tea Tree) Leaf Oil, Cocos Nucifera (Coconut) Oil, Equisetum Arvense (Horsetail) Extract, Aloe Barbadensis Extract, Lavandula Angustifolia (Lavender) Oil, Triticum Vulgare (Wheat) Germ Oil, Carthamus Tinctorius (Safflower) Seed Oil, Oenothera Biennis (Evening Primrose) Oil, Vitis Vinifera (Grape) Seed Oil, Benzyl Nicotinate, Prunus Amygdalus Dulcis (Sweet Almond) Oil, Oryza Sativa (Rice) Bran Oil, Tocopheryl Acetate, Biotin, Arctium Lappa (Burdock) Root Extract, Glycerin, Apium Graveolens (Celery) Seed Extract, Cholecalciferol (Vitamin D), Ascorbic Acid, Ocimum, Basilicum (Basil) Oil, Pogostemon Cablin (Patchouli) Oil, Salvia Officinalis (Sage) Oil, Silica, Urtica Dioica (Nettle) Extract\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"89e8c5d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#C0077D\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#C0077D\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"space_between_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e37b26c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"38c4690\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e5f74ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reviews of respected customers\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb03859\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\",\"id\":2133,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8e8c69c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a79d0ad\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e5f67bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3DA300\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ca60d18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fill the form below to order\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51c2dc4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"Determine the quantity\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"700\",\"btn_background_color_background\":\"gradient\",\"btn_background_color_color\":\"#E7F0E1\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#000000\",\"btn_background_color_color_b\":\"#B0CF9C\",\"btn_background_color_gradient_type\":\"radial\",\"_element_id\":\"order\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_weight\":\"700\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_weight\":\"500\",\"heading_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"checkout-form\"},{\"id\":\"fdfeb55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Delivery is free all over the UAE\",\"align\":\"center\",\"title_color\":\"#DB2089\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"436482e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2f32ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"1c80419\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5297','1999','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5298','1999','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5299','1999','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5300','1999','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5301','1999','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5302','1999','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5303','1999','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5304','1999','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5305','1999','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5306','1999','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5307','1999','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5308','1999','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5309','1999','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5310','1999','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5311','1999','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5312','1999','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:9:\"Your Name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:9:\"Your Name\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:15:\"City &amp; Area\";s:11:\"placeholder\";s:11:\"City & Area\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:31:\"Building Name &amp; Room Number\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:27:\"Building Name & Room Number\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:1;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:17:\"Your phone number\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:17:\"Your phone number\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5313','1999','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5314','1999','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5315','1999','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5316','1999','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5317','1999','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5318','1999','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5319','1999','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5320','1999','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5321','1999','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5322','1999','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5323','1999','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5324','1999','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5325','1999','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5326','1999','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5327','1999','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5328','1999','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5329','1999','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5330','1999','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5331','1999','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5337','2000','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5338','2000','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5339','2000','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5340','2000','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5341','2000','_elementor_data','[{\"id\":\"a3e1d5e\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#E7F0E1\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_b\":\"#B0CF9C\",\"background_gradient_type\":\"radial\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FF42AC\",\"shape_divider_top\":\"triangle\",\"shape_divider_top_color\":\"#4F0534\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":127,\"sizes\":[]},\"shape_divider_bottom\":\"wave-brush\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ae19893\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1303061\",\"settings\":{\"image\":{\"id\":\"126\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/dfgdfg.webp\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#A21581\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"3702568\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d6913b2\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cdbeb12\",\"settings\":{\"title\":\"Rosemary Mint Scalp & Hair Strengthening Oil\",\"align_mobile\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-33\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"0231586\",\"settings\":{\"editor\":\"<p><strong>Rosemary:<\\/strong>\\u00a0Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"8864e9a\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation\":\"fadeInUp\",\"box_shadow_box_shadow_type\":\"yes\",\"border_border\":\"none\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"92d0329\",\"settings\":{\"carousel\":[{\"id\":466,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Pink-Minimalist-Podium-Lipstick-Display-Instagram-Post.webp\"},{\"id\":467,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Red-and-Pink-Cute-Beauty-Serum-Instagram-Post.webp\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"dots_position\":\"inside\",\"image_border_border\":\"dotted\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"#C6267C\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"fceebe3\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dd61e80\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68f924c\",\"settings\":{\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f65597\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FF3B89\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a06266b\",\"settings\":{\"image\":{\"id\":467,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Red-and-Pink-Cute-Beauty-Serum-Instagram-Post.webp\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100},\"_flex_size\":\"none\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"3a562f9\",\"settings\":{\"title\":\"Use for daily hair care or specialized scalp treatments\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#C0077D\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"dc9b16c\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_animation\":\"bounceIn\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"c57d802\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FF28C8\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"zoomIn\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53bd132\",\"settings\":{\"image\":{\"id\":468,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/White-and-Pink-Modern-New-Product-Serum-Sale-Instagram-Post.webp\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"9fbee41\",\"settings\":{\"title\":\"Features more than 30 essential oils and extracts\\n\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#C0077D\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c44832c\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_animation\":\"bounce\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"9b843fe\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FF3B89\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f8f4e38\",\"settings\":{\"image\":{\"id\":466,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Pink-Minimalist-Podium-Lipstick-Display-Instagram-Post.webp\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"e747d90\",\"settings\":{\"title\":\"Helps improve length retention\\n\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#C0077D\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"8f8b209\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"da76ee8\",\"settings\":{\"title\":\"Call if necessary or click the button below to call\",\"align\":\"center\",\"title_color\":\"#C0077D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"0ba9e63\",\"settings\":{\"text\":\"+971 50 278 0363\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Gotu\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"align_mobile\":\"justify\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"8c94202\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76e0391\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#B74573\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#8C1142\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6bff2d5\",\"settings\":{\"title\":\"Why take from us?\",\"align\":\"center\",\"title_color\":\"#102A00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"bc5ac54\",\"settings\":{\"icon_list\":[{\"text\":\"100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} authentic product\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"9e8f154\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Our products will stop your hair loss\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"1799e92\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Helps in hair growth\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"a35fe15\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Infused with Biotin\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"28aa9f8\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Features more than 30 essential oils and extracts\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"cc51c74\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Delivery is free all over the UAE\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"3f66d7b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#E3E3E3\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#DEDEDE\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"860d03e\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"8991467\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e6a814\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e6d7c96\",\"settings\":{\"title\":\"Key Ingredients:\\n\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5b988c9\",\"settings\":{\"icon_list\":[{\"text\":\"Rosemary: Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2d5ffa7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mint: Invigorates scalp\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"fccdefe\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Biotin: Nourishes hair follicles, improving strength, and elasticity. Glycine Soja (Soybean) Oil, Ricinus Communis (Castor) Seed Oil, Rosmarinus Officinalis (Rosemary) Leaf Oil, Simmondsia Chinensis (Jojoba) Seed Oil, Mentha Piperita (Peppermint) Oil, Eucalyptus Globolus (Eucalyptus) Leaf Oil, Menthol, Melalueca Alternifolia (Tea Tree) Leaf Oil, Cocos Nucifera (Coconut) Oil, Equisetum Arvense (Horsetail) Extract, Aloe Barbadensis Extract, Lavandula Angustifolia (Lavender) Oil, Triticum Vulgare (Wheat) Germ Oil, Carthamus Tinctorius (Safflower) Seed Oil, Oenothera Biennis (Evening Primrose) Oil, Vitis Vinifera (Grape) Seed Oil, Benzyl Nicotinate, Prunus Amygdalus Dulcis (Sweet Almond) Oil, Oryza Sativa (Rice) Bran Oil, Tocopheryl Acetate, Biotin, Arctium Lappa (Burdock) Root Extract, Glycerin, Apium Graveolens (Celery) Seed Extract, Cholecalciferol (Vitamin D), Ascorbic Acid, Ocimum, Basilicum (Basil) Oil, Pogostemon Cablin (Patchouli) Oil, Salvia Officinalis (Sage) Oil, Silica, Urtica Dioica (Nettle) Extract\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"89e8c5d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#C0077D\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#C0077D\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"space_between_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e37b26c\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38c4690\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e5f74ce\",\"settings\":{\"title\":\"Reviews of respected customers\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6561139\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"dots_position\":\"inside\",\"image_spacing\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"image_border_color\":\"#3DA300\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"carousel\":[],\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"},{\"id\":\"8e8c69c\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"a79d0ad\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e5f67bb\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3DA300\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ca60d18\",\"settings\":{\"title\":\"Fill the form below to order\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"51c2dc4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"Determine the quantity\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"700\",\"btn_background_color_background\":\"gradient\",\"btn_background_color_color\":\"#E7F0E1\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#000000\",\"btn_background_color_color_b\":\"#B0CF9C\",\"btn_background_color_gradient_type\":\"radial\",\"_element_id\":\"order\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_weight\":\"700\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_weight\":\"500\",\"heading_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"checkout-form\"},{\"id\":\"fdfeb55\",\"settings\":{\"title\":\"Delivery is free all over the UAE\",\"align\":\"center\",\"title_color\":\"#DB2089\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"436482e\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"a2f32ff\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c80419\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5342','2000','_elementor_page_assets','a:1:{s:6:\"styles\";a:12:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5343','2000','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5344','2000','_elementor_controls_usage','a:10:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:4;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:3;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:10;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:10;s:21:\"typography_typography\";i:10;s:22:\"typography_font_family\";i:10;s:20:\"typography_font_size\";i:10;s:22:\"typography_font_weight\";i:9;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:7;s:8:\"_padding\";i:8;}s:19:\"_section_background\";a:6:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:4;s:28:\"_background_hover_background\";i:4;s:19:\"_background_color_b\";i:4;s:25:\"_background_gradient_type\";i:4;s:26:\"_background_gradient_angle\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:5:\"align\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:11;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:7:\"padding\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_border\";a:5:{s:26:\"box_shadow_box_shadow_type\";i:1;s:13:\"border_border\";i:5;s:12:\"border_width\";i:4;s:12:\"border_color\";i:4;s:13:\"border_radius\";i:3;}s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:4:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:2;s:14:\"slides_to_show\";i:2;s:10:\"navigation\";i:1;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:2:{s:13:\"dots_position\";i:2;s:9:\"dots_size\";i:1;}s:19:\"section_style_image\";a:5:{s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:2;s:18:\"image_border_color\";i:2;s:13:\"image_spacing\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:7;s:18:\"gap_columns_custom\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;s:24:\"background_gradient_type\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}s:21:\"section_shape_divider\";a:5:{s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:20:\"shape_divider_bottom\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:5;s:6:\"margin\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:6;s:4:\"link\";i:6;s:4:\"size\";i:6;s:13:\"selected_icon\";i:6;s:11:\"icon_indent\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:6;s:12:\"align_mobile\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:16:\"background_color\";i:6;s:15:\"hover_animation\";i:5;s:12:\"border_width\";i:5;s:12:\"border_color\";i:5;s:13:\"border_radius\";i:6;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5346','2001','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5347','2001','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5348','2001','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5349','2001','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5350','2001','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5351','2001','_elementor_data','[{\"id\":\"6c5a2f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#3BB44A\",\"shape_divider_bottom\":\"wave-brush\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff314df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"997f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89b4c17\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e7\\u09e6\\u09e6\\u09e6+ \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u099a\\u09c1\\u09b2 \\u09aa\\u09be\\u0995\\u09be, \\u099a\\u09c1\\u09b2 \\u09aa\\u09dc\\u09be, \\u099a\\u09c1\\u09b2\\u09c7 \\u0996\\u09c1\\u09b6\\u0995\\u09bf \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u0995\\u09b0\\u09c7\\u099b\\u09c7 \\\"\\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09c0 \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\\"\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c81a1fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u09b8\\u09ac \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09ae\\u09bf\\u0995\\u09cd\\u09b8\\u09bf\\u0982 \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-26\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"64505f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFF3F\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=5c74819\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5837298\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"215d4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bbac98e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":456,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-04-at-10.27.30-AM-1024x682-1.jpeg\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5582d6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#3BB44A\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f71a3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6ade757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b0\\u09be\\u09b8\\u09c2\\u09b2\\u09c1\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 (\\u09b8\\u09be.) \\u09ac\\u09b2\\u09c7\\u09a8, \\u09af\\u09c7 \\u09ac\\u09cd\\u09af\\u0995\\u09cd\\u09a4\\u09bf \\u099a\\u09c1\\u09b2\\u09c7 \\u0995\\u09be\\u09b2\\u09cb \\u0995\\u09b2\\u09aa \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7 \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09a4\\u09be\\u09df\\u09be\\u09b2\\u09be\\n\\u0995\\u09bf\\u09df\\u09be\\u09ae\\u09a4\\u09c7\\u09b0 \\u09a6\\u09bf\\u09a8 \\u09a4\\u09be\\u09b0 \\u099a\\u09c7\\u09b9\\u09be\\u09b0\\u09be \\u0995\\u09be\\u09b2\\u09cb \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8640ce4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a4\\u09c1\\u09b9\\u09ab\\u09be\\u09a4\\u09c1\\u09b2 \\u0986\\u09b9\\u0993\\u09df\\u09be\\u09af\\u09bf: \\u09eb\\/\\u09e9\\u09eb\\u09eb\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed2f48b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"c129915\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76dabf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09b2\\u09c7 \\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u09af\\u09c7 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#3BB44A\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9e1f3f1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"085c97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2bddd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u099a\\u09c1\\u09b2 \\u09aa\\u09be\\u0995\\u09be \\u09ac\\u09a8\\u09cd\\u09a7 \\u0995\\u09b0\\u09c7\\u0964\",\"_id\":\"cc2a863\"},{\"text\":\"\\u099a\\u09c1\\u09b2 \\u0997\\u09cb\\u09dc\\u09be \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09bf \\u0995\\u09b0\\u09c7\\u0964\",\"_id\":\"ad5fd58\"},{\"text\":\"\\u099a\\u09c1\\u09b2 \\u09b9\\u09c7\\u09b2\\u09a6\\u09bf \\u0995\\u09b0\\u09c7\\u0964\",\"_id\":\"f0f1c05\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"493531a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0d4d6f3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u099a\\u09c1\\u09b2\\u09c7 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09a6\\u09bf\\u09b2\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb \\u0998\\u09c1\\u09ae \\u09b9\\u09df\\u0964\",\"_id\":\"cc2a863\"},{\"text\":\"\\u099a\\u09c1\\u09b2 \\u09b8\\u09be\\u0987\\u09a8\\u09bf, \\u09b8\\u09bf\\u09b2\\u09cd\\u0995\\u09bf \\u0995\\u09b0\\u09c7\\u0964\",\"_id\":\"ad5fd58\"},{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"_id\":\"55af717\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d022293\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFF3F\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=5c74819\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f116ad\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e213a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"09e81fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u099a\\u09c1\\u09b2 \\u09aa\\u09be\\u0995\\u09be, \\u099a\\u09c1\\u09b2 \\u09aa\\u09dc\\u09be, \\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u0996\\u09c1\\u09b6\\u0995\\u09bf, \\u099a\\u09c1\\u09b2 \\u09b0\\u09c1\\u0995\\u09cd\\u09b7 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09ac \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09af\\u09a6\\u09bf \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u09a8? \\u0995\\u09cb\\u09a8 \\u09aa\\u09be\\u09b0\\u09cd\\u09b6\\u09cd\\u09ac-\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u0995\\u09cd\\u09b0\\u09bf\\u09df\\u09be \\u099b\\u09be\\u09dc\\u09be \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u098f\\u0996\\u09a8\\u09bf \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09ae\\u09bf\\u0995\\u09cd\\u09b8\\u09bf\\u0982 \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#FD0404\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e6c376\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":456,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-04-at-10.27.30-AM-1024x682-1.jpeg\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"76a9d38\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFF3F\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=5c74819\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"797c9c9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"40b8c3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c62b2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09c7\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099a\\u09c1\\u09b2\\u09c7 \\u0995\\u09b2\\u09ab \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09a8\\u09be \\u0995\\u09b0\\u09c7 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u0989\\u099a\\u09bf\\u09a4?\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#3BB44A\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60172af\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"eb24c3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5b26d9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0995\\u09b2\\u09ab \\u0995\\u09b0\\u09b2\\u09c7 \\u099a\\u09c1\\u09b2 \\u099d\\u09dc\\u09c7 \\u09aa\\u09dc\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"cc2a863\"},{\"text\":\"\\u0995\\u09b2\\u09ab \\u0995\\u09b0\\u09b2\\u09c7 \\u099a\\u09c1\\u09b2 \\u09b0\\u09c1\\u0995\\u09cd\\u09b7 \\u09b6\\u09c1\\u09b7\\u09cd\\u0995 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"dd7a04a\"},{\"text\":\"\\u0995\\u09b2\\u09ab \\u0995\\u09b0\\u09b2\\u09c7 \\u099a\\u09c1\\u09b2 \\u0986\\u09b0\\u09cb \\u09ac\\u09c7\\u09b6\\u09bf \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8\\u09c7 \\u09aa\\u09c7\\u0995\\u09c7 \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"bd9e58e\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7ff4af9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b1ef3b2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u099a\\u09c1\\u09b2\\u09c7 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09a6\\u09bf\\u09b2\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb \\u0998\\u09c1\\u09ae \\u09b9\\u09df\\u0964\",\"_id\":\"cc2a863\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"}},{\"text\":\"\\u099a\\u09c1\\u09b2 \\u09b8\\u09be\\u0987\\u09a8\\u09bf, \\u09b8\\u09bf\\u09b2\\u09cd\\u0995\\u09bf \\u0995\\u09b0\\u09c7\\u0964\",\"_id\":\"ad5fd58\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"}},{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"_id\":\"55af717\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46e5031\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFF3F\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=5c74819\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d9cb8d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color\":\"#3BB44A\"},\"elements\":[{\"id\":\"8861972\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"570b970\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b33db4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b8\\u09ae\\u09b0\\u09cd\\u09aa\\u09c1\\u09a8 \\u09a8\\u09cd\\u09af\\u09be\\u099a\\u09be\\u09b0\\u09be\\u09b2 \\u0997\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"cc2a863\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09c0 \\u09aa\\u09be\\u09a4\\u09be \\u0997\\u09c1\\u09a1\\u09bc\\u09be\\u09a4\\u09c7  \\u0995\\u09cb\\u09a8 \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09a8\\u09c7\\u0987\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"dd7a04a\"},{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09b6\\u09c1\\u09a7\\u09c1 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09aa\\u09be\\u09a4\\u09be\\u09af\\u09bc \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09a8\\u09be \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09b6\\u09bf\\u0995\\u09be\\u0995\\u09be\\u0987, \\u0986\\u09ae\\u09b2\\u0995\\u09bf \\u0997\\u09c1\\u09a1\\u09bc\\u09be \\u09ae\\u09bf\\u0995\\u09cd\\u09b8\\u09bf\\u0982 \\u0995\\u09b0\\u09c7  \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"bd9e58e\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u099f\\u09bf \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09b9\\u09be\\u09b2\\u09be\\u09b2 \\u098f\\u09ac\\u0982 \\u09b6\\u09a4\\u09b6\\u09a4 \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u098f\\u0987 \\u09b9\\u09c7\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u0989\\u09aa\\u0995\\u09be\\u09b0 \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"4cae869\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10b30b9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFF3F\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=5c74819\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44bcfd6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc0f08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4adf93c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b6\\u09a4 \\u09b6\\u09a4 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0 \\u09aa\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u0987\\u099c\\u09c7 \\u0986\\u099b\\u09c7\\u0964 \\u09a4\\u09be\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09bf\\u099b\\u09c1 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989 \\u098f\\u0996\\u09be\\u09a8\\u09c7 \\u09a6\\u09c7\\u09df\\u09be \\u09b9\\u09b2\\u0983\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#3BB44A\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"154953f\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"1\":{\"id\":457,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-3-1-1.jpg\"},\"3\":{\"id\":458,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-5-1-2.jpg\"}},\"thumbnail_size\":\"full\",\"image_spacing\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"navigation_previous_icon\":{\"value\":\"fas fa-chevron-circle-left\",\"library\":\"fa-solid\"},\"navigation_next_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"arrows_color\":\"#3BB44A\",\"dots_position\":\"inside\",\"dots_inactive_color\":\"#3BB44A\",\"dots_color\":\"#F80000\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"83b6ff7\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFF3F\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=5c74819\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db65a57\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74bd626\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7e31315\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09ea\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u09c7\\u09b0 \\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09e7\\u09e8\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"marker_color\":\"#F10202\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#FFFFFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"69f2cb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09ee\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"align\":\"center\",\"title_color\":\"#FFFF3F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf2f4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"(\\u09ab\\u09cd\\u09b0\\u09bf \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf!!)\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7eef05\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFFFFF\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"b969f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#3BB44A\"},\"elements\":[{\"id\":\"b80ff61\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 <br>\\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Order Now \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9c3da2f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\"},\"elements\":[{\"id\":\"ab2aca8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#160D0D75\"},\"elements\":[{\"id\":\"9bc0799\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"global_text_color\":\"#000000\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_text_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#3BB44A\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"256d8ee\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"c4c2f4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"95de950\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5352','2001','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5353','2001','_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:3;s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:12;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:12;s:11:\"title_color\";i:12;s:21:\"typography_typography\";i:12;s:22:\"typography_font_family\";i:12;s:20:\"typography_font_size\";i:11;s:22:\"typography_font_weight\";i:12;s:22:\"typography_line_height\";i:10;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:6;s:7:\"_margin\";i:2;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:6;s:4:\"size\";i:6;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:6;s:12:\"align_mobile\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:17:\"button_text_color\";i:6;s:16:\"background_color\";i:6;s:13:\"border_border\";i:6;s:12:\"border_width\";i:6;s:11:\"hover_color\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:16;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:5;}s:21:\"section_shape_divider\";a:2:{s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_color\";i:1;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:10;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:11;s:11:\"_element_id\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:5;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:5;s:7:\"divider\";i:4;s:13:\"divider_color\";i:1;}s:18:\"section_text_style\";a:5:{s:10:\"text_color\";i:5;s:26:\"icon_typography_typography\";i:5;s:27:\"icon_typography_font_family\";i:5;s:27:\"icon_typography_font_weight\";i:5;s:25:\"icon_typography_font_size\";i:1;}s:18:\"section_icon_style\";a:1:{s:10:\"icon_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:4:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:24:\"navigation_previous_icon\";i:1;s:20:\"navigation_next_icon\";i:1;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:3:{s:13:\"image_spacing\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;}s:24:\"section_style_navigation\";a:4:{s:12:\"arrows_color\";i:1;s:13:\"dots_position\";i:1;s:19:\"dots_inactive_color\";i:1;s:10:\"dots_color\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:1;s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:10:\"after_text\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:1;}s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5354','2002','wcf-flow-id','1996');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5355','2002','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5356','2002','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5357','2002','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5358','2002','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5359','2002','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5360','2002','_astra_content_layout_flag','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5361','2002','site-post-title','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5362','2002','ast-title-bar-display','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5363','2002','ast-featured-img','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5364','2002','ast-site-content-layout','full-width-container');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5365','2002','site-sidebar-layout','no-sidebar');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5366','2002','_edit_lock','1716444345:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5367','2002','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5368','2002','wcf-dynamic-css-version','1716442215');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5369','2002','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5370','2002','_elementor_data','[{\"id\":\"169d1f2\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFB6E9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b8501ba\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dba2c2e\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FC7F01\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"cf11801\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#266600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"4dd44b5\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6, \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2 \\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"abc4fa7\",\"settings\":{\"editor\":\"<p>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"bae0f86\",\"elType\":\"widget\",\"settings\":{\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"section_heading_typography_typography\":\"custom\",\"section_heading_typography_font_family\":\"Hind Siliguri\",\"section_text_typography_typography\":\"custom\",\"section_text_typography_font_family\":\"Hind Siliguri\",\"section_text_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"section_text_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2b0d1ae\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=757836c\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"931b94b\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17a8e79\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5371','2002','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5372','2002','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:2;s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5373','2002','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5374','2003','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5375','2003','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5376','2003','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5377','2003','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5378','2003','_elementor_data','[{\"id\":\"169d1f2\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFB6E9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b8501ba\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dba2c2e\",\"settings\":{\"image\":{\"id\":\"126\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/dfgdfg.webp\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FC7F01\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"cf11801\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#266600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"4dd44b5\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6, \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2 \\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"abc4fa7\",\"settings\":{\"editor\":\"<p>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"bae0f86\",\"elType\":\"widget\",\"settings\":{\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"section_heading_typography_typography\":\"custom\",\"section_heading_typography_font_family\":\"Hind Siliguri\",\"section_text_typography_typography\":\"custom\",\"section_text_typography_font_family\":\"Hind Siliguri\",\"section_text_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"section_text_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2b0d1ae\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=757836c\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"931b94b\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17a8e79\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5379','2003','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5380','2003','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:2;s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5381','2003','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5382','2004','wcf-flow-id','1984');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5383','2004','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5384','2004','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5385','2004','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5386','2004','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5387','2004','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5388','2004','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5389','2004','_edit_lock','1716719540:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5390','2004','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5391','2004','wcf-dynamic-css-version','1715902353');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5392','2004','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5393','2004','_elementor_data','[{\"id\":\"3d0c27a\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"800\",\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"40\",\"bottom\":\"92\",\"left\":\"40\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"68\",\"left\":\"24\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"31\",\"left\":\"20\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#0F5149\",\"shape_divider_bottom\":\"opacity-fan\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"shape_divider_top\":\"drops\",\"shape_divider_top_color\":\"#123024\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8788fe7\",\"settings\":{\"_column_size\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"09fae76\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"size_mobile\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"a718b25\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.5\",\"sizes\":[]},\"align\":\"center\",\"header_size\":\"h1\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"f63900b\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"5be417f\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4400b50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"4d49cf89\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00000017\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d1aa5cd\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a692d55\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\\" style=\\\"color:red\\\">itgalaxi<\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5394','2004','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5395','2004','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5396','2004','_elementor_controls_usage','a:5:{s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:4:\"size\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:2;s:25:\"typography_letter_spacing\";i:1;s:5:\"align\";i:3;s:22:\"typography_line_height\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:21:\"section_shape_divider\";a:6:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;s:24:\"shape_divider_top_height\";i:1;s:22:\"shape_divider_top_flip\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5397','2005','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5398','2005','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5399','2005','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5400','2005','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5401','2005','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5402','2005','_elementor_data','[{\"id\":\"3d0c27a\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"800\",\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"40\",\"bottom\":\"92\",\"left\":\"40\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"68\",\"left\":\"24\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"31\",\"left\":\"20\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#0F5149\",\"shape_divider_bottom\":\"opacity-fan\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"shape_divider_top\":\"drops\",\"shape_divider_top_color\":\"#123024\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8788fe7\",\"settings\":{\"_column_size\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"09fae76\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"size_mobile\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"a718b25\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.5\",\"sizes\":[]},\"align\":\"center\",\"header_size\":\"h1\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"f63900b\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"5be417f\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4400b50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"4d49cf89\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00000017\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d1aa5cd\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a692d55\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\\" style=\\\"color:red\\\">itgalaxi<\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5403','2005','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5404','2005','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5405','2005','_elementor_controls_usage','a:5:{s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:4:\"size\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:2;s:25:\"typography_letter_spacing\";i:1;s:5:\"align\";i:3;s:22:\"typography_line_height\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:21:\"section_shape_divider\";a:6:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;s:24:\"shape_divider_top_height\";i:1;s:22:\"shape_divider_top_flip\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5406','2006','wcf-flow-id','1984');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5407','2006','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5408','2006','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:5:\"email\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5409','2006','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5410','2006','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5411','2006','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5412','2006','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5413','2006','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5414','2006','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5415','2006','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5416','2007','wcf-flow-id','1992');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5417','2006','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5418','2007','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5419','2006','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5420','2007','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5421','2006','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5422','2007','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5423','2006','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5424','2007','wcf-dynamic-css-version','1710879359');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5425','2006','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5426','2007','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5427','2006','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5428','2007','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5429','2006','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:41:\"আপনার নাম লিখুন\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:41:\"আপনার নাম লিখুন\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:72:\"আপনার মোবাইল নাম্বার লিখুন\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:20;s:5:\"width\";i:100;s:11:\"placeholder\";s:72:\"আপনার মোবাইল নাম্বার লিখুন\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:30;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:40;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:75:\"আপনার সম্পূর্ণ ঠিকানা লিখুন\";s:11:\"placeholder\";s:75:\"আপনার সম্পূর্ণ ঠিকানা লিখুন\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:60;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:70;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:80;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:90;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:100;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:5:\"email\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5430','2007','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5431','2006','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5432','2007','_elementor_version','3.20.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5433','2006','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5434','2007','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5435','2006','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5436','2007','_astra_content_layout_flag','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5437','2006','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5438','2007','site-post-title','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5439','2006','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5440','2007','ast-title-bar-display','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5441','2006','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5442','2007','ast-featured-img','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5443','2006','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5444','2007','site-content-layout','page-builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5445','2006','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5446','2007','site-sidebar-layout','no-sidebar');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5447','2006','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5448','2007','_edit_lock','1711460414:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5449','2006','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5450','2007','_elementor_data','[{\"id\":\"20170fbe\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"800\",\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"40\",\"bottom\":\"92\",\"left\":\"40\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"68\",\"left\":\"24\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"31\",\"left\":\"20\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#2A8C36\",\"shape_divider_bottom\":\"opacity-fan\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f1d250a\",\"settings\":{\"_column_size\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ef0ba7d\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"size_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"3b4913b3\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.5\",\"sizes\":[]},\"align\":\"center\",\"header_size\":\"h1\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"630f10fd\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"6d12283\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"850eaed\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cabe628\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2152e30\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a253174\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5acae5b\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Business Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\" style=\\\"color:red\\\">DPW<\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5451','2006','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5452','2007','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5453','2006','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5454','2007','_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5455','2006','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5456','2006','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5457','2006','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5458','2007','_elementor_controls_usage','a:4:{s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:4:\"size\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:2;s:25:\"typography_letter_spacing\";i:1;s:5:\"align\";i:3;s:22:\"typography_line_height\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:21:\"section_shape_divider\";a:2:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5459','2006','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5460','2006','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5461','2006','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5462','2006','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5463','2006','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5464','2006','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5465','2006','_kad_pagebuilder_layout_flag','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5466','2006','_kad_post_title','hide');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5467','2006','_kad_post_content_style','unboxed');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5468','2006','_kad_post_vertical_padding','hide');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5469','2006','_kad_post_feature','hide');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5470','2006','_kad_post_layout','fullwidth');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5471','2006','_edit_lock','1716720841:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5472','2006','_elementor_data','[{\"id\":\"a5a8823\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"843a546\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09b9\\u09bf\\u09ae\\u09b8\\u09be\\u0997\\u09b0\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5473','2006','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5474','2006','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5475','2008','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5477','2008','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5478','2008','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5479','2008','_elementor_version','3.20.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5480','2008','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5481','2006','_elementor_controls_usage','a:1:{s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5482','2008','_elementor_data','[{\"id\":\"20170fbe\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"800\",\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"40\",\"bottom\":\"92\",\"left\":\"40\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"68\",\"left\":\"24\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"31\",\"left\":\"20\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#2A8C36\",\"shape_divider_bottom\":\"opacity-fan\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f1d250a\",\"settings\":{\"_column_size\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ef0ba7d\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"size_mobile\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"3b4913b3\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.5\",\"sizes\":[]},\"align\":\"center\",\"header_size\":\"h1\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"630f10fd\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"6d12283\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"850eaed\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cabe628\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2152e30\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a253174\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5acae5b\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Business Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\" style=\\\"color:red\\\">DPW<\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5483','2008','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5484','2008','_elementor_page_settings','a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5485','2008','_elementor_controls_usage','a:4:{s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:4:\"size\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:2;s:25:\"typography_letter_spacing\";i:1;s:5:\"align\";i:3;s:22:\"typography_line_height\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:21:\"section_shape_divider\";a:2:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5486','2009','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5487','2009','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5488','2009','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5489','2009','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5490','2009','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5491','2009','_elementor_data','[{\"id\":\"a5a8823\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"843a546\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09b9\\u09bf\\u09ae\\u09b8\\u09be\\u0997\\u09b0\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5492','2009','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5493','2009','_elementor_controls_usage','a:1:{s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5494','2011','wcf-flow-id','2010');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5495','2011','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5496','2011','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5497','2010','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:2011;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2013;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2024;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5498','2013','wcf-flow-id','2010');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5499','2013','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5500','2013','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5501','2013','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5502','2013','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5503','2013','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5504','2013','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5505','2013','_edit_lock','1717921697:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5506','2013','wcf-pro-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5507','2013','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5508','2013','_elementor_data','[{\"id\":\"7956fdd\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_color_b\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"124bfee\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a8cc0e\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"b8d73b6\",\"settings\":{\"title\":\"<span style=\\\"color: #368C29;\\\">\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be <\\/span> \\u0986\\u09aa\\u09a8\\u09bf \\u0993 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b6\\u09bf\\u09b6\\u09c1\\u09b0 \\u099c\\u09a8\\u09cd\\u09af <span style=\\\"color: #368C29;\\\">\\u201c\\u09b8\\u09c1\\u09aa\\u09be\\u09b0\\u09ab\\u09c1\\u09a1\\u201d<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"e6d85a8\",\"settings\":{\"title\":\"\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be \\u098f\\u0995\\u099f\\u09be \\u09b8\\u09c1\\u09aa\\u09be\\u09b0\\u09ab\\u09c1\\u09a1, \\u098f\\u099f\\u09bf\\u0995\\u09c7 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u09b0 \\u0986\\u09a7\\u09be\\u09b0\\u0993 \\u09ac\\u09b2\\u09be \\u09b9\\u09df\\u0964 \\u098f\\u099f\\u09be \\u09b9\\u09b0\\u09ae\\u09cb\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09b2\\u09c7\\u09a8\\u09cd\\u09b8, \\u09a1\\u09be\\u0987\\u099c\\u09c7\\u09b6\\u09a8 \\u0993 \\u09ae\\u09c7\\u099f\\u09be\\u09ac\\u09b2\\u09bf\\u099c\\u09ae\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u099f\\u09be \\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u0993 \\u099a\\u09c1\\u09b2\\u09c7\\u0993 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0985\\u09a8\\u09c7\\u0995 \\u0997\\u09c1\\u09a8\\u0964 \",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"ff0e814\",\"settings\":{\"text\":\"\\u0985\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=fbe9ec8\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5b077ba\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"de306bc\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5548b1a\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=PVtsUmS2TjY\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"image_overlay\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"a15846f\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16d9e54\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f68197\",\"settings\":{\"title\":\"\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=7f29ec1\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"ec4e4b0\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"467695a\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"769d3fb\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b6\\u09bf\\u09b6\\u09c1\\u09a6\\u09c7\\u09b0 \\u0985\\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"de592f2\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09cd\\u09a4\\u09a8\\u09cd\\u09af\\u09a6\\u09be\\u09a8\\u0995\\u09be\\u09b0\\u09c0 \\u09ae\\u09be\\u09df\\u09c7\\u09a6\\u09c7\\u09b0 \\u09ac\\u09c1\\u0995\\u09c7\\u09b0 \\u09a6\\u09c1\\u09a7 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0307d68\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0989\\u099a\\u09cd\\u099a \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"cca2a6d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b0\\u09c1\\u099a\\u09bf \\u09ab\\u09c7\\u09b0\\u09be\\u09df\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"9ccff14\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09bf\\u09ae\\u09bf\\u09df\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0d8f142\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"fed7f67\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0985\\u09a8\\u09cd\\u09a7\\u09a4\\u09cd\\u09ac \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"1876337\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ac\\u09df\\u09b8\\u09c7\\u09b0 \\u099b\\u09be\\u09aa \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"f5d270b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"b26d710\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0c178f9\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09b8\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"626a83c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" \\u09b9\\u09be\\u09b0\\u09cd\\u099f \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"842208d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0993\\u099c\\u09a8 \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c424393\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0995\\u09bf\\u09a1\\u09a8\\u09bf \\u0993 \\u09b2\\u09bf\\u09ad\\u09be\\u09b0 \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"414a3a1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"d55ec96\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0997\\u09cd\\u09af\\u09be\\u09b8\\u09cd\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"e0af607\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u099a\\u09c1\\u09b2 \\u09aa\\u09dc\\u09be \\u09ac\\u09a8\\u09cd\\u09a7 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ff665e9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09c1\\u0996\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u0993 \\u09ae\\u09c7\\u09b8\\u09cd\\u09a4\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"a05adad\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"space_between_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"50cfa7c\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b1e2dc5\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f579bb\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":60,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"793427e\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u0985\\u09a5\\u09ac\\u09be \\u0986\\u09b6\\u09c7\\u09aa\\u09be\\u09b6\\u09c7 \\u0995\\u09cb\\u09a5\\u09be\\u0993 \\u09af\\u09a6\\u09bf \\u09b8\\u099c\\u09a8\\u09c7 \\u0997\\u09be\\u099b \\u09a5\\u09be\\u0995\\u09c7 \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u09b8\\u09c7\\u0996\\u09be\\u09a8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09be\\u09a4\\u09be \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0996\\u09be\\u09a6\\u09cd\\u09af \\u09a4\\u09be\\u09b2\\u09bf\\u0995\\u09be\\u09df \\u098f\\u099f\\u09be \\u09b0\\u09be\\u0996\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u0964 \\u09b8\\u09c7\\u099f\\u09be \\u09b8\\u09ae\\u09cd\\u09ad\\u09ac \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a4\\u09be \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0993 \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be\\u0964 \",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_family\":\"Hind Siliguri\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"efc2335\",\"settings\":{\"text\":\"\\u0985\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=fbe9ec8\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"a90df62\",\"settings\":{\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"be009c6\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d64d6d8\",\"settings\":{\"title\":\"\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u0996\\u09be\\u09ac\\u09c7\\u09a8 \\u0993 \\u09b6\\u09bf\\u09b6\\u09c1\\u09a6\\u09c7\\u09b0\\u0993 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09ac\\u09c7\\u09a8  \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=7f29ec1\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"f028c73\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ab\\u09b2 \\u0985\\u09a5\\u09ac\\u09be \\u09ab\\u09b2\\u09c7\\u09b0 \\u099c\\u09c1\\u09b8 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"aedcea0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09b2 \\u0985\\u09a5\\u09ac\\u09be \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u0995\\u09b0\\u09be \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"bb8fed8\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ad\\u09b0\\u09cd\\u09a4\\u09be \\u09ac\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"3c44ca9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09b0\\u09be\\u09b8\\u09b0\\u09bf \\u099c\\u09c1\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"236467a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09be\\u099b, \\u09ae\\u09be\\u0982\\u09b8 \\u0985\\u09a5\\u09ac\\u09be \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09a4\\u09b0\\u0995\\u09be\\u09b0\\u09c0\\u09a4\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"413526c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a8\\u09c1\\u09a1\\u09c1\\u09b2\\u09b8 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"0d6f2b5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09a7\\u09c1 \\u09a6\\u09bf\\u09df\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"73d9902\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09b2\\u09c7\\u09b0 \\u09ac\\u09dc\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"a275c3c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b0\\u09c1\\u099f\\u09bf \\u0985\\u09a5\\u09ac\\u09be \\u099a\\u09be\\u09aa\\u099f\\u09bf \\u09ac\\u09be\\u09a8\\u09be\\u09a8\\u09cb\\u09b0 \\u09b8\\u09ae\\u09df \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"450edd6\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Baloo Da 2\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"d0ce700\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ce0954\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#00000009\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e1b73cb\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"35e8c17\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=26ec5dd\",\"background_color\":\"globals\\/colors?id=fbe9ec8\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"a35bc8b\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d8dd32\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0b0e396\",\"settings\":{\"title\":\"\\u0986\\u09b8\\u09cd\\u09a5\\u09be \\u09b0\\u09be\\u0996\\u09c1\\u09a8 \\u0986\\u09b8\\u09cd\\u09a5\\u09be\\u09df \\u09a5\\u09be\\u0995\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=7f29ec1\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6e3ae6f\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0993 \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"aedcea0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09a3\\u09cd\\u09af \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"bb8fed8\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u09ab\\u09c7\\u09b0\\u09a4 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3c44ca9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09a4\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"52c64a2\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0996\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u09a8\\u09bf\\u09df\\u09ae\\u09b8\\u09b9 \\u09b0\\u09c7\\u09b8\\u09bf\\u09aa\\u09bf \\u0985\\u09a8\\u09b2\\u09be\\u0987\\u09a8\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"6366393\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Baloo Da 2\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#00000005\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72090b7\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#2ECC71\",\"__globals__\":{\"_background_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#2ECC71\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#00000012\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5509','2013','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5510','2013','_oembed_94620249a73cc10a0679692ba61fad2b','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5511','2013','_oembed_047ec1a1e4732153f83b573bd07c0e6f','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5512','2013','_oembed_time_047ec1a1e4732153f83b573bd07c0e6f','1708497492');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5513','2013','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5514','2013','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5515','2013','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5516','2013','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5517','2013','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5518','2013','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5519','2013','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5520','2013','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5521','2013','wcf-enable-product-options','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5522','2013','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5523','2013','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5524','2013','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5525','2013','wcf-enable-product-quantity','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5526','2013','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5527','2013','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5528','2013','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5529','2013','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5530','2013','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5531','2013','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5532','2013','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5533','2013','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5534','2013','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5535','2013','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5536','2013','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5537','2013','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5538','2013','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5539','2013','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5540','2013','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5541','2013','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5542','2013','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5543','2013','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5544','2013','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5545','2013','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5546','2013','_oembed_time_94620249a73cc10a0679692ba61fad2b','1710927601');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5547','2013','_oembed_8bb2e31b9a0403c9f732f2778ab61755','<iframe title=\"শিশুদের জন্য সজনে পাতা\" width=\"500\" height=\"375\" src=\"https://www.youtube.com/embed/PVtsUmS2TjY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5548','2013','_oembed_time_8bb2e31b9a0403c9f732f2778ab61755','1711276475');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5549','2013','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5550','2013','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5551','2013','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5552','2013','_oembed_524fd6219ed51f34d994ad31376291db','<iframe title=\"শিশুদের জন্য সজনে পাতা\" width=\"1200\" height=\"900\" src=\"https://www.youtube.com/embed/PVtsUmS2TjY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5553','2013','_oembed_time_524fd6219ed51f34d994ad31376291db','1717921704');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5555','2013','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:2;s:19:\"image_border_radius\";i:2;s:32:\"image_box_shadow_box_shadow_type\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:9;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:21:\"typography_typography\";i:9;s:22:\"typography_font_weight\";i:9;s:5:\"align\";i:9;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:7;s:22:\"typography_font_family\";i:9;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:3;s:4:\"size\";i:3;s:4:\"link\";i:3;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:33:\"button_box_shadow_box_shadow_type\";i:3;s:28:\"button_box_shadow_box_shadow\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:11;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:2:{s:12:\"border_width\";i:3;s:13:\"border_border\";i:1;}s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:8;s:13:\"content_width\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:18:\"background_color_b\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:6;s:6:\"margin\";i:3;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"section_video\";a:3:{s:11:\"youtube_url\";i:1;s:8:\"autoplay\";i:1;s:14:\"play_on_mobile\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:4;s:7:\"divider\";i:2;s:14:\"divider_weight\";i:4;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:4;s:11:\"text_indent\";i:4;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:4;s:27:\"icon_typography_font_family\";i:4;s:25:\"icon_typography_font_size\";i:4;s:27:\"icon_typography_font_weight\";i:4;s:10:\"text_color\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:4;s:21:\"_element_custom_width\";i:4;s:8:\"_padding\";i:2;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5556','2014','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5557','2014','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5558','2014','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5559','2014','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5560','2014','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5561','2014','_elementor_data','[{\"id\":\"7956fdd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_color_b\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"124bfee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a8cc0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b8d73b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color: #368C29;\\\">\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be <\\/span> \\u0986\\u09aa\\u09a8\\u09bf \\u0993 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b6\\u09bf\\u09b6\\u09c1\\u09b0 \\u099c\\u09a8\\u09cd\\u09af <span style=\\\"color: #368C29;\\\">\\u201c\\u09b8\\u09c1\\u09aa\\u09be\\u09b0\\u09ab\\u09c1\\u09a1\\u201d<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e6d85a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be \\u098f\\u0995\\u099f\\u09be \\u09b8\\u09c1\\u09aa\\u09be\\u09b0\\u09ab\\u09c1\\u09a1, \\u098f\\u099f\\u09bf\\u0995\\u09c7 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u09b0 \\u0986\\u09a7\\u09be\\u09b0\\u0993 \\u09ac\\u09b2\\u09be \\u09b9\\u09df\\u0964 \\u098f\\u099f\\u09be \\u09b9\\u09b0\\u09ae\\u09cb\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09b2\\u09c7\\u09a8\\u09cd\\u09b8, \\u09a1\\u09be\\u0987\\u099c\\u09c7\\u09b6\\u09a8 \\u0993 \\u09ae\\u09c7\\u099f\\u09be\\u09ac\\u09b2\\u09bf\\u099c\\u09ae\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u099f\\u09be \\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u0993 \\u099a\\u09c1\\u09b2\\u09c7\\u0993 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0985\\u09a8\\u09c7\\u0995 \\u0997\\u09c1\\u09a8\\u0964 \",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff0e814\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=fbe9ec8\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b077ba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"de306bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5548b1a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=PVtsUmS2TjY\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"image_overlay\":{\"id\":476,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-5.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a15846f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"16d9e54\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f68197\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=7f29ec1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec4e4b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\"},\"elements\":[{\"id\":\"467695a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"769d3fb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b6\\u09bf\\u09b6\\u09c1\\u09a6\\u09c7\\u09b0 \\u0985\\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"de592f2\"},{\"text\":\"\\u09b8\\u09cd\\u09a4\\u09a8\\u09cd\\u09af\\u09a6\\u09be\\u09a8\\u0995\\u09be\\u09b0\\u09c0 \\u09ae\\u09be\\u09df\\u09c7\\u09a6\\u09c7\\u09b0 \\u09ac\\u09c1\\u0995\\u09c7\\u09b0 \\u09a6\\u09c1\\u09a7 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0307d68\"},{\"text\":\"\\u0989\\u099a\\u09cd\\u099a \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"cca2a6d\"},{\"text\":\"\\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b0\\u09c1\\u099a\\u09bf \\u09ab\\u09c7\\u09b0\\u09be\\u09df\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"9ccff14\"},{\"text\":\"\\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09bf\\u09ae\\u09bf\\u09df\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0d8f142\"},{\"text\":\"\\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"fed7f67\"},{\"text\":\"\\u0985\\u09a8\\u09cd\\u09a7\\u09a4\\u09cd\\u09ac \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"1876337\"},{\"text\":\"\\u09ac\\u09df\\u09b8\\u09c7\\u09b0 \\u099b\\u09be\\u09aa \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"f5d270b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"b26d710\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"0c178f9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09b8\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"626a83c\"},{\"text\":\" \\u09b9\\u09be\\u09b0\\u09cd\\u099f \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"842208d\"},{\"text\":\"\\u0993\\u099c\\u09a8 \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c424393\"},{\"text\":\"\\u0995\\u09bf\\u09a1\\u09a8\\u09bf \\u0993 \\u09b2\\u09bf\\u09ad\\u09be\\u09b0 \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"414a3a1\"},{\"text\":\"\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"d55ec96\"},{\"text\":\"\\u0997\\u09cd\\u09af\\u09be\\u09b8\\u09cd\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"e0af607\"},{\"text\":\"\\u099a\\u09c1\\u09b2 \\u09aa\\u09dc\\u09be \\u09ac\\u09a8\\u09cd\\u09a7 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ff665e9\"},{\"text\":\"\\u09ae\\u09c1\\u0996\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u0993 \\u09ae\\u09c7\\u09b8\\u09cd\\u09a4\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"a05adad\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"space_between_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50cfa7c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"b1e2dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f579bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"87\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/moringa-powder-100-gm.webp\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":60,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"793427e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u0985\\u09a5\\u09ac\\u09be \\u0986\\u09b6\\u09c7\\u09aa\\u09be\\u09b6\\u09c7 \\u0995\\u09cb\\u09a5\\u09be\\u0993 \\u09af\\u09a6\\u09bf \\u09b8\\u099c\\u09a8\\u09c7 \\u0997\\u09be\\u099b \\u09a5\\u09be\\u0995\\u09c7 \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u09b8\\u09c7\\u0996\\u09be\\u09a8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09be\\u09a4\\u09be \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0996\\u09be\\u09a6\\u09cd\\u09af \\u09a4\\u09be\\u09b2\\u09bf\\u0995\\u09be\\u09df \\u098f\\u099f\\u09be \\u09b0\\u09be\\u0996\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u0964 \\u09b8\\u09c7\\u099f\\u09be \\u09b8\\u09ae\\u09cd\\u09ad\\u09ac \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a4\\u09be \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0993 \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be\\u0964 \",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_family\":\"Hind Siliguri\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"efc2335\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=fbe9ec8\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a90df62\",\"elType\":\"section\",\"settings\":{\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"be009c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d64d6d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u0996\\u09be\\u09ac\\u09c7\\u09a8 \\u0993 \\u09b6\\u09bf\\u09b6\\u09c1\\u09a6\\u09c7\\u09b0\\u0993 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09ac\\u09c7\\u09a8  \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=7f29ec1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f028c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ab\\u09b2 \\u0985\\u09a5\\u09ac\\u09be \\u09ab\\u09b2\\u09c7\\u09b0 \\u099c\\u09c1\\u09b8 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"aedcea0\"},{\"text\":\"\\u09a1\\u09be\\u09b2 \\u0985\\u09a5\\u09ac\\u09be \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u0995\\u09b0\\u09be \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"bb8fed8\"},{\"text\":\"\\u09ad\\u09b0\\u09cd\\u09a4\\u09be \\u09ac\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"3c44ca9\"},{\"text\":\"\\u09b8\\u09b0\\u09be\\u09b8\\u09b0\\u09bf \\u099c\\u09c1\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"236467a\"},{\"text\":\"\\u09ae\\u09be\\u099b, \\u09ae\\u09be\\u0982\\u09b8 \\u0985\\u09a5\\u09ac\\u09be \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09a4\\u09b0\\u0995\\u09be\\u09b0\\u09c0\\u09a4\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"413526c\"},{\"text\":\"\\u09a8\\u09c1\\u09a1\\u09c1\\u09b2\\u09b8 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"0d6f2b5\"},{\"text\":\"\\u09ae\\u09a7\\u09c1 \\u09a6\\u09bf\\u09df\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"73d9902\"},{\"text\":\"\\u09a1\\u09be\\u09b2\\u09c7\\u09b0 \\u09ac\\u09dc\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"a275c3c\"},{\"text\":\"\\u09b0\\u09c1\\u099f\\u09bf \\u0985\\u09a5\\u09ac\\u09be \\u099a\\u09be\\u09aa\\u099f\\u09bf \\u09ac\\u09be\\u09a8\\u09be\\u09a8\\u09cb\\u09b0 \\u09b8\\u09ae\\u09df \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"450edd6\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Baloo Da 2\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0ce700\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"6ce0954\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#00000009\"},\"elements\":[{\"id\":\"e1b73cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e8c17\",\"elType\":\"widget\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=26ec5dd\",\"background_color\":\"globals\\/colors?id=fbe9ec8\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a35bc8b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1d8dd32\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"0b0e396\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09b8\\u09cd\\u09a5\\u09be \\u09b0\\u09be\\u0996\\u09c1\\u09a8 \\u0986\\u09b8\\u09cd\\u09a5\\u09be\\u09df \\u09a5\\u09be\\u0995\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=7f29ec1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e3ae6f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0993 \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"aedcea0\"},{\"text\":\"\\u09aa\\u09a3\\u09cd\\u09af \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"bb8fed8\"},{\"text\":\"\\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u09ab\\u09c7\\u09b0\\u09a4 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3c44ca9\"},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09a4\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"52c64a2\"},{\"text\":\"\\u0996\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u09a8\\u09bf\\u09df\\u09ae\\u09b8\\u09b9 \\u09b0\\u09c7\\u09b8\\u09bf\\u09aa\\u09bf \\u0985\\u09a8\\u09b2\\u09be\\u0987\\u09a8\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"6366393\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Baloo Da 2\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c559378\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#00000005\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a6b06a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"72090b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#2ECC71\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#2ECC71\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3d773d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#00000012\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fa53a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ccff08\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5562','2014','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5564','2014','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:2;s:19:\"image_border_radius\";i:2;s:32:\"image_box_shadow_box_shadow_type\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:9;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:21:\"typography_typography\";i:9;s:22:\"typography_font_weight\";i:9;s:5:\"align\";i:9;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:7;s:22:\"typography_font_family\";i:9;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:3;s:4:\"size\";i:3;s:4:\"link\";i:3;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:33:\"button_box_shadow_box_shadow_type\";i:3;s:28:\"button_box_shadow_box_shadow\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:11;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:2:{s:12:\"border_width\";i:3;s:13:\"border_border\";i:1;}s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:8;s:13:\"content_width\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:18:\"background_color_b\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:6;s:6:\"margin\";i:3;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"section_video\";a:3:{s:11:\"youtube_url\";i:1;s:8:\"autoplay\";i:1;s:14:\"play_on_mobile\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:4;s:7:\"divider\";i:2;s:14:\"divider_weight\";i:4;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:4;s:11:\"text_indent\";i:4;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:4;s:27:\"icon_typography_font_family\";i:4;s:25:\"icon_typography_font_size\";i:4;s:27:\"icon_typography_font_weight\";i:4;s:10:\"text_color\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:4;s:21:\"_element_custom_width\";i:4;s:8:\"_padding\";i:2;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5565','2016','wcf-flow-id','2015');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5566','2016','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5567','2016','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5568','2015','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:2016;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2018;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2030;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5569','2018','wcf-flow-id','2015');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5570','2018','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5571','2018','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5572','2018','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5573','2018','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5574','2018','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5575','2018','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5576','2018','_edit_lock','1780985678:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5577','2018','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5578','2018','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5579','2018','_elementor_data','[{\"id\":\"7956fdd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#B5FABC\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_color_b\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"shape_divider_top\":\"clouds\",\"shape_divider_top_color\":\"#42CE71\",\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"shape_divider_bottom\":\"zigzag\",\"shape_divider_bottom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":241,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":137,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":155,\"sizes\":[]}},\"elements\":[{\"id\":\"124bfee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a8cc0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2129,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/1aa282a8-e97b-45cb-9fe4-c4e7411a5986.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b8d73b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color: #368C29;\\\">\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be <\\/span> \\u0986\\u09aa\\u09a8\\u09bf \\u0993 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b6\\u09bf\\u09b6\\u09c1\\u09b0 \\u099c\\u09a8\\u09cd\\u09af <span style=\\\"color: #368C29;\\\">\\u201c\\u09b8\\u09c1\\u09aa\\u09be\\u09b0\\u09ab\\u09c1\\u09a1\\u201d<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e6d85a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be \\u098f\\u0995\\u099f\\u09be \\u09b8\\u09c1\\u09aa\\u09be\\u09b0\\u09ab\\u09c1\\u09a1, \\u098f\\u099f\\u09bf\\u0995\\u09c7 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u09b0 \\u0986\\u09a7\\u09be\\u09b0\\u0993 \\u09ac\\u09b2\\u09be \\u09b9\\u09df\\u0964 \\u098f\\u099f\\u09be \\u09b9\\u09b0\\u09ae\\u09cb\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09b2\\u09c7\\u09a8\\u09cd\\u09b8, \\u09a1\\u09be\\u0987\\u099c\\u09c7\\u09b6\\u09a8 \\u0993 \\u09ae\\u09c7\\u099f\\u09be\\u09ac\\u09b2\\u09bf\\u099c\\u09ae\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u099f\\u09be \\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u0993 \\u099a\\u09c1\\u09b2\\u09c7\\u0993 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0985\\u09a8\\u09c7\\u0995 \\u0997\\u09c1\\u09a8\\u0964 \",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b077ba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#6EFFAA\",\"shape_divider_top\":\"zigzag\",\"shape_divider_top_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":161,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":93,\"sizes\":[]}},\"elements\":[{\"id\":\"de306bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ff0e814\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=fbe9ec8\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fad08c8\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"314819e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2121,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-9-2026-11_23_18-AM.png\"},{\"id\":2129,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/1aa282a8-e97b-45cb-9fe4-c4e7411a5986.png\"}],\"thumbnail_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"image_border_color\":\"#E8B541\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a15846f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#C5FFDD\"},\"elements\":[{\"id\":\"16d9e54\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f68197\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=7f29ec1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec4e4b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\"},\"elements\":[{\"id\":\"467695a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"769d3fb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b6\\u09bf\\u09b6\\u09c1\\u09a6\\u09c7\\u09b0 \\u0985\\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"de592f2\"},{\"text\":\"\\u09b8\\u09cd\\u09a4\\u09a8\\u09cd\\u09af\\u09a6\\u09be\\u09a8\\u0995\\u09be\\u09b0\\u09c0 \\u09ae\\u09be\\u09df\\u09c7\\u09a6\\u09c7\\u09b0 \\u09ac\\u09c1\\u0995\\u09c7\\u09b0 \\u09a6\\u09c1\\u09a7 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0307d68\"},{\"text\":\"\\u0989\\u099a\\u09cd\\u099a \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"cca2a6d\"},{\"text\":\"\\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b0\\u09c1\\u099a\\u09bf \\u09ab\\u09c7\\u09b0\\u09be\\u09df\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"9ccff14\"},{\"text\":\"\\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09bf\\u09ae\\u09bf\\u09df\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0d8f142\"},{\"text\":\"\\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"fed7f67\"},{\"text\":\"\\u0985\\u09a8\\u09cd\\u09a7\\u09a4\\u09cd\\u09ac \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"1876337\"},{\"text\":\"\\u09ac\\u09df\\u09b8\\u09c7\\u09b0 \\u099b\\u09be\\u09aa \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"f5d270b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_color\":\"#C17E09\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"b26d710\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"0c178f9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09b8\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"626a83c\"},{\"text\":\" \\u09b9\\u09be\\u09b0\\u09cd\\u099f \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"842208d\"},{\"text\":\"\\u0993\\u099c\\u09a8 \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c424393\"},{\"text\":\"\\u0995\\u09bf\\u09a1\\u09a8\\u09bf \\u0993 \\u09b2\\u09bf\\u09ad\\u09be\\u09b0 \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"414a3a1\"},{\"text\":\"\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"d55ec96\"},{\"text\":\"\\u0997\\u09cd\\u09af\\u09be\\u09b8\\u09cd\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"e0af607\"},{\"text\":\"\\u099a\\u09c1\\u09b2 \\u09aa\\u09dc\\u09be \\u09ac\\u09a8\\u09cd\\u09a7 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ff665e9\"},{\"text\":\"\\u09ae\\u09c1\\u0996\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u0993 \\u09ae\\u09c7\\u09b8\\u09cd\\u09a4\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"a05adad\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"space_between_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_color\":\"#C17E09\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50cfa7c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#CAFFBE\"},\"elements\":[{\"id\":\"b1e2dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"793427e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u0985\\u09a5\\u09ac\\u09be \\u0986\\u09b6\\u09c7\\u09aa\\u09be\\u09b6\\u09c7 \\u0995\\u09cb\\u09a5\\u09be\\u0993 \\u09af\\u09a6\\u09bf \\u09b8\\u099c\\u09a8\\u09c7 \\u0997\\u09be\\u099b \\u09a5\\u09be\\u0995\\u09c7 \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u09b8\\u09c7\\u0996\\u09be\\u09a8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09be\\u09a4\\u09be \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0996\\u09be\\u09a6\\u09cd\\u09af \\u09a4\\u09be\\u09b2\\u09bf\\u0995\\u09be\\u09df \\u098f\\u099f\\u09be \\u09b0\\u09be\\u0996\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u0964 \\u09b8\\u09c7\\u099f\\u09be \\u09b8\\u09ae\\u09cd\\u09ad\\u09ac \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a4\\u09be \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0993 \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be\\u0964 \",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_family\":\"Hind Siliguri\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f579bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2129,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/1aa282a8-e97b-45cb-9fe4-c4e7411a5986.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":60,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"efc2335\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=fbe9ec8\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a90df62\",\"elType\":\"section\",\"settings\":{\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#CAFFBE\"},\"elements\":[{\"id\":\"be009c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d64d6d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u0996\\u09be\\u09ac\\u09c7\\u09a8 \\u0993 \\u09b6\\u09bf\\u09b6\\u09c1\\u09a6\\u09c7\\u09b0\\u0993 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09ac\\u09c7\\u09a8  \",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=7f29ec1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f028c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ab\\u09b2 \\u0985\\u09a5\\u09ac\\u09be \\u09ab\\u09b2\\u09c7\\u09b0 \\u099c\\u09c1\\u09b8 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"aedcea0\"},{\"text\":\"\\u09a1\\u09be\\u09b2 \\u0985\\u09a5\\u09ac\\u09be \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u0995\\u09b0\\u09be \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"bb8fed8\"},{\"text\":\"\\u09ad\\u09b0\\u09cd\\u09a4\\u09be \\u09ac\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"3c44ca9\"},{\"text\":\"\\u09b8\\u09b0\\u09be\\u09b8\\u09b0\\u09bf \\u099c\\u09c1\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"236467a\"},{\"text\":\"\\u09ae\\u09be\\u099b, \\u09ae\\u09be\\u0982\\u09b8 \\u0985\\u09a5\\u09ac\\u09be \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09a4\\u09b0\\u0995\\u09be\\u09b0\\u09c0\\u09a4\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"413526c\"},{\"text\":\"\\u09a8\\u09c1\\u09a1\\u09c1\\u09b2\\u09b8 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"0d6f2b5\"},{\"text\":\"\\u09ae\\u09a7\\u09c1 \\u09a6\\u09bf\\u09df\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"73d9902\"},{\"text\":\"\\u09a1\\u09be\\u09b2\\u09c7\\u09b0 \\u09ac\\u09dc\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"a275c3c\"},{\"text\":\"\\u09b0\\u09c1\\u099f\\u09bf \\u0985\\u09a5\\u09ac\\u09be \\u099a\\u09be\\u09aa\\u099f\\u09bf \\u09ac\\u09be\\u09a8\\u09be\\u09a8\\u09cb\\u09b0 \\u09b8\\u09ae\\u09df \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"450edd6\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Baloo Da 2\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_color\":\"#917509\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0ce700\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#CDFFCF\"},\"elements\":[{\"id\":\"6ce0954\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#00000009\"},\"elements\":[{\"id\":\"e1b73cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e8c17\",\"elType\":\"widget\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=26ec5dd\",\"background_color\":\"globals\\/colors?id=fbe9ec8\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a35bc8b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#CAFFBE\"},\"elements\":[{\"id\":\"1d8dd32\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"0b0e396\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09b8\\u09cd\\u09a5\\u09be \\u09b0\\u09be\\u0996\\u09c1\\u09a8 \\u0986\\u09b8\\u09cd\\u09a5\\u09be\\u09df \\u09a5\\u09be\\u0995\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=7f29ec1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e3ae6f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0993 \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"aedcea0\"},{\"text\":\"\\u09aa\\u09a3\\u09cd\\u09af \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"bb8fed8\"},{\"text\":\"\\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u09ab\\u09c7\\u09b0\\u09a4 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3c44ca9\"},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09a4\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"52c64a2\"},{\"text\":\"\\u0996\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u09a8\\u09bf\\u09df\\u09ae\\u09b8\\u09b9 \\u09b0\\u09c7\\u09b8\\u09bf\\u09aa\\u09bf \\u0985\\u09a8\\u09b2\\u09be\\u0987\\u09a8\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"6366393\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Baloo Da 2\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_color\":\"#DC7600\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c559378\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#C2FDB5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#E6FFE9\"},\"elements\":[{\"id\":\"9a6b06a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"72090b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#BBFFC9\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#2ECC71\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3d773d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#00000012\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fa53a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5248d0a\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5580','2018','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5581','2018','_oembed_94620249a73cc10a0679692ba61fad2b','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5582','2018','_oembed_047ec1a1e4732153f83b573bd07c0e6f','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5583','2018','_oembed_time_047ec1a1e4732153f83b573bd07c0e6f','1708497492');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5584','2018','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5585','2018','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5586','2018','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5587','2018','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5588','2018','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5589','2018','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5590','2018','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5591','2018','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5592','2018','wcf-enable-product-options','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5593','2018','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5594','2018','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5595','2018','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5596','2018','wcf-enable-product-quantity','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5597','2018','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5598','2018','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5599','2018','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5600','2018','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5601','2018','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5602','2018','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5603','2018','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5604','2018','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5605','2018','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5606','2018','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5607','2018','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5608','2018','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5609','2018','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5610','2018','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5611','2018','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5612','2018','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5613','2018','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5614','2018','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5615','2018','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5616','2018','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5617','2018','_oembed_time_94620249a73cc10a0679692ba61fad2b','1710927601');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5618','2018','_oembed_8bb2e31b9a0403c9f732f2778ab61755','<iframe title=\"শিশুদের জন্য সজনে পাতা\" width=\"500\" height=\"375\" src=\"https://www.youtube.com/embed/PVtsUmS2TjY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5619','2018','_oembed_time_8bb2e31b9a0403c9f732f2778ab61755','1711276475');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5625','2019','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5626','2019','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5627','2019','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5628','2019','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5629','2019','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5630','2019','_elementor_data','[{\"id\":\"7956fdd\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFC37E\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_color_b\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"shape_divider_top\":\"clouds\",\"shape_divider_top_color\":\"#CE8542\",\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"shape_divider_bottom\":\"zigzag\",\"shape_divider_bottom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":241,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":137,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":155,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"124bfee\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a8cc0e\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"b8d73b6\",\"settings\":{\"title\":\"<span style=\\\"color: #368C29;\\\">\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be <\\/span> \\u0986\\u09aa\\u09a8\\u09bf \\u0993 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b6\\u09bf\\u09b6\\u09c1\\u09b0 \\u099c\\u09a8\\u09cd\\u09af <span style=\\\"color: #368C29;\\\">\\u201c\\u09b8\\u09c1\\u09aa\\u09be\\u09b0\\u09ab\\u09c1\\u09a1\\u201d<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"e6d85a8\",\"settings\":{\"title\":\"\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be \\u098f\\u0995\\u099f\\u09be \\u09b8\\u09c1\\u09aa\\u09be\\u09b0\\u09ab\\u09c1\\u09a1, \\u098f\\u099f\\u09bf\\u0995\\u09c7 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u09b0 \\u0986\\u09a7\\u09be\\u09b0\\u0993 \\u09ac\\u09b2\\u09be \\u09b9\\u09df\\u0964 \\u098f\\u099f\\u09be \\u09b9\\u09b0\\u09ae\\u09cb\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09b2\\u09c7\\u09a8\\u09cd\\u09b8, \\u09a1\\u09be\\u0987\\u099c\\u09c7\\u09b6\\u09a8 \\u0993 \\u09ae\\u09c7\\u099f\\u09be\\u09ac\\u09b2\\u09bf\\u099c\\u09ae\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u099f\\u09be \\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u0993 \\u099a\\u09c1\\u09b2\\u09c7\\u0993 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0985\\u09a8\\u09c7\\u0995 \\u0997\\u09c1\\u09a8\\u0964 \",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"ff0e814\",\"settings\":{\"text\":\"\\u0985\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=fbe9ec8\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5b077ba\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFC37E\",\"shape_divider_top\":\"zigzag\",\"shape_divider_top_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":161,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":93,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"de306bc\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fad08c8\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"314819e\",\"settings\":{\"carousel\":[{\"id\":\"84\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/a4973b1235e381d03cca3995a58e11c5.jpg_750x750.jpg_.webp\"},{\"id\":\"85\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/100-organic-dry-moringa-leaf-powder-500x500-1.webp\"},{\"id\":\"86\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/moringa-leaves-500x500-1.webp\"}],\"thumbnail_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"image_border_color\":\"#E8B541\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"a15846f\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFC37E\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16d9e54\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f68197\",\"settings\":{\"title\":\"\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=7f29ec1\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"ec4e4b0\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"467695a\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"769d3fb\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b6\\u09bf\\u09b6\\u09c1\\u09a6\\u09c7\\u09b0 \\u0985\\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"de592f2\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09cd\\u09a4\\u09a8\\u09cd\\u09af\\u09a6\\u09be\\u09a8\\u0995\\u09be\\u09b0\\u09c0 \\u09ae\\u09be\\u09df\\u09c7\\u09a6\\u09c7\\u09b0 \\u09ac\\u09c1\\u0995\\u09c7\\u09b0 \\u09a6\\u09c1\\u09a7 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0307d68\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0989\\u099a\\u09cd\\u099a \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"cca2a6d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b0\\u09c1\\u099a\\u09bf \\u09ab\\u09c7\\u09b0\\u09be\\u09df\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"9ccff14\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09bf\\u09ae\\u09bf\\u09df\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0d8f142\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"fed7f67\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0985\\u09a8\\u09cd\\u09a7\\u09a4\\u09cd\\u09ac \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"1876337\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ac\\u09df\\u09b8\\u09c7\\u09b0 \\u099b\\u09be\\u09aa \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"f5d270b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_color\":\"#C17E09\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"b26d710\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0c178f9\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09b8\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"626a83c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" \\u09b9\\u09be\\u09b0\\u09cd\\u099f \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"842208d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0993\\u099c\\u09a8 \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c424393\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0995\\u09bf\\u09a1\\u09a8\\u09bf \\u0993 \\u09b2\\u09bf\\u09ad\\u09be\\u09b0 \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"414a3a1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"d55ec96\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0997\\u09cd\\u09af\\u09be\\u09b8\\u09cd\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"e0af607\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u099a\\u09c1\\u09b2 \\u09aa\\u09dc\\u09be \\u09ac\\u09a8\\u09cd\\u09a7 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ff665e9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09c1\\u0996\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u0993 \\u09ae\\u09c7\\u09b8\\u09cd\\u09a4\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"a05adad\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"space_between_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_color\":\"#C17E09\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"50cfa7c\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFC37E\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b1e2dc5\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f579bb\",\"settings\":{\"image\":{\"id\":\"87\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/moringa-powder-100-gm.webp\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":60,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"793427e\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u0985\\u09a5\\u09ac\\u09be \\u0986\\u09b6\\u09c7\\u09aa\\u09be\\u09b6\\u09c7 \\u0995\\u09cb\\u09a5\\u09be\\u0993 \\u09af\\u09a6\\u09bf \\u09b8\\u099c\\u09a8\\u09c7 \\u0997\\u09be\\u099b \\u09a5\\u09be\\u0995\\u09c7 \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u09b8\\u09c7\\u0996\\u09be\\u09a8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09be\\u09a4\\u09be \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0996\\u09be\\u09a6\\u09cd\\u09af \\u09a4\\u09be\\u09b2\\u09bf\\u0995\\u09be\\u09df \\u098f\\u099f\\u09be \\u09b0\\u09be\\u0996\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u0964 \\u09b8\\u09c7\\u099f\\u09be \\u09b8\\u09ae\\u09cd\\u09ad\\u09ac \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a4\\u09be \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0993 \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be\\u0964 \",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_family\":\"Hind Siliguri\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"efc2335\",\"settings\":{\"text\":\"\\u0985\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=fbe9ec8\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"a90df62\",\"settings\":{\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFC37E\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"be009c6\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d64d6d8\",\"settings\":{\"title\":\"\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u0996\\u09be\\u09ac\\u09c7\\u09a8 \\u0993 \\u09b6\\u09bf\\u09b6\\u09c1\\u09a6\\u09c7\\u09b0\\u0993 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09ac\\u09c7\\u09a8  \",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=7f29ec1\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"f028c73\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ab\\u09b2 \\u0985\\u09a5\\u09ac\\u09be \\u09ab\\u09b2\\u09c7\\u09b0 \\u099c\\u09c1\\u09b8 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"aedcea0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09b2 \\u0985\\u09a5\\u09ac\\u09be \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u0995\\u09b0\\u09be \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"bb8fed8\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ad\\u09b0\\u09cd\\u09a4\\u09be \\u09ac\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"3c44ca9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09b0\\u09be\\u09b8\\u09b0\\u09bf \\u099c\\u09c1\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"236467a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09be\\u099b, \\u09ae\\u09be\\u0982\\u09b8 \\u0985\\u09a5\\u09ac\\u09be \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09a4\\u09b0\\u0995\\u09be\\u09b0\\u09c0\\u09a4\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"413526c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a8\\u09c1\\u09a1\\u09c1\\u09b2\\u09b8 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"0d6f2b5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09a7\\u09c1 \\u09a6\\u09bf\\u09df\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"73d9902\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09b2\\u09c7\\u09b0 \\u09ac\\u09dc\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"a275c3c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b0\\u09c1\\u099f\\u09bf \\u0985\\u09a5\\u09ac\\u09be \\u099a\\u09be\\u09aa\\u099f\\u09bf \\u09ac\\u09be\\u09a8\\u09be\\u09a8\\u09cb\\u09b0 \\u09b8\\u09ae\\u09df \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"450edd6\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Baloo Da 2\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_color\":\"#917509\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"d0ce700\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFC37E\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ce0954\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#00000009\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e1b73cb\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"35e8c17\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=26ec5dd\",\"background_color\":\"globals\\/colors?id=fbe9ec8\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"a35bc8b\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFC37E\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d8dd32\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0b0e396\",\"settings\":{\"title\":\"\\u0986\\u09b8\\u09cd\\u09a5\\u09be \\u09b0\\u09be\\u0996\\u09c1\\u09a8 \\u0986\\u09b8\\u09cd\\u09a5\\u09be\\u09df \\u09a5\\u09be\\u0995\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=7f29ec1\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6e3ae6f\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0993 \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"aedcea0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u09a3\\u09cd\\u09af \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"bb8fed8\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u09ab\\u09c7\\u09b0\\u09a4 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3c44ca9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09a4\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"52c64a2\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0996\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u09a8\\u09bf\\u09df\\u09ae\\u09b8\\u09b9 \\u09b0\\u09c7\\u09b8\\u09bf\\u09aa\\u09bf \\u0985\\u09a8\\u09b2\\u09be\\u0987\\u09a8\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"6366393\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Baloo Da 2\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_color\":\"#DC7600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#00000005\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFC37E\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72090b7\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFC37E\",\"__globals__\":{\"_background_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#2ECC71\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#00000012\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5248d0a\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5631','2019','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5633','2019','_elementor_controls_usage','a:8:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:2;s:19:\"image_border_radius\";i:2;s:32:\"image_box_shadow_box_shadow_type\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:9;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:21:\"typography_typography\";i:9;s:22:\"typography_font_weight\";i:8;s:5:\"align\";i:9;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:7;s:22:\"typography_font_family\";i:8;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:3;s:4:\"size\";i:3;s:4:\"link\";i:3;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:33:\"button_box_shadow_box_shadow_type\";i:3;s:28:\"button_box_shadow_box_shadow\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:11;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:2:{s:12:\"border_width\";i:3;s:13:\"border_border\";i:1;}s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:8;s:13:\"content_width\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:9;s:16:\"background_color\";i:9;s:18:\"background_color_b\";i:1;}s:21:\"section_shape_divider\";a:5:{s:17:\"shape_divider_top\";i:2;s:23:\"shape_divider_top_color\";i:1;s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:24:\"shape_divider_top_height\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:6;s:6:\"margin\";i:3;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:2:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:4;s:7:\"divider\";i:2;s:14:\"divider_weight\";i:4;}s:18:\"section_icon_style\";a:3:{s:9:\"icon_size\";i:4;s:11:\"text_indent\";i:4;s:10:\"icon_color\";i:4;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:4;s:27:\"icon_typography_font_family\";i:4;s:25:\"icon_typography_font_size\";i:4;s:27:\"icon_typography_font_weight\";i:4;s:10:\"text_color\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:4;s:21:\"_element_custom_width\";i:4;s:8:\"_padding\";i:2;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5634','2021','wcf-flow-id','2020');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5635','2021','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5636','2021','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5637','2021','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5638','2021','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5639','2021','_elementor_version','3.19.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5640','2021','_elementor_pro_version','3.17.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5641','2021','_edit_lock','1709801100:2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5642','2021','_wp_desired_post_slug','sales-landing-2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5644','2020','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:2021;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2023;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2054;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5645','2022','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5646','2022','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5647','2022','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5648','2022','_elementor_version','3.19.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5649','2022','_elementor_pro_version','3.17.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5651','2023','wcf-flow-id','2020');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5652','2023','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5653','2023','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5654','2023','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5655','2023','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5656','2023','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5657','2023','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5658','2023','wcf-enable-product-variation','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5659','2023','wcf-product-variation-options','popup');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5660','2023','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5661','2023','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5662','2023','wcf-checkout-place-order-button-text','অর্ডার করুন');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5663','2023','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5664','2023','wcf-checkout-place-order-button-price-display','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5665','2023','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5666','2023','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5667','2023','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5668','2023','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5669','2023','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5670','2023','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5671','2023','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5672','2023','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5673','2023','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5674','2023','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5675','2023','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5676','2023','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5677','2023','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5678','2023','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5679','2023','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5680','2023','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5681','2023','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5682','2023','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5683','2023','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5684','2023','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5685','2023','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5686','2023','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5687','2023','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5688','2023','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5689','2023','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5690','2023','_edit_lock','1717922280:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5691','2023','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5692','2023','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5693','2023','_elementor_data','[{\"id\":\"0430b22\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"821fe81\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73cc10c\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"24a73eb\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c4e88da\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a116be\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\",\"align_mobile\":\"center\",\"title_color\":\"#006E3D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c9e6be0\",\"settings\":{\"editor\":\"<p>\\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u0990\\u09a4\\u09bf\\u09b9\\u09cd\\u09af\\u09ac\\u09be\\u09b9\\u09c0 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09be\\u099c\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09b0\\u09cd\\u09a4\\u09be, \\u09ae\\u09c1\\u09a1\\u09bc\\u09bf \\u09ae\\u09be\\u0996\\u09be \\u098f\\u09ac\\u0982 \\u0986\\u099a\\u09be\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0995\\u09cb\\u09a8 \\u09ac\\u09bf\\u0995\\u09b2\\u09cd\\u09aa \\u09a8\\u09c7\\u0987\\u0964 \\u0986\\u09ae\\u09b0\\u09be \\u0985\\u09a8\\u09c7\\u0995\\u09c7\\u0987 \\u098f\\u0987 \\u09a4\\u09c7\\u09b2 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09b2\\u09c7\\u0993 \\u098f\\u09b0 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3 \\u098f\\u09ac\\u0982 \\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be\\u09a8\\u09cb \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0997\\u09c1\\u09a3\\u0997\\u09a4 \\u09ae\\u09be\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u09a4\\u09c7\\u09ae\\u09a8 \\u0985\\u09ac\\u0997\\u09a4 \\u09a8\\u0987\\u0964 \\u09a4\\u09be\\u0987 \\u0986\\u09ae\\u09b0\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u09b8\\u09c7\\u099b\\u09bf \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u0964<\\/p>\",\"align\":\"left\",\"text_color\":\"#050505\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"10a7690\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"far fa-hand-point-down\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#006E3D\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"4e00de5\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9de8987\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"0531c2e\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ee16ede\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e42f4a1\",\"settings\":{\"title\":\"\\u0995\\u09c3\\u09b7\\u09be\\u09a3 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1\\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09a4\\u09c7 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993\\u099f\\u09bf \\u09a6\\u09c7\\u0996\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#08563E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"de99f4c\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"image_overlay\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"0492dd7\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a4671d9\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b49fa4d\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0995\\u09c7\\u09a8 \\u0996\\u09be\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#006E3D\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"3721df9\",\"settings\":{\"editor\":\"<p>\\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u098f\\u0995 \\u0985\\u09a8\\u09cd\\u09af\\u09a4\\u09ae \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09af\\u09bc \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u0964 \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09ab\\u09c1\\u09b2 \\u09af\\u09c7\\u09ae\\u09a8 \\u09b8\\u09cc\\u09a8\\u09cd\\u09a6\\u09b0\\u09cd\\u09af \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09b8\\u09c7 \\u09a4\\u09c7\\u09ae\\u09a8\\u09bf \\u09b8\\u09b0\\u09bf\\u09b7\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09a4\\u09c7\\u09b2 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09a6\\u09c1 \\u0995\\u09b0\\u09c7\\u0964 \\u0985\\u09a8\\u09c7\\u0995 \\u09af\\u09c1\\u0997 \\u0986\\u0997\\u09c7 \\u09a5\\u09c7\\u0995\\u09c7\\u0987 \\u09ac\\u09be\\u0999\\u09be\\u09b2\\u09bf\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u09b8\\u09b9 \\u09ad\\u09b0\\u09cd\\u09a4\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u099a\\u09b2\\u09a8 \\u0986\\u099b\\u09c7\\u0964 \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7\\u09a4 \\u09a4\\u09c7\\u09b2 \\u09ac\\u09b2\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09c2\\u09b0\\u09cd\\u09ac\\u09aa\\u09c1\\u09b0\\u09c1\\u09b7\\u0997\\u09a3 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u0995\\u09c7\\u0987 \\u09ac\\u09c1\\u099d\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u09af\\u09be\\u0987\\u09b9\\u09cb\\u0995, \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09af\\u09c1\\u0997\\u09c7 \\u09ac\\u09be\\u099c\\u09be\\u09b0\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09a8 \\u09b0\\u0995\\u09ae\\u09c7\\u09b0 \\u09a4\\u09c7\\u09b2 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be \\u0997\\u09c7\\u09b2\\u09c7\\u0993 \\u0997\\u09be\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u0996\\u09be \\u098f\\u09ac\\u0982 \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be\\u09b0 \\u0995\\u09be\\u099c\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc \\u098f\\u09ae\\u09a8 \\u09b8\\u09b9\\u099c \\u09b2\\u09cb\\u09ad\\u09cd\\u09af \\u09a4\\u09c7\\u09b2 \\u0986\\u09b0 \\u09a6\\u09cd\\u09ac\\u09bf\\u09a4\\u09c0\\u09af\\u09bc\\u099f\\u09bf \\u09a8\\u09c7\\u0987\\u0964 \\u098f\\u0987 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u099a\\u09be\\u09b9\\u09bf\\u09a6\\u09be \\u098f\\u09a4 \\u09ac\\u099b\\u09b0 \\u09a7\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09b2\\u09bf\\u09a4 \\u0986\\u099b\\u09c7\\u0964<\\/p><p>\\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3\\u09a4 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u098f\\u09a4 \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09af\\u09bc\\u09a4\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a7\\u09be\\u09a8 \\u0995\\u09be\\u09b0\\u09a3 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u098f\\u09ac\\u0982 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3\\u0964 \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7 \\u0995\\u09b0\\u09c7 \\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be\\u09a8\\u09cb \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u098f\\u09ac\\u0982 \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u09b6\\u09bf \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0\\u0964 \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c7\\u09b2 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09a7\\u09c1\\u09a8\\u09bf\\u0995 \\u09aa\\u09cd\\u09b0\\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf\\u09b0 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u0998\\u09be\\u09a8\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u0964 \\u098f\\u09a4\\u09c7 \\u0989\\u099a\\u09cd\\u099a \\u099a\\u09be\\u09aa \\u098f\\u09ac\\u0982 \\u09a4\\u09be\\u09aa\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c7\\u09b2 \\u09a8\\u09bf\\u0983\\u09b8\\u09b0\\u09a3 \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u0964 \\u09aa\\u09cd\\u09b0\\u0995\\u09cd\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u099f\\u09bf \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09b9\\u099c\\u09b8\\u09be\\u09a7\\u09cd\\u09af \\u098f\\u09ac\\u0982 \\u09af\\u09be\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09bf\\u0995 \\u09b9\\u09b2\\u09c7\\u0993 \\u098f\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09a4\\u09c7\\u09b2 \\u0997\\u09c1\\u09a3\\u0997\\u09a4 \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u09a6\\u09bf\\u0995 \\u09a5\\u09c7\\u0995\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09a8\\u09bf\\u09ae\\u09cd\\u09a8 \\u09aa\\u09b0\\u09cd\\u09af\\u09be\\u09af\\u09bc\\u09c7\\u09b0 \\u09b9\\u09af\\u09bc\\u0964<\\/p><p>\\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09bf\\u0995\\u09c7 \\u098f\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u098f\\u0995\\u09a6\\u09ae \\u09ad\\u09be\\u09b2\\u09cb \\u09b9\\u09af\\u09bc \\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09a6\\u09c7\\u0996\\u09a4\\u09c7 \\u0985\\u09a8\\u09c7\\u0995\\u099f\\u09be \\u0987\\u099e\\u09cd\\u099c\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09b2\\u09c1\\u09ac\\u09cd\\u09b0\\u09bf\\u0995\\u09c7\\u09a8\\u09cd\\u099f \\u09ac\\u09be \\u09ae\\u09ac\\u09bf\\u09b2\\u09c7\\u09b0 \\u09ae\\u09a4 \\u09a6\\u09c7\\u0996\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964 \\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09bf\\u0995\\u09c7 \\u0995\\u09ae \\u09a4\\u09be\\u09aa\\u09c7 \\u0985\\u09b0\\u09cd\\u09a5\\u09be\\u09ce \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u09a4\\u09c7 \\u0995\\u09be\\u09a0\\u09c7\\u09b0 \\u0998\\u09be\\u09a8\\u09bf \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09a4\\u09c7\\u09b2 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09b2 \\u0986\\u09a6\\u09b0\\u09cd\\u09b6 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u0964 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u0987 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09a4\\u09c7\\u09b2 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0993 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u09b9\\u09af\\u09bc\\u0964 \\u09a4\\u09be\\u099b\\u09be\\u09a1\\u09bc\\u09be \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u098f\\u09ac\\u0982 \\u09b0\\u0982 \\u098f\\u0995\\u09a6\\u09ae \\u099f\\u09aa \\u0995\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u09af\\u09bc\\u0964 \\u098f\\u0996\\u09be\\u09a8\\u09c7 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf \\u09ac\\u09b2\\u09a4\\u09c7 \\u0995\\u09be\\u09a0\\u09c7\\u09b0 \\u0998\\u09be\\u09a8\\u09bf\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u0995\\u09ae \\u09a4\\u09be\\u09aa\\u09c7 \\u09a4\\u09c7\\u09b2 \\u09a8\\u09bf\\u0983\\u09b8\\u09b0\\u09a3 \\u0995\\u09b0\\u09be\\u0995\\u09c7 \\u09ac\\u09c1\\u099d\\u09be\\u09af\\u09bc\\u0964<\\/p><p>\\u09ae\\u09cb\\u099f\\u0995\\u09a5\\u09be, \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a7\\u09be\\u09a8 \\u0989\\u09a6\\u09cd\\u09a6\\u09c7\\u09b6\\u09cd\\u09af \\u09b9\\u09b2 \\u098f\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u0989\\u09aa\\u09ad\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u098f\\u09ac\\u0982 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u0998\\u09be\\u09a8\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09af\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc \\u09a4\\u09be \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u0993 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09a6\\u09c1 \\u09b9\\u09af\\u09bc \\u09a8\\u09be\\u0964 \\u098f\\u0987 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09ac\\u09be \\u0995\\u09be\\u09a0\\u09c7\\u09b0 \\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u099a\\u09be\\u09b9\\u09bf\\u09a6\\u09be \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u09b6\\u09bf\\u0964 \\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09bf\\u0995\\u09c7 \\u098f\\u0987 \\u09a4\\u09c7\\u09b2 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09af\\u09be \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c7\\u0995 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\u0964<\\/p>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"406c8fe\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"far fa-hand-point-down\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#006E3D\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"ae5b4d7\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6dc3e7f\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f280194\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#006E3D\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"bd1e5a2\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9d11995\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0b248b4\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b6\\u09be\\u09b0\\u09c0\\u09b0\\u09bf\\u0995 \\u09ac\\u09cd\\u09af\\u09a5\\u09be \\u0995\\u09ae\\u09be\\u09af\\u09bc\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"7730a6e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09b8\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c0\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"9689206\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a0\\u09be\\u09a8\\u09cd\\u09a1\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"1eb5201\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b9\\u09be\\u09b0\\u09cd\\u099f \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"6b5ba91\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09be\\u09a8\\u09b8\\u09cd\\u0995\\u09cd\\u09b0\\u09bf\\u09a8 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"73fe3ef\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b6\\u09b0\\u09c0\\u09b0 \\u099a\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"e1baf00\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09ac\\u099c\\u09be\\u09af\\u09bc \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b30153d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b0\\u0995\\u09cd\\u09a4 \\u09b8\\u099e\\u09cd\\u099a\\u09be\\u09b2\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b023077\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u09ac\\u09cd\\u09af\\u09be\\u0995\\u099f\\u09c7\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09b2 \\u0993 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u09ab\\u09be\\u0999\\u09cd\\u0997\\u09be\\u09b2 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8\\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"1d2ff14\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09cd\\u09ae\\u09c3\\u09a4\\u09bf\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"29593aa\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09be\\u0987\\u0997\\u09cd\\u09b0\\u09c7\\u09a8\\u09c7\\u09b0 \\u0995\\u09b7\\u09cd\\u099f \\u0995\\u09ae\\u09be\\u09af\\u09bc\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"faee095\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0993\\u099c\\u09a8 \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"222668c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#FBBA12\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"e82d8ce\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37cad59\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"159166c\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"far fa-hand-point-down\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#006E3D\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"8b0d7dc\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4520d5c\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b37effe\",\"settings\":{\"title\":\"\\u0998\\u09be\\u09a8\\u09bf \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09c7?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#006E3D\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"46ad9ed\",\"settings\":{\"editor\":\"<p>\\u0998\\u09be\\u09a8\\u09bf \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09a8\\u09be\\u09a4\\u09a8\\u09c0 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u0964 \\u0995\\u09be\\u09b0\\u09a3 \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u0985\\u09b2\\u09cd\\u09aa \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u098f\\u09ac\\u0982 \\u0985\\u09b2\\u09cd\\u09aa \\u09aa\\u09b0\\u09bf\\u09b6\\u09cd\\u09b0\\u09ae\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964 \\u09a4\\u09ac\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u09a4\\u09c7 \\u0998\\u09be\\u09a8\\u09bf \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09a4\\u09c7\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09b2\\u09c7 \\u0995\\u09bf\\u099b\\u09c1 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf \\u09ae\\u09c7\\u09a8\\u09c7 \\u099a\\u09b2\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964 \\u09a4\\u09cb \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be \\u09b6\\u09c1\\u0995\\u09bf\\u09af\\u09bc\\u09c7 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09b8\\u09c7\\u09b8 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb \\u0993\\u099c\\u09a8 \\u0995\\u09b0\\u09c7 \\u09aa\\u09c2\\u09b0\\u09cd\\u09ac \\u09aa\\u09cd\\u09b0\\u09b8\\u09cd\\u09a4\\u09c1\\u09a4\\u09bf \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964<\\/p><p>\\u098f\\u09b0\\u09aa\\u09b0 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb \\u09aa\\u09bf\\u09b7\\u09c7 \\u09a8\\u09c7\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u09af\\u09c7\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964 \\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3\\u09a4 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u0995\\u09b2 \\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0995\\u09be\\u09a0 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7\\u0987 \\u0998\\u09be\\u09a8\\u09bf \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964 \\u09a4\\u09ac\\u09c7 \\u09a4\\u09c7\\u0981\\u09a4\\u09c1\\u09b2 \\u0995\\u09be\\u09a0\\u09c7\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u0998\\u09be\\u09a8\\u09bf \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u0989\\u099a\\u09cd\\u099a \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u0964\\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a6\\u09be\\u09a8\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u09af\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb \\u0998\\u09be\\u09a8\\u09bf\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u0997\\u09b0\\u09c1\\u09b0 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af\\u09c7 \\u0998\\u09be\\u09a8\\u09bf\\u09b0 \\u09b9\\u09be\\u09a4\\u09b2 \\u09a7\\u09c0\\u09b0 \\u0997\\u09a4\\u09bf\\u09a4\\u09c7 \\u0998\\u09c1\\u09b0\\u09be\\u09a8\\u09cb \\u09b9\\u09af\\u09bc\\u0964 \\u0995\\u09be\\u09b0\\u09a3 \\u09af\\u09a6\\u09bf \\u0989\\u099a\\u09cd\\u099a \\u0997\\u09a4\\u09bf\\u09a4\\u09c7 \\u0998\\u09c1\\u09b0\\u09be\\u09a8\\u09cb \\u09b9\\u09af\\u09bc \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u09a4\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09a4\\u09be\\u09aa \\u09b8\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u0995\\u09b0\\u09ac\\u09c7 \\u09af\\u09be \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0997\\u09c1\\u09a3\\u0997\\u09a4 \\u09ae\\u09be\\u09a8 \\u09a8\\u09b7\\u09cd\\u099f \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09bf\\u0995\\u09c7 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u09b0 \\u0989\\u09b2\\u0999\\u09cd\\u0998\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964<\\/p><p>\\u09af\\u09be\\u0987\\u09b9\\u09cb\\u0995, \\u098f\\u09ad\\u09be\\u09ac\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u09b9\\u09be\\u09a4\\u09b2 \\u0998\\u09c1\\u09b0\\u09be\\u09a8\\u09cb\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a6\\u09be\\u09a8\\u09be \\u09a7\\u09c0\\u09b0\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u09aa\\u09bf\\u09b7\\u09a4\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7 \\u098f\\u09ac\\u0982 \\u09a4\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u098f\\u0995\\u099f\\u09c1 \\u098f\\u0995\\u099f\\u09c1 \\u0995\\u09b0\\u09c7 \\u09b0\\u09b8 \\u09ac\\u09c7\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u0964 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0\\u09a4\\u09c7 \\u09b8\\u09c7\\u0987 \\u09b0\\u09b8 \\u09ab\\u09bf\\u09b2\\u099f\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a4\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c7\\u09b2 \\u0986\\u09b2\\u09be\\u09a6\\u09be \\u0995\\u09b0\\u09c7 \\u09a4\\u09be \\u09ac\\u09be\\u099c\\u09be\\u09b0\\u099c\\u09be\\u09a4 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\\u0964<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"655f8d3\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"far fa-hand-point-down\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#006E3D\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"4b9feb1\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cfac08\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"92d5176\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"471ab8c\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8db1b4c\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#006E3D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"293f23c\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1\\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1206c76\",\"settings\":{\"before_text\":\"\\u09eb \\u09b2\\u09bf\\u099f\\u09be\\u09b0\",\"highlighted_text\":\"\\u09e7\\u09e9\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\",\"marker_color\":\"#F72A2A\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"d36825d\",\"settings\":{\"title\":\"\\u09b8\\u09c0\\u09ae\\u09bf\\u09a4 \\u09b8\\u09ae\\u09df\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"fbbea08\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2fef3d9\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e437706\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0989\\u09aa\\u09b0 \\u0995\\u09c7\\u09a8 \\u0986\\u09b8\\u09cd\\u09a5\\u09be \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u09a8!\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#006E3D\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"86be329\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7, \\u09a6\\u09c7\\u0996\\u09c7 \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09a8\\u09c7\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"77d6e26\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09a3\\u09cd\\u09af \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0996\\u09be\\u099f\\u09bf, \\u0985\\u09a5\\u09c7\\u09a8\\u099f\\u09bf\\u0995, \\u09ad\\u09c7\\u099c\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"b82b485\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b7\\u09cd\\u09a0\\u09be\\u09a8 \\u0989\\u09b2\\u09be\\u09ae\\u09be\\u09df\\u09c7 \\u0995\\u09c7\\u09b0\\u09be\\u09ae \\u09a6\\u09cd\\u09ac\\u09be\\u09b0\\u09be \\u09aa\\u09b0\\u09bf\\u099a\\u09be\\u09b2\\u09bf\\u09a4 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"57e7c26\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09df\\u09a4\\u09be \\u098f\\u0987 \\u09af\\u09c7, \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b7\\u09cd\\u09a0\\u09be\\u09a8 \\u0995\\u0996\\u09a8\\u09cb\\u0987 \\u09ad\\u09c7\\u099c\\u09be\\u09b2 \\u09aa\\u09a3\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7 \\u09a8\\u09be \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09bf\\u09a4!\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"94eeba6\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FBBA12\",\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"cf48014\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"far fa-hand-point-down\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#006E3D\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e7adf4b\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75c118f\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#006E3D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a3521a6\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"9d37669\",\"settings\":{\"text\":\"01962890890\",\"link\":{\"url\":\"tel:01962890890\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"align_mobile\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FBBA12\",\"hover_animation\":\"pop\",\"button_box_shadow_box_shadow_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"a8a6e8c\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6462466\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#08563E\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d58d663\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b2\\u09c7\\u09b8 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8!\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#006E3D\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"9531dc4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"button_text_color\":\"#000000\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#FBBA12\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"9c79371\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#DADADA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"915d582\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72bce02\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__dynamic__\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5694','2023','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5695','2023','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5696','2023','_oembed_7befe71c04536851b6485e7b012d3f0d','<iframe title=\"Video Placeholder\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5697','2023','_oembed_time_7befe71c04536851b6485e7b012d3f0d','1709469341');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5698','2023','_oembed_42bb877cad8efdfd5ae4e45c26701fc3','{{unknown}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5699','2023','_oembed_f8a21e0e6a462ed42bd0798b2950cb9c','<iframe title=\"Video Placeholder\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5700','2023','_oembed_time_f8a21e0e6a462ed42bd0798b2950cb9c','1710835358');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5701','2023','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5702','2023','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5703','2023','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5704','2023','_oembed_87b947de7716efd8672902a3875e0696','<iframe title=\"Video Placeholder\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5705','2023','_oembed_time_87b947de7716efd8672902a3875e0696','1717922280');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5708','2024','wcf-flow-id','2010');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5709','2024','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5710','2024','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5711','2024','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5712','2024','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5713','2024','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5714','2024','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5715','2024','_edit_lock','1717921733:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5716','2024','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5717','2024','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5718','2024','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5719','2024','_elementor_data','[{\"id\":\"76bbe1e2\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ebcc16a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"44cd926c\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"6db996ea\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"37b80ae0\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"3021c293\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1d00d2a4\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"11e102b\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46b73b7\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e43ef9\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"6299d275\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00000005\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b5b88f2\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40aeb09f\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5720','2024','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5721','2024','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5722','2025','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5723','2025','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5724','2025','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5725','2025','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5726','2025','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5727','2025','_elementor_data','[{\"id\":\"76bbe1e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]}},\"elements\":[{\"id\":\"2ebcc16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"44cd926c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6db996ea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"37b80ae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3021c293\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d00d2a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11e102b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"46b73b7\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"4e43ef9\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6299d275\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00000005\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b5b88f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40aeb09f\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5728','2025','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5729','2025','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5730','2027','wcf-flow-id','2026');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5731','2027','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5732','2027','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5733','2027','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5734','2027','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5735','2027','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5736','2027','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5737','2027','_edit_lock','1717922388:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5738','2027','_elementor_data','[{\"id\":\"9c29464\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"shape_divider_top_color\":\"#DADADA\",\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51f51c9\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3156264\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7fbc454\",\"settings\":{\"before_text\":\"\\u0985\\u09b0\\u099c\\u09bf\\u09a8\\u09be\\u09b2\",\"highlighted_text\":\"Sequence \\u09b2\\u09be\\u0995\\u09cd\\u09b8\\u09be\\u09b0\\u09bf  \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09ab\\u09bf\\u09b8 \\u09ac\\u09be \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u0985\\u09a8\\u09c1\\u09b7\\u09cd\\u09a0\\u09be\\u09a8\\u09c7 \\u09af\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09b8\\u09c7\\u09b0\\u09be \\u099a\\u09df\\u09c7\\u099c \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-3\",\"right\":\"15\",\"bottom\":\"-4\",\"left\":\"15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"words_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"__globals__\":{\"words_color\":\"\",\"marker_color\":\"globals\\/colors?id=5c74819\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"1f45b3b\",\"settings\":{\"slides\":[{\"_id\":\"de40079\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"620eb02\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"204137a\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"slides_per_view_mobile\":\"3\",\"slides_per_view\":\"3\",\"slides_to_scroll\":\"2\",\"pagination\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"media-carousel\",\"elType\":\"widget\"},{\"id\":\"eeae4e3\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"_transform_rotate_3d_hover\":\"yes\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_keep_proportions_hover\":\"\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.7,\"sizes\":[]},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"-6\",\"bottom\":\"-6\",\"left\":\"-6\",\"isLinked\":true},\"_border_border\":\"none\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5c74819\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"5524eb4\",\"settings\":{\"title\":\"\\u098f\\u099f\\u09be \\u0996\\u09c1\\u09ac\\u0987 \\u09b8\\u09ab\\u099f \\u0993 \\u0997\\u09cd\\u09b2\\u09c7\\u099c\\u09bf \\u0995\\u09be\\u09aa\\u09dc\\u09c7\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u0993\\u09df\\u09be\\u09df \\u09aa\\u09b0\\u09a4\\u09c7 \\u0996\\u09c1\\u09ac\\u0987 \\u0986\\u09b0\\u09be\\u09ae\\u09a6\\u09be\\u09df\\u0995\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"title_color\":\"#960000\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a37cfbc\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09e7 \\u09aa\\u09bf\\u09b8\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0  \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09e8\\u09e6\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"highlighted_text\":\"(\\u09e8\\u09ed\\u09ee\\u09e6 \\u099f\\u09be\\u0995\\u09be)\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\",\"__globals__\":{\"marker_color\":\"globals\\/colors?id=5c74819\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"35f4fef\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09e8  \\u09aa\\u09bf\\u09b8\\u09c7\\u09b0 \\u0995\\u09ae\\u09cd\\u09ac\\u09cb \\u0985\\u09ab\\u09be\\u09b0  \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09e9\\u09ef\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"highlighted_text\":\"(\\u09ea\\u09ed\\u09ee\\u09e6 \\u099f\\u09be\\u0995\\u09be)\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"words_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"words_color\":\"#54595F\",\"__globals__\":{\"marker_color\":\"globals\\/colors?id=5c74819\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"55f15a3\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#000000\",\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"_transform_rotate_3d_hover\":\"yes\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_keep_proportions_hover\":\"\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.7,\"sizes\":[]},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"-6\",\"bottom\":\"-6\",\"left\":\"-6\",\"isLinked\":true},\"_border_border\":\"none\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5c74819\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"67f8d68\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"00762bc\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"915675d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2522c90\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0c30a8d\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 Sequence Luxurious \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf \\u0995\\u09cd\\u09b0\\u09df \\u0995\\u09b0\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u0995\\u09bf \\u0995\\u09bf \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=cf5c418\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"b109976\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0996\\u09c1\\u09ac\\u0987 \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u09b8\\u09c7\\u09b2\\u09be\\u0987 \\u09ab\\u09bf\\u09a8\\u09bf\\u09b6\\u09bf\\u0982\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ea19a93\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0995\\u099f\\u09a8 \\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09bf\\u0995\\u09cd\\u09b8\\u09c7\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"d6920dc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0997\\u09cd\\u09af\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"883185d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09c7\\u099f\\u09be\\u09b2 \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09b8\\u09cd\\u09a8\\u09cd\\u09af\\u09be\\u09aa \\u09ac\\u09be\\u099f\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"12d2b66\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u098f\\u0995\\u099a\\u09c7\\u099e\\u09cd\\u099c \\u09aa\\u09b2\\u09bf\\u09b8\\u09bf \\u098f\\u09ad\\u09c7\\u09b2\\u098f\\u09ac\\u09c7\\u09b2\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"71fde9e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u0996\\u09c1\\u09ac \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c\\u09bf\\u0982\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c7036cc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"divider\":\"yes\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_color\":\"#DABE6B\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"59be2bd\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b17dcb\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"d88038c\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ef9819\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b82ed61\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u0987\\u099c \\u0997\\u09be\\u0987\\u09a1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"title_color\":\"#DABE6B\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a6a66e8\",\"settings\":{\"editor\":\"<style>\\ntable, tr, th, td{\\nborder: 1px solid black;\\n}\\n<\\/style>\\n<table>\\n<tbody>\\n<tr>\\n<th style=\\\"text-align: left; color: red;\\\">\\u00a0SIZE\\u00a0 (\\u09ae\\u09be\\u09aa)<\\/th>\\n<th style=\\\"text-align: left; color: red;\\\">\\u09b2\\u0982<\\/th>\\n<th style=\\\"text-align: left; color: red;\\\">\\u09ac\\u09c1\\u0995\\u09c7\\u09b0 \\u09ae\\u09be\\u09aa<\\/th>\\n<\\/tr>\\n<tr>\\n<td>\\u09e9\\u09ee\\/S<\\/td>\\n<td>\\u09e9\\u09ee<\\/td>\\n<td>\\u09ea\\u09e6\\\"<\\/td>\\n<\\/tr>\\n<tr>\\n<td>\\u09ea\\u09e6\\/M<\\/td>\\n<td>\\u09ea\\u09e6<\\/td>\\n<td>\\u09ea\\u09e8\\\"<\\/td>\\n<\\/tr>\\n<tr>\\n<td>\\u09ea\\u09e8\\/L<\\/td>\\n<td>\\u09ea\\u09e8<\\/td>\\n<td>\\u09ea\\u09ea\\\"<\\/td>\\n<\\/tr>\\n<tr>\\n<td>\\u09ea\\u09ea\\/XL<\\/td>\\n<td>\\u09ea\\u09ea<\\/td>\\n<td>\\u09ea\\u09ec\\\"<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\",\"_css_classes\":\"tsize\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"89f59df\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d0e4986\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"292e146\",\"settings\":{\"before_text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a8  \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be,\\u09b8\\u09be\\u0987\\u099c \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0 \\u09b2\\u09bf\\u0996\\u09c7 \",\"highlighted_text\":\"Place Order\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"stroke_width\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"words_color\":\"\",\"marker_color\":\"globals\\/colors?id=5c74819\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5a96ee9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"466d0db\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c9e5f3a\",\"settings\":{\"title\":\"\\u09af\\u09c7\\u0995\\u09cb\\u09a8\\u09cb \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=cf5c418\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7d98406\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"btn_background_color_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_element_id\":\"order\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-order\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"900\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"heading_typography_font_weight\":\"600\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Kdam Thmor Pro\",\"buttons_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"buttons_typography_font_weight\":\"800\",\"buttons_typography_font_style\":\"normal\",\"button_text_color\":\"#FFFFFF\",\"product_option_section_title_text\":\"\\u0995\\u09cb\\u09a8\\u099f\\u09be \\u0995\\u09cb\\u09a8\\u099f\\u09be \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8 \\u09a8\\u09bf\\u099a \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8  \",\"global_primary_color\":\"#E71919\",\"global_text_color\":\"#000000\",\"global_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"global_typography_font_style\":\"normal\",\"global_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"global_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"global_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.3,\"sizes\":[]},\"heading_text_color\":\"#000000\",\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"heading_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"heading_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.6,\"sizes\":[]},\"heading_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"input_color\":\"#A98E8E\",\"input_border_color\":\"#000000\",\"input_radius_mobile\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"49\",\"bottom\":\"49\",\"left\":\"49\",\"isLinked\":true},\"payment_section_text_color\":\"#000000\",\"payment_section_desc_color\":\"#000000\",\"payment_section_bg_color\":\"#D7D7D7\",\"payment_info_bg_color\":\"#FFFFFF\",\"payment_section_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"payment_section_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"payment_section_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"product_bg_color\":\"#F4F4F4\",\"product_option_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"highlight_product_border_size\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"highlight_product_border_radius\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"highlight_flag_text_color\":\"#000000\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.04)\"},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=5c74819\",\"btn_background_color_color\":\"globals\\/colors?id=5c74819\"},\"btn_border_border\":\"none\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"checkout-form\"},{\"id\":\"a4f5d0b\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=5c74819\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c11f978\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01303832348\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"background_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"button_text_color\":\"#DABE6B\",\"align_mobile\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"0910738\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3eb850c\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"dcdc999\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a0b378\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d7f131f\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5739','2027','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5740','2027','_oembed_f8a21e0e6a462ed42bd0798b2950cb9c','<iframe title=\"Video Placeholder\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5741','2027','_oembed_time_f8a21e0e6a462ed42bd0798b2950cb9c','1706610611');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5742','2027','_oembed_7befe71c04536851b6485e7b012d3f0d','<iframe title=\"Video Placeholder\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5743','2027','_oembed_time_7befe71c04536851b6485e7b012d3f0d','1706613059');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5744','2027','wcf_fields_billing','a:12:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}s:26:\"billing___________________\";a:17:{s:4:\"type\";s:6:\"number\";s:5:\"label\";s:46:\"সাইজ কোনটা লাগবে??\";s:11:\"placeholder\";s:0:\"\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:11:\"label_class\";a:0:{}s:13:\"show_in_email\";s:0:\"\";s:8:\"required\";s:3:\"yes\";s:6:\"custom\";b:1;s:7:\"default\";s:0:\"\";s:7:\"options\";s:0:\"\";s:10:\"date_input\";s:14:\"datetime-local\";s:9:\"optimized\";s:0:\"\";s:5:\"width\";s:3:\"100\";s:4:\"name\";s:26:\"billing___________________\";s:3:\"key\";s:26:\"billing___________________\";s:7:\"enabled\";s:3:\"yes\";s:17:\"custom_attributes\";a:2:{s:3:\"min\";i:0;s:3:\"max\";i:0;}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5745','2027','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5746','2027','wcf-checkout-place-order-button-text','অর্ডার করুন');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5747','2027','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5748','2027','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5749','2027','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5750','2027','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5751','2027','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5752','2027','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5753','2027','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5754','2027','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5755','2027','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5756','2027','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5757','2027','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5758','2027','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5759','2027','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5760','2027','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5761','2027','wcf-enable-checkout-field-validation-text','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5762','2027','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5763','2027','wcf_field_order_billing','a:12:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:26:\"billing___________________\";a:18:{s:4:\"type\";s:6:\"number\";s:5:\"label\";s:46:\"সাইজ কোনটা লাগবে??\";s:11:\"placeholder\";s:0:\"\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:11:\"label_class\";a:0:{}s:13:\"show_in_email\";b:0;s:8:\"required\";b:1;s:6:\"custom\";b:1;s:7:\"default\";s:0:\"\";s:7:\"options\";s:0:\"\";s:10:\"date_input\";s:14:\"datetime-local\";s:9:\"optimized\";b:0;s:5:\"width\";i:100;s:4:\"name\";s:26:\"billing___________________\";s:3:\"key\";s:26:\"billing___________________\";s:7:\"enabled\";b:1;s:17:\"custom_attributes\";a:2:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"0\";}s:8:\"priority\";i:90;}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:20:\"সাইজ কত?\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:120;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5764','2027','wcf_field_order_shipping','a:9:{s:19:\"shipping_first_name\";a:11:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_1\";a:11:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"shipping_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:14:\"shipping_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"shipping_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5765','2027','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5766','2027','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5767','2027','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5768','2027','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5769','2027','wcf-enable-product-variation','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5770','2027','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5771','2027','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5772','2027','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5773','2027','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5774','2027','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5775','2027','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5776','2027','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5777','2027','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5778','2027','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5779','2027','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5780','2027','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5781','2027','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5782','2027','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5783','2027','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5786','2026','wcf-steps','a:2:{i:0;a:3:{s:2:\"id\";i:2027;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:2033;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5787','2028','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5788','2028','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5789','2028','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5790','2028','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5791','2028','_elementor_data','[{\"id\":\"9c29464\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"shape_divider_top_color\":\"#DADADA\",\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51f51c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3156264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fbc454\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u0985\\u09b0\\u099c\\u09bf\\u09a8\\u09be\\u09b2\",\"highlighted_text\":\"Sequence \\u09b2\\u09be\\u0995\\u09cd\\u09b8\\u09be\\u09b0\\u09bf  \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09ab\\u09bf\\u09b8 \\u09ac\\u09be \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u0985\\u09a8\\u09c1\\u09b7\\u09cd\\u09a0\\u09be\\u09a8\\u09c7 \\u09af\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09b8\\u09c7\\u09b0\\u09be \\u099a\\u09df\\u09c7\\u099c \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-3\",\"right\":\"15\",\"bottom\":\"-4\",\"left\":\"15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"words_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"__globals__\":{\"words_color\":\"\",\"marker_color\":\"globals\\/colors?id=5c74819\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"1f45b3b\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"de40079\",\"image\":{\"id\":504,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/IMG-20240311-WA0157-1.jpg\"}},{\"_id\":\"620eb02\",\"image\":{\"id\":505,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/IMG-20240311-WA0158.jpg\"}},{\"_id\":\"204137a\",\"image\":{\"id\":506,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/IMG-20240311-WA0156.jpg\"}}],\"slides_per_view_mobile\":\"3\",\"slides_per_view\":\"3\",\"slides_to_scroll\":\"2\",\"pagination\":\"\"},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"eeae4e3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"_transform_rotate_3d_hover\":\"yes\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_keep_proportions_hover\":\"\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.7,\"sizes\":[]},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"-6\",\"bottom\":\"-6\",\"left\":\"-6\",\"isLinked\":true},\"_border_border\":\"none\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5c74819\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5524eb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u099f\\u09be \\u0996\\u09c1\\u09ac\\u0987 \\u09b8\\u09ab\\u099f \\u0993 \\u0997\\u09cd\\u09b2\\u09c7\\u099c\\u09bf \\u0995\\u09be\\u09aa\\u09dc\\u09c7\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u0993\\u09df\\u09be\\u09df \\u09aa\\u09b0\\u09a4\\u09c7 \\u0996\\u09c1\\u09ac\\u0987 \\u0986\\u09b0\\u09be\\u09ae\\u09a6\\u09be\\u09df\\u0995\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"title_color\":\"#960000\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a37cfbc\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09e7 \\u09aa\\u09bf\\u09b8\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0  \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09e8\\u09e6\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"highlighted_text\":\"(\\u09e8\\u09ed\\u09ee\\u09e6 \\u099f\\u09be\\u0995\\u09be)\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\",\"__globals__\":{\"marker_color\":\"globals\\/colors?id=5c74819\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"35f4fef\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09e8  \\u09aa\\u09bf\\u09b8\\u09c7\\u09b0 \\u0995\\u09ae\\u09cd\\u09ac\\u09cb \\u0985\\u09ab\\u09be\\u09b0  \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09e9\\u09ef\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"highlighted_text\":\"(\\u09ea\\u09ed\\u09ee\\u09e6 \\u099f\\u09be\\u0995\\u09be)\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"words_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"words_color\":\"#54595F\",\"__globals__\":{\"marker_color\":\"globals\\/colors?id=5c74819\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"55f15a3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#000000\",\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"_transform_rotate_3d_hover\":\"yes\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_keep_proportions_hover\":\"\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.7,\"sizes\":[]},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"-6\",\"bottom\":\"-6\",\"left\":\"-6\",\"isLinked\":true},\"_border_border\":\"none\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5c74819\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67f8d68\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"00762bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"915675d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2522c90\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"0c30a8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 Sequence Luxurious \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf \\u0995\\u09cd\\u09b0\\u09df \\u0995\\u09b0\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u0995\\u09bf \\u0995\\u09bf \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=cf5c418\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b109976\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0996\\u09c1\\u09ac\\u0987 \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u09b8\\u09c7\\u09b2\\u09be\\u0987 \\u09ab\\u09bf\\u09a8\\u09bf\\u09b6\\u09bf\\u0982\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ea19a93\"},{\"text\":\"\\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0995\\u099f\\u09a8 \\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09bf\\u0995\\u09cd\\u09b8\\u09c7\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"d6920dc\"},{\"text\":\"\\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0997\\u09cd\\u09af\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"883185d\"},{\"text\":\"\\u09ae\\u09c7\\u099f\\u09be\\u09b2 \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09b8\\u09cd\\u09a8\\u09cd\\u09af\\u09be\\u09aa \\u09ac\\u09be\\u099f\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"12d2b66\"},{\"text\":\"\\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u098f\\u0995\\u099a\\u09c7\\u099e\\u09cd\\u099c \\u09aa\\u09b2\\u09bf\\u09b8\\u09bf \\u098f\\u09ad\\u09c7\\u09b2\\u098f\\u09ac\\u09c7\\u09b2\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"71fde9e\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u0996\\u09c1\\u09ac \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c\\u09bf\\u0982\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c7036cc\"}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"divider\":\"yes\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"icon_color\":\"#DABE6B\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"59be2bd\",\"elType\":\"section\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b17dcb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"d88038c\",\"elType\":\"section\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ef9819\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b82ed61\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u0987\\u099c \\u0997\\u09be\\u0987\\u09a1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"title_color\":\"#DABE6B\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6a66e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<style>\\ntable, tr, th, td{\\nborder: 1px solid black;\\n}\\n<\\/style>\\n<table>\\n<tbody>\\n<tr>\\n<th style=\\\"text-align: left; color: red;\\\">\\u00a0SIZE\\u00a0 (\\u09ae\\u09be\\u09aa)<\\/th>\\n<th style=\\\"text-align: left; color: red;\\\">\\u09b2\\u0982<\\/th>\\n<th style=\\\"text-align: left; color: red;\\\">\\u09ac\\u09c1\\u0995\\u09c7\\u09b0 \\u09ae\\u09be\\u09aa<\\/th>\\n<\\/tr>\\n<tr>\\n<td>\\u09e9\\u09ee\\/S<\\/td>\\n<td>\\u09e9\\u09ee<\\/td>\\n<td>\\u09ea\\u09e6\\\"<\\/td>\\n<\\/tr>\\n<tr>\\n<td>\\u09ea\\u09e6\\/M<\\/td>\\n<td>\\u09ea\\u09e6<\\/td>\\n<td>\\u09ea\\u09e8\\\"<\\/td>\\n<\\/tr>\\n<tr>\\n<td>\\u09ea\\u09e8\\/L<\\/td>\\n<td>\\u09ea\\u09e8<\\/td>\\n<td>\\u09ea\\u09ea\\\"<\\/td>\\n<\\/tr>\\n<tr>\\n<td>\\u09ea\\u09ea\\/XL<\\/td>\\n<td>\\u09ea\\u09ea<\\/td>\\n<td>\\u09ea\\u09ec\\\"<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\",\"_css_classes\":\"tsize\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"89f59df\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d0e4986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"292e146\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a8  \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be,\\u09b8\\u09be\\u0987\\u099c \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0 \\u09b2\\u09bf\\u0996\\u09c7 \",\"highlighted_text\":\"Place Order\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"stroke_width\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"words_color\":\"\",\"marker_color\":\"globals\\/colors?id=5c74819\"}},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a96ee9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"466d0db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9e5f3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09af\\u09c7\\u0995\\u09cb\\u09a8\\u09cb \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=cf5c418\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d98406\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"btn_background_color_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_element_id\":\"order\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-order\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"900\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"heading_typography_font_weight\":\"600\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Kdam Thmor Pro\",\"buttons_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"buttons_typography_font_weight\":\"800\",\"buttons_typography_font_style\":\"normal\",\"button_text_color\":\"#FFFFFF\",\"product_option_section_title_text\":\"\\u0995\\u09cb\\u09a8\\u099f\\u09be \\u0995\\u09cb\\u09a8\\u099f\\u09be \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8 \\u09a8\\u09bf\\u099a \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8  \",\"global_primary_color\":\"#E71919\",\"global_text_color\":\"#000000\",\"global_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"global_typography_font_style\":\"normal\",\"global_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"global_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"global_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.3,\"sizes\":[]},\"heading_text_color\":\"#000000\",\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"heading_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"heading_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.6,\"sizes\":[]},\"heading_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"input_color\":\"#A98E8E\",\"input_border_color\":\"#000000\",\"input_radius_mobile\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"49\",\"bottom\":\"49\",\"left\":\"49\",\"isLinked\":true},\"payment_section_text_color\":\"#000000\",\"payment_section_desc_color\":\"#000000\",\"payment_section_bg_color\":\"#D7D7D7\",\"payment_info_bg_color\":\"#FFFFFF\",\"payment_section_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"payment_section_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"payment_section_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"product_bg_color\":\"#F4F4F4\",\"product_option_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"highlight_product_border_size\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"highlight_product_border_radius\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"highlight_flag_text_color\":\"#000000\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.04)\"},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=5c74819\",\"btn_background_color_color\":\"globals\\/colors?id=5c74819\"},\"btn_border_border\":\"none\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"checkout-form\"},{\"id\":\"a4f5d0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=5c74819\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c11f978\",\"elType\":\"widget\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01303832348\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"background_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"button_text_color\":\"#DABE6B\",\"align_mobile\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0910738\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3eb850c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"dcdc999\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7a0b378\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d7f131f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5792','2028','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5793','2028','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5794','2028','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5796','2028','_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:11:\"before_text\";i:4;s:16:\"highlighted_text\";i:4;s:10:\"after_text\";i:2;s:6:\"marker\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_style_text\";a:10:{s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:4;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:4;s:28:\"title_typography_font_weight\";i:4;s:28:\"title_typography_line_height\";i:1;s:27:\"words_typography_typography\";i:3;s:28:\"words_typography_font_family\";i:3;s:28:\"words_typography_font_weight\";i:3;s:11:\"words_color\";i:1;}s:20:\"section_style_marker\";a:1:{s:12:\"stroke_width\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:14:\"media-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"section_slides\";a:4:{s:6:\"slides\";i:1;s:22:\"slides_per_view_mobile\";i:1;s:15:\"slides_per_view\";i:1;s:16:\"slides_to_scroll\";i:1;}s:26:\"section_additional_options\";a:1:{s:10:\"pagination\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:3;s:4:\"link\";i:3;s:11:\"icon_indent\";i:2;s:4:\"size\";i:1;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:12:\"align_mobile\";i:3;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:16:\"background_color\";i:1;s:25:\"typography_letter_spacing\";i:1;s:17:\"button_text_color\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}s:18:\"_section_transform\";a:11:{s:31:\"_transform_rotateZ_effect_hover\";i:2;s:26:\"_transform_rotate_3d_hover\";i:2;s:31:\"_transform_rotateX_effect_hover\";i:2;s:31:\"_transform_rotateY_effect_hover\";i:2;s:35:\"_transform_perspective_effect_hover\";i:2;s:34:\"_transform_translateX_effect_hover\";i:2;s:34:\"_transform_translateY_effect_hover\";i:2;s:33:\"_transform_keep_proportions_hover\";i:2;s:29:\"_transform_scale_effect_hover\";i:2;s:30:\"_transform_scaleX_effect_hover\";i:2;s:30:\"_transform_scaleY_effect_hover\";i:2;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:2;s:24:\"_border_hover_transition\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:11:\"title_color\";i:2;s:22:\"typography_line_height\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:3;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}s:21:\"section_shape_divider\";a:6:{s:23:\"shape_divider_top_color\";i:1;s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:5;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_text_style\";a:7:{s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;s:27:\"icon_typography_line_height\";i:1;s:30:\"icon_typography_letter_spacing\";i:1;s:10:\"text_color\";i:1;}s:17:\"section_icon_list\";a:1:{s:7:\"divider\";i:1;}s:18:\"section_icon_style\";a:5:{s:9:\"icon_size\";i:1;s:11:\"text_indent\";i:1;s:15:\"icon_self_align\";i:1;s:24:\"icon_self_vertical_align\";i:1;s:10:\"icon_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:14:\"_border_radius\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5797','2029','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5798','2029','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5799','2029','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5800','2029','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5801','2029','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5802','2029','_elementor_data','[{\"id\":\"97cb241\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F5C9C9\",\"shape_divider_top\":\"drops\",\"shape_divider_top_color\":\"#FAA8A8\",\"shape_divider_bottom\":\"zigzag\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":153,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[{\"id\":\"768689e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2a35d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":177,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"db545ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed \\u09a6\\u09bf\\u09a8\\u09c7\\u0987 \\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09ad\\u09be\\u09ac \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u0995\\u09b0\\u09c1\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a8 \\u0997\\u09cb\\u09b2\\u09be\\u09aa\\u09c0 !!\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"align\":\"center\",\"title_color\":\"#EB1C54\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f787a8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#EB1C54\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"korian-product\",\"custom_css\":\".korian-product{\\n    margin: 0 20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n}\\n\\n@media only screen and (max-width: 767px) {\\n  .korian-product {\\n    margin: 2{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n  }\\n}\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66d94a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"660d4b5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"500\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_background_hover_color\":\"#B60031\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#B60031\",\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\",\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\"},\"align_mobile\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"41\",\"bottom\":\"8\",\"left\":\"41\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e25a07\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#B60031\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#EB1C54\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c8bcee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36aad05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u09ab\\u09cd\\u09b0\\u09c0 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09b6\\u09c1\\u09a7\\u09c1\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#EB1C54\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d11fed\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFBCBC\"},\"elements\":[{\"id\":\"2a84ad3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc3398e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/gqLL4bWJh9U\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"controls\":\"\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_overlay\":{\"id\":1053,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-7-1.png\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"26\",\"bottom\":\"26\",\"left\":\"26\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"d41b7fe\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":25,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#EB1C54\",\"weight\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4d82fa\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"content_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFBCBC\"},\"elements\":[{\"id\":\"3316a50\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df63cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995\\u099f\\u09bf \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"22\",\"bottom\":\"-6\",\"left\":\"22\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"19\",\"bottom\":\"9\",\"left\":\"19\",\"isLinked\":false},\"align_mobile\":\"center\",\"_element_vertical_align_mobile\":\"center\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"title_color\":\"#EB1C54\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b1b753\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1054,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-3.jpg\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"2\",\"bottom\":\"-17\",\"left\":\"2\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6282600\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09a0\\u09cb\\u099f \\u09ab\\u09be\\u099f\\u09be \\u099c\\u09a8\\u09bf\\u09a4 \\u09b8\\u0995\\u09b2 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"cfafbd5\"},{\"text\":\"\\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u09aa\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u09a8\\u09c7\\u09a8\\u09cd\\u099f\\u09b2\\u09c0 \\u0997\\u09cb\\u09b2\\u09be\\u09aa\\u09c0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"94967e0\"},{\"text\":\"\\u09ae\\u09b0\\u09be \\u099a\\u09be\\u09ae\\u09a1\\u09bc\\u09be \\u0989\\u09a0\\u09bf\\u09af\\u09bc\\u09c7 \\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u09a3\\u09ac\\u09a8\\u09cd\\u09a4\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"fbe2827\"},{\"text\":\"\\u099b\\u09c7\\u09b2\\u09c7 \\u0993 \\u09ae\\u09c7\\u09af\\u09bc\\u09c7 \\u09b8\\u09ac\\u09be\\u0987 \\u098f\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"6260f32\"},{\"text\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed \\u09a6\\u09bf\\u09a8\\u09c7 \\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u09ac\\u09cd\\u09b2\\u09be\\u0995\\u09bf\\u09b6 \\u09ad\\u09be\\u09ac \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"ba99ec5\"},{\"text\":\"\\u09a6\\u09c0\\u09b0\\u09cd\\u0998 \\u09b8\\u09ae\\u09af\\u09bc \\u09a7\\u09b0\\u09c7 \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09b6\\u09a8 \\u09a7\\u09b0\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"49a9efb\"},{\"text\":\"\\u098f\\u09b0 \\u09ab\\u09cd\\u09b0\\u09c7\\u0997\\u09a8\\u09c7\\u09a8\\u09cd\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ae\\u09a8\\u0995\\u09c7 \\u09b8\\u09a4\\u09c7\\u099c \\u0995\\u09b0\\u09c7 \\u09a4\\u09c1\\u09b2\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"f5388d2\"},{\"text\":\"\\u09a6\\u09c0\\u09b0\\u09cd\\u0998\\u09a6\\u09bf\\u09a8 \\u09b2\\u09bf\\u09aa\\u09cd\\u09b8\\u099f\\u09bf\\u0995 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0993 \\u09b8\\u09bf\\u0997\\u09be\\u09b0\\u09c7\\u099f \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"c33241b\"},{\"text\":\"\\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u09af\\u09c7 \\u0995\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac \\u09b9\\u09af\\u09bc \\u09a4\\u09be \\u09aa\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u09a8\\u09c7\\u09a8\\u09cd\\u099f\\u09b2\\u09c0 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"a0cb2e3\"},{\"text\":\"\\u09a1\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u099f\\u09cb\\u09b2\\u09cb\\u099c\\u09bf\\u09b8\\u09cd\\u099f \\u09a6\\u09cd\\u09ac\\u09be\\u09b0\\u09be \\u099f\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09a1 \\u09b9\\u0993\\u09af\\u09bc\\u09be\\u09af\\u09bc \\u09b8\\u09c7\\u09a8\\u09b8\\u09bf\\u099f\\u09bf\\u09ad  \\u09b8\\u09cd\\u0995\\u09bf\\u09a8\\u09c7 \\u0995\\u09cb\\u09a8\\u09b0\\u09c2\\u09aa \\u0987\\u09b0\\u09bf\\u099f\\u09c7\\u09b6\\u09a8 \\u09b8\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u0995\\u09b0\\u09c7 \\u09a8\\u09be\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"c650f51\"}],\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"38b516b\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":25,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#EB1C54\",\"weight\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"de9a14f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0041068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b060a36\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#EB1C54\",\"border_radius\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"korian-product\",\"custom_css\":\".korian-product{\\n    margin: 0 20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n}\\n\\n@media only screen and (max-width: 767px) {\\n  .korian-product {\\n    margin: 2{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n  }\\n}\",\"background_background\":\"classic\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"14d9463\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":20,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61a0cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1055,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/strawberry-2.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1f3a869\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.331,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"bef9dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0987\\u09a8\\u0997\\u09cd\\u09b0\\u09c7\\u09a1\\u09bf\\u09df\\u09c7\\u09a8\\u09cd\\u099f\\u09b8 \\u0995\\u09c0?\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#EB1A52\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"title_color\":\"#EB1C54\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d3f848e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"fbcd787\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1055,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/strawberry-2.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"098aa8b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"11\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"78542b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f56fdbb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b2\\u09cd\\u09af\\u09be\\u09a8\\u09c7\\u0987\\u099c \\u09b2\\u09bf\\u09aa \\u09b8\\u09cd\\u09b2\\u09bf\\u09aa\\u09bf\\u0982 \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09b9\\u09b2 \\u098f\\u0995\\u099f\\u09bf \\u09b2\\u09bf\\u09ad-\\u0985\\u09a8 \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09af\\u09be  \\u09b0\\u09be\\u09a4\\u09be\\u09b0\\u09be\\u09a4\\u09bf \\u09a0\\u09cb\\u0981\\u099f\\u0995\\u09c7 \\u09aa\\u09cd\\u09b0\\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u09a6\\u09c7\\u09df \\u098f\\u09ac\\u0982 \\u09ae\\u09df\\u09b6\\u09cd\\u099a\\u09be\\u09b0\\u09be\\u0987\\u099c \\u0995\\u09b0\\u09c7\\u0964  \\u09b9\\u09be\\u0987\\u09b2\\u09c1\\u09b0\\u09cb\\u09a8\\u09bf\\u0995 \\u0985\\u09cd\\u09af\\u09be\\u09b8\\u09bf\\u09a1 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09bf\\u0982, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2  \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09af\\u09be \\u098f\\u0995\\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7  \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u0986\\u09b0\\u09cd\\u09a6\\u09cd\\u09b0\\u09a4\\u09be \\u0986\\u099f\\u0995\\u09be\\u09a4\\u09c7 \\u09ac\\u09be\\u09a7\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"cfafbd5\"},{\"text\":\"\\u098f\\u0987 \\u09b2\\u09bf\\u09aa \\u09b8\\u09cd\\u09b2\\u09bf\\u09aa\\u09bf\\u0982 \\u09ae\\u09be\\u09b8\\u09cd\\u0995\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u09a8\\u09b0\\u09ae \\u099f\\u09c7\\u0995\\u09cd\\u09b8\\u099a\\u09be\\u09b0 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09af\\u09be  \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09b6\\u09cb\\u09b7\\u09a3\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0998\\u09a8\\u09bf\\u09b7\\u09cd\\u09a0\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09c7 \\u09af\\u09be\\u09df\\u0964  \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f\\u09c7 \\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7, \\u09ac\\u09c7\\u09b0\\u09bf \\u09ae\\u09bf\\u0995\\u09cd\\u09b8  \\u0995\\u09ae\\u09aa\\u09cd\\u09b2\\u09c7\\u0995\\u09cd\\u09b8 \\u09b0\\u09be\\u09b8\\u09cd\\u09aa\\u09ac\\u09c7\\u09b0\\u09bf\\u09b0 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf \\u098f\\u09ac\\u0982  \\u09b8\\u09c1\\u0997\\u09a8\\u09cd\\u09a7\\u09bf \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"17c688d\"}],\"space_between\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_vertical_offset_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"divider\":\"yes\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1fd0ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFB3B3\"},\"elements\":[{\"id\":\"6b9d7ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4168cbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"22\",\"bottom\":\"-2\",\"left\":\"22\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"align_mobile\":\"center\",\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"title_color\":\"#EB1C54\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93ee357\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1056,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-2.jpg\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f4d0f88\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09cd\\u09b2\\u09bf\\u0995\\u09c7\\u099f\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7,\\u09b8\\u09a8\\u09cd\\u09a7\\u09cd\\u09af\\u09be\\u09df \\u09a0\\u09cb\\u0981\\u099f\\u09c7 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09bf\\u0982 \\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09b2\\u09be\\u0997\\u09be\\u09a8 \\u098f\\u09ac\\u0982 \\u09b8\\u09be\\u09b0\\u09be\\u09b0\\u09be\\u09a4 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a6\\u09bf\\u09a8\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7 \\u0986\\u09b2\\u09a4\\u09cb \\u0995\\u09b0\\u09c7 \\u09ae\\u09c1\\u099b\\u09c1\\u09a8 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"align\":\"center\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bd7ffd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FF7E7E\"},\"elements\":[{\"id\":\"6ec6a1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e9a5ed8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"align_mobile\":\"center\",\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"title_color\":\"#EB1C54\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb2be6d\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1057,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-4-1-2.jpg\"},{\"id\":1058,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-5-1-1-2.jpg\"},{\"id\":1059,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-6-2.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"gallery_vertical_align\":\"center\",\"image_spacing\":\"custom\",\"image_border_color\":\"#EB1C54\",\"_border_border\":\"solid\",\"_border_color\":\"#EB1C54\",\"dots_position\":\"inside\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d91e9c8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-26\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5dfe1bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e45b10c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09b2 \\u0995\\u09b0\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align_mobile\":\"center\",\"_element_width_mobile\":\"inherit\",\"title_color\":\"#EB1C54\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f4c191\",\"elType\":\"widget\",\"settings\":{\"text\":\"01819000000\",\"align\":\"center\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bensen\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_radius\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_shadow_text_shadow_type\":\"yes\",\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D0063C\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-2\",\"bottom\":\"-6\",\"left\":\"-2\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#EB1C54\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2667048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1060,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/new-png-1-768x185-1-2.png\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9b3650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[{\"id\":\"61efb42\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea8eb4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#EB1C54\",\"border_radius\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"text_align\":\"left\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56a5c6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"content_position_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de42d\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\",\"highlighted_text\":\"\\u09e7\\u09e7\\u09eb\\u09e6 \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker\":\"diagonal\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"marker_color\":\"#EB1C54\",\"title_color\":\"#EB1C54\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_weight\":\"600\",\"words_color\":\"#EB1C54\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":true},{\"id\":\"6cc2f5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"content_position_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba595de\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b6\\u09c1\\u09a7\\u09c1\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af<\\/br><span style=\\\"font-size: 45px; color:#EB1C54\\\">\\u09ed\\u09eb\\u09e6\\u099f\\u09be\\u0995\\u09be<\\/span>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_border_color\":\"#EB1C54\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7eefc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#EB1C54\",\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CC0339\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"096afe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"349b72e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u099b\\u09be\\u09dc\\u09be \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#EB1C54\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#CC0339\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ce1f46\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F7B6B6\"},\"elements\":[{\"id\":\"9263f48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2549b4f\",\"elType\":\"widget\",\"settings\":{\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"layout\":\"two-column\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"global_typography_typography\":\"custom\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#CC0339\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"global_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"700\",\"_element_id\":\"order\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed539f7\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6df7726\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9376935\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5803','2029','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5804','2029','_elementor_controls_usage','a:11:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:6;s:10:\"image_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:4;s:19:\"image_border_radius\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:10;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:21:\"typography_typography\";i:10;s:22:\"typography_font_family\";i:10;s:22:\"typography_font_weight\";i:10;s:5:\"align\";i:10;s:11:\"title_color\";i:10;s:20:\"typography_font_size\";i:10;s:22:\"typography_line_height\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:8;s:21:\"_element_width_mobile\";i:3;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:8;s:13:\"_border_width\";i:7;s:13:\"_border_color\";i:8;s:14:\"_border_radius\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:2;s:4:\"size\";i:2;s:4:\"link\";i:2;s:11:\"icon_indent\";i:1;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:13:\"border_radius\";i:2;s:29:\"button_background_hover_color\";i:1;s:13:\"border_border\";i:2;s:12:\"border_width\";i:1;s:12:\"border_color\";i:2;s:12:\"text_padding\";i:1;s:12:\"align_mobile\";i:2;s:28:\"text_shadow_text_shadow_type\";i:2;s:33:\"button_box_shadow_box_shadow_type\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:19;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:14;s:16:\"content_position\";i:2;s:6:\"layout\";i:2;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:5:{s:14:\"section_border\";a:5:{s:12:\"border_width\";i:4;s:12:\"border_color\";i:5;s:13:\"border_radius\";i:4;s:21:\"box_shadow_box_shadow\";i:2;s:13:\"border_border\";i:3;}s:12:\"section_typo\";a:1:{s:10:\"text_align\";i:3;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:8;}s:21:\"section_shape_divider\";a:5:{s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:8;s:7:\"padding\";i:6;s:11:\"css_classes\";i:2;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:6:{s:11:\"youtube_url\";i:1;s:8:\"autoplay\";i:1;s:14:\"play_on_mobile\";i:1;s:8:\"controls\";i:1;s:14:\"modestbranding\";i:1;s:10:\"yt_privacy\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"style\";i:2;s:5:\"width\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:2;s:6:\"weight\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_icon_style\";a:3:{s:9:\"icon_size\";i:2;s:24:\"icon_self_vertical_align\";i:1;s:11:\"text_indent\";i:1;}s:18:\"section_text_style\";a:6:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:10:\"text_color\";i:2;s:27:\"icon_typography_line_height\";i:2;}s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:2;s:7:\"divider\";i:2;s:10:\"icon_align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:3:{s:22:\"gallery_vertical_align\";i:1;s:13:\"image_spacing\";i:1;s:18:\"image_border_color\";i:1;}s:24:\"section_style_navigation\";a:1:{s:13:\"dots_position\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:13:\"_border_color\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:6:\"marker\";i:1;s:10:\"after_text\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:1;}s:18:\"section_style_text\";a:8:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:28:\"title_typography_font_weight\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:1:{s:13:\"_border_width\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5805','2030','wcf-flow-id','2015');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5806','2030','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5807','2030','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5808','2030','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5809','2030','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5810','2030','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5811','2030','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5812','2030','_edit_lock','1780985676:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5813','2030','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5814','2030','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5815','2030','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5816','2030','_elementor_data','[{\"id\":\"76bbe1e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#1D4E2B\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]}},\"elements\":[{\"id\":\"2ebcc16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"44cd926c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6db996ea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"37b80ae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3021c293\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d00d2a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11e102b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"46b73b7\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"4e43ef9\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6299d275\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00000005\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b5b88f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40aeb09f\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5817','2030','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5819','2031','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5820','2031','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5821','2031','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5822','2031','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5823','2031','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5824','2031','_elementor_data','[{\"id\":\"76bbe1e2\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#B5771F\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ebcc16a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"44cd926c\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"6db996ea\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"37b80ae0\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"3021c293\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1d00d2a4\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"11e102b\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46b73b7\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e43ef9\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"6299d275\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00000005\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b5b88f2\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40aeb09f\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5825','2031','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5826','2031','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5827','2032','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5828','2032','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5829','2032','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5830','2032','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5831','2032','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5832','2032','_elementor_data','[{\"id\":\"97cb241\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"768689e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2a35d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":177,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"db545ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed \\u09a6\\u09bf\\u09a8\\u09c7\\u0987 \\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09ad\\u09be\\u09ac \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u0995\\u09b0\\u09c1\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a8 \\u0997\\u09cb\\u09b2\\u09be\\u09aa\\u09c0 !!\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"align\":\"center\",\"title_color\":\"#EB1C54\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"289a6ab\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#EB1C54\",\"border_radius\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"korian-product\",\"custom_css\":\".korian-product{\\n    margin: 0 20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n}\\n\\n@media only screen and (max-width: 767px) {\\n  .korian-product {\\n    margin: 2{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n  }\\n}\",\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"713aa76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"d7f1aba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":384,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1.png\"},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b48c146\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.331,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"e4a3bd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u099f\\u09bf \\u098f\\u0995\\u099f\\u09bf \\u0995\\u09cb\\u09b0\\u09bf\\u09df\\u09be\\u09a8 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"900\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"align_mobile\":\"center\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":152},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_vertical_align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7619261\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"7685c73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":384,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1.png\"},\"align_mobile\":\"left\",\"width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":40.953}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4f787a8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#EB1C54\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"korian-product\",\"custom_css\":\".korian-product{\\n    margin: 0 20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n}\\n\\n@media only screen and (max-width: 767px) {\\n  .korian-product {\\n    margin: 2{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n  }\\n}\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66d94a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"660d4b5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"500\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_background_hover_color\":\"#B60031\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#B60031\",\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\",\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=secondary\"},\"align_mobile\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"41\",\"bottom\":\"8\",\"left\":\"41\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e25a07\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#B60031\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#EB1C54\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c8bcee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36aad05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u09ab\\u09cd\\u09b0\\u09c0 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09b6\\u09c1\\u09a7\\u09c1\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#EB1C54\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d11fed\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"2a84ad3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc3398e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/gqLL4bWJh9U\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"controls\":\"\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_overlay\":{\"id\":385,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-7.png\"}},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"d41b7fe\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":25,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#EB1C54\",\"weight\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4d82fa\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"content_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"3316a50\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"df63cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995\\u099f\\u09bf \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"22\",\"bottom\":\"-6\",\"left\":\"22\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"19\",\"bottom\":\"9\",\"left\":\"19\",\"isLinked\":false},\"align_mobile\":\"center\",\"_element_vertical_align_mobile\":\"center\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"title_color\":\"#EB1C54\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b1b753\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":386,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-2.jpg\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"2\",\"bottom\":\"-17\",\"left\":\"2\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6282600\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09a0\\u09cb\\u099f \\u09ab\\u09be\\u099f\\u09be \\u099c\\u09a8\\u09bf\\u09a4 \\u09b8\\u0995\\u09b2 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"cfafbd5\"},{\"text\":\"\\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u09aa\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u09a8\\u09c7\\u09a8\\u09cd\\u099f\\u09b2\\u09c0 \\u0997\\u09cb\\u09b2\\u09be\\u09aa\\u09c0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"94967e0\"},{\"text\":\"\\u09ae\\u09b0\\u09be \\u099a\\u09be\\u09ae\\u09a1\\u09bc\\u09be \\u0989\\u09a0\\u09bf\\u09af\\u09bc\\u09c7 \\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u09a3\\u09ac\\u09a8\\u09cd\\u09a4\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"fbe2827\"},{\"text\":\"\\u099b\\u09c7\\u09b2\\u09c7 \\u0993 \\u09ae\\u09c7\\u09af\\u09bc\\u09c7 \\u09b8\\u09ac\\u09be\\u0987 \\u098f\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"6260f32\"},{\"text\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed \\u09a6\\u09bf\\u09a8\\u09c7 \\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u09ac\\u09cd\\u09b2\\u09be\\u0995\\u09bf\\u09b6 \\u09ad\\u09be\\u09ac \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"ba99ec5\"},{\"text\":\"\\u09a6\\u09c0\\u09b0\\u09cd\\u0998 \\u09b8\\u09ae\\u09af\\u09bc \\u09a7\\u09b0\\u09c7 \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09b6\\u09a8 \\u09a7\\u09b0\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"49a9efb\"},{\"text\":\"\\u098f\\u09b0 \\u09ab\\u09cd\\u09b0\\u09c7\\u0997\\u09a8\\u09c7\\u09a8\\u09cd\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ae\\u09a8\\u0995\\u09c7 \\u09b8\\u09a4\\u09c7\\u099c \\u0995\\u09b0\\u09c7 \\u09a4\\u09c1\\u09b2\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"f5388d2\"},{\"text\":\"\\u09a6\\u09c0\\u09b0\\u09cd\\u0998\\u09a6\\u09bf\\u09a8 \\u09b2\\u09bf\\u09aa\\u09cd\\u09b8\\u099f\\u09bf\\u0995 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0993 \\u09b8\\u09bf\\u0997\\u09be\\u09b0\\u09c7\\u099f \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"c33241b\"},{\"text\":\"\\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u09af\\u09c7 \\u0995\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac \\u09b9\\u09af\\u09bc \\u09a4\\u09be \\u09aa\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u09a8\\u09c7\\u09a8\\u09cd\\u099f\\u09b2\\u09c0 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"a0cb2e3\"},{\"text\":\"\\u09a1\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u099f\\u09cb\\u09b2\\u09cb\\u099c\\u09bf\\u09b8\\u09cd\\u099f \\u09a6\\u09cd\\u09ac\\u09be\\u09b0\\u09be \\u099f\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09a1 \\u09b9\\u0993\\u09af\\u09bc\\u09be\\u09af\\u09bc \\u09b8\\u09c7\\u09a8\\u09b8\\u09bf\\u099f\\u09bf\\u09ad  \\u09b8\\u09cd\\u0995\\u09bf\\u09a8\\u09c7 \\u0995\\u09cb\\u09a8\\u09b0\\u09c2\\u09aa \\u0987\\u09b0\\u09bf\\u099f\\u09c7\\u09b6\\u09a8 \\u09b8\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u0995\\u09b0\\u09c7 \\u09a8\\u09be\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"c650f51\"}],\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"38b516b\",\"elType\":\"widget\",\"settings\":{\"style\":\"wavy\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":25,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#EB1C54\",\"weight\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"de9a14f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0041068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b060a36\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#EB1C54\",\"border_radius\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"korian-product\",\"custom_css\":\".korian-product{\\n    margin: 0 20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n}\\n\\n@media only screen and (max-width: 767px) {\\n  .korian-product {\\n    margin: 2{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} !important;\\n  }\\n}\",\"background_background\":\"classic\",\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"14d9463\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":20,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61a0cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":387,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/strawberry-1.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1f3a869\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.331,\"_inline_size_mobile\":60},\"elements\":[{\"id\":\"bef9dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0987\\u09a8\\u0997\\u09cd\\u09b0\\u09c7\\u09a1\\u09bf\\u09df\\u09c7\\u09a8\\u09cd\\u099f\\u09b8 \\u0995\\u09c0?\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#EB1A52\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"title_color\":\"#EB1C54\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d3f848e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_mobile\":20},\"elements\":[{\"id\":\"fbcd787\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":387,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/strawberry-1.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"098aa8b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"11\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"78542b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f56fdbb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b2\\u09cd\\u09af\\u09be\\u09a8\\u09c7\\u0987\\u099c \\u09b2\\u09bf\\u09aa \\u09b8\\u09cd\\u09b2\\u09bf\\u09aa\\u09bf\\u0982 \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09b9\\u09b2 \\u098f\\u0995\\u099f\\u09bf \\u09b2\\u09bf\\u09ad-\\u0985\\u09a8 \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09af\\u09be  \\u09b0\\u09be\\u09a4\\u09be\\u09b0\\u09be\\u09a4\\u09bf \\u09a0\\u09cb\\u0981\\u099f\\u0995\\u09c7 \\u09aa\\u09cd\\u09b0\\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u09a6\\u09c7\\u09df \\u098f\\u09ac\\u0982 \\u09ae\\u09df\\u09b6\\u09cd\\u099a\\u09be\\u09b0\\u09be\\u0987\\u099c \\u0995\\u09b0\\u09c7\\u0964  \\u09b9\\u09be\\u0987\\u09b2\\u09c1\\u09b0\\u09cb\\u09a8\\u09bf\\u0995 \\u0985\\u09cd\\u09af\\u09be\\u09b8\\u09bf\\u09a1 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09bf\\u0982, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2  \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09af\\u09be \\u098f\\u0995\\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7  \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u0986\\u09b0\\u09cd\\u09a6\\u09cd\\u09b0\\u09a4\\u09be \\u0986\\u099f\\u0995\\u09be\\u09a4\\u09c7 \\u09ac\\u09be\\u09a7\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"cfafbd5\"},{\"text\":\"\\u098f\\u0987 \\u09b2\\u09bf\\u09aa \\u09b8\\u09cd\\u09b2\\u09bf\\u09aa\\u09bf\\u0982 \\u09ae\\u09be\\u09b8\\u09cd\\u0995\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u09a8\\u09b0\\u09ae \\u099f\\u09c7\\u0995\\u09cd\\u09b8\\u099a\\u09be\\u09b0 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09af\\u09be  \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09b6\\u09cb\\u09b7\\u09a3\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0998\\u09a8\\u09bf\\u09b7\\u09cd\\u09a0\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09c7 \\u09af\\u09be\\u09df\\u0964  \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f\\u09c7 \\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7, \\u09ac\\u09c7\\u09b0\\u09bf \\u09ae\\u09bf\\u0995\\u09cd\\u09b8  \\u0995\\u09ae\\u09aa\\u09cd\\u09b2\\u09c7\\u0995\\u09cd\\u09b8 \\u09b0\\u09be\\u09b8\\u09cd\\u09aa\\u09ac\\u09c7\\u09b0\\u09bf\\u09b0 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf \\u098f\\u09ac\\u0982  \\u09b8\\u09c1\\u0997\\u09a8\\u09cd\\u09a7\\u09bf \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-arrow-alt-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"17c688d\"}],\"space_between\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_vertical_offset_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"divider\":\"yes\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1fd0ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b9d7ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4168cbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"22\",\"bottom\":\"-2\",\"left\":\"22\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"align_mobile\":\"center\",\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"title_color\":\"#EB1C54\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93ee357\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":388,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-1.jpg\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f4d0f88\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09cd\\u09b2\\u09bf\\u0995\\u09c7\\u099f\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7,\\u09b8\\u09a8\\u09cd\\u09a7\\u09cd\\u09af\\u09be\\u09df \\u09a0\\u09cb\\u0981\\u099f\\u09c7 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09bf\\u0982 \\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09b2\\u09be\\u0997\\u09be\\u09a8 \\u098f\\u09ac\\u0982 \\u09b8\\u09be\\u09b0\\u09be\\u09b0\\u09be\\u09a4 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a6\\u09bf\\u09a8\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7 \\u0986\\u09b2\\u09a4\\u09cb \\u0995\\u09b0\\u09c7 \\u09ae\\u09c1\\u099b\\u09c1\\u09a8 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"align\":\"center\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bd7ffd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ec6a1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e9a5ed8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"align_mobile\":\"center\",\"_element_width_mobile\":\"inherit\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"title_color\":\"#EB1C54\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb2be6d\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":389,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-4-1-1.jpg\"},{\"id\":390,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-5-1-1-1.jpg\"},{\"id\":391,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-6-1.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"gallery_vertical_align\":\"center\",\"image_spacing\":\"custom\",\"image_border_color\":\"#EB1C54\",\"_border_border\":\"solid\",\"_border_color\":\"#EB1C54\",\"dots_position\":\"inside\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d91e9c8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-26\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5dfe1bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e45b10c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09b2 \\u0995\\u09b0\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"59\",\"bottom\":\"59\",\"left\":\"59\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align_mobile\":\"center\",\"_element_width_mobile\":\"inherit\",\"title_color\":\"#EB1C54\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f4c191\",\"elType\":\"widget\",\"settings\":{\"text\":\"01819000000\",\"align\":\"center\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bensen\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_radius\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_shadow_text_shadow_type\":\"yes\",\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D0063C\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-2\",\"bottom\":\"-6\",\"left\":\"-2\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#EB1C54\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2667048\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":392,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/new-png-1-768x185-1-1.png\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9b3650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[{\"id\":\"61efb42\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea8eb4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#EB1C54\",\"border_radius\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"text_align\":\"left\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56a5c6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"content_position_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de42d\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\",\"highlighted_text\":\"\\u09e7\\u09e7\\u09eb\\u09e6 \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker\":\"diagonal\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"marker_color\":\"#EB1C54\",\"title_color\":\"#EB1C54\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_weight\":\"600\",\"words_color\":\"#EB1C54\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":true},{\"id\":\"6cc2f5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"content_position_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba595de\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b6\\u09c1\\u09a7\\u09c1\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af<\\/br><span style=\\\"font-size: 45px; color:#EB1C54\\\">\\u09ed\\u09eb\\u09e6\\u099f\\u09be\\u0995\\u09be<\\/span>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_border_color\":\"#EB1C54\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7eefc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#EB1C54\",\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CC0339\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"096afe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"349b72e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u099b\\u09be\\u09dc\\u09be \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#EB1C54\",\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#CC0339\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ce1f46\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"9263f48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2549b4f\",\"elType\":\"widget\",\"settings\":{\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"layout\":\"two-column\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"global_typography_typography\":\"custom\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#CC0339\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#EB1C54\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"global_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"700\",\"_element_id\":\"order\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed539f7\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6df7726\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9376935\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5833','2032','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5834','2032','_elementor_controls_usage','a:11:{s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:8;s:10:\"image_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:6;s:19:\"image_border_radius\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:21:\"_element_width_mobile\";i:1;s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:11;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:21:\"typography_typography\";i:11;s:22:\"typography_font_family\";i:11;s:22:\"typography_font_weight\";i:11;s:5:\"align\";i:11;s:11:\"title_color\";i:10;s:20:\"typography_font_size\";i:11;s:22:\"typography_line_height\";i:5;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:10;s:8:\"_padding\";i:9;s:21:\"_element_width_mobile\";i:4;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:8;s:13:\"_border_width\";i:7;s:13:\"_border_color\";i:8;s:14:\"_border_radius\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:22;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:22;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:16:\"content_position\";i:3;s:3:\"gap\";i:14;s:6:\"layout\";i:2;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:3:{s:14:\"section_border\";a:5:{s:13:\"border_border\";i:4;s:12:\"border_width\";i:5;s:12:\"border_color\";i:6;s:13:\"border_radius\";i:5;s:21:\"box_shadow_box_shadow\";i:3;}s:12:\"section_typo\";a:1:{s:10:\"text_align\";i:4;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:9;s:7:\"padding\";i:7;s:11:\"css_classes\";i:3;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:2;s:4:\"size\";i:2;s:4:\"link\";i:2;s:11:\"icon_indent\";i:1;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:13:\"border_radius\";i:2;s:29:\"button_background_hover_color\";i:1;s:13:\"border_border\";i:2;s:12:\"border_width\";i:1;s:12:\"border_color\";i:2;s:12:\"text_padding\";i:1;s:12:\"align_mobile\";i:2;s:28:\"text_shadow_text_shadow_type\";i:2;s:33:\"button_box_shadow_box_shadow_type\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:6:{s:11:\"youtube_url\";i:1;s:8:\"autoplay\";i:1;s:14:\"play_on_mobile\";i:1;s:8:\"controls\";i:1;s:14:\"modestbranding\";i:1;s:10:\"yt_privacy\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"style\";i:2;s:5:\"width\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:2;s:6:\"weight\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_icon_style\";a:3:{s:9:\"icon_size\";i:2;s:24:\"icon_self_vertical_align\";i:1;s:11:\"text_indent\";i:1;}s:18:\"section_text_style\";a:6:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:10:\"text_color\";i:2;s:27:\"icon_typography_line_height\";i:2;}s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:2;s:7:\"divider\";i:2;s:10:\"icon_align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:3:{s:22:\"gallery_vertical_align\";i:1;s:13:\"image_spacing\";i:1;s:18:\"image_border_color\";i:1;}s:24:\"section_style_navigation\";a:1:{s:13:\"dots_position\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:13:\"_border_color\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:6:\"marker\";i:1;s:10:\"after_text\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:1;}s:18:\"section_style_text\";a:8:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:28:\"title_typography_font_weight\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:1:{s:13:\"_border_width\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5835','2033','wcf-flow-id','2026');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5836','2033','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5837','2033','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5838','2033','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5839','2033','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5840','2033','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5841','2033','_edit_lock','1717922492:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5842','2033','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5843','2033','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5844','2033','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5845','2033','_elementor_data','[{\"id\":\"646bd695\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e44fccf\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b008850\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"4b9d2e81\",\"settings\":{\"title\":\"Congratulations , Your Order Has Been Received Successfully \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"37038c66\",\"settings\":{\"editor\":\"<p>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u099c\\u09c7 \\u09b2\\u09be\\u0987\\u0995 \\u09a6\\u09bf\\u09df\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u0982\\u0997\\u09c7\\u0987 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=5c74819\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"2f53a3b5\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-53\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73abe358\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42f043fd\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01303832348\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"background_color\":\"#000000\",\"button_text_color\":\"#DABE6B\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"15f93457\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32fced76\",\"settings\":{\"text\":\"like our page\",\"align\":\"left\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"background_color\":\"#0207FA\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"29\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"b848e3f\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-117\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f92d413\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f54b16e\",\"elType\":\"widget\",\"settings\":{\"heading_align\":\"center\",\"thankyou_text\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\",\"heading_color\":\"#000000\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"section_text_typography_typography\":\"custom\",\"section_text_typography_font_family\":\"Hind Siliguri\",\"section_text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"section_text_typography_font_weight\":\"500\",\"section_all_background_color_background\":\"classic\",\"section_all_background_color_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#CECECE\",\"_border_border\":\"solid\",\"heading_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=cf5c418\"}},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"31c1f5c6\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70c31ef2\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ec5132a\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5846','2033','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5847','2033','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5849','2034','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5850','2034','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5851','2034','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5852','2034','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5853','2034','_elementor_data','[{\"id\":\"646bd695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\"},\"elements\":[{\"id\":\"2e44fccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b008850\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b9d2e81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Congratulations , Your Order Has Been Received Successfully \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#000000\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37038c66\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u099c\\u09c7 \\u09b2\\u09be\\u0987\\u0995 \\u09a6\\u09bf\\u09df\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u0982\\u0997\\u09c7\\u0987 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"7\",\"left\":\"15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=5c74819\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f53a3b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-53\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"73abe358\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"42f043fd\",\"elType\":\"widget\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01303832348\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"background_color\":\"#000000\",\"button_text_color\":\"#DABE6B\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15f93457\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"32fced76\",\"elType\":\"widget\",\"settings\":{\"text\":\"like our page\",\"align\":\"left\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"background_color\":\"#0207FA\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"29\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b848e3f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-117\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f92d413\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f54b16e\",\"elType\":\"widget\",\"settings\":{\"heading_align\":\"center\",\"thankyou_text\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\",\"heading_color\":\"#000000\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"section_text_typography_typography\":\"custom\",\"section_text_typography_font_family\":\"Hind Siliguri\",\"section_text_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"section_text_typography_font_weight\":\"500\",\"section_all_background_color_background\":\"classic\",\"section_all_background_color_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#CECECE\",\"_border_border\":\"solid\",\"heading_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=cf5c418\"}},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31c1f5c6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"70c31ef2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3ec5132a\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5854','2034','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5855','2034','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5856','2034','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"align\";i:1;s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:2;s:4:\"link\";i:1;s:4:\"size\";i:2;s:13:\"selected_icon\";i:2;s:11:\"icon_indent\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:2;s:16:\"background_color\";i:2;s:17:\"button_text_color\";i:1;s:12:\"align_mobile\";i:2;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:21:\"section_shape_divider\";a:4:{s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5857','2036','wcf-flow-id','2035');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5858','2036','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5859','2036','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5860','2035','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:2036;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2038;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2106;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5861','2038','wcf-flow-id','2035');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5862','2038','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5863','2038','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5864','2038','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5865','2038','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5866','2038','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5867','2038','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5868','2038','_edit_lock','1717922591:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5869','2038','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5870','2038','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5871','2038','_elementor_data','[{\"id\":\"44ff2c7b\",\"settings\":{\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"z_index\":44,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7bef347\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"70f24590\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":75,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(30, 27, 27, 0)\",\"background_overlay_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":27,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"overlay_blend_mode\":\"multiply\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":720,\"sizes\":[]},\"background_xpos\":{\"unit\":\"vw\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":58,\"sizes\":[]},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f3bc424\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d57b52f\",\"settings\":{\"title\":\"big bbq\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab Highlight\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":9,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":5.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"68ec4797\",\"settings\":{\"title\":\"cheeseburger & fries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab Highlight\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6f906cbf\",\"settings\":{\"title\":\"20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} OFF Family Meals\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_position\":\"center center\",\"_background_size\":\"contain\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-4.082,\"unit\":\"vw\"},\"_offset_x_end\":{\"size\":62.035,\"unit\":\"vw\"},\"_offset_y\":{\"size\":-6.234,\"unit\":\"vh\"},\"_offset_y_end\":{\"size\":35,\"unit\":\"vh\"},\"_offset_x_mobile\":{\"size\":72.313,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":269.094,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"3075b944\",\"settings\":{\"text\":\"Order Now\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_hover_border_color\":\"#FFFFFF\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#B83F2E\",\"align_mobile\":\"justify\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"6a36b8f8\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.03,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ba68929\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38fee138\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":720,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64a10d6e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14ab8d72\",\"settings\":{\"title\":\"best bbq in town\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#222222\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6d2f46a8\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":11,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#B83F2E\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"462051ff\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"1f9a0990\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"64\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4872ba8a\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57b5f408\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"title_text\":\"burgers\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"position\":\"left\",\"title_size\":\"h4\",\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":40,\"sizes\":[]},\"hover_animation\":\"pop\",\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_color\":\"#222222\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Zilla Slab\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#222222\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Open Sans\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"20f4551f\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b183a9d\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"title_text\":\"specialities\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"position\":\"left\",\"title_size\":\"h4\",\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":47,\"sizes\":[]},\"hover_animation\":\"pop\",\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_color\":\"#222222\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Zilla Slab\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#222222\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Open Sans\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"64c6ec39\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f8d491d\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"title_text\":\"family deals\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur.\",\"position\":\"left\",\"title_size\":\"h4\",\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":57,\"sizes\":[]},\"hover_animation\":\"pop\",\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_color\":\"#222222\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Zilla Slab\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#222222\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Open Sans\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"3479bea9\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b76dcf5\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"title_text\":\"drinks\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"position\":\"left\",\"title_size\":\"h4\",\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":25,\"sizes\":[]},\"hover_animation\":\"pop\",\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_color\":\"#222222\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Zilla Slab\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#222222\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Open Sans\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"7a05c8cb\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16937711\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#B83F2E\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"darken\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"163a9cfe\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"4c60a52d\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":56,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"768 555-5555\",\"color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"283e65e4\",\"settings\":{\"editor\":\"<p>34th &amp; Douglas Ave. Minneapolis<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"42dc7fce\",\"settings\":{\"editor\":\"<p>Open hours:<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_style\":\"italic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"12bbab79\",\"settings\":{\"editor\":\"<p>Tues - Sat\\u00a0 2pm - 2am<\\/p><p>Sun -\\u00a0 Mon 12pm - 12pm<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"7ded735\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#222222\",\"background_overlay_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":9,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(242, 41, 91, 0.06)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.68,\"sizes\":[]},\"overlay_blend_mode\":\"multiply\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1324e1d1\",\"settings\":{\"title\":\"20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} Off BIG Family Meals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab Highlight\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5dd25dae\",\"settings\":{\"title\":\"New family deals to go.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6180c761\",\"settings\":{\"text\":\"get delivery\",\"align\":\"left\",\"size\":\"lg\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_hover_border_color\":\"#FFFFFF\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#B83F2E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"justify\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"23ee8d4f\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"7ed232a4\",\"settings\":{\"title\":\"our specialties\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"59c99595\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"32\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"175c83a5\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7500798f\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":137,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"192c8678\",\"settings\":{\"title\":\"$9.99\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#B83F2E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"180d0121\",\"settings\":{\"title\":\"BBq chicken &amp; Gumbo\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"242b14dd\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"14a9062f\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"598770ea\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":137,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"1eaf8cea\",\"settings\":{\"title\":\"$9.99\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#B83F2E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"3dde9b72\",\"settings\":{\"title\":\"BBQ Bacon burger\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"16b364ee\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"2e1d7758\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17c4bf14\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":137,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"1ea0694e\",\"settings\":{\"title\":\"$14.99\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#B83F2E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"e10d970\",\"settings\":{\"title\":\"signature bbq ribs\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"36564efe\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"3569acbc\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"32\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6332402a\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2346dd76\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":137,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"37951cfc\",\"settings\":{\"title\":\"$9.99\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#B83F2E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"65d14133\",\"settings\":{\"title\":\"signatue bbq burger\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6b3edf84\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"48aafdc0\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30dad394\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":137,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"65ed2d95\",\"settings\":{\"title\":\"$14.99\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#B83F2E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6beea2a3\",\"settings\":{\"title\":\"signature bbq ribs\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2491cf7d\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"3861ed0a\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1721102e\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":137,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"36a5bc69\",\"settings\":{\"title\":\"$9.99\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#B83F2E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"44ff8c48\",\"settings\":{\"title\":\"hot bbq wings\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"350a06a1\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"f14aaa7\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":60,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#222222\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#222222\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.32,\"sizes\":[]},\"overlay_blend_mode\":\"multiply\",\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"228d88f\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42b5daa\",\"settings\":{\"title\":\"big independence day summer party\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab Highlight\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"115d7e39\",\"settings\":{\"title\":\"July 4th  2pm - 2am\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"73173535\",\"settings\":{\"text\":\"view details\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-birthday-cake\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(253, 247, 236, 0.02)\",\"border_border\":\"double\",\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#B83F2E\",\"hover_animation\":\"shrink\",\"align_mobile\":\"justify\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"4aeac25e\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.03,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69e0ef31\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77a47754\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"247fe811\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e5323d6\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":56,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"favorites\",\"color\":\"#222222\",\"text_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"757a7caa\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"thumbnail_size\":\"medium\",\"title_text\":\"BBQ Burger & Beer  \",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.\",\"position\":\"left\",\"title_size\":\"h4\",\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":40,\"sizes\":[]},\"hover_animation\":\"pop\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_color\":\"#222222\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Zilla Slab\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"description_color\":\"#222222\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Open Sans\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"},{\"id\":\"293390ab\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"thumbnail_size\":\"medium\",\"thumbnail_custom_dimension\":{\"width\":\"80\",\"height\":\"80\"},\"title_text\":\"BBQebabs \",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.\",\"position\":\"left\",\"title_size\":\"h4\",\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":40,\"sizes\":[]},\"hover_animation\":\"pop\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_color\":\"#222222\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Zilla Slab\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"description_color\":\"#222222\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Open Sans\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"},{\"id\":\"16540d6f\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Auntie\'s Fudge Cake\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.\",\"position\":\"left\",\"title_size\":\"h4\",\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":40,\"sizes\":[]},\"hover_animation\":\"pop\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_color\":\"#222222\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Zilla Slab\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"description_color\":\"#222222\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Open Sans\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"1462fcb4\",\"settings\":{\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.03,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"294dda29\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#B83F2E\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"darken\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7533e6bf\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a879e3d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7de5e5ba\",\"settings\":{\"slides\":[{\"content\":\"This is my new favorite BBQ restaurant! Five stars and highly recommended!\",\"name\":\"Anna\",\"title\":\"Foodie Magazine\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"c9e5c8b\"},{\"content\":\"Those burgers are best in town! My favorite place definitely!\",\"name\":\"Jonathan\",\"title\":\"Timeout\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"f4f8bba\"}],\"slides_per_view\":\"1\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100},\"autoplay_speed\":2600,\"space_between\":{\"unit\":\"px\",\"size\":0},\"show_arrows\":\"\",\"slide_border_radius\":{\"unit\":\"px\",\"size\":0},\"content_gap\":{\"unit\":\"px\",\"size\":38},\"content_color\":\"#ece1cf\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Zilla Slab\",\"content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3},\"content_typography_font_weight\":\"600\",\"name_color\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Zilla Slab Highlight\",\"name_typography_font_size\":{\"unit\":\"rem\",\"size\":1.4},\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1},\"image_size\":{\"unit\":\"px\",\"size\":60},\"image_gap\":{\"unit\":\"px\",\"size\":16},\"image_border_radius\":{\"unit\":\"px\",\"size\":100},\"arrows_size\":{\"unit\":\"px\",\"size\":52},\"arrows_color\":\"#ece1cf\",\"pagination_size\":{\"unit\":\"px\",\"size\":7},\"pagination_color\":\"#222222\",\"background_color\":\"#b83f2e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"px\",\"size\":570},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Open Sans\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"testimonial-carousel\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"2b3e65f\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#222222\",\"background_overlay_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":45,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(242, 41, 91, 0.06)\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.68,\"sizes\":[]},\"overlay_blend_mode\":\"multiply\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8d21acd\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75fc2684\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e13c5f7\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ac98737\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"d7f0e8a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"9f37664\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#222222\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"social-icons\",\"elType\":\"widget\"},{\"id\":\"10258a5c\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":66,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"keep up with us\",\"color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"032\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"3cd636ce\",\"settings\":{\"text\":\"get delivery\",\"align\":\"center\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_hover_border_color\":\"#FFFFFF\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#B83F2E\",\"align_mobile\":\"justify\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"34d218e3\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"10140b9e\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#222222\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"59494436\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32946685\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"facebook\",\"selected_icon\":{\"value\":\"fab fa-facebook-messenger\",\"library\":\"fa-brands\"},\"_id\":\"7292629\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"volt\",\"selected_icon\":{\"value\":\"fas fa-biking\",\"library\":\"fa-solid\"},\"_id\":\"7d8b9b6\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"deliverit\",\"selected_icon\":{\"value\":\"fas fa-dot-circle\",\"library\":\"fa-solid\"},\"_id\":\"56504ab\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#B83F2E\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"icon_typography_font_weight\":\"600\",\"icon_typography_text_transform\":\"uppercase\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#E6D9D9\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_color_b\":\"#340510\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#F54A4A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#6EC1E4\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#6EC1E4\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5872','2038','_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5873','2038','_oembed_94620249a73cc10a0679692ba61fad2b','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5874','2038','_oembed_047ec1a1e4732153f83b573bd07c0e6f','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5875','2038','_oembed_time_047ec1a1e4732153f83b573bd07c0e6f','1708497492');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5876','2038','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5877','2038','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5878','2038','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5879','2038','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5880','2038','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5881','2038','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5882','2038','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5883','2038','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5884','2038','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5885','2038','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5886','2038','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5887','2038','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5888','2038','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5889','2038','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5890','2038','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5891','2038','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5892','2038','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5893','2038','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5894','2038','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5895','2038','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5896','2038','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5897','2038','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5898','2038','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5899','2038','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5900','2038','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5901','2038','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5902','2038','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5903','2038','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5904','2038','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5905','2038','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5906','2038','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5907','2038','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5908','2038','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5909','2038','_oembed_time_94620249a73cc10a0679692ba61fad2b','1710927601');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5910','2038','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5911','2038','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5912','2038','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5915','2039','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5916','2039','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5917','2039','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5918','2039','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5919','2039','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5920','2039','_elementor_data','[{\"id\":\"0430b22\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"id\":491,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/bg.jpeg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"821fe81\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73cc10c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"24a73eb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"c4e88da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a116be\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\",\"align_mobile\":\"center\",\"title_color\":\"#006E3D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c9e6be0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u0990\\u09a4\\u09bf\\u09b9\\u09cd\\u09af\\u09ac\\u09be\\u09b9\\u09c0 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09be\\u099c\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09b0\\u09cd\\u09a4\\u09be, \\u09ae\\u09c1\\u09a1\\u09bc\\u09bf \\u09ae\\u09be\\u0996\\u09be \\u098f\\u09ac\\u0982 \\u0986\\u099a\\u09be\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0995\\u09cb\\u09a8 \\u09ac\\u09bf\\u0995\\u09b2\\u09cd\\u09aa \\u09a8\\u09c7\\u0987\\u0964 \\u0986\\u09ae\\u09b0\\u09be \\u0985\\u09a8\\u09c7\\u0995\\u09c7\\u0987 \\u098f\\u0987 \\u09a4\\u09c7\\u09b2 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09b2\\u09c7\\u0993 \\u098f\\u09b0 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3 \\u098f\\u09ac\\u0982 \\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be\\u09a8\\u09cb \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0997\\u09c1\\u09a3\\u0997\\u09a4 \\u09ae\\u09be\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u09a4\\u09c7\\u09ae\\u09a8 \\u0985\\u09ac\\u0997\\u09a4 \\u09a8\\u0987\\u0964 \\u09a4\\u09be\\u0987 \\u0986\\u09ae\\u09b0\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u09b8\\u09c7\\u099b\\u09bf \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u0964<\\/p>\",\"align\":\"left\",\"text_color\":\"#050505\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10a7690\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"far fa-hand-point-down\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#006E3D\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4e00de5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9de8987\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":877,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0531c2e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ee16ede\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e42f4a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09c3\\u09b7\\u09be\\u09a3 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1\\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09a4\\u09c7 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993\\u099f\\u09bf \\u09a6\\u09c7\\u0996\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#08563E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"de99f4c\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"image_overlay\":{\"id\":492,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-2-1.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0492dd7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"a4671d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b49fa4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0995\\u09c7\\u09a8 \\u0996\\u09be\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#006E3D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3721df9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u098f\\u0995 \\u0985\\u09a8\\u09cd\\u09af\\u09a4\\u09ae \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09af\\u09bc \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u0964 \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09ab\\u09c1\\u09b2 \\u09af\\u09c7\\u09ae\\u09a8 \\u09b8\\u09cc\\u09a8\\u09cd\\u09a6\\u09b0\\u09cd\\u09af \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09b8\\u09c7 \\u09a4\\u09c7\\u09ae\\u09a8\\u09bf \\u09b8\\u09b0\\u09bf\\u09b7\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09a4\\u09c7\\u09b2 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09a6\\u09c1 \\u0995\\u09b0\\u09c7\\u0964 \\u0985\\u09a8\\u09c7\\u0995 \\u09af\\u09c1\\u0997 \\u0986\\u0997\\u09c7 \\u09a5\\u09c7\\u0995\\u09c7\\u0987 \\u09ac\\u09be\\u0999\\u09be\\u09b2\\u09bf\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u09b8\\u09b9 \\u09ad\\u09b0\\u09cd\\u09a4\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u099a\\u09b2\\u09a8 \\u0986\\u099b\\u09c7\\u0964 \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7\\u09a4 \\u09a4\\u09c7\\u09b2 \\u09ac\\u09b2\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09c2\\u09b0\\u09cd\\u09ac\\u09aa\\u09c1\\u09b0\\u09c1\\u09b7\\u0997\\u09a3 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u0995\\u09c7\\u0987 \\u09ac\\u09c1\\u099d\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u09af\\u09be\\u0987\\u09b9\\u09cb\\u0995, \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09af\\u09c1\\u0997\\u09c7 \\u09ac\\u09be\\u099c\\u09be\\u09b0\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09a8 \\u09b0\\u0995\\u09ae\\u09c7\\u09b0 \\u09a4\\u09c7\\u09b2 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be \\u0997\\u09c7\\u09b2\\u09c7\\u0993 \\u0997\\u09be\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u0996\\u09be \\u098f\\u09ac\\u0982 \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be\\u09b0 \\u0995\\u09be\\u099c\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc \\u098f\\u09ae\\u09a8 \\u09b8\\u09b9\\u099c \\u09b2\\u09cb\\u09ad\\u09cd\\u09af \\u09a4\\u09c7\\u09b2 \\u0986\\u09b0 \\u09a6\\u09cd\\u09ac\\u09bf\\u09a4\\u09c0\\u09af\\u09bc\\u099f\\u09bf \\u09a8\\u09c7\\u0987\\u0964 \\u098f\\u0987 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u099a\\u09be\\u09b9\\u09bf\\u09a6\\u09be \\u098f\\u09a4 \\u09ac\\u099b\\u09b0 \\u09a7\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09b2\\u09bf\\u09a4 \\u0986\\u099b\\u09c7\\u0964<\\/p><p>\\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3\\u09a4 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u098f\\u09a4 \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09af\\u09bc\\u09a4\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a7\\u09be\\u09a8 \\u0995\\u09be\\u09b0\\u09a3 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u098f\\u09ac\\u0982 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3\\u0964 \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7 \\u0995\\u09b0\\u09c7 \\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be\\u09a8\\u09cb \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u098f\\u09ac\\u0982 \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u09b6\\u09bf \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0\\u0964 \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c7\\u09b2 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09a7\\u09c1\\u09a8\\u09bf\\u0995 \\u09aa\\u09cd\\u09b0\\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf\\u09b0 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u0998\\u09be\\u09a8\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u0964 \\u098f\\u09a4\\u09c7 \\u0989\\u099a\\u09cd\\u099a \\u099a\\u09be\\u09aa \\u098f\\u09ac\\u0982 \\u09a4\\u09be\\u09aa\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c7\\u09b2 \\u09a8\\u09bf\\u0983\\u09b8\\u09b0\\u09a3 \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u0964 \\u09aa\\u09cd\\u09b0\\u0995\\u09cd\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u099f\\u09bf \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09b9\\u099c\\u09b8\\u09be\\u09a7\\u09cd\\u09af \\u098f\\u09ac\\u0982 \\u09af\\u09be\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09bf\\u0995 \\u09b9\\u09b2\\u09c7\\u0993 \\u098f\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09a4\\u09c7\\u09b2 \\u0997\\u09c1\\u09a3\\u0997\\u09a4 \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u09a6\\u09bf\\u0995 \\u09a5\\u09c7\\u0995\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09a8\\u09bf\\u09ae\\u09cd\\u09a8 \\u09aa\\u09b0\\u09cd\\u09af\\u09be\\u09af\\u09bc\\u09c7\\u09b0 \\u09b9\\u09af\\u09bc\\u0964<\\/p><p>\\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09bf\\u0995\\u09c7 \\u098f\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u098f\\u0995\\u09a6\\u09ae \\u09ad\\u09be\\u09b2\\u09cb \\u09b9\\u09af\\u09bc \\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09a6\\u09c7\\u0996\\u09a4\\u09c7 \\u0985\\u09a8\\u09c7\\u0995\\u099f\\u09be \\u0987\\u099e\\u09cd\\u099c\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09b2\\u09c1\\u09ac\\u09cd\\u09b0\\u09bf\\u0995\\u09c7\\u09a8\\u09cd\\u099f \\u09ac\\u09be \\u09ae\\u09ac\\u09bf\\u09b2\\u09c7\\u09b0 \\u09ae\\u09a4 \\u09a6\\u09c7\\u0996\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964 \\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09bf\\u0995\\u09c7 \\u0995\\u09ae \\u09a4\\u09be\\u09aa\\u09c7 \\u0985\\u09b0\\u09cd\\u09a5\\u09be\\u09ce \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u09a4\\u09c7 \\u0995\\u09be\\u09a0\\u09c7\\u09b0 \\u0998\\u09be\\u09a8\\u09bf \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09a4\\u09c7\\u09b2 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09b2 \\u0986\\u09a6\\u09b0\\u09cd\\u09b6 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u0964 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u0987 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09a4\\u09c7\\u09b2 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0993 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u09b9\\u09af\\u09bc\\u0964 \\u09a4\\u09be\\u099b\\u09be\\u09a1\\u09bc\\u09be \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u098f\\u09ac\\u0982 \\u09b0\\u0982 \\u098f\\u0995\\u09a6\\u09ae \\u099f\\u09aa \\u0995\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u09af\\u09bc\\u0964 \\u098f\\u0996\\u09be\\u09a8\\u09c7 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf \\u09ac\\u09b2\\u09a4\\u09c7 \\u0995\\u09be\\u09a0\\u09c7\\u09b0 \\u0998\\u09be\\u09a8\\u09bf\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u0995\\u09ae \\u09a4\\u09be\\u09aa\\u09c7 \\u09a4\\u09c7\\u09b2 \\u09a8\\u09bf\\u0983\\u09b8\\u09b0\\u09a3 \\u0995\\u09b0\\u09be\\u0995\\u09c7 \\u09ac\\u09c1\\u099d\\u09be\\u09af\\u09bc\\u0964<\\/p><p>\\u09ae\\u09cb\\u099f\\u0995\\u09a5\\u09be, \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a7\\u09be\\u09a8 \\u0989\\u09a6\\u09cd\\u09a6\\u09c7\\u09b6\\u09cd\\u09af \\u09b9\\u09b2 \\u098f\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u0989\\u09aa\\u09ad\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u098f\\u09ac\\u0982 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u0998\\u09be\\u09a8\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09af\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc \\u09a4\\u09be \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u0993 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09a6\\u09c1 \\u09b9\\u09af\\u09bc \\u09a8\\u09be\\u0964 \\u098f\\u0987 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09ac\\u09be \\u0995\\u09be\\u09a0\\u09c7\\u09b0 \\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u099a\\u09be\\u09b9\\u09bf\\u09a6\\u09be \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u09b6\\u09bf\\u0964 \\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09bf\\u0995\\u09c7 \\u098f\\u0987 \\u09a4\\u09c7\\u09b2 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09af\\u09be \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c7\\u0995 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\u0964<\\/p>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"406c8fe\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"far fa-hand-point-down\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#006E3D\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae5b4d7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6dc3e7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f280194\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#006E3D\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd1e5a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"9d11995\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b248b4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b6\\u09be\\u09b0\\u09c0\\u09b0\\u09bf\\u0995 \\u09ac\\u09cd\\u09af\\u09a5\\u09be \\u0995\\u09ae\\u09be\\u09af\\u09bc\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"7730a6e\"},{\"text\":\"\\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09b8\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c0\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"9689206\"},{\"text\":\"\\u09a0\\u09be\\u09a8\\u09cd\\u09a1\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"1eb5201\"},{\"text\":\"\\u09b9\\u09be\\u09b0\\u09cd\\u099f \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"6b5ba91\"},{\"text\":\"\\u09b8\\u09be\\u09a8\\u09b8\\u09cd\\u0995\\u09cd\\u09b0\\u09bf\\u09a8 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"73fe3ef\"},{\"text\":\"\\u09b6\\u09b0\\u09c0\\u09b0 \\u099a\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"e1baf00\"},{\"text\":\"\\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09ac\\u099c\\u09be\\u09af\\u09bc \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b30153d\"},{\"text\":\"\\u09b0\\u0995\\u09cd\\u09a4 \\u09b8\\u099e\\u09cd\\u099a\\u09be\\u09b2\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b023077\"},{\"text\":\"\\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u09ac\\u09cd\\u09af\\u09be\\u0995\\u099f\\u09c7\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09b2 \\u0993 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u09ab\\u09be\\u0999\\u09cd\\u0997\\u09be\\u09b2 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8\\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"1d2ff14\"},{\"text\":\"\\u09b8\\u09cd\\u09ae\\u09c3\\u09a4\\u09bf\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"29593aa\"},{\"text\":\"\\u09ae\\u09be\\u0987\\u0997\\u09cd\\u09b0\\u09c7\\u09a8\\u09c7\\u09b0 \\u0995\\u09b7\\u09cd\\u099f \\u0995\\u09ae\\u09be\\u09af\\u09bc\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"faee095\"},{\"text\":\"\\u0993\\u099c\\u09a8 \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"222668c\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#FBBA12\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e82d8ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37cad59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":864,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159166c\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"far fa-hand-point-down\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#006E3D\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b0d7dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"id\":491,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/bg.jpeg\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4520d5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b37effe\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0998\\u09be\\u09a8\\u09bf \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09c7?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#006E3D\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46ad9ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0998\\u09be\\u09a8\\u09bf \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09a8\\u09be\\u09a4\\u09a8\\u09c0 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u0964 \\u0995\\u09be\\u09b0\\u09a3 \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u0985\\u09b2\\u09cd\\u09aa \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u098f\\u09ac\\u0982 \\u0985\\u09b2\\u09cd\\u09aa \\u09aa\\u09b0\\u09bf\\u09b6\\u09cd\\u09b0\\u09ae\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964 \\u09a4\\u09ac\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u09a4\\u09c7 \\u0998\\u09be\\u09a8\\u09bf \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09a4\\u09c7\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09b2\\u09c7 \\u0995\\u09bf\\u099b\\u09c1 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf \\u09ae\\u09c7\\u09a8\\u09c7 \\u099a\\u09b2\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964 \\u09a4\\u09cb \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be \\u09b6\\u09c1\\u0995\\u09bf\\u09af\\u09bc\\u09c7 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09b8\\u09c7\\u09b8 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb \\u0993\\u099c\\u09a8 \\u0995\\u09b0\\u09c7 \\u09aa\\u09c2\\u09b0\\u09cd\\u09ac \\u09aa\\u09cd\\u09b0\\u09b8\\u09cd\\u09a4\\u09c1\\u09a4\\u09bf \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964<\\/p><p>\\u098f\\u09b0\\u09aa\\u09b0 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb \\u09aa\\u09bf\\u09b7\\u09c7 \\u09a8\\u09c7\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u09af\\u09c7\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964 \\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3\\u09a4 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u0995\\u09b2 \\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0995\\u09be\\u09a0 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7\\u0987 \\u0998\\u09be\\u09a8\\u09bf \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964 \\u09a4\\u09ac\\u09c7 \\u09a4\\u09c7\\u0981\\u09a4\\u09c1\\u09b2 \\u0995\\u09be\\u09a0\\u09c7\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u0998\\u09be\\u09a8\\u09bf \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u0989\\u099a\\u09cd\\u099a \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u0964\\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a6\\u09be\\u09a8\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u09af\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb \\u0998\\u09be\\u09a8\\u09bf\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u0997\\u09b0\\u09c1\\u09b0 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af\\u09c7 \\u0998\\u09be\\u09a8\\u09bf\\u09b0 \\u09b9\\u09be\\u09a4\\u09b2 \\u09a7\\u09c0\\u09b0 \\u0997\\u09a4\\u09bf\\u09a4\\u09c7 \\u0998\\u09c1\\u09b0\\u09be\\u09a8\\u09cb \\u09b9\\u09af\\u09bc\\u0964 \\u0995\\u09be\\u09b0\\u09a3 \\u09af\\u09a6\\u09bf \\u0989\\u099a\\u09cd\\u099a \\u0997\\u09a4\\u09bf\\u09a4\\u09c7 \\u0998\\u09c1\\u09b0\\u09be\\u09a8\\u09cb \\u09b9\\u09af\\u09bc \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u09a4\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09a4\\u09be\\u09aa \\u09b8\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u0995\\u09b0\\u09ac\\u09c7 \\u09af\\u09be \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0997\\u09c1\\u09a3\\u0997\\u09a4 \\u09ae\\u09be\\u09a8 \\u09a8\\u09b7\\u09cd\\u099f \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09bf\\u0995\\u09c7 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u09b0 \\u0989\\u09b2\\u0999\\u09cd\\u0998\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964<\\/p><p>\\u09af\\u09be\\u0987\\u09b9\\u09cb\\u0995, \\u098f\\u09ad\\u09be\\u09ac\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u09b9\\u09be\\u09a4\\u09b2 \\u0998\\u09c1\\u09b0\\u09be\\u09a8\\u09cb\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a6\\u09be\\u09a8\\u09be \\u09a7\\u09c0\\u09b0\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u09aa\\u09bf\\u09b7\\u09a4\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7 \\u098f\\u09ac\\u0982 \\u09a4\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u098f\\u0995\\u099f\\u09c1 \\u098f\\u0995\\u099f\\u09c1 \\u0995\\u09b0\\u09c7 \\u09b0\\u09b8 \\u09ac\\u09c7\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u0964 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0\\u09a4\\u09c7 \\u09b8\\u09c7\\u0987 \\u09b0\\u09b8 \\u09ab\\u09bf\\u09b2\\u099f\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a4\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c7\\u09b2 \\u0986\\u09b2\\u09be\\u09a6\\u09be \\u0995\\u09b0\\u09c7 \\u09a4\\u09be \\u09ac\\u09be\\u099c\\u09be\\u09b0\\u099c\\u09be\\u09a4 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\\u0964<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"655f8d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"far fa-hand-point-down\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#006E3D\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b9feb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6cfac08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"92d5176\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":864,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"471ab8c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"8db1b4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#006E3D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"293f23c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1\\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1206c76\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u09eb \\u09b2\\u09bf\\u099f\\u09be\\u09b0\",\"highlighted_text\":\"\\u09e7\\u09e9\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\",\"marker_color\":\"#F72A2A\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"d36825d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09c0\\u09ae\\u09bf\\u09a4 \\u09b8\\u09ae\\u09df\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fbbea08\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"id\":491,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/bg.jpeg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fef3d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e437706\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0989\\u09aa\\u09b0 \\u0995\\u09c7\\u09a8 \\u0986\\u09b8\\u09cd\\u09a5\\u09be \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u09a8!\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#006E3D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86be329\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7, \\u09a6\\u09c7\\u0996\\u09c7 \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09a8\\u09c7\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"77d6e26\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09a3\\u09cd\\u09af \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0996\\u09be\\u099f\\u09bf, \\u0985\\u09a5\\u09c7\\u09a8\\u099f\\u09bf\\u0995, \\u09ad\\u09c7\\u099c\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"b82b485\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b7\\u09cd\\u09a0\\u09be\\u09a8 \\u0989\\u09b2\\u09be\\u09ae\\u09be\\u09df\\u09c7 \\u0995\\u09c7\\u09b0\\u09be\\u09ae \\u09a6\\u09cd\\u09ac\\u09be\\u09b0\\u09be \\u09aa\\u09b0\\u09bf\\u099a\\u09be\\u09b2\\u09bf\\u09a4 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"57e7c26\"},{\"text\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09df\\u09a4\\u09be \\u098f\\u0987 \\u09af\\u09c7, \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b7\\u09cd\\u09a0\\u09be\\u09a8 \\u0995\\u0996\\u09a8\\u09cb\\u0987 \\u09ad\\u09c7\\u099c\\u09be\\u09b2 \\u09aa\\u09a3\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7 \\u09a8\\u09be \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09bf\\u09a4!\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"94eeba6\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FBBA12\",\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"cf48014\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"far fa-hand-point-down\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#006E3D\",\"hover_animation\":\"pop\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7adf4b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"75c118f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#006E3D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a3521a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d37669\",\"elType\":\"widget\",\"settings\":{\"text\":\"01962890890\",\"link\":{\"url\":\"tel:01962890890\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"align_mobile\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FBBA12\",\"hover_animation\":\"pop\",\"button_box_shadow_box_shadow_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8a6e8c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\"},\"elements\":[{\"id\":\"6462466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#08563E\"},\"elements\":[{\"id\":\"d58d663\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b2\\u09c7\\u09b8 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8!\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#006E3D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9531dc4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"button_text_color\":\"#000000\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#FBBA12\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9c79371\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#DADADA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"915d582\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"72bce02\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__dynamic__\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5921','2039','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5922','2039','_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:4;s:10:\"image_size\";i:2;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:11;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:11;s:21:\"typography_typography\";i:11;s:22:\"typography_font_family\";i:11;s:20:\"typography_font_size\";i:10;s:22:\"typography_font_weight\";i:11;s:5:\"align\";i:10;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:8;s:8:\"_padding\";i:8;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:7;s:17:\"_background_color\";i:5;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:3;s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:6;s:4:\"link\";i:6;s:4:\"size\";i:6;s:13:\"selected_icon\";i:6;s:10:\"icon_align\";i:5;s:11:\"icon_indent\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:12:\"align_mobile\";i:5;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:17:\"button_text_color\";i:6;s:16:\"background_color\";i:6;s:15:\"hover_animation\";i:6;s:13:\"border_radius\";i:5;s:5:\"align\";i:5;s:33:\"button_box_shadow_box_shadow_type\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:15;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:5;s:7:\"padding\";i:5;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:12;s:13:\"content_width\";i:10;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:9;s:7:\"padding\";i:8;s:11:\"_element_id\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:2;s:7:\"divider\";i:1;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;s:11:\"text_indent\";i:1;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:3:{s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:10:\"after_text\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:1;}s:18:\"section_style_text\";a:8:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:28:\"title_typography_font_weight\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5923','2041','wcf-flow-id','2040');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5924','2041','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5925','2041','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5926','2040','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:2041;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2043;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2046;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5927','2043','wcf-flow-id','2040');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5928','2043','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5929','2043','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5930','2043','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5931','2043','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5932','2043','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5933','2043','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5934','2043','_edit_lock','1717922893:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5935','2043','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5936','2043','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5937','2043','_elementor_data','[{\"id\":\"52addff\",\"settings\":{\"flex_direction\":\"row\",\"min_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#E9E9E9\",\"shape_divider_bottom\":\"wave-brush\",\"boxed_width_tablet\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ce07d60\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6bf11de\",\"settings\":{\"before_text\":\"\\u0993\\u099c\\u09a8 \\u09b9\\u09cd\\u09b0\\u09be\\u09b8\\u09c7, \\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7, \\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09a4\\u09c7, \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0987\\u09ae\\u09cb\\u09a8\\u09bf\\u099f\\u09bf \\u098f\\u09ac\\u0982 \\u098f\\u09a8\\u09be\\u09b0\\u09cd\\u099c\\u09bf \\u09b8\\u09be\\u09aa\\u09cb\\u09b0\\u09cd\\u099f\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\",\"highlighted_text\":\" \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\" \\u09b9\\u09cb\\u0995 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0986\\u09ae\\u09be\\u09b0 \\u09a8\\u09bf\\u09a4\\u09cd\\u09af \\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0\",\"marker_color\":\"#F30000\",\"title_color\":\"#007200\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Anek Bangla\",\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"words_color\":\"#D80025\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"__should_import\":true,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"d7f836e\",\"settings\":{\"editor\":\"<p>\\u0995\\u09bf\\u09b6\\u09cb\\u09b0\\u0997\\u099e\\u09cd\\u099c\\u09c7\\u09b0 \\u09b9\\u09be\\u0993\\u09b0 \\u0985\\u099e\\u09cd\\u099a\\u09b2 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09c3\\u09a4 \\u098f\\u0987 \\u099a\\u09be\\u09b2 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c1\\u09b0\\u09cd\\u09a8 \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2, \\u09b0\\u0982 \\u09ac\\u09bf\\u09b9\\u09c0\\u09a8, \\u09b9\\u09be\\u09ab \\u0993 \\u09ab\\u09c1\\u09b2 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7\\u0964 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09be\\u09b0 \\u09aa\\u09b0 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2 \\u0997\\u09c1\\u09b2\\u09cb \\u099d\\u09c7\\u09a1\\u09bc\\u09c7 \\u09aa\\u09b0\\u09bf\\u09b8\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09b0\\u09cb\\u09a6\\u09c7 \\u09b6\\u09c1\\u0995\\u09bf\\u09af\\u09bc\\u09c7 \\u09ab\\u09c1\\u09a1 \\u0997\\u09cd\\u09b0\\u09c7\\u09a1 \\u09aa\\u09b2\\u09bf\\u09a4\\u09c7 \\u09aa\\u09c7\\u0995\\u09c7\\u099f \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964 \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0986\\u0989\\u09b6 \\u099c\\u09be\\u09a4\\u09c0\\u09df \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2 \\u0986\\u099b\\u09c7\\u0964 \\u0995\\u09cd\\u09b0\\u09df \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\u09b2\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0985\\u09a5\\u09ac\\u09be \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":60,\"sizes\":[]},\"_flex_align_self\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"fef2488\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/Wuls05qIKuU?si=V87zAjhQ8Da7GyZ_\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_overlay\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"896d874\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"text_shadow_text_shadow_type\":\"yes\",\"hover_color\":\"#FFFFFF\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":80,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=7f29ec1\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"3c95a54\",\"settings\":{\"flex_direction\":\"row\",\"boxed_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0bb5f04\",\"settings\":{\"title\":\"\\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\\u09c7\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"965b25e\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4650077\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e708d06\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0985\\u09a4\\u09bf\\u09b0\\u09bf\\u0995\\u09cd\\u09a4 \\u0993\\u099c\\u09a8 \\u09b9\\u09cd\\u09b0\\u09be\\u09b8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4c2bac0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"a836f9b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"362813a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"11d9b70\",\"text\":\"\\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0987\\u09ae\\u09cb\\u09a8\\u09bf\\u099f\\u09bf \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"e603075\",\"text\":\"\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u099c\\u09c7\\u09b0 \\u098f\\u09a8\\u09be\\u09b0\\u09cd\\u099c\\u09bf \\u09a6\\u09c7\\u09df\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_color\":\"#368C29\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"f65900a\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7913f0d\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0985\\u09a4\\u09bf\\u09b0\\u09bf\\u0995\\u09cd\\u09a4 \\u0993\\u099c\\u09a8 \\u09b9\\u09cd\\u09b0\\u09be\\u09b8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4c2bac0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"a836f9b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"362813a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"11d9b70\",\"text\":\"\\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0987\\u09ae\\u09cb\\u09a8\\u09bf\\u099f\\u09bf \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"e603075\",\"text\":\"\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u099c\\u09c7\\u09b0 \\u098f\\u09a8\\u09be\\u09b0\\u09cd\\u099c\\u09bf \\u09a6\\u09c7\\u09df\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_color\":\"#368C29\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"96adde6\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fc20ff0\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ffdaa52\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"c379358\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09a8 \\u09a7\\u09be\\u09a8\\u09c7\\u09b0 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"fd83858\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b262a8\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"f537b6e\",\"settings\":{\"title\":\"\\u0986\\u0989\\u09b6 \\u09a7\\u09be\\u09a8\\u09c7\\u09b0 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"261c4e1\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"space-around\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"804d6cf\",\"settings\":{\"editor\":\"<p>\\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a8\\u09a4 \\u09ad\\u09be\\u09a4 \\u0996\\u09be\\u0987\\u0964 \\u09ad\\u09be\\u09a4\\u0987 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a7\\u09be\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u0964 \\u09ad\\u09be\\u09a4 \\u099b\\u09be\\u09dc\\u09be \\u0986\\u09ae\\u09b0\\u09be \\u09ac\\u09be\\u0999\\u09be\\u09b2\\u09bf\\u09b0\\u09be \\u0985\\u099a\\u09b2, \\u098f\\u0995\\u09a5\\u09be \\u09ae\\u09cb\\u099f\\u09c7\\u0993 \\u09ae\\u09bf\\u09a5\\u09cd\\u09af\\u09be \\u09a8\\u09af\\u09bc\\u0964 \\u0986\\u09b0 \\u09ad\\u09be\\u09a4 \\u09af\\u09c7\\u09b9\\u09c7\\u09a4\\u09c1 \\u0996\\u09c7\\u09a4\\u09c7\\u0987 \\u09b9\\u09ac\\u09c7, \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u0995\\u09c7\\u09a8\\u09a8\\u09be \\u0986\\u09ae\\u09b0\\u09be \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\\u09c7\\u09b0 \\u09ad\\u09be\\u09a4\\u0987 \\u0996\\u09be\\u0987\\u0964 \\u0995\\u09be\\u09b0\\u09a3 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\\u09c7\\u09b0 \\u09ad\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09a6\\u09be \\u099a\\u09be\\u09b2\\u09c7\\u09b0 \\u09ad\\u09be\\u09a4\\u09c7\\u09b0 \\u09a4\\u09c1\\u09b2\\u09a8\\u09be\\u09af\\u09bc \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7\\u0964 \\u09af\\u09c7\\u09ae\\u09a8 :- \\u0986\\u09af\\u09bc\\u09b0\\u09a8, \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u098f\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u0993 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u098f\\u09b0 \\u09ae\\u09a4\\u09cb \\u09a8\\u09be\\u09a8\\u09be\\u09a8 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8\\u0964 \\u09af\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09be\\u09a8\\u09ac\\u09a6\\u09c7\\u09b9\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0996\\u09c1\\u09ac\\u0987 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"0cde975\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"align\":\"center\",\"text_shadow_text_shadow_type\":\"yes\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":80,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=7f29ec1\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"1dcd2f1\",\"settings\":{\"flex_direction\":\"row\",\"boxed_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bc73447\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_background_color\":\"#6EC1E4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"64378c3\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0fea8d5\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae\\u09a4 \\u09a7\\u09be\\u09a8\\u099f\\u09be \\u09b9\\u09be\\u0993\\u09dc \\u0993 \\u099a\\u09b0 \\u0985\\u099e\\u09cd\\u099a\\u09b2 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\u0964\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"4c2bac0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a4\\u09be\\u09b0\\u09aa\\u09b0\\u09c7 \\u09a7\\u09be\\u09a8\\u099f\\u09be\\u0995\\u09c7 \\u09b8\\u09bf\\u09a6\\u09cd\\u09a7 \\u0995\\u09b0\\u09bf\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"a836f9b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09bf\\u09a6\\u09cd\\u09a7 \\u0995\\u09b0\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09cb\\u09b2\\u09be\\u09df \\u09b6\\u09cb\\u0995\\u09be\\u09a4\\u09c7 \\u09a6\\u09bf\\u09df\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"362813a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"e603075\",\"text\":\"\\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09a7\\u09be\\u09a8\\u099f\\u09be\\u0995\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09c7\\u09b2\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u099a\\u09be\\u09b2\\u09c7 \\u09b0\\u09c2\\u09aa\\u09be\\u09a8\\u09cd\\u09a4\\u09b0 \\u0995\\u09b0\\u09bf\\u0964\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"11d9b70\",\"text\":\"\\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u0986\\u09ae\\u09b0\\u09be \\u0995\\u09cb\\u09a8\\u09cb \\u0985\\u099f\\u09cb \\u09b0\\u09be\\u0987\\u09b8 \\u09ae\\u09c7\\u09b2 \\u09ac\\u09be \\u09ae\\u09cd\\u09af\\u09be\\u09b6\\u09bf\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09bf \\u09a8\\u09be\\u0964 \\u09ab\\u09b2\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u099a\\u09be\\u09b2\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09a8\\u09b7\\u09cd\\u099f \\u09b9\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_color\":\"#368C29\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"divider\":\"yes\",\"text_color\":\"#000000\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#E9E9E9\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#6EC1E4\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72090b7\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#6EC1E4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#6EC1E4\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5938','2043','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5939','2043','_oembed_94620249a73cc10a0679692ba61fad2b','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5940','2043','_oembed_047ec1a1e4732153f83b573bd07c0e6f','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5941','2043','_oembed_time_047ec1a1e4732153f83b573bd07c0e6f','1708497492');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5942','2043','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5943','2043','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5944','2043','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5945','2043','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5946','2043','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5947','2043','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5948','2043','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5949','2043','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5950','2043','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5951','2043','wcf-product-options','multiple-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5952','2043','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5953','2043','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5954','2043','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5955','2043','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5956','2043','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5957','2043','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5958','2043','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5959','2043','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5960','2043','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5961','2043','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5962','2043','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5963','2043','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5964','2043','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5965','2043','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5966','2043','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5967','2043','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5968','2043','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5969','2043','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5970','2043','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5971','2043','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5972','2043','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5973','2043','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5974','2043','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5975','2043','_oembed_time_94620249a73cc10a0679692ba61fad2b','1710927601');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5976','2043','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5977','2043','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5978','2043','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5981','2044','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5982','2044','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5983','2044','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5984','2044','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5985','2044','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5986','2044','_elementor_data','[{\"id\":\"52addff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"min_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_color\":\"#E9E9E9\",\"shape_divider_bottom\":\"wave-brush\",\"boxed_width_tablet\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"\",\"sizes\":[]},\"flex_direction_mobile\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"ce07d60\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"6bf11de\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u0993\\u099c\\u09a8 \\u09b9\\u09cd\\u09b0\\u09be\\u09b8\\u09c7, \\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7, \\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09a4\\u09c7, \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0987\\u09ae\\u09cb\\u09a8\\u09bf\\u099f\\u09bf \\u098f\\u09ac\\u0982 \\u098f\\u09a8\\u09be\\u09b0\\u09cd\\u099c\\u09bf \\u09b8\\u09be\\u09aa\\u09cb\\u09b0\\u09cd\\u099f\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\",\"highlighted_text\":\" \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\" \\u09b9\\u09cb\\u0995 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0986\\u09ae\\u09be\\u09b0 \\u09a8\\u09bf\\u09a4\\u09cd\\u09af \\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0\",\"marker_color\":\"#F30000\",\"title_color\":\"#007200\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Anek Bangla\",\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"words_color\":\"#D80025\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"__should_import\":true,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"d7f836e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0995\\u09bf\\u09b6\\u09cb\\u09b0\\u0997\\u099e\\u09cd\\u099c\\u09c7\\u09b0 \\u09b9\\u09be\\u0993\\u09b0 \\u0985\\u099e\\u09cd\\u099a\\u09b2 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09c3\\u09a4 \\u098f\\u0987 \\u099a\\u09be\\u09b2 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c1\\u09b0\\u09cd\\u09a8 \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2, \\u09b0\\u0982 \\u09ac\\u09bf\\u09b9\\u09c0\\u09a8, \\u09b9\\u09be\\u09ab \\u0993 \\u09ab\\u09c1\\u09b2 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7\\u0964 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09be\\u09b0 \\u09aa\\u09b0 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2 \\u0997\\u09c1\\u09b2\\u09cb \\u099d\\u09c7\\u09a1\\u09bc\\u09c7 \\u09aa\\u09b0\\u09bf\\u09b8\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09b0\\u09cb\\u09a6\\u09c7 \\u09b6\\u09c1\\u0995\\u09bf\\u09af\\u09bc\\u09c7 \\u09ab\\u09c1\\u09a1 \\u0997\\u09cd\\u09b0\\u09c7\\u09a1 \\u09aa\\u09b2\\u09bf\\u09a4\\u09c7 \\u09aa\\u09c7\\u0995\\u09c7\\u099f \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964 \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0986\\u0989\\u09b6 \\u099c\\u09be\\u09a4\\u09c0\\u09df \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2 \\u0986\\u099b\\u09c7\\u0964 \\u0995\\u09cd\\u09b0\\u09df \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\u09b2\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0985\\u09a5\\u09ac\\u09be \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":60,\"sizes\":[]},\"_flex_align_self\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fef2488\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/Wuls05qIKuU?si=V87zAjhQ8Da7GyZ_\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_overlay\":{\"id\":564,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-1-2-1.png\"}},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"896d874\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"text_shadow_text_shadow_type\":\"yes\",\"hover_color\":\"#FFFFFF\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":80,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=7f29ec1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3c95a54\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"boxed_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]}},\"elements\":[{\"id\":\"0bb5f04\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\\u09c7\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"965b25e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4650077\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"}},\"elements\":[{\"id\":\"e708d06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0985\\u09a4\\u09bf\\u09b0\\u09bf\\u0995\\u09cd\\u09a4 \\u0993\\u099c\\u09a8 \\u09b9\\u09cd\\u09b0\\u09be\\u09b8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4c2bac0\"},{\"text\":\"\\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"a836f9b\"},{\"text\":\"\\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"362813a\"},{\"_id\":\"11d9b70\",\"text\":\"\\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0987\\u09ae\\u09cb\\u09a8\\u09bf\\u099f\\u09bf \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},{\"_id\":\"e603075\",\"text\":\"\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u099c\\u09c7\\u09b0 \\u098f\\u09a8\\u09be\\u09b0\\u09cd\\u099c\\u09bf \\u09a6\\u09c7\\u09df\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_color\":\"#368C29\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f65900a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"}},\"elements\":[{\"id\":\"7913f0d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0985\\u09a4\\u09bf\\u09b0\\u09bf\\u0995\\u09cd\\u09a4 \\u0993\\u099c\\u09a8 \\u09b9\\u09cd\\u09b0\\u09be\\u09b8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4c2bac0\"},{\"text\":\"\\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"a836f9b\"},{\"text\":\"\\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"362813a\"},{\"_id\":\"11d9b70\",\"text\":\"\\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0987\\u09ae\\u09cb\\u09a8\\u09bf\\u099f\\u09bf \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},{\"_id\":\"e603075\",\"text\":\"\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u099c\\u09c7\\u09b0 \\u098f\\u09a8\\u09be\\u09b0\\u09cd\\u099c\\u09bf \\u09a6\\u09c7\\u09df\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_color\":\"#368C29\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"96adde6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fc20ff0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"}},\"elements\":[{\"id\":\"ffdaa52\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":565,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-18-at-8.51.17-PM.jpeg\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c379358\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09a8 \\u09a7\\u09be\\u09a8\\u09c7\\u09b0 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fd83858\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"}},\"elements\":[{\"id\":\"7b262a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":566,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-18-at-8.54.29-PM.jpeg\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f537b6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u0989\\u09b6 \\u09a7\\u09be\\u09a8\\u09c7\\u09b0 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"261c4e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"space-around\"},\"elements\":[{\"id\":\"804d6cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a8\\u09a4 \\u09ad\\u09be\\u09a4 \\u0996\\u09be\\u0987\\u0964 \\u09ad\\u09be\\u09a4\\u0987 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a7\\u09be\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u0964 \\u09ad\\u09be\\u09a4 \\u099b\\u09be\\u09dc\\u09be \\u0986\\u09ae\\u09b0\\u09be \\u09ac\\u09be\\u0999\\u09be\\u09b2\\u09bf\\u09b0\\u09be \\u0985\\u099a\\u09b2, \\u098f\\u0995\\u09a5\\u09be \\u09ae\\u09cb\\u099f\\u09c7\\u0993 \\u09ae\\u09bf\\u09a5\\u09cd\\u09af\\u09be \\u09a8\\u09af\\u09bc\\u0964 \\u0986\\u09b0 \\u09ad\\u09be\\u09a4 \\u09af\\u09c7\\u09b9\\u09c7\\u09a4\\u09c1 \\u0996\\u09c7\\u09a4\\u09c7\\u0987 \\u09b9\\u09ac\\u09c7, \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u0995\\u09c7\\u09a8\\u09a8\\u09be \\u0986\\u09ae\\u09b0\\u09be \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\\u09c7\\u09b0 \\u09ad\\u09be\\u09a4\\u0987 \\u0996\\u09be\\u0987\\u0964 \\u0995\\u09be\\u09b0\\u09a3 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\\u09c7\\u09b0 \\u09ad\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09a6\\u09be \\u099a\\u09be\\u09b2\\u09c7\\u09b0 \\u09ad\\u09be\\u09a4\\u09c7\\u09b0 \\u09a4\\u09c1\\u09b2\\u09a8\\u09be\\u09af\\u09bc \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7\\u0964 \\u09af\\u09c7\\u09ae\\u09a8 :- \\u0986\\u09af\\u09bc\\u09b0\\u09a8, \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u098f\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u0993 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u098f\\u09b0 \\u09ae\\u09a4\\u09cb \\u09a8\\u09be\\u09a8\\u09be\\u09a8 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8\\u0964 \\u09af\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09be\\u09a8\\u09ac\\u09a6\\u09c7\\u09b9\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0996\\u09c1\\u09ac\\u0987 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0cde975\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"align\":\"center\",\"text_shadow_text_shadow_type\":\"yes\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":80,\"sizes\":[]},\"_flex_align_self\":\"center\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=primary\",\"background_color\":\"globals\\/colors?id=7f29ec1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1dcd2f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"boxed_width\":{\"unit\":\"px\",\"size\":1100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bc73447\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"_flex_size\":\"grow\",\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_background_color\":\"#6EC1E4\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"64378c3\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]}},\"elements\":[{\"id\":\"0fea8d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae\\u09a4 \\u09a7\\u09be\\u09a8\\u099f\\u09be \\u09b9\\u09be\\u0993\\u09dc \\u0993 \\u099a\\u09b0 \\u0985\\u099e\\u09cd\\u099a\\u09b2 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\u0964\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"4c2bac0\"},{\"text\":\"\\u09a4\\u09be\\u09b0\\u09aa\\u09b0\\u09c7 \\u09a7\\u09be\\u09a8\\u099f\\u09be\\u0995\\u09c7 \\u09b8\\u09bf\\u09a6\\u09cd\\u09a7 \\u0995\\u09b0\\u09bf\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"a836f9b\"},{\"text\":\"\\u09b8\\u09bf\\u09a6\\u09cd\\u09a7 \\u0995\\u09b0\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09cb\\u09b2\\u09be\\u09df \\u09b6\\u09cb\\u0995\\u09be\\u09a4\\u09c7 \\u09a6\\u09bf\\u09df\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"362813a\"},{\"_id\":\"e603075\",\"text\":\"\\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09a7\\u09be\\u09a8\\u099f\\u09be\\u0995\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09c7\\u09b2\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u099a\\u09be\\u09b2\\u09c7 \\u09b0\\u09c2\\u09aa\\u09be\\u09a8\\u09cd\\u09a4\\u09b0 \\u0995\\u09b0\\u09bf\\u0964\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"}},{\"_id\":\"11d9b70\",\"text\":\"\\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u0986\\u09ae\\u09b0\\u09be \\u0995\\u09cb\\u09a8\\u09cb \\u0985\\u099f\\u09cb \\u09b0\\u09be\\u0987\\u09b8 \\u09ae\\u09c7\\u09b2 \\u09ac\\u09be \\u09ae\\u09cd\\u09af\\u09be\\u09b6\\u09bf\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09bf \\u09a8\\u09be\\u0964 \\u09ab\\u09b2\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u099a\\u09be\\u09b2\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09a8\\u09b7\\u09cd\\u099f \\u09b9\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"}}],\"space_between\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_color\":\"#368C29\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"divider\":\"yes\",\"text_color\":\"#000000\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"c559378\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#E9E9E9\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9a6b06a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#6EC1E4\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72090b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#6EC1E4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#6EC1E4\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3d773d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fa53a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ccff08\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5987','2044','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5989','2044','_elementor_controls_usage','a:10:{s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:3:{s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:10:\"after_text\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:1;}s:18:\"section_style_text\";a:10:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:28:\"title_typography_font_weight\";i:1;s:28:\"title_typography_line_height\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;s:26:\"title_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;s:10:\"_flex_size\";i:1;s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:2;s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:3:{s:11:\"youtube_url\";i:1;s:8:\"autoplay\";i:1;s:14:\"play_on_mobile\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:2;s:4:\"link\";i:2;s:4:\"size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:22:\"typography_font_weight\";i:2;s:28:\"text_shadow_text_shadow_type\";i:2;s:11:\"hover_color\";i:2;s:17:\"button_text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;s:16:\"_flex_align_self\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:8:{s:14:\"flex_direction\";i:11;s:10:\"min_height\";i:1;s:5:\"width\";i:5;s:20:\"flex_justify_content\";i:2;s:16:\"flex_align_items\";i:1;s:11:\"boxed_width\";i:3;s:13:\"content_width\";i:4;s:8:\"flex_gap\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:21:\"section_shape_divider\";a:1:{s:20:\"shape_divider_bottom\";i:1;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:6;s:11:\"title_color\";i:5;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:20:\"typography_font_size\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:4;s:8:\"_padding\";i:5;s:16:\"_flex_align_self\";i:2;s:10:\"_flex_size\";i:2;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:3;s:7:\"divider\";i:3;s:14:\"divider_weight\";i:3;}s:18:\"section_icon_style\";a:4:{s:10:\"icon_color\";i:3;s:9:\"icon_size\";i:3;s:15:\"icon_self_align\";i:3;s:24:\"icon_self_vertical_align\";i:3;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:3;s:27:\"icon_typography_font_family\";i:3;s:25:\"icon_typography_font_size\";i:3;s:27:\"icon_typography_font_weight\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5990','2045','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5991','2045','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5992','2045','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5993','2045','_elementor_version','3.21.8');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5994','2045','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5995','2045','_elementor_data','[{\"id\":\"2b3c079\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#244151\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"background_overlay_image\":{\"id\":422,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/1-2.webp\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.17,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74e5410\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"91a93c0\",\"settings\":{\"image\":{\"id\":415,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green_White_Modern_Natural_Cosmetic_Instagram_Post-removebg-preview-1.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":495,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":218,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FCFCFC\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"space\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":14,\"sizes\":[]},\"space_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":21,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"a543117\",\"settings\":{\"title\":\" <span style=\\\"color: white\\\">  \\u09a6\\u09c0\\u09b0\\u09cd\\u0998\\u09ae\\u09c7\\u09df\\u09be\\u09a6\\u09c7 \\u09aa\\u09be\\u09df\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09a8\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\u09b2\\u09c7 <\\/span> <span style=\\\"color: red\\\"> \\u099a\\u09be\\u09ae\\u09dc\\u09be\\u09b0 \\u09b2\\u09cb\\u09ab\\u09be\\u09b0 \\u099c\\u09c1\\u09a4\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 ! <\\/span>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"title_color\":\"#EFEFEF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"65bceb4\",\"settings\":{\"title\":\"\\u09ac\\u09be\\u09af\\u09bc\\u09c1 \\u09aa\\u09cd\\u09b0\\u09ac\\u09be\\u09b9\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09c7\\u09a4\\u09cd\\u09b0\\u09c7 \\u09aa\\u09b6\\u09c1\\u09b0 \\u099a\\u09be\\u09ae\\u09a1\\u09bc\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0 \\u0985\\u09a4\\u09bf\\u09b0\\u09bf\\u0995\\u09cd\\u09a4 \\u0998\\u09be\\u09ae\\u09be\\u09df \\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09a6\\u09c1\\u09b0\\u09cd\\u0997\\u09a8\\u09cd\\u09a7 \\u099b\\u09dc\\u09be\\u09df \\u09a8\\u09be!\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":573,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":549,\"sizes\":[]},\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"ca67923\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fd702d1\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1838497\",\"settings\":{\"slides\":[{\"image\":{\"id\":416,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cbe3b96d-38b6-47bb-a25e-13903c7dc84b.jpeg\"},\"_id\":\"ac54b46\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":417,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9461e1c9-352d-4930-bf3d-e3de92242d66.jpeg\"},\"_id\":\"faf8c2b\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":418,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/000859d1-8564-4bcd-85e2-dc9fb75980ff.jpeg\"},\"_id\":\"8ff395b\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":419,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8f7285fe-84db-48a8-a94e-c318af8d4dec.jpeg\"},\"_id\":\"46e9306\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":420,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/2a6d1c8a-3d0b-4cf2-b957-00754f90d682.jpeg\"},\"_id\":\"bc3960e\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":421,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/02b583fc-bb59-46fd-b155-b8c6cfa235be-1.jpeg\"},\"_id\":\"c82efb8\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"height\":{\"unit\":\"px\",\"size\":407,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"slide_border_color\":\"#ADA8A8\",\"skin\":\"coverflow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"media-carousel\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"7a9cbb9\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#290580\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"bd474e6\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#141D6F\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top\":\"wave-brush\",\"shape_divider_top_color\":\"#C7B61B\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bb43190\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0e07bea\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"940dc12\",\"settings\":{\"title\":\" <span style=\\\"color:red \\\"> \\u0985\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u099a\\u09be\\u09ae\\u09a1\\u09bc\\u09be  <\\/span>\\u099a\\u09c7\\u09a8\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09af\\u09bc\\n\",\"align\":\"center\",\"title_color\":\"#FDFDFD\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1f8c75f\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":60,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#FFFFFF\",\"primary_color\":\"#FFFFFF\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"ca89e3f\",\"settings\":{\"icon_list\":[{\"text\":\"\\ud83d\\udc49 \\u09ab\\u09be\\u09df\\u09be\\u09b0 \\u099f\\u09c7\\u09b8\\u09cd\\u099f \\u0985\\u09b0\\u09cd\\u09a5\\u09be\\u09ce \\u0986\\u0997\\u09c1\\u09a8\\u09c7 \\u09aa\\u09cb\\u09dc\\u09be\\u09b2\\u09c7 \\u09b8\\u09b9\\u099c\\u09c7 \\u09aa\\u09c1\\u09dc\\u09ac\\u09c7 \\u09a8\\u09be, \\u0997\\u09b2\\u09ac\\u09c7 \\u09a8\\u09be \\u09a5\\u09be\\u0995\\u09ac\\u09c7 \\u0985\\u0995\\u09cd\\u09b7\\u09a4\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ce6bf6d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49 \\u09b9\\u09be\\u09a4 \\u09a6\\u09bf\\u09df\\u09c7 \\u099a\\u09be\\u09aa \\u09a6\\u09bf\\u09b2\\u09c7 \\u099a\\u09be\\u09ae\\u09dc\\u09be \\u09b9\\u09b2\\u09c7 \\u09ab\\u09be\\u099f\\u09ac\\u09c7 \\u09a8\\u09be \\u0995\\u09bf\\u099b\\u09c1 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be, \\u0986\\u09b0\\u09cd\\u099f\\u09bf\\u09ab\\u09bf\\u09b6\\u09bf\\u09af\\u09bc\\u09be\\u09b2 \\u09b9\\u09b2\\u09c7 \\u09ab\\u09c7\\u099f\\u09c7 \\u09af\\u09be\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"67f5824\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49 \\u09a8\\u09be\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09a8\\u09bf\\u09b2\\u09c7 \\u099a\\u09be\\u09ae\\u09dc\\u09be \\u0997\\u09a8\\u09cd\\u09a7 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u0986\\u09b0\\u09cd\\u099f\\u09bf\\u09ab\\u09bf\\u09b6\\u09bf\\u09af\\u09bc\\u09be\\u09b2 \\u09b9\\u09b2\\u09c7 \\u0997\\u09a8\\u09cd\\u09a7 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09a8\\u09be\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"794b6e5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49 \\u0995\\u09c3\\u09a4\\u09cd\\u09b0\\u09bf\\u09ae \\u099a\\u09be\\u09ae\\u09dc\\u09be \\u09ac\\u09be \\u09b0\\u09c7\\u0995\\u09cd\\u09b8\\u09bf\\u09a8\\u09c7 \\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3\\u09a4 \\u0995\\u09cb\\u09a8 \\u09a8\\u09be \\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09aa\\u09dc \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a4\\u09be\\u09b0 \\u0989\\u09aa\\u09b0 \\u09aa\\u09b2\\u09bf\\u09ae\\u09be\\u09b0 \\u09a6\\u09bf\\u09df\\u09c7 \\u0995\\u09cb\\u099f\\u09bf\\u0982 \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u0986\\u09b0 \\u098f \\u099c\\u09a8\\u09cd\\u09af \\u0995\\u09c3\\u09a4\\u09cd\\u09b0\\u09bf\\u09ae \\u099a\\u09be\\u09ae\\u09dc\\u09be\\u09df \\u09a4\\u09c8\\u09b0\\u09bf \\u09aa\\u09a8\\u09cd\\u09af\\u099f\\u09bf \\u0993\\u09b2\\u09cd\\u099f\\u09be\\u09b2\\u09c7\\u0987 \\u0995\\u09be\\u09aa\\u09dc\\u09c7\\u09b0 \\u0986\\u09b8\\u09cd\\u09a4\\u09b0\\u09a3 \\u09aa\\u09be\\u0993\\u09df\\u09be \\u09af\\u09be\\u09df\\u0964 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u099a\\u09be\\u09ae\\u09dc\\u09be\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u09aa\\u09a8\\u09cd\\u09af\\u09c7 \\u098f\\u09ae\\u09a8 \\u0995\\u09bf\\u099b\\u09c1 \\u09a6\\u09c7\\u0996\\u09be \\u09af\\u09be\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"e826400\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#B7C213\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_color\":\"#FDFDFD\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":102.5},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"9361b78\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#DE5801\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"f3a7b6b\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b7a936b\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"95de469\",\"settings\":{\"title\":\" <span style=\\\"color: #0000ff\\\"> \\u0995\\u09cd\\u09af\\u099c\\u09c1\\u09df\\u09c7\\u09b2 \\u099c\\u09c1\\u09a4\\u09be<\\/span> \\u0995\\u09c7\\u09a8 \\u09aa\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n\",\"align\":\"center\",\"title_color\":\"#F1A50D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"866b447\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#C1C1C1\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"-4\",\"bottom\":\"-4\",\"left\":\"-4\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2909330\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"},\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d2523ab\",\"settings\":{\"icon_list\":[{\"text\":\"\\ud83d\\udc49  \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09c0\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09be\\u09a8\\u09be\\u09a8\\u09b8\\u0987\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"85973ee\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49  \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0987\\u0989\\u09a8\\u09bf\\u0995\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"2b0fc84\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49  \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b2\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09cd\\u09af\\u09be\\u099a \\u09b9\\u09af\\u09bc\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"620b571\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49  \\u09a8\\u09bf\\u099c\\u09c7\\u0995\\u09c7 \\u0986\\u09b0\\u09cd\\u0995\\u09b7\\u09a8\\u09c0\\u09af\\u09bc \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"2d33317\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49   \\u0987\\u0989\\u09a8\\u09bf\\u0995 \\u09a1\\u09bf\\u099c\\u09be\\u0987\\u09a8\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u09c7\\u099b\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"2f98ffc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_typography_font_weight\":\"bold\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"258cdec\",\"settings\":{\"button_type\":\"warning\",\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#C2631B\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"7b4357a\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d659f54\",\"settings\":{\"image\":{\"id\":423,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/2-scaled-1.webp\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"edca32c\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0b4c54e\",\"settings\":{\"title\":\" <span style=\\\"color: red\\\"> jildshop <\\/span> \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8 ?\\n\\n\",\"align\":\"center\",\"title_color\":\"#F1A50D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"c91f3ba\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#C1C1C1\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"-4\",\"bottom\":\"-4\",\"left\":\"-4\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b4f23df\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"},\"background_overlay_background\":\"classic\",\"border_border\":\"none\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3668fa9\",\"settings\":{\"image\":{\"id\":424,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/1-scaled-1.webp\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2c71dfd\",\"settings\":{\"button_type\":\"warning\",\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#C2631B\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"b07ed9d\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76aa801\",\"settings\":{\"icon_list\":[{\"text\":\"\\ud83d\\udc49 \\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0985\\u09b0\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u0997\\u09b0\\u09c1\\u09b0 \\u099a\\u09be\\u09ae\\u09dc\\u09be\\u0964\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"2f98ffc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49 \\u09b0\\u09be\\u09ac\\u09be\\u09b0 \\u0995\\u09c7\\u09b0\\u09c7\\u09aa \\u09b8\\u09cb\\u09b2\\u0964\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"51b0ec6\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49 \\u09ec \\u09ae\\u09be\\u09b8\\u09c7\\u09b0 \\u0993\\u09df\\u09be\\u09b0\\u09c7\\u09a8\\u09cd\\u099f\\u09bf \\u0964\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a40e998\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49 \\u09a1\\u0995\\u09cd\\u099f\\u09b0 \\u0987\\u09a8\\u09b8\\u09cb\\u09b2 \\u0987\\u0989\\u099c \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u09c7\\u099b\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"07c0f3e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49\\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a8 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u0964\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7aa7c3b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49   \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0985\\u0997\\u09cd\\u09b0\\u09c0\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be, \\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09af\\u09bc\\u09c7 \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u099f\\u09be\\u0995\\u09be \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"85973ee\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49  \\u09af\\u09a6\\u09bf \\u099c\\u09c1\\u09a4\\u09be \\u099a\\u09be\\u09ae\\u09a1\\u09bc\\u09be\\u09b0 \\u09a8\\u09be \\u09b9\\u09df \\u09aa\\u09cd\\u09b0\\u09ae\\u09be\\u09a3 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09b2\\u09c7 \\u09e7\\u09e6 \\u09b9\\u09be\\u099c\\u09be\\u09b0 \\u099f\\u09be\\u0995\\u09be \\u09aa\\u09c1\\u09b0\\u09b8\\u09cd\\u0995\\u09be\\u09b0\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"2b0fc84\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49  \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09b2 \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09af\\u09bc\\u09c7 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7\\u09c7\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be\\u0964\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"620b571\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\ud83d\\udc49  \\u099c\\u09c1\\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u0987\\u099c \\u09aa\\u09be\\u09df\\u09c7 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u098f\\u0995\\u09cd\\u09b8\\u099a\\u09c7\\u099e\\u09cd\\u099c \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"2d33317\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_font_weight\":\"bold\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"3482309\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b7b965\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a788625\",\"settings\":{\"title\":\"\\u09ac\\u09bf:\\u09a6\\u09cd\\u09b0: \\u09a4\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09b8\\u09be\\u0987\\u099c \\u09a8\\u09bf\\u09df\\u09c7 \\u0995\\u09a8\\u09ab\\u09bf\\u0989\\u099c \\u09b9\\u09b2\\u09c7 \\u098f\\u09b8\\u09cd\\u0995\\u09c7\\u09b2 \\u09ac\\u09be \\u09ab\\u09bf\\u09a4\\u09be \\u09ae\\u09c7\\u09aa\\u09c7 \\u09aa\\u09be\\u09df\\u09c7\\u09b0 \\u09ab\\u099f\\u09cb \\u09a6\\u09bf\\u09a8 <br\\/> <span style=\\\"color:red\\\"> Whatsapp 01923529627<\\/span>\",\"align\":\"center\",\"title_color\":\"#4020A5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/api.whatsapp.com\\/send?phone=+8801960552321&text= \\u0986\\u09ae\\u09bf \\u09b2\\u09cb\\u09ab\\u09be\\u09b0 \\u09a8\\u09bf\\u09a4\\u09c7 \\u099a\\u09be\\u0987 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"9b9c2f5\",\"settings\":{\"text\":\"Call Now \",\"link\":{\"url\":\"tel:01923529627\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"background_color\":\"#4B9615\",\"_background_background\":\"classic\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"877f6f0\",\"settings\":{\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F4F3EA\",\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3bfc7cc\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"2\",\"right\":\"20\",\"bottom\":\"2\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5413740\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u0987\\u099c \\u0997\\u09be\\u0987\\u09a1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"9de2556\",\"settings\":{\"text\":\"Divider\",\"style\":\"double\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":15,\"sizes\":[]},\"align\":\"center\",\"color\":\"#DE5801\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"a629d28\",\"settings\":{\"image\":{\"id\":425,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/fb295913-fc7a-4fdc-8251-50ccde869aba-1.jpeg\"},\"space\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":74,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"image_border_color\":\"#F4732D\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"height\":{\"unit\":\"px\",\"size\":481,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":277,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"526f14e\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1cd206d\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09a8\\u09cd\\u09af\\u09c7\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"3d879c5\",\"settings\":{\"background_background\":\"classic\",\"border_color\":\"#DE5801\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"88e95cc\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d0c29c\",\"settings\":{\"slides\":[{\"image\":{\"id\":416,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cbe3b96d-38b6-47bb-a25e-13903c7dc84b.jpeg\"},\"_id\":\"ac54b46\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":417,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9461e1c9-352d-4930-bf3d-e3de92242d66.jpeg\"},\"_id\":\"faf8c2b\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":418,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/000859d1-8564-4bcd-85e2-dc9fb75980ff.jpeg\"},\"_id\":\"8ff395b\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":419,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8f7285fe-84db-48a8-a94e-c318af8d4dec.jpeg\"},\"_id\":\"46e9306\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":420,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/2a6d1c8a-3d0b-4cf2-b957-00754f90d682.jpeg\"},\"_id\":\"bc3960e\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":421,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/02b583fc-bb59-46fd-b155-b8c6cfa235be-1.jpeg\"},\"_id\":\"a83ab0e\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"height\":{\"unit\":\"px\",\"size\":407,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"slide_border_color\":\"#ADA8A8\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"media-carousel\",\"elType\":\"widget\"},{\"id\":\"ec6499b\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"aad6116\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u098f\\u0987 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ab\\u09bf \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"400e0a6\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"border_color\":\"#ED9337\",\"border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a4c711e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54c437c\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"grid_rows_grid\":{\"unit\":\"fr\",\"size\":1,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b627f2d\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\u0983 \",\"highlighted_text\":\"\\u09e8\\u09ee\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"stroke_width\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"above_content\":\"yes\",\"rounded_edges\":\"yes\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"words_color\":\"#FFF9F9\",\"words_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#128742\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#DA9220\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"8df0a00\",\"settings\":{\"marker\":\"double_underline\",\"before_text\":\"\\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\u0983 \",\"highlighted_text\":\"\\u09e8\\u09e8\\u09ef\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be \",\"marker_color\":\"#FF0000\",\"title_color\":\"#FCFCFC\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"words_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#128742\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#DA9220\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"bc1c4f8\",\"settings\":{\"title\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09ab\\u09cd\\u09b0\\u09c0\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FF0000\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"13894d5\",\"elType\":\"widget\",\"settings\":{\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"layout\":\"two-column\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09b0\\u0982 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Orienta\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Open Sans\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"order-form\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"heading_text_color\":\"#000000\",\"heading_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"1e2ad87\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5996','2045','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5997','2045','_elementor_controls_usage','a:11:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:4;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:7:{s:5:\"width\";i:1;s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:2;s:18:\"image_border_color\";i:2;s:19:\"image_border_radius\";i:2;s:5:\"space\";i:2;s:6:\"height\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:11;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:5:\"align\";i:11;s:21:\"typography_typography\";i:11;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:11;s:22:\"typography_font_weight\";i:8;s:22:\"typography_line_height\";i:2;s:11:\"title_color\";i:10;s:23:\"text_stroke_text_stroke\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:3;s:21:\"_element_custom_width\";i:2;}s:18:\"_section_transform\";a:3:{s:28:\"_transform_translateX_effect\";i:1;s:28:\"_transform_translateY_effect\";i:1;s:23:\"_transform_scale_effect\";i:1;}}}}s:14:\"media-carousel\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_slides\";a:4:{s:6:\"slides\";i:2;s:6:\"height\";i:2;s:5:\"width\";i:2;s:4:\"skin\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_slides_style\";a:4:{s:13:\"space_between\";i:2;s:17:\"slide_border_size\";i:2;s:19:\"slide_border_radius\";i:2;s:18:\"slide_border_color\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:7;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:4:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;}s:21:\"section_shape_divider\";a:5:{s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;}s:26:\"section_background_overlay\";a:3:{s:24:\"background_overlay_image\";i:1;s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:4:{s:12:\"border_color\";i:2;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:5;s:4:\"link\";i:5;s:11:\"button_type\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:5;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:2;s:16:\"background_color\";i:5;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:2;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:4:{s:5:\"width\";i:2;s:5:\"align\";i:2;s:4:\"look\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_border\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:1:{s:5:\"color\";i:2;}s:18:\"section_icon_style\";a:1:{s:13:\"primary_color\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:3;}s:18:\"section_text_style\";a:6:{s:26:\"icon_typography_typography\";i:3;s:27:\"icon_typography_font_family\";i:3;s:25:\"icon_typography_font_size\";i:3;s:27:\"icon_typography_font_weight\";i:3;s:27:\"icon_typography_line_height\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:9:{s:14:\"flex_direction\";i:10;s:13:\"content_width\";i:4;s:5:\"width\";i:4;s:8:\"flex_gap\";i:2;s:11:\"boxed_width\";i:2;s:10:\"min_height\";i:2;s:14:\"container_type\";i:1;s:17:\"grid_columns_grid\";i:1;s:14:\"grid_rows_grid\";i:1;}}s:5:\"style\";a:2:{s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:2;}s:14:\"section_border\";a:2:{s:13:\"border_border\";i:4;s:12:\"border_width\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:2;s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:10:\"after_text\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:4:{s:12:\"stroke_width\";i:1;s:13:\"above_content\";i:1;s:13:\"rounded_edges\";i:1;s:12:\"marker_color\";i:1;}s:18:\"section_style_text\";a:5:{s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"words_color\";i:2;s:27:\"words_typography_typography\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:2;s:17:\"_background_color\";i:2;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:2;s:13:\"_border_width\";i:2;s:13:\"_border_color\";i:2;s:14:\"_border_radius\";i:2;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5998','2046','wcf-flow-id','2040');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('5999','2046','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6000','2046','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6001','2046','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6002','2046','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6003','2046','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6004','2046','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6005','2046','_edit_lock','1717922692:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6006','2046','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6007','2046','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6008','2046','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6009','2046','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6010','2046','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6012','2047','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6013','2047','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6014','2047','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6015','2047','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6016','2047','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6017','2047','_elementor_data','[{\"id\":\"6e18c484\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]}},\"elements\":[{\"id\":\"58dc0f63\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b1b5b4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2b4d20ba\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"43614d00\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b7cd504\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49d33178\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81f30b4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d9c59a\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"79ff67d9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"710056f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1e540ace\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6018','2047','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6019','2047','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6020','2048','wcf-flow-id','1973');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6021','2048','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6022','2048','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6023','2048','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6024','2048','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6025','2048','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6026','2048','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6027','2048','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6028','2048','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6029','2048','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6030','2048','_edit_lock','1717966367:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6031','2048','_elementor_data','[{\"id\":\"3f185a25\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#EB1C54\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bcd6f96\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ffbaf01\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2387a3e5\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"1ae7e322\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1b51bede\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4a3b630f\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"16e33cea\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74f98ddd\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f06976\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"54b08b07\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"333ddc5e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54a40f36\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6032','2048','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6034','2049','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6035','2049','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6036','2049','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6037','2049','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6038','2049','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6039','2049','_elementor_data','[{\"id\":\"3f185a25\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#EB1C54\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]}},\"elements\":[{\"id\":\"bcd6f96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5ffbaf01\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2387a3e5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1ae7e322\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b51bede\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a3b630f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e33cea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74f98ddd\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"64f06976\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"54b08b07\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"333ddc5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"54a40f36\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6040','2049','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6041','2049','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6042','2051','wcf-flow-id','2050');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6043','2051','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6044','2051','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6045','2051','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6046','2051','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6047','2051','_elementor_version','3.19.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6048','2051','_elementor_pro_version','3.17.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6049','2051','_edit_lock','1708193812:2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6051','2050','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:2051;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2053;s:5:\"title\";s:22:\"Rice Skin Beauty Serum\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2067;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6052','2052','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6053','2052','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6054','2052','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6055','2052','_elementor_version','3.19.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6056','2052','_elementor_pro_version','3.17.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6058','2053','wcf-flow-id','2050');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6059','2053','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6060','2053','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6061','2053','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6062','2053','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6063','2053','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6064','2053','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6065','2053','_edit_lock','1780985144:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6066','2053','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6067','2053','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6068','2053','_elementor_data','[{\"id\":\"af889b7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"9db2065\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b819e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"8381e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"77b2b10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rice Skin Beauty Serum 15ML\",\"title_color\":\"#eb1111\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bb578b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09cd\\u09b0\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u0997\\u09b0\\u09cd\\u09a4\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b9\\u09df, \\u0986\\u09b0 \\u098f\\u0995\\u09c7 pores \\u09ac\\u09b2\\u09c7\\u0964 \\u0986\\u09b0 \\u098f\\u0987 pores \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09ac\\u099a\\u09c7\\u09df\\u09c7 \\u09ac\\u09c7\\u09b8\\u09cd\\u099f \\u09b9\\u09b2\\u09cb<span style=\\\"color: #ff0000;\\\">\\u00a0Rice Serum<\\/span>. \\u098f\\u099f\\u09be \\u09b6\\u09c1\\u09a7\\u09c1 pores remove \\u0995\\u09b0\\u09c7 \\u09a8\\u09be, \\u09b8\\u09cd\\u0995\\u09bf\\u09a8\\u099f\\u09be\\u0987\\u099f \\u0993 \\u0997\\u09cd\\u09b2\\u09cb\\u09df\\u09bf\\u0982 \\u0995\\u09b0\\u09c7 Damage Skin Repair \\u0995\\u09b0\\u09c7\\u0964<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ae527d0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#EB1111\",\"button_background_hover_color\":\"#FB6107\",\"hover_animation\":\"pop\",\"align_mobile\":\"justify\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a49bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b37fe17\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2126,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/c5ce835e-4872-4d7f-a060-1717ee012280.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b871e90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F1F1F1\",\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]}},\"elements\":[{\"id\":\"a838f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61b505b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09cd\\u09b0\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u0997\\u09b0\\u09cd\\u09a4\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b9\\u09df\\u09c7, \\u0986\\u09b0 \\u098f\\u0995\\u09c7 pores \\u09ac\\u09b2\\u09c7\\u0964 \\u0986\\u09b0 \\u098f\\u0987 pores \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09ac\\u099a\\u09c7\\u09df\\u09c7 Best \\u09b9\\u09b2\\u09cb Rice Serum. \\u098f\\u099f\\u09bf \\u099b\\u09c7\\u09b2\\u09c7 \\u09ae\\u09c7\\u09df\\u09c7 \\u09b8\\u09ac\\u09be\\u0987 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u0964 \\u0995\\u09cb\\u09a3 \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b0 \\u09b8\\u09be\\u0987\\u09a1 \\u0987\\u09ab\\u09c7\\u0995\\u09cd\\u099f \\u09a8\\u09c7\\u0987\\u0964<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"align\":\"center\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"81b6de5\",\"elType\":\"widget\",\"settings\":{\"marker\":\"curly\",\"before_text\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed*\\u09a6\\u09bf*\\u09a8\\u09c7 \\u099a\\u09c7\\u09b9\\u09be\\u09b0\\u09be\\u09df \\u0995\\u09ae\\u09ac\\u09c7\",\"highlighted_text\":\"\\u09eb*\\u09ac\\u099b*\\u09b0\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#FD0303\",\"title_color\":\"#000000\",\"words_color\":\"#FD2804\",\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Anek Bangla\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"e1cd4df\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"justify\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#EB1111\",\"button_background_hover_color\":\"#000000\",\"hover_animation\":\"push\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":70,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a433ddc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"b54e401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e7718e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd036ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c8ff88\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b0\\u09be\\u0987\\u09b8 \\u09b8\\u09bf\\u09b0\\u09be\\u09ae \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8?\",\"title_color\":\"#EB1111\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f23b62\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a4\\u09cd\\u09ac\\u0995 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be,\\u0989\\u099c\\u09cd\\u099c\\u09b2,\\u0997\\u09cd\\u09b2\\u09cb\\u09df\\u09bf\\u0982 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"4c1eab1\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09aa\\u09cb\\u09b0 \\u09ae\\u09bf\\u09a8\\u09bf\\u09ae\\u09be\\u0987\\u099c \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c27d33b\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995 \\u09ae\\u09b8\\u09c3\\u09a3 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"4f54ccb\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d641ba9\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u09af\\u09cb\\u0997\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"1449e9c\"},{\"text\":\"\\u09a1\\u09cd\\u09b0\\u09be\\u0987 \\u09a4\\u09cd\\u09ac\\u0995 \\u09ae\\u09af\\u09bc\\u09c7\\u09b6\\u09cd\\u099a\\u09be\\u09b0\\u09be\\u0987\\u099c \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2d350d8\"},{\"text\":\"\\u0995\\u09cb\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09a8 \\u09ae\\u09c7\\u09af\\u09bc\\u09c7\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a4 \\u09b8\\u09cd\\u0995\\u09bf\\u09a8\\u0995\\u09c7 \\u0997\\u09cd\\u09b2\\u09be\\u09b8\\u09b8\\u09cd\\u0995\\u09cd\\u09b0\\u09bf\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"70a40e2\"},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09bf\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a4\\u09cd\\u09ac\\u0995\\u0995\\u09c7 \\u099f\\u09be\\u09a8\\u099f\\u09be\\u09a8 \\u09b0\\u09be\\u0996\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"3768a17\"},{\"text\":\"\\u09b8\\u09c2\\u09b0\\u09cd\\u09af\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09b0 \\u09aa\\u09cd\\u09b0\\u09ad\\u09be\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"19ff708\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995 \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09b9 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09be\\u099a\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"97ffc23\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#FB6107\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Anek Bangla\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"802d395\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#EB1111\",\"button_background_hover_color\":\"#FB6107\",\"hover_animation\":\"pop\",\"align_mobile\":\"justify\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d207a7a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F8F3F0\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]}},\"elements\":[{\"id\":\"7147666\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"7c15ffa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\",\"align\":\"center\",\"title_color\":\"#EB1111\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a4b772\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b8\\u09bf\\u09b0\\u09be\\u09ae\\u09c7\\u09b0 \\u09e8\\/\\u09e9 \\u09ab\\u09cb\\u0981\\u099f\\u09be \\u09b9\\u09be\\u09a4\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u0999\\u09cd\\u0997\\u09c1\\u09b2 \\u09a6\\u09bf\\u09df\\u09c7 \\u09b9\\u09be\\u09b2\\u0995\\u09be Dabbing motion \\u098f massage \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"_id\":\"4c1eab1\",\"selected_icon\":{\"value\":\"fas fa-eye-dropper\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"left\",\"divider\":\"yes\",\"icon_color\":\"#FB6107\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Anek Bangla\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"text_color\":\"#000000\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":80,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"529359f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4cafbbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"494881e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2126,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/c5ce835e-4872-4d7f-a060-1717ee012280.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1564efa\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"justify\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#EB1111\",\"button_background_hover_color\":\"#000000\",\"hover_animation\":\"push\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"05fe02b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F3F0\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\"},\"elements\":[{\"id\":\"82720a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EB1111\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a9501a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995 \\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09c1\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#EB1111\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31ee8a7\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8: \",\"highlighted_text\":\"01819000000\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"marker_color\":\"#FF0000\",\"title_color\":\"#000000\",\"words_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Anek Bangla\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Anek Bangla\",\"words_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"d504c6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_text_color\":\"#000000\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_color\":\"#000000\",\"input_border_size\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"input_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#FF0000\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf39f02\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"350081b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d73da1e\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6069','2053','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6070','2053','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6071','2053','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6072','2053','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6073','2053','wcf-enable-product-options','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6074','2053','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6075','2053','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6076','2053','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6077','2053','wcf-enable-product-quantity','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6078','2053','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6079','2053','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6080','2053','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6081','2053','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6082','2053','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6083','2053','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6084','2053','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6085','2053','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6086','2053','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6087','2053','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6088','2053','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6089','2053','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6090','2053','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6091','2053','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6092','2053','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6093','2053','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6094','2053','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6095','2053','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6096','2053','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6097','2053','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6098','2053','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6099','2053','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6102','2054','wcf-flow-id','2020');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6103','2054','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6104','2054','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6105','2054','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6106','2054','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6107','2054','_elementor_version','3.20.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6108','2054','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6109','2054','_edit_lock','1711461124:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6110','2054','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6111','2054','wcf-dynamic-css-version','1710879359');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6112','2054','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6113','2054','_elementor_data','[{\"id\":\"3970749\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d39ee14\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ba343aa\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"f8719cf\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#08563E\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"45b14c5\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\",\"align\":\"center\",\"title_color\":\"#08563E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"cb804cd\",\"settings\":{\"editor\":\"<p>\\u09aa\\u09a3\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09b8\\u0982\\u0995\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a4 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"c7722d7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"c1d67b2\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#DADADA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7977ae5\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fb993a4\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"85f5494\\\" name=\\\"current-date-time\\\" settings=\\\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}7B{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22date_format{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3A{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22custom{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22custom_format{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3A{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20Y{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22before{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3A{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22Copyright{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}C2{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}A9{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22after{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3A{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22Your{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20Business{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20Name{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}7C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20This{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20website{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20made{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20with{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}E2{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}9D{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}A4{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}EF{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}B8{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}8F{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20by{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Ca{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20href{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22https{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3A{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2F{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2Fdigiprodwave.xyz{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2F{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20style{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22color{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Ared{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3EDPW{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2Fa{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3E{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}7D\\\"]\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6114','2054','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6116','2055','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6117','2055','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6118','2055','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6119','2055','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6120','2055','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6121','2055','_elementor_data','[{\"id\":\"e52e0d5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"80c8d67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"69c4d70\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"b26a6da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1602e80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"af889b7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"9db2065\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b819e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"8381e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"77b2b10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rice Skin Beauty Serum 15ML\",\"title_color\":\"#eb1111\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bb578b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09cd\\u09b0\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u0997\\u09b0\\u09cd\\u09a4\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b9\\u09df, \\u0986\\u09b0 \\u098f\\u0995\\u09c7 pores \\u09ac\\u09b2\\u09c7\\u0964 \\u0986\\u09b0 \\u098f\\u0987 pores \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09ac\\u099a\\u09c7\\u09df\\u09c7 \\u09ac\\u09c7\\u09b8\\u09cd\\u099f \\u09b9\\u09b2\\u09cb<span style=\\\"color: #ff0000;\\\">\\u00a0Rice Serum<\\/span>. \\u098f\\u099f\\u09be \\u09b6\\u09c1\\u09a7\\u09c1 pores remove \\u0995\\u09b0\\u09c7 \\u09a8\\u09be, \\u09b8\\u09cd\\u0995\\u09bf\\u09a8\\u099f\\u09be\\u0987\\u099f \\u0993 \\u0997\\u09cd\\u09b2\\u09cb\\u09df\\u09bf\\u0982 \\u0995\\u09b0\\u09c7 Damage Skin Repair \\u0995\\u09b0\\u09c7\\u0964<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ae527d0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#EB1111\",\"button_background_hover_color\":\"#FB6107\",\"hover_animation\":\"pop\",\"align_mobile\":\"justify\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a49bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b37fe17\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":586,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/why-268x300-1-1.jpg\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b871e90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F1F1F1\",\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]}},\"elements\":[{\"id\":\"a838f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61b505b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09cd\\u09b0\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u0997\\u09b0\\u09cd\\u09a4\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b9\\u09df\\u09c7, \\u0986\\u09b0 \\u098f\\u0995\\u09c7 pores \\u09ac\\u09b2\\u09c7\\u0964 \\u0986\\u09b0 \\u098f\\u0987 pores \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09ac\\u099a\\u09c7\\u09df\\u09c7 Best \\u09b9\\u09b2\\u09cb Rice Serum. \\u098f\\u099f\\u09bf \\u099b\\u09c7\\u09b2\\u09c7 \\u09ae\\u09c7\\u09df\\u09c7 \\u09b8\\u09ac\\u09be\\u0987 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u0964 \\u0995\\u09cb\\u09a3 \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b0 \\u09b8\\u09be\\u0987\\u09a1 \\u0987\\u09ab\\u09c7\\u0995\\u09cd\\u099f \\u09a8\\u09c7\\u0987\\u0964<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"align\":\"center\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"81b6de5\",\"elType\":\"widget\",\"settings\":{\"marker\":\"curly\",\"before_text\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed*\\u09a6\\u09bf*\\u09a8\\u09c7 \\u099a\\u09c7\\u09b9\\u09be\\u09b0\\u09be\\u09df \\u0995\\u09ae\\u09ac\\u09c7\",\"highlighted_text\":\"\\u09eb*\\u09ac\\u099b*\\u09b0\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#FD0303\",\"title_color\":\"#000000\",\"words_color\":\"#FD2804\",\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Anek Bangla\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"e1cd4df\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"justify\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#EB1111\",\"button_background_hover_color\":\"#000000\",\"hover_animation\":\"push\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":70,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a433ddc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"b54e401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e7718e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd036ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c8ff88\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b0\\u09be\\u0987\\u09b8 \\u09b8\\u09bf\\u09b0\\u09be\\u09ae \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8?\",\"title_color\":\"#EB1111\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f23b62\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a4\\u09cd\\u09ac\\u0995 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be,\\u0989\\u099c\\u09cd\\u099c\\u09b2,\\u0997\\u09cd\\u09b2\\u09cb\\u09df\\u09bf\\u0982 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"4c1eab1\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09aa\\u09cb\\u09b0 \\u09ae\\u09bf\\u09a8\\u09bf\\u09ae\\u09be\\u0987\\u099c \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c27d33b\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995 \\u09ae\\u09b8\\u09c3\\u09a3 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"4f54ccb\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d641ba9\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u09af\\u09cb\\u0997\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"1449e9c\"},{\"text\":\"\\u09a1\\u09cd\\u09b0\\u09be\\u0987 \\u09a4\\u09cd\\u09ac\\u0995 \\u09ae\\u09af\\u09bc\\u09c7\\u09b6\\u09cd\\u099a\\u09be\\u09b0\\u09be\\u0987\\u099c \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2d350d8\"},{\"text\":\"\\u0995\\u09cb\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09a8 \\u09ae\\u09c7\\u09af\\u09bc\\u09c7\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a4 \\u09b8\\u09cd\\u0995\\u09bf\\u09a8\\u0995\\u09c7 \\u0997\\u09cd\\u09b2\\u09be\\u09b8\\u09b8\\u09cd\\u0995\\u09cd\\u09b0\\u09bf\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"70a40e2\"},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09bf\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a4\\u09cd\\u09ac\\u0995\\u0995\\u09c7 \\u099f\\u09be\\u09a8\\u099f\\u09be\\u09a8 \\u09b0\\u09be\\u0996\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"3768a17\"},{\"text\":\"\\u09b8\\u09c2\\u09b0\\u09cd\\u09af\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09b0 \\u09aa\\u09cd\\u09b0\\u09ad\\u09be\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"19ff708\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995 \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09b9 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09be\\u099a\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"97ffc23\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#FB6107\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Anek Bangla\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"802d395\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#EB1111\",\"button_background_hover_color\":\"#FB6107\",\"hover_animation\":\"pop\",\"align_mobile\":\"justify\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d207a7a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F8F3F0\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]}},\"elements\":[{\"id\":\"7147666\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"7c15ffa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\",\"align\":\"center\",\"title_color\":\"#EB1111\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a4b772\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b8\\u09bf\\u09b0\\u09be\\u09ae\\u09c7\\u09b0 \\u09e8\\/\\u09e9 \\u09ab\\u09cb\\u0981\\u099f\\u09be \\u09b9\\u09be\\u09a4\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u0999\\u09cd\\u0997\\u09c1\\u09b2 \\u09a6\\u09bf\\u09df\\u09c7 \\u09b9\\u09be\\u09b2\\u0995\\u09be Dabbing motion \\u098f massage \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"_id\":\"4c1eab1\",\"selected_icon\":{\"value\":\"fas fa-eye-dropper\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"left\",\"divider\":\"yes\",\"icon_color\":\"#FB6107\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Anek Bangla\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"text_color\":\"#000000\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":80,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"529359f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4cafbbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"494881e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":587,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/real-1024x634-1.jpg\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1564efa\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"justify\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#EB1111\",\"button_background_hover_color\":\"#000000\",\"hover_animation\":\"push\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"05fe02b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F3F0\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\"},\"elements\":[{\"id\":\"82720a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EB1111\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a9501a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995 \\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09c1\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#EB1111\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31ee8a7\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8: \",\"highlighted_text\":\"01819000000\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"marker_color\":\"#FF0000\",\"title_color\":\"#000000\",\"words_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Anek Bangla\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Anek Bangla\",\"words_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"d504c6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_text_color\":\"#000000\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_color\":\"#000000\",\"input_border_size\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"input_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#FF0000\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf39f02\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"350081b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d73da1e\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6122','2055','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6123','2055','_elementor_controls_usage','a:8:{s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:3;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"align\";i:1;s:5:\"width\";i:2;s:19:\"image_border_radius\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:12;s:16:\"content_position\";i:3;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:10;s:16:\"content_position\";i:4;s:13:\"content_width\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:7;s:6:\"margin\";i:1;s:11:\"_element_id\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:4;s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:22:\"typography_line_height\";i:5;s:5:\"align\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:4;s:4:\"size\";i:4;s:4:\"link\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:16:\"background_color\";i:4;s:29:\"button_background_hover_color\";i:4;s:15:\"hover_animation\";i:4;s:12:\"align_mobile\";i:2;s:13:\"border_radius\";i:4;s:5:\"align\";i:3;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:21:\"_element_custom_width\";i:2;s:14:\"_element_width\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:2;s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:4:\"link\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:2;}s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:2;s:11:\"words_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:28:\"title_typography_font_weight\";i:2;s:26:\"title_typography_font_size\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:2;s:7:\"divider\";i:2;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:6:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:27:\"icon_typography_line_height\";i:1;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:21:\"_element_custom_width\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6124','2057','wcf-flow-id','2056');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6125','2057','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6126','2057','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6127','2057','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6128','2057','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6129','2057','_elementor_version','3.17.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6130','2057','_edit_lock','1708334421:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6132','2056','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:2057;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2059;s:5:\"title\";s:39:\"Ibaby toddler rocker baby rocking chair\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2097;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6133','2058','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6134','2058','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6135','2058','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6136','2058','_elementor_version','3.17.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6138','2059','wcf-flow-id','2056');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6139','2059','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6140','2059','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6141','2059','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6142','2059','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6143','2059','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6144','2059','_edit_lock','1717923357:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6145','2059','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6146','2059','wcf_fields_billing','a:12:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}s:24:\"billing_________________\";a:16:{s:4:\"type\";s:5:\"radio\";s:5:\"label\";s:44:\"কালার পছন্দ করুন\";s:11:\"placeholder\";s:0:\"\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:11:\"label_class\";a:0:{}s:13:\"show_in_email\";s:0:\"\";s:8:\"required\";s:3:\"yes\";s:6:\"custom\";b:1;s:7:\"default\";s:27:\"পিংক | ব্লু\";s:7:\"options\";s:0:\"\";s:10:\"date_input\";s:14:\"datetime-local\";s:9:\"optimized\";s:0:\"\";s:5:\"width\";s:3:\"100\";s:4:\"name\";s:24:\"billing_________________\";s:3:\"key\";s:24:\"billing_________________\";s:7:\"enabled\";s:3:\"yes\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6147','2059','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6148','2059','_elementor_data','[{\"id\":\"c2771b3\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#EFF8FF\",\"shape_divider_bottom\":\"wave-brush\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"top right\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6784ca7\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56b4a84\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":12,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"62\",\"bottom\":\"62\",\"left\":\"62\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"125ec4e\",\"settings\":{\"title\":\"\\u099f\\u09bf\\u0986\\u0987\\u09ac\\u09c7\\u09ac\\u09bf \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09af\\u09bc\\u09be\\u09b0 <\\/br>\\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0989\\u099c\\u09bf\\u0995 \\u098f\\u09ac\\u0982 \\u09ad\\u09be\\u0987\\u09ac\\u09cd\\u09b0\\u09c7\\u09b6\\u09a8\",\"align\":\"center\",\"title_color\":\"#38B000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"471e74b\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099b\\u09cb\\u099f \\u09ac\\u09be\\u09ac\\u09c1 \\u0986\\u099b\\u09c7 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u09ac\\u09be\\u09ac\\u09c1\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u0987 \\u09ac\\u09c7\\u09ac\\u09bf \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0 \\u09a8\\u09be\\u0987 \\u09a4\\u09be\\u09b0 \\u09ae\\u09be\\u09a8\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4\\u0964\",\"align\":\"center\",\"title_color\":\"#403A02\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"f781be5\",\"settings\":{\"title\":\"\\u09ae\\u09c2\\u09b2\\u09cd\\u09af <del>\\u09e9\\u09eb\\u09e6\\u09e6<\\/del> \\u09e9\\u09e7\\u09eb\\u09e6\\/=\",\"align\":\"center\",\"title_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2921832\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"800\",\"button_text_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_background_hover_color\":\"#FF5B4B\",\"hover_animation\":\"grow\",\"size\":\"md\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=5c74819\",\"button_background_hover_color\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"6f9c7d6\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"content_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"469bcca\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2080a7b\",\"settings\":{\"gap\":\"no\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"content_width_mobile\":{\"unit\":\"px\",\"size\":959,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dc14a15\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"db82e87\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/2qd1FrD5hDc?si=WRP7h784cUsAcyYb\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"dashed\",\"_border_color\":\"#38B000\",\"image_overlay\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"88babfa\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"800\",\"button_text_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"button_background_hover_color\":\"#FF5B4B\",\"hover_animation\":\"grow\",\"size\":\"md\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5c74819\",\"button_background_hover_color\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"97a668d\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#EFF8FF\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"daf4087\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9b2699a\",\"settings\":{\"title\":\"\\u09af\\u09c7 \\u09eb\\u099f\\u09bf \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a4\\u09cd\\u09af\\u09c7\\u0995 \\u09ae\\u09be\\u09df\\u09c7\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ac\\u09c7\\u09ac\\u09bf \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0  \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09a6\\u09b0\\u0995\\u09be\\u09b0\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#38B000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"acfa23d\",\"settings\":{\"style\":\"zigzag_tribal\",\"width\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FF5B4B\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"0210446\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u0995\\u09c7  \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0\\u09c7 \\u09ac\\u09b8\\u09be\\u09b2\\u09c7 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be \\u0995\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u0995\\u09b0\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"16768eb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u0995\\u09c7 \\u0995\\u09cb\\u09b2\\u09c7 \\u09a8\\u09c7\\u0993\\u09df\\u09be\\u09b0 \\u09b2\\u09cb\\u0995 \\u09a8\\u09be \\u09a5\\u09be\\u0995\\u09b2\\u09c7 \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0\\u09c7 \\u09ac\\u09b8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09b8\\u09b9\\u099c\\u09c7 \\u09af\\u09c7 \\u0995\\u09a8\\u09cb \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"380c45a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a6\\u09c0\\u09b0\\u09cd\\u0998\\u0995\\u09cd\\u09b7\\u09a3  \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u0995\\u09c7 \\u0995\\u09cb\\u09b2\\u09c7 \\u09a8\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09b9\\u09be\\u09b8\\u09bf\\u0996\\u09c1\\u09b6\\u09bf \\u0993 \\u0986\\u09a8\\u09a8\\u09cd\\u09a6\\u09c7 \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09b8\\u09ac\\u09b8\\u09ae\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"05b5ca1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09be \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be-\\u09ac\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u0995\\u09b0\\u09be\\u09b8\\u09b9 \\u09af\\u09c7 \\u0995\\u09cb\\u09a8\\u09cb \\u09b9\\u09be\\u09a4\\u09c7\\u09b0 \\u0995\\u09be\\u099c \\u0985\\u09a4\\u09bf  \\u09b8\\u09b9\\u099c\\u09c7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09aa\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u0998\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09b2\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"1fb072b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09af\\u09c7 \\u09b8\\u0995\\u09b2 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u09b0\\u09be \\u098f\\u0995\\u099f\\u09c1 \\u09b0\\u09bf\\u09b2\\u09be\\u0995\\u09cd\\u09b8 \\u09a5\\u09be\\u0995\\u09a4\\u09c7 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c7 \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u0987 \\u09aa\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u098f\\u09b0 \\u09ac\\u09bf\\u0995\\u09b2\\u09cd\\u09aa \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3f060eb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#38B000\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_self_align\":\"left\",\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_color\":\"\"},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"divider\":\"yes\",\"divider_color\":\"#38B000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"da1a2a3\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"86a4956\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a83449e\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ab\\u09bf\\u099a\\u09be\\u09b0\\u09b8\",\"align\":\"center\",\"title_color\":\"#38B000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"8146969\",\"settings\":{\"style\":\"zigzag_tribal\",\"width\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FF5B4B\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"46f43ca\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09a7\\u09c1\\u09a8\\u09bf\\u0995, \\u099f\\u09c7\\u0995\\u09b8\\u0987 \\u09ab\\u09cd\\u09b0\\u09c7\\u09ae\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"b564e8d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ac\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09bf\\u09b0 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af\\u09c7 \\u099a\\u09be\\u09b2\\u09bf\\u09a4\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"ee87bd6\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09af\\u09bc \\u09a6\\u09c1\\u0987\\u099f\\u09bf \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u09aa\\u09bf\\u0999\\u09cd\\u0995 \\u098f\\u09ac\\u0982 \\u09b8\\u09cd\\u0995\\u09be\\u0987 \\u09ac\\u09cd\\u09b2\\u09c1\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"f5be1f3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0985\\u09aa\\u09b8\\u09be\\u09b0\\u09a3\\u09af\\u09cb\\u0997\\u09cd\\u09af \\u0996\\u09c7\\u09b2\\u09a8\\u09be \\u09ac\\u09be\\u09b0, \\u099d\\u09c1\\u09b2\\u09a8\\u09cd\\u09a4 \\u0996\\u09c7\\u09b2\\u09a8\\u09be\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"408754d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be \\u09aa\\u09be \\u09a8\\u09be\\u09dc\\u09be\\u099a\\u09be\\u09dc\\u09be \\u0995\\u09b0\\u09b2\\u09c7 \\u098f\\u099f\\u09be\\u0993 (\\u09a6\\u09c1\\u09b2\\u09a4\\u09c7) \\u09a5\\u09be\\u0995\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"bce663a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09bf\\u0989\\u099c\\u09bf\\u0995\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u0995\\u09bf\\u0982 \\u09ae\\u09cb\\u09b6\\u09a8 \\u0993 \\u09b8\\u09be\\u09a5\\u09c7 \\u0996\\u09c7\\u09b2\\u09a8\\u09be \\u09b0\\u09df\\u09c7\\u099b\\u09c7\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"90ebf9e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a \\u09a7\\u09be\\u09b0\\u09a8 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09e7\\u09ee \\u0995\\u09c7\\u099c\\u09bf\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"a560504\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u099a\\u09ae\\u09ce\\u0995\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09aa\\u09a8\\u09cd\\u09af \\u09af\\u09be \\u09a6\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be \\u0986\\u09a8\\u09a8\\u09cd\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0996\\u09c7\\u09b2\\u09be \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"e7771c5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#38B000\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"divider_color\":\"#38B000\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"459658f\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"acc38d7\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7837db5\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u099b\\u09ac\\u09bf\\u09b0 \\u09a8\\u09cd\\u09af\\u09be\\u09df \\u09ac\\u0995\\u09cd\\u09b8 \\u0986\\u0995\\u09be\\u09b0\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09cc\\u099b\\u09be\\u09ac\\u09c7\\n\",\"align\":\"center\",\"title_color\":\"#38B000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c31f079\",\"settings\":{\"style\":\"zigzag_tribal\",\"width\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FF5B4B\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"e123b16\",\"settings\":{\"carousel\":[],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"arrows_color\":\"#38B000\",\"dots_position\":\"inside\",\"image_spacing\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#38B000\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"},{\"id\":\"de57f44\",\"settings\":{\"editor\":\"<p>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09a8\\u09cd\\u09af \\u098f\\u09ae\\u09a8 \\u09ac\\u0995\\u09cd\\u09b8 \\u0986\\u0995\\u09be\\u09b0\\u09c7 \\u09af\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993 \\u09a6\\u09c7\\u0996\\u09c7 \\u09b8\\u09c7\\u099f\\u09bf\\u0982 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7, \\u0996\\u09c1\\u09ac\\u0987 \\u09b8\\u09b9\\u099c \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8, \\u09a8\\u09be \\u09aa\\u09be\\u09b0\\u09b2\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8, \\u0986\\u09ae\\u09b0\\u09be \\u09ac\\u09c1\\u099d\\u09be\\u09df \\u09a6\\u09bf\\u09ac\\u09cb\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#F80202\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"43b72ca\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"content_width_mobile\":{\"unit\":\"px\",\"size\":959,\"sizes\":[]},\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e2ade22\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"18e9d16\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/Flp4yJNYcUs?si=60hWH_FNfVl_q3aL\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"dashed\",\"_border_color\":\"#38B000\",\"image_overlay\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"0bcb093\",\"settings\":{\"title\":\"\\u09ac\\u09c7\\u09ac\\u09c0 \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0 \\u09b8\\u09c7\\u099f\\u09bf\\u0982 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"348214e\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#EFF8FF\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom\":\"clouds\",\"shape_divider_bottom_negative\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cc7fe23\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e336b06\",\"settings\":{\"title\":\"\\u09af\\u09c7\\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8 - 01554462725\\n\",\"align\":\"center\",\"title_color\":\"#38B000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"bd86057\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"800\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#38B000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FF5B4B\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\"},\"align_mobile\":\"justify\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"458b2ea\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48af126\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#522694\",\"border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a022e5c\",\"settings\":{\"title\":\"<span style=\\\"color: #000;\\\">\\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u09b9\\u09be\\u0987 \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf <\\/span>\\u099f\\u09c7\\u0995\\u09b8\\u0987 \\u09ac\\u09c7\\u09ac\\u09bf \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0  \\u09b8\\u09ac\\u09be\\u09b0\\u099a\\u09c7\\u09df\\u09c7 \\u0995\\u09ae \\u09a6\\u09be\\u09ae\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u099a\\u09be\\u09a8 \\u09a4\\u09ac\\u09c7 \\u098f\\u0996\\u09a8\\u09bf \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"title_color\":\"globals\\/colors?id=26ec5dd\"},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#38B000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c945344\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"global_text_color\":\"#180101\",\"global_typography_typography\":\"custom\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"global_primary_color\":\"#38B000\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#38B000\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"_element_id\":\"order\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2ad9c7e\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#EFF8FF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"11afa4a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"65dfa5c\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align_tablet\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Outfit\",\"typography_font_weight\":\"400\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6149','2059','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6150','2059','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6151','2059','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6152','2059','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6153','2059','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6154','2059','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6155','2059','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6156','2059','wcf_field_order_billing','a:12:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:41:\"আপনার নাম লিখুন\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:34:\"আপনার ঠিকানা\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:100;s:11:\"placeholder\";s:50:\"আপনার ঠিকানা লিখুন\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:40:\"মোবাইল নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:12:\"01717-XXXXXX\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:24:\"billing_________________\";a:17:{s:4:\"type\";s:5:\"radio\";s:5:\"label\";s:44:\"কালার পছন্দ করুন\";s:11:\"placeholder\";s:0:\"\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:11:\"label_class\";a:0:{}s:13:\"show_in_email\";b:0;s:8:\"required\";b:1;s:6:\"custom\";b:1;s:7:\"default\";s:0:\"\";s:7:\"options\";a:2:{s:28:\"পিংক কালার\";s:28:\"পিংক কালার\";s:28:\"ব্লু কালার\";s:28:\"ব্লু কালার\";}s:10:\"date_input\";s:14:\"datetime-local\";s:9:\"optimized\";b:0;s:5:\"width\";i:100;s:4:\"name\";s:24:\"billing_________________\";s:3:\"key\";s:24:\"billing_________________\";s:7:\"enabled\";b:1;s:8:\"priority\";i:120;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6157','2059','wcf-google-autoaddress','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6158','2059','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6159','2059','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6160','2059','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6161','2059','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6162','2059','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6163','2059','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6164','2059','wcf-checkout-your-order-text','আপনার অর্ডার');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6165','2059','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6166','2059','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6167','2059','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6168','2059','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6169','2059','_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:6:\"scroll\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6170','2059','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6171','2059','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6172','2059','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6173','2059','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6174','2059','_oembed_7befe71c04536851b6485e7b012d3f0d','<iframe title=\"Video Placeholder\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6175','2059','_oembed_time_7befe71c04536851b6485e7b012d3f0d','1708322179');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6176','2059','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6177','2059','_oembed_527303dc7ac0a3fcb51c274d4ec83792','<iframe title=\"tiibaby rocking chair ✅\" width=\"800\" height=\"600\" src=\"https://www.youtube.com/embed/2qd1FrD5hDc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6178','2059','_oembed_time_527303dc7ac0a3fcb51c274d4ec83792','1708326831');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6179','2059','wcf-enable-product-options','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6180','2059','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6181','2059','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6182','2059','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6183','2059','wcf-enable-product-quantity','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6184','2059','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6185','2059','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6186','2059','_oembed_4d5d85c448bc2e79a731ffc031fab5fe','<iframe title=\"Tiibaby rocking chair with music and vibration ✅\" width=\"500\" height=\"375\" src=\"https://www.youtube.com/embed/2qd1FrD5hDc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6187','2059','_oembed_time_4d5d85c448bc2e79a731ffc031fab5fe','1711022333');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6188','2059','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6189','2059','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6190','2059','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6191','2059','_oembed_9691fd64b2f43c1eef1d09bbb802b146','<iframe title=\"Tiibaby rocking chair with music and vibration ✅\" width=\"1200\" height=\"900\" src=\"https://www.youtube.com/embed/2qd1FrD5hDc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6192','2059','_oembed_time_9691fd64b2f43c1eef1d09bbb802b146','1717923372');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6195','2060','wcf-flow-id','1963');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6196','2060','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6197','2060','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6198','2060','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6199','2060','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6200','2060','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6201','2060','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6202','2060','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6203','2060','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6204','2060','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6205','2060','_edit_lock','1717962372:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6206','2060','_elementor_data','[{\"id\":\"3f185a25\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#EB1C54\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bcd6f96\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ffbaf01\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2387a3e5\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"1ae7e322\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1b51bede\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4a3b630f\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"16e33cea\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74f98ddd\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f06976\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"54b08b07\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"333ddc5e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54a40f36\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6207','2060','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6209','2061','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6210','2061','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6211','2061','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6212','2061','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6213','2061','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6214','2061','_elementor_data','[{\"id\":\"3f185a25\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#EB1C54\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]}},\"elements\":[{\"id\":\"bcd6f96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5ffbaf01\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2387a3e5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1ae7e322\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b51bede\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a3b630f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16e33cea\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74f98ddd\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"64f06976\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"54b08b07\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"333ddc5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"54a40f36\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6215','2061','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6216','2061','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6217','2062','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6218','2062','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6219','2062','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6220','2062','_elementor_version','3.20.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6221','2062','_elementor_pro_version','3.19.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6222','2062','_elementor_data','[{\"id\":\"3970749\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"id\":491,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/bg.jpeg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d39ee14\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ba343aa\",\"settings\":{\"image\":{\"id\":497,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-11.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"f8719cf\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#08563E\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"45b14c5\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\",\"align\":\"center\",\"title_color\":\"#08563E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"cb804cd\",\"settings\":{\"editor\":\"<p>\\u09aa\\u09a3\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09b8\\u0982\\u0995\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a4 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"c7722d7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"c1d67b2\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#DADADA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7977ae5\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fb993a4\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"600\",\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"85f5494\\\" name=\\\"current-date-time\\\" settings=\\\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}7B{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22date_format{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3A{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22custom{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22custom_format{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3A{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20Y{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22before{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3A{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22Copyright{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}C2{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}A9{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22after{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3A{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22Your{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20Business{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20Name{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}7C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20This{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20website{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20made{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20with{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}E2{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}9D{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}A4{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}EF{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}B8{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}8F{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20by{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Ca{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20href{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22https{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3A{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2F{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2Fdigiprodwave.xyz{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2F{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20style{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22color{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Ared{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}5C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3EDPW{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3C{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2Fa{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3E{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}22{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}7D\\\"]\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6223','2062','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6224','2062','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:2;s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:1;s:3:\"gap\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6225','2064','wcf-flow-id','2063');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6226','2064','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6227','2064','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6228','2063','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:2064;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2066;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2104;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6229','2066','wcf-flow-id','2063');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6230','2066','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6231','2066','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6232','2066','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6233','2066','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6234','2066','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6235','2066','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6236','2066','_edit_lock','1716492921:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6237','2066','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6238','2066','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6239','2066','_elementor_data','[{\"id\":\"7a12f327\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"770\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"animation\":\"fadeIn\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":\"\"},\"shape_divider_bottom\":\"wave-brush\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40259cb6\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"35\",\"bottom\":\"38\",\"left\":\"35\",\"isLinked\":\"\"},\"animation\":\"fadeInUp\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"20\",\"bottom\":\"34\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61199a84\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09c7\\u09ac\\u09be\\u09b8\\u09ae\\u09c2\\u09b9\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"5\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"none\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"4\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"2.7\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"f823a1b\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u0987\\u09a8 \\u0986\\u09aa \\u0995\\u09b0\\u09c1\\u09a8 \\u098f\\u09ac\\u0982 \\u09b8\\u09ae\\u09b8\\u09cd\\u09a4 \\u09a7\\u09b0\\u09a3\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09b7\\u09c7\\u09ac\\u09be\\u0997\\u09c1\\u09b2\\u09bf\\u09a4\\u09c7 \\u099b\\u09be\\u09a1\\u09bc \\u09aa\\u09be\\u09a8!\",\"align\":\"center\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.538\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_delay\":\"300\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"4383c399\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cc15383\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"animation\":\"none\",\"background_position_tablet\":\"center center\",\"background_repeat_tablet\":\"no-repeat\",\"background_size_tablet\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2287532b\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1170\",\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"157\",\"right\":\"0\",\"bottom\":\"155\",\"left\":\"0\",\"isLinked\":\"\"},\"animation\":\"none\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63b4f8e3\",\"settings\":{\"_column_size\":\"25\",\"space_between_widgets\":\"0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"36\",\"left\":\"30\",\"isLinked\":\"\"},\"animation\":\"fadeInUp\",\"background_background\":\"classic\",\"background_color\":\"#f7f5e7\",\"background_hover_background\":\"classic\",\"background_hover_color\":\"#251c1a\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"border_hover_color\":\"#251c1a\",\"css_classes\":\"envato-kit-221-services-block-hover-style\",\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"35\",\"left\":\"50\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"animation_mobile\":\"fadeIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22f89069\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"60\",\"height\":\"57\"},\"align\":\"center\",\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"10a98c18\",\"settings\":{\"title\":\"\\u09ac\\u09c7\\u09b8\\u09bf\\u0995 \\u09b8\\u09be\\u09b0\\u09cd\\u09ad\\u09bf\\u09b8\",\"align\":\"center\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_animation\":\"fadeIn\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"59449acf\",\"settings\":{\"editor\":\"<p>\\u09b8\\u09c7\\u09a1 \\u0987\\u0989\\u099f, \\u0985\\u09a8\\u09cd\\u09a1 \\u0987\\u09ae\\u09a8\\u09bf\\u09b8 \\u0987\\u09b8\\u09cd\\u099f<br \\/>natus error \\u09ac\\u09b8\\u09c7 voluptatem<br \\/>accusantium doloremque<br \\/>laudantium<\\/p>\",\"align\":\"center\",\"text_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.75\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"6b07c0d5\",\"settings\":{\"_column_size\":\"25\",\"space_between_widgets\":\"0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"36\",\"left\":\"30\",\"isLinked\":\"\"},\"animation\":\"fadeInUp\",\"animation_delay\":\"200\",\"background_background\":\"classic\",\"background_color\":\"#f7f5e7\",\"background_hover_background\":\"classic\",\"background_hover_color\":\"#251c1a\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"border_hover_color\":\"#251c1a\",\"css_classes\":\"envato-kit-221-services-block-hover-style\",\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"35\",\"left\":\"50\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"animation_mobile\":\"fadeIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1fede04b\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"46\",\"height\":\"56\"},\"align\":\"center\",\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7ea4bc3b\",\"settings\":{\"title\":\"\\u09b8\\u09cd\\u099f\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1\\u09be\\u09b0\\u09cd\\u09a1 \\u09b8\\u09be\\u09b0\\u09cd\\u09ad\\u09bf\\u09b8\",\"align\":\"center\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_animation\":\"fadeIn\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"47aebbf1\",\"settings\":{\"editor\":\"<p>\\u09b8\\u09c7\\u09a1 \\u0987\\u0989\\u099f, \\u0985\\u09a8\\u09cd\\u09a1 \\u0987\\u09ae\\u09a8\\u09bf\\u09b8 \\u0987\\u09b8\\u09cd\\u099f<br \\/>natus error \\u09ac\\u09b8\\u09c7 voluptatem<br \\/>accusantium doloremque<br \\/>laudantium<\\/p>\",\"align\":\"center\",\"text_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.75\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"2160b869\",\"settings\":{\"_column_size\":\"25\",\"space_between_widgets\":\"0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"36\",\"left\":\"30\",\"isLinked\":\"\"},\"animation\":\"fadeInUp\",\"animation_delay\":\"400\",\"background_background\":\"classic\",\"background_color\":\"#f7f5e7\",\"background_hover_background\":\"classic\",\"background_hover_color\":\"#251c1a\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"border_hover_color\":\"#251c1a\",\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"css_classes\":\"envato-kit-221-services-block-hover-style\",\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"35\",\"left\":\"50\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"animation_mobile\":\"fadeIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47116638\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"56\",\"height\":\"56\"},\"align\":\"center\",\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"170b6202\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09aa\\u09b0\\u09bf\\u09b7\\u09c7\\u09ac\\u09be\",\"align\":\"center\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_animation\":\"fadeIn\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"13a94b8\",\"settings\":{\"editor\":\"<p>\\u09b8\\u09c7\\u09a1 \\u0987\\u0989\\u099f, \\u0985\\u09a8\\u09cd\\u09a1 \\u0987\\u09ae\\u09a8\\u09bf\\u09b8 \\u0987\\u09b8\\u09cd\\u099f<br \\/>natus error \\u09ac\\u09b8\\u09c7 voluptatem<br \\/>accusantium doloremque<br \\/>laudantium<\\/p>\",\"align\":\"center\",\"text_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.75\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"3d0e1639\",\"settings\":{\"_column_size\":\"25\",\"space_between_widgets\":\"0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"36\",\"left\":\"30\",\"isLinked\":\"\"},\"animation\":\"fadeInUp\",\"animation_delay\":\"600\",\"background_background\":\"classic\",\"background_color\":\"#f7f5e7\",\"background_hover_background\":\"classic\",\"background_hover_color\":\"#251c1a\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"border_hover_color\":\"#251c1a\",\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"css_classes\":\"envato-kit-221-services-block-hover-style\",\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"35\",\"left\":\"50\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"animation_mobile\":\"fadeIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cf6a1b6\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"57\",\"height\":\"57\"},\"align\":\"center\",\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"3ca0194\",\"settings\":{\"title\":\"\\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09cd\\u09af\\u09be\\u0995 \\u09aa\\u09b0\\u09bf\\u09b7\\u09c7\\u09ac\\u09be\",\"align\":\"center\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_animation\":\"fadeIn\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6c56ca47\",\"settings\":{\"editor\":\"<p>\\u09b8\\u09c7\\u09a1 \\u0987\\u0989\\u099f, \\u0985\\u09a8\\u09cd\\u09a1 \\u0987\\u09ae\\u09a8\\u09bf\\u09b8 \\u0987\\u09b8\\u09cd\\u099f<br \\/>natus error \\u09ac\\u09b8\\u09c7 voluptatem<br \\/>accusantium doloremque<br \\/>laudantium<\\/p>\",\"align\":\"center\",\"text_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.75\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"6b7fb503\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1170\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"146\",\"left\":\"0\",\"isLinked\":\"\"},\"animation\":\"fadeIn\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"98\",\"right\":\"30\",\"bottom\":\"96\",\"left\":\"30\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"68\",\"left\":\"30\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"87eb1f0\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ee9d0f1\",\"settings\":{\"title\":\"\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 ...\",\"align\":\"left\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"3.75\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"3.2\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"2.6\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7daef415\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1170\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ab79c95\",\"settings\":{\"_column_size\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48a33100\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"570\",\"height\":\"330\"},\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"hover_animation\":\"float\",\"_animation\":\"fadeInLeft\",\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"eee3291\",\"settings\":{\"title\":\"\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u09b8\\u09be\\u0987\\u0995\\u09c7\\u09b2 \\u099f\\u09be\\u09af\\u09bc\\u09be\\u09b0 \\u09ab\\u09cb\\u09b2\\u09be\\u09a8\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":\"\"},\"_animation\":\"fadeInLeft\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"66999939\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\\u200b\\u200b<\\/p>\",\"align\":\"left\",\"text_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.538\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":\"\"},\"_animation\":\"fadeInLeft\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"46b3b912\",\"settings\":{\"text\":\"More Info\",\"align\":\"left\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"8\",\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"0.875\",\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.4\",\"sizes\":[]},\"button_text_color\":\"#e12c3d\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#251c1a\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"_animation\":\"fadeInLeft\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"2f91a693\",\"settings\":{\"_column_size\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2afd1788\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"570\",\"height\":\"330\"},\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"hover_animation\":\"float\",\"_animation\":\"fadeInRight\",\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"dcc689c\",\"settings\":{\"title\":\"\\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1\\u09c7\\u09b2\\u09ac\\u09be\\u09b0\\u0997\\u09c1\\u09b2\\u09bf \\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09cb\\u09a1\\u09bc\\u09be\\u09a8\\u09cb \\u09af\\u09be\\u09af\\u09bc\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":\"\"},\"_animation\":\"fadeInRight\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1317490e\",\"settings\":{\"editor\":\"Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\\u200b\\u200b\",\"align\":\"left\",\"text_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.538\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":\"\"},\"_animation\":\"fadeInRight\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"caeb6cb\",\"settings\":{\"text\":\"More Info\",\"align\":\"left\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"8\",\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"0.875\",\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.4\",\"sizes\":[]},\"button_text_color\":\"#e12c3d\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#251c1a\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"_animation\":\"fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"c4fd0b8\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1170\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"57\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"693173e1\",\"settings\":{\"_column_size\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a625a3c\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"570\",\"height\":\"330\"},\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"hover_animation\":\"float\",\"_animation\":\"fadeInLeft\",\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7d5a4427\",\"settings\":{\"title\":\"\\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09c7\\u0995\\u0997\\u09c1\\u09b2\\u09bf \\u09aa\\u09c1\\u09a8\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u0982\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":\"\"},\"_animation\":\"fadeInLeft\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7aa9c17\",\"settings\":{\"editor\":\"Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\\u200b\\u200b\",\"align\":\"left\",\"text_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.538\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":\"\"},\"_animation\":\"fadeInLeft\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"10060c6d\",\"settings\":{\"text\":\"More Info\",\"align\":\"left\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"8\",\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"0.875\",\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.4\",\"sizes\":[]},\"button_text_color\":\"#e12c3d\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#251c1a\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"_animation\":\"fadeInLeft\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"28362343\",\"settings\":{\"_column_size\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e81b828\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"570\",\"height\":\"330\"},\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"hover_animation\":\"float\",\"_animation\":\"fadeInRight\",\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"343ea60\",\"settings\":{\"title\":\"\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099a\\u09c7\\u0987\\u09a8 \\u09a0\\u09bf\\u0995 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":\"\"},\"_animation\":\"fadeInRight\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7cb69343\",\"settings\":{\"editor\":\"Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\\u200b\\u200b\",\"align\":\"left\",\"text_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.538\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":\"\"},\"_animation\":\"fadeInRight\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"775eca73\",\"settings\":{\"text\":\"More Info\",\"align\":\"left\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"8\",\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"0.875\",\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.4\",\"sizes\":[]},\"button_text_color\":\"#e12c3d\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#251c1a\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"_animation\":\"fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"42a5b2a\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"770\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#3A2D2A\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"501\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":\"\"},\"animation\":\"fadeIn\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"51\",\"left\":\"30\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"46\",\"left\":\"30\",\"isLinked\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ca874fb\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43a83dde\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-play\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"primary_color\":\"#ffffff\",\"secondary_color\":\"#010101\",\"hover_primary_color\":\"#e12c3d\",\"hover_secondary_color\":\"#ffffff\",\"hover_animation\":\"float\",\"size\":{\"unit\":\"px\",\"size\":\"9\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"26dcecb5\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1259634c\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d443a0a\",\"settings\":{\"title\":\"\\u09b8\\u09c7\\u09b0\\u09be \\u09ac\\u09be\\u0987\\u0995 \\u09b0\\u09c1\\u099f\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"3.125\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"16\",\"left\":\"40\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"2.2\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"18\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"14\",\"left\":\"15\",\"isLinked\":\"\"},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":\"1\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"49c90dae\",\"settings\":{\"editor\":\"<p>\\u098f\\u099f\\u09bf \\u09b8\\u09b0\\u09cd\\u09ac\\u09a8\\u09bf\\u09ae\\u09cd\\u09a8\\u09ad\\u09be\\u09ac\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.75\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":\"200\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#E9E9E9\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#6EC1E4\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#6EC1E4\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6240','2066','_elementor_page_assets','a:1:{s:6:\"styles\";a:70:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6241','2066','_oembed_94620249a73cc10a0679692ba61fad2b','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6242','2066','_oembed_047ec1a1e4732153f83b573bd07c0e6f','<iframe title=\"ডিজিটাল টাইমার মেশিন! // Digital Timer Machine | Automatic Switching Device!\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/EhNJbwZ-NqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6243','2066','_oembed_time_047ec1a1e4732153f83b573bd07c0e6f','1708497492');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6244','2066','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6245','2066','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6246','2066','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6247','2066','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6248','2066','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6249','2066','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6250','2066','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6251','2066','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6252','2066','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6253','2066','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6254','2066','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6255','2066','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6256','2066','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6257','2066','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6258','2066','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6259','2066','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6260','2066','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6261','2066','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6262','2066','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6263','2066','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6264','2066','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6265','2066','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6266','2066','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6267','2066','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6268','2066','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6269','2066','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6270','2066','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6271','2066','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6272','2066','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6273','2066','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6274','2066','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6275','2066','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6276','2066','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6277','2066','_oembed_time_94620249a73cc10a0679692ba61fad2b','1710927601');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6278','2066','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6279','2066','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6280','2066','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6283','2067','wcf-flow-id','2050');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6284','2067','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6285','2067','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6286','2067','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6287','2067','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6288','2067','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6289','2067','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6290','2067','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6291','2067','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6292','2067','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6293','2067','_edit_lock','1717923082:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6294','2067','_elementor_data','[{\"id\":\"d791351\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#EBD8D2\",\"shape_divider_top\":\"opacity-fan\",\"shape_divider_top_color\":\"#F63B02\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ad98df\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cb7baaa\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"605bf61\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#00AC11\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"aa4aceb\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0996\\u09c1\\u09ac\\u0987 \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#006532\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":70,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"b301da1\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"7ae5892\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9b75dea\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ec4399d\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__dynamic__\":[],\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6295','2067','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6296','2067','_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:2;s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:2;s:5:\"align\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:21:\"section_shape_divider\";a:2:{s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6297','2068','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6298','2068','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6299','2068','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6300','2068','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6301','2068','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6302','2068','_elementor_data','[{\"id\":\"d791351\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#EBD8D2\",\"shape_divider_top\":\"opacity-fan\",\"shape_divider_top_color\":\"#F63B02\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6ad98df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"cb7baaa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"605bf61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#00AC11\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"aa4aceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0996\\u09c1\\u09ac\\u0987 \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#006532\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":70,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b301da1\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ae5892\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9b75dea\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ec4399d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__dynamic__\":[],\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6303','2068','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6304','2068','_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:2;s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:2;s:5:\"align\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:21:\"section_shape_divider\";a:2:{s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6305','2070','wcf-flow-id','2069');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6306','2070','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6307','2070','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6308','2069','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:2070;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2072;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2074;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6309','2072','wcf-flow-id','2069');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6310','2072','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6311','2072','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6312','2072','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6313','2072','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6314','2072','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6315','2072','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6316','2072','_edit_lock','1780982748:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6317','2072','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6318','2072','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6319','2072','_elementor_data','[{\"id\":\"547188c4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70ee83e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"236b84b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\",\"align\":\"center\",\"title_color\":\"#07AF00\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_animation\":\"bounceIn\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ad041da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2124,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-9-2026-11_25_27-AM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2bc8b0d\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2024-02-16 13:38\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#07AF00\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_spacing_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"box_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"digits_typography_typography\":\"custom\",\"digits_typography_font_family\":\"Hind Siliguri\",\"digits_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"digits_typography_font_weight\":\"400\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Hind Siliguri\",\"label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":70,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"countdown_type\":\"evergreen\"},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"3954a96\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09e7\\u09e7\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#F30303\",\"title_color\":\"#050505\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":40,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"b9c93ae\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09ef\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"marker_color\":\"#F30303\",\"title_color\":\"#07AF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#FC0707\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"461bf7de\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44dc169b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7d217dc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8e8602\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0995\\u09c7\\u09a8 \\u0996\\u09be\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"18\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54448d37\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"13558f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"279c60d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0, \\u0986\\u09df\\u09b0\\u09a8, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae\\u09b8\\u09b9 \\u09a8\\u09be\\u09a8\\u09be\\u09a8 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3\\u0964 \\u098f\\u09b8\\u09ac \\u0996\\u09be\\u09a6\\u09cd\\u09af \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u0985\\u09a4\\u09c0\\u09ac \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09b9\\u09df\\u09c7 \\u0993\\u09a0\\u09c7 \\u09af\\u0996\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09df\\u09b8 \\u09aa\\u09cc\\u0981\\u099b\\u09be\\u09ac\\u09c7 \\u09e9\\u09e6-\\u098f\\u09b0 \\u0995\\u09cb\\u09a0\\u09be\\u09df\\u0964\",\"align\":\"center\",\"title_color\":\"#FE0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9346196\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09af\\u09be \\u09b9\\u09be\\u09b0\\u09cd\\u099f\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf\\u09a4\\u09c7 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u0993 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7, \\u09af\\u09be \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b240c08\"},{\"text\":\"\\u09b0\\u0995\\u09cd\\u09a4\\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be\\u09df \\u09ad\\u09cb\\u0997\\u09be \\u09b0\\u09cb\\u0997\\u09c0\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u098f\\u0995\\u099c\\u09a8 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09af\\u09a4\\u099f\\u09c1\\u0995\\u09c1 \\u0986\\u09df\\u09b0\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8, \\u09a4\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09df \\u09e7\\u09e7 \\u09ad\\u09be\\u0997 \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c67dfa7\"},{\"text\":\"\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u0996\\u09a8\\u09bf\\u099c, \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09df\\u09be\\u09ae \\u0993 \\u09aa\\u099f\\u09be\\u09b6\\u09bf\\u09df\\u09be\\u0964 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09be \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09be\\u09dc\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\"},{\"text\":\"\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0989\\u099a\\u09cd\\u099a \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b9\\u099c\\u09ae\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u09ac\\u0982 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d971aea\"},{\"text\":\"\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2\\u09cb \\u0989\\u09ce\\u09b8, \\u09af\\u09be \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"3e5bd2a\"},{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09e8\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e8\\u09eb \\u09ae\\u09bf\\u09b2\\u09bf\\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae, \\u09af\\u09be \\u0989\\u099a\\u09cd\\u099a \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d2eaf79\"},{\"text\":\"\\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09b0\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09bf\\u099c\\u09bf\\u09df\\u09c7 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964 \\u09aa\\u09b0 \\u09a6\\u09bf\\u09a8 \\u09b8\\u0995\\u09be\\u09b2\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09c7\\u099c\\u09be\\u09a8\\u09cb \\u09aa\\u09be\\u09a8\\u09bf \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u09a6\\u09c2\\u09b0 \\u09b9\\u09ac\\u09c7 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d420d6c\"},{\"text\":\"\\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2 \\u0989\\u09a4\\u09cd\\u09b8, \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u098f\\u09ac\\u0982 \\u09a4\\u09c3\\u09aa\\u09cd\\u09a4 \\u09ac\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2592254\"},{\"text\":\"\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u0993 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09a5\\u09be\\u0995\\u09c7 \\u09af\\u09be \\u09b9\\u09be\\u09a1\\u09bc \\u0993 \\u09a6\\u09be\\u0981\\u09a4\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"924a60d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7d5622cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u09ef\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\",\"align\":\"center\",\"title_color\":\"#07AF00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e06460d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7caafb81\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#07AF00\"},\"elements\":[{\"id\":\"72380d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e3333a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"195edaef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"725fccf4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6410ccf5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u098f\\u0987 \\u09b8\\u09c0\\u099c\\u09a8\\u09c7\\u09b0 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u0997\\u09be\\u099b\\u09aa\\u09be\\u0995\\u09be \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u098f \\u0995\\u09cb\\u09a8\\u09cb \\u09aa\\u09cb\\u0995\\u09be \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09a8\\u09be \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"7dcd5f8\"},{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0  \\u0995\\u09b0\\u09a4\\u09c7  \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"727b43f\"},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"25ca027\"},{\"text\":\"\\u09aa\\u09a3\\u09cd\\u09af \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0996\\u09c7\\u09df\\u09c7 \\u09b0\\u09bf\\u09b8\\u09bf\\u09ad \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"2a45dc3\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09a5\\u09be \\u09ae\\u09a4 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09a8\\u09be \\u09aa\\u09c7\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u09bf\\u09b0\\u09cd\\u099f\\u09be\\u09a8 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09a5\\u09be\\u0995\\u099b\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"d1dec1a\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46ec3f6a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"77705a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3e45ea19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8    01819000000\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be570b3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\"},\"elements\":[{\"id\":\"4bea656d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#07AF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"37676298\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#07AF00\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a03de62\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"checkout-form\"},{\"id\":\"37f3da9f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2124,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-9-2026-11_25_27-AM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"166c517e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5628e6b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34307e5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6320','2072','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6321','2072','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6322','2072','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6323','2072','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6324','2072','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6325','2072','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6326','2072','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6327','2072','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6328','2072','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6329','2072','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6330','2072','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:69:\"আপনার ফোন নাম্বারটি লেখুন\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6331','2072','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6332','2072','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6333','2072','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6334','2072','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6335','2072','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6336','2072','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6337','2072','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6338','2072','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6339','2072','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6340','2072','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6341','2072','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6342','2072','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6343','2072','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6344','2072','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6345','2072','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6346','2072','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6347','2072','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6348','2072','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6349','2072','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6350','2072','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6351','2072','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6352','2072','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6353','2072','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6354','2072','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6355','2072','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6356','2072','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6359','2073','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6360','2073','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6361','2073','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6362','2073','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6363','2073','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6364','2073','_elementor_data','[{\"id\":\"547188c4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70ee83e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"236b84b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\",\"align\":\"center\",\"title_color\":\"#07AF00\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_animation\":\"bounceIn\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ad041da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":666,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-21-at-1.07.30-AM.jpeg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2bc8b0d\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2024-02-16 13:38\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#07AF00\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_spacing_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"box_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"digits_typography_typography\":\"custom\",\"digits_typography_font_family\":\"Hind Siliguri\",\"digits_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"digits_typography_font_weight\":\"400\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Hind Siliguri\",\"label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":70,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"countdown_type\":\"evergreen\"},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"3954a96\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09e7\\u09e7\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#F30303\",\"title_color\":\"#050505\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":40,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"b9c93ae\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09ef\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"marker_color\":\"#F30303\",\"title_color\":\"#07AF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#FC0707\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"461bf7de\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44dc169b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7d217dc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8e8602\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0995\\u09c7\\u09a8 \\u0996\\u09be\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"18\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54448d37\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"13558f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"279c60d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0, \\u0986\\u09df\\u09b0\\u09a8, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae\\u09b8\\u09b9 \\u09a8\\u09be\\u09a8\\u09be\\u09a8 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3\\u0964 \\u098f\\u09b8\\u09ac \\u0996\\u09be\\u09a6\\u09cd\\u09af \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u0985\\u09a4\\u09c0\\u09ac \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09b9\\u09df\\u09c7 \\u0993\\u09a0\\u09c7 \\u09af\\u0996\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09df\\u09b8 \\u09aa\\u09cc\\u0981\\u099b\\u09be\\u09ac\\u09c7 \\u09e9\\u09e6-\\u098f\\u09b0 \\u0995\\u09cb\\u09a0\\u09be\\u09df\\u0964\",\"align\":\"center\",\"title_color\":\"#FE0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9346196\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09af\\u09be \\u09b9\\u09be\\u09b0\\u09cd\\u099f\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf\\u09a4\\u09c7 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u0993 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7, \\u09af\\u09be \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b240c08\"},{\"text\":\"\\u09b0\\u0995\\u09cd\\u09a4\\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be\\u09df \\u09ad\\u09cb\\u0997\\u09be \\u09b0\\u09cb\\u0997\\u09c0\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u098f\\u0995\\u099c\\u09a8 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09af\\u09a4\\u099f\\u09c1\\u0995\\u09c1 \\u0986\\u09df\\u09b0\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8, \\u09a4\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09df \\u09e7\\u09e7 \\u09ad\\u09be\\u0997 \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c67dfa7\"},{\"text\":\"\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u0996\\u09a8\\u09bf\\u099c, \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09df\\u09be\\u09ae \\u0993 \\u09aa\\u099f\\u09be\\u09b6\\u09bf\\u09df\\u09be\\u0964 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09be \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09be\\u09dc\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\"},{\"text\":\"\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0989\\u099a\\u09cd\\u099a \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b9\\u099c\\u09ae\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u09ac\\u0982 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d971aea\"},{\"text\":\"\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2\\u09cb \\u0989\\u09ce\\u09b8, \\u09af\\u09be \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"3e5bd2a\"},{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09e8\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e8\\u09eb \\u09ae\\u09bf\\u09b2\\u09bf\\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae, \\u09af\\u09be \\u0989\\u099a\\u09cd\\u099a \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d2eaf79\"},{\"text\":\"\\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09b0\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09bf\\u099c\\u09bf\\u09df\\u09c7 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964 \\u09aa\\u09b0 \\u09a6\\u09bf\\u09a8 \\u09b8\\u0995\\u09be\\u09b2\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09c7\\u099c\\u09be\\u09a8\\u09cb \\u09aa\\u09be\\u09a8\\u09bf \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u09a6\\u09c2\\u09b0 \\u09b9\\u09ac\\u09c7 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d420d6c\"},{\"text\":\"\\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2 \\u0989\\u09a4\\u09cd\\u09b8, \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u098f\\u09ac\\u0982 \\u09a4\\u09c3\\u09aa\\u09cd\\u09a4 \\u09ac\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2592254\"},{\"text\":\"\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u0993 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09a5\\u09be\\u0995\\u09c7 \\u09af\\u09be \\u09b9\\u09be\\u09a1\\u09bc \\u0993 \\u09a6\\u09be\\u0981\\u09a4\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"924a60d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7d5622cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u09ef\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\",\"align\":\"center\",\"title_color\":\"#07AF00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e06460d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7caafb81\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#07AF00\"},\"elements\":[{\"id\":\"72380d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e3333a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"195edaef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"725fccf4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6410ccf5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u098f\\u0987 \\u09b8\\u09c0\\u099c\\u09a8\\u09c7\\u09b0 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u0997\\u09be\\u099b\\u09aa\\u09be\\u0995\\u09be \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u098f \\u0995\\u09cb\\u09a8\\u09cb \\u09aa\\u09cb\\u0995\\u09be \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09a8\\u09be \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"7dcd5f8\"},{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0  \\u0995\\u09b0\\u09a4\\u09c7  \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"727b43f\"},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"25ca027\"},{\"text\":\"\\u09aa\\u09a3\\u09cd\\u09af \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0996\\u09c7\\u09df\\u09c7 \\u09b0\\u09bf\\u09b8\\u09bf\\u09ad \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"2a45dc3\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09a5\\u09be \\u09ae\\u09a4 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09a8\\u09be \\u09aa\\u09c7\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u09bf\\u09b0\\u09cd\\u099f\\u09be\\u09a8 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09a5\\u09be\\u0995\\u099b\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"d1dec1a\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"37f3da9f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":666,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-21-at-1.07.30-AM.jpeg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46ec3f6a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"77705a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3e45ea19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8    01819000000\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be570b3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\"},\"elements\":[{\"id\":\"4bea656d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#07AF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"37676298\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#07AF00\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a03de62\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"166c517e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5628e6b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34307e5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6365','2073','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6367','2073','_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:7;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:7;s:11:\"title_color\";i:7;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:3;s:17:\"_background_color\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:2;s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:2;s:18:\"image_border_color\";i:2;s:19:\"image_border_radius\";i:2;}}}}s:9:\"countdown\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:17:\"section_countdown\";a:2:{s:8:\"due_date\";i:1;s:14:\"countdown_type\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_box_style\";a:2:{s:20:\"box_background_color\";i:1;s:17:\"box_border_radius\";i:1;}s:21:\"section_content_style\";a:6:{s:28:\"digits_typography_typography\";i:1;s:29:\"digits_typography_font_family\";i:1;s:29:\"digits_typography_font_weight\";i:1;s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_family\";i:1;s:28:\"label_typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:1;s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:10:\"after_text\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:2;}s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_font_weight\";i:2;s:11:\"words_color\";i:2;s:27:\"words_typography_typography\";i:2;s:28:\"words_typography_font_family\";i:2;s:28:\"words_typography_font_weight\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:2;s:4:\"link\";i:2;s:4:\"size\";i:2;s:13:\"selected_icon\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:29:\"button_background_hover_color\";i:2;s:15:\"hover_animation\";i:2;s:22:\"typography_font_family\";i:2;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:8;s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:3;s:3:\"gap\";i:6;s:6:\"layout\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:5;s:11:\"_element_id\";i:1;s:11:\"css_classes\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:4;}s:14:\"section_border\";a:1:{s:13:\"border_border\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:2;s:7:\"divider\";i:2;}s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;s:24:\"icon_self_vertical_align\";i:2;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6368','2074','wcf-flow-id','2069');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6369','2074','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6370','2074','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6371','2074','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6372','2074','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6373','2074','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6374','2074','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6375','2074','_edit_lock','1717919265:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6376','2074','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6377','2074','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6378','2074','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6379','2074','_elementor_data','[{\"id\":\"38104840\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c3b0e9e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6180a536\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"12ea2a2c\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43986afd\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"44332d2e\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"29b7fcb5\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"387b344\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"749ebec\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fffb705\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"7a908452\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"349292d1\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22d62176\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6380','2074','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6381','2074','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:3;s:6:\"margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6382','2075','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6383','2075','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6384','2075','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6385','2075','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6386','2075','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6387','2075','_elementor_data','[{\"id\":\"38104840\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]}},\"elements\":[{\"id\":\"5c3b0e9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6180a536\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12ea2a2c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"43986afd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44332d2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29b7fcb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"387b344\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"749ebec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fffb705\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a908452\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"349292d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"22d62176\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6388','2075','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6389','2075','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:3;s:6:\"margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6390','2077','wcf-flow-id','2076');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6391','2077','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6392','2077','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6393','2076','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:2077;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2079;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2085;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6394','2079','wcf-flow-id','2076');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6395','2079','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6396','2079','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6397','2079','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6398','2079','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6399','2079','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6400','2079','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6401','2079','_edit_lock','1780982715:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6402','2079','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6403','2079','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6404','2079','_elementor_data','[{\"id\":\"dcf224e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"shape_divider_bottom\":\"clouds\"},\"elements\":[{\"id\":\"db69026\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u09cd\\u09af\\u09be\\u09b8\\u09bf\\u09a1\\u09bf\\u099f\\u09bf, \\u09aa\\u09c7\\u09aa\\u099f\\u09bf\\u0995 \\u0986\\u09b2\\u09b8\\u09be\\u09b0 \\u0993 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u09c7 <span style=\\\"color: red\\\">\\u201c\\u09b8\\u09bf\\u09a1 \\u09b6\\u09b0\\u09ac\\u09a4\\u201d<\\/span>\\n\\n  \\u0996\\u09c1\\u09ac\\u0987 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\n\",\"align\":\"center\",\"title_color\":\"#10A31F\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"547188c4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70ee83e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"27991ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09a8\\u09c7\\u0995\\u09c7\\u0987 \\u09a6\\u09c0\\u09b0\\u09cd\\u0998\\u09a6\\u09bf\\u09a8 \\u09af\\u09be\\u09ac\\u09ce \\u09aa\\u09c7\\u099f\\u09c7\\u09b0 \\u09a8\\u09be\\u09a8\\u09be \\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09ad\\u09c1\\u0997\\u099b\\u09c7\\u09a8? \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7 \\u0995\\u09b0\\u09c7, \\u09af\\u09be\\u09b0\\u09be \\u0995\\u09cb-\\u09b7\\u09cd\\u09a0-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u09c7; \\u09a4\\u09be\\u09b0\\u09be \\u09ac\\u09c7\\u09b6\\u09bf\\u09b0\\u09ad\\u09be\\u0997 \\u09b8\\u09ae\\u09df\\u0987 \\u09b2\\u099c\\u09cd\\u099c\\u09be\\u09df \\u098f \\u09ae\\u09be\\u09b0\\u09be\\u09a4\\u09cd\\u09ae\\u0995 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u0995\\u09a5\\u09be \\u09b6\\u09c7\\u09df\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u09a8 \\u09a8\\u09be\\u0964 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u09a4\\u09bf\\u09a8\\u09bf \\u09a8\\u09bf\\u099c\\u09c7\\u0987 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u09aa\\u09be\\u09df\\u09c7 \\u0995\\u09c1\\u09dc\\u09be\\u09b2 \\u09ae\\u09be\\u09b0\\u099b\\u09c7\\u09a8\\u0964\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"461bf7de\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3954a96\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09e7\\u09e7\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#F30303\",\"title_color\":\"#050505\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":40,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"b9c93ae\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09ef\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"marker_color\":\"#F30303\",\"title_color\":\"#07AF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#FC0707\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"stroke_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"words_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5ad041da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2121,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-9-2026-11_23_18-AM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44dc169b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7d217dc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8e8602\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09bf\\u09a1 \\u09b6\\u09b0\\u09ac\\u09a4 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be-\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"18\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54448d37\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"13558f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"279c60d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09c0\\u099c \\u0995\\u09ae\\u09cd\\u09ac\\u09cb \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u09ae\\u09c7\\u099f\\u09be\\u09ac\\u09b2\\u09bf\\u099c\\u09ae \\u09ac\\u09be\\u09dc\\u09bf\\u09df\\u09c7 \\u09a4\\u09c1\\u09b2\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u09a4\\u09c7 \\u0989\\u09aa\\u09b8\\u09cd\\u09a5\\u09bf\\u09a4 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0996\\u09c1\\u09ac\\u0987 \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#FE0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9346196\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0995\\u09af\\u09bc\\u09c7\\u0995\\u099f\\u09bf \\u0997\\u09ac\\u09c7\\u09b7\\u09a3\\u09be\\u09af\\u09bc \\u09a6\\u09c7\\u0996\\u09be \\u0997\\u09c7\\u099b\\u09c7, \\u09a4\\u09cb\\u0995\\u09ae\\u09be\\u09b0 \\u09a6\\u09be\\u09a8\\u09be \\u09a6\\u09c7\\u09b9\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0 \\u0995\\u09cb\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u099b\\u09be\\u09a1\\u09bc\\u09be\\u0993 \\u09b0\\u0995\\u09cd\\u09a4\\u09c7 \\u099a\\u09b0\\u09cd\\u09ac\\u09bf\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u0995\\u09ae\\u09be\\u09a8\\u09cb, \\u09a1\\u09be\\u09af\\u09bc\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3, \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u09b9\\u09be\\u09b0\\u09cd\\u099f \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09b0\\u09be\\u0996\\u09c7\\u0964 \\u09b9\\u09be\\u09a1\\u09bc \\u0997\\u09a0\\u09a8\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b240c08\"},{\"text\":\"\\u09b0\\u0995\\u09cd\\u09a4\\u09c7\\u09b0 \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0 \\u09a4\\u09cb\\u0995\\u09ae\\u09be\\u0964 \\u09ae\\u09c2\\u09b2\\u09a4 \\u09a6\\u09c7\\u09b9\\u09c7\\u09b0 \\u09ac\\u09bf\\u09aa\\u09be\\u0995\\u0995\\u09cd\\u09b0\\u09bf\\u09df\\u09be \\u09a7\\u09c0\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a6\\u09c7\\u09df \\u09a4\\u09cb\\u0995\\u09ae\\u09be\\u0964 \\u09ab\\u09b2\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09ac\\u09cb\\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u0995\\u09c7 \\u0997\\u09cd\\u09b2\\u09c1\\u09c1\\u0995\\u09cb\\u099c\\u09c7 \\u09b0\\u09c2\\u09aa\\u09be\\u09a8\\u09cd\\u09a4\\u09b0\\u09c7\\u09b0 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09be \\u09b8\\u09b9\\u099c \\u09b9\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c67dfa7\"},{\"text\":\"\\u0995\\u09cb-\\u09b7\\u09cd\\u099f-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0996\\u09c1\\u09ac\\u0987 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0 \\u09a4\\u09cb\\u0995\\u09ae\\u09be\\u0964 \\u09b8\\u09be\\u09ae\\u09be\\u09a8\\u09cd\\u09af \\u09a4\\u09cb\\u0995\\u09ae\\u09be \\u0985\\u09b2\\u09cd\\u09aa \\u09aa\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09ad\\u09bf\\u099c\\u09bf\\u09df\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u0995\\u09bf\\u099b\\u09c1\\u0995\\u09cd\\u09b7\\u09a3 \\u09aa\\u09b0 \\u09a4\\u09be \\u09a6\\u09c1\\u09a7\\u09c7 \\u09ae\\u09bf\\u09b6\\u09bf\\u09df\\u09c7 \\u0996\\u09c7\\u09b2\\u09c7\\u0993 \\u0989\\u09aa\\u0995\\u09be\\u09b0 \\u09aa\\u09be\\u0993\\u09df\\u09be \\u09af\\u09be\\u09ac\\u09c7\\u0964 \\u098f\\u099f\\u09bf \\u09b9\\u099c\\u09ae\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u0993 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09a8\\u09be\\u09a8\\u09be \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09a4\\u09cb\\u0995\\u09ae\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964 \\u098f\\u099f\\u09bf \\u09a8\\u09be\\u09a8\\u09be \\u099a\\u09b0\\u09cd\\u09ae\\u09b0\\u09cb\\u0997 \\u09a8\\u09bf\\u09b0\\u09be\\u09ae\\u09df\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u099f\\u09bf \\u098f\\u0995\\u099c\\u09bf\\u09ae\\u09be \\u0993 \\u09b8\\u09cb\\u09b0\\u09bf\\u09df\\u09be\\u09b8\\u09bf\\u09b8 \\u09a8\\u09bf\\u09b0\\u09be\\u09ae\\u09df\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u0964 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u099f\\u09bf \\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u0996\\u09be\\u0993\\u09df\\u09be \\u09af\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d971aea\"},{\"text\":\"\\u09a4\\u09cb\\u0995\\u09ae\\u09be \\u09ac\\u09c0\\u099c\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09a0\\u09be\\u09a3\\u09cd\\u09a1\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c0 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8\\u0964 \\u098f\\u099f\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c7\\u09b9\\u0995\\u09c7 \\u09a0\\u09be\\u09a3\\u09cd\\u09a1\\u09be\\u09b0 \\u09ac\\u09bf\\u09b0\\u09c1\\u09a6\\u09cd\\u09a7\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u0997\\u09dc\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u09b8\\u09b0\\u09cd\\u09a6\\u09bf-\\u0995\\u09be\\u09b6\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09a6\\u09c2\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\u09b2\\u09c7 \\u09a4\\u09be\\u0987 \\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u09a4\\u09cb\\u0995\\u09ae\\u09be \\u0996\\u09be\\u0993\\u09df\\u09be \\u09af\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"3e5bd2a\"},{\"text\":\"\\u09a4\\u09c1\\u09b2\\u09b8\\u09c0\\u09b0 \\u09aa\\u09be\\u09a4\\u09be\\u0987 \\u09a8\\u09df, \\u09a4\\u09c1\\u09b2\\u09b8\\u09c0\\u09b0 \\u09ac\\u09c0\\u099c\\u0993 \\u09a6\\u09be\\u09b0\\u09c1\\u09a3 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\u0964 \\u09a4\\u09c1\\u09b2\\u09b8\\u09c0 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u09ae\\u09a4\\u09cb\\u0987 \\u09a4\\u09c1\\u09b2\\u09b8\\u09c0 \\u09ac\\u09c0\\u099c\\u0993 \\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09be\\u09a1\\u09bc\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u09af\\u09c7\\u09ae\\u09a8- \\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3 \\u09b8\\u09b0\\u09cd\\u09a6\\u09bf \\u098f\\u09ac\\u0982 \\u09ab\\u09cd\\u09b2\\u09c1 \\u099c\\u09be\\u09a4\\u09c0\\u09af\\u09bc \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a5\\u09c7\\u0995\\u09c7\\u0993 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09c7\\u09a4\\u09c7 \\u098f\\u0987 \\u09ac\\u09c0\\u099c\\u09c7\\u09b0 \\u099c\\u09c1\\u09a1\\u09bc\\u09bf \\u09ae\\u09c7\\u09b2\\u09be \\u09ad\\u09be\\u09b0\\u0964 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09a4\\u09be-\\u0987 \\u09a8\\u09af\\u09bc, \\u09aa\\u09c7\\u09b6\\u09c0\\u09a4\\u09c7 \\u099f\\u09be\\u09a8 \\u09aa\\u09a1\\u09bc\\u09b2\\u09c7\\u0993 \\u098f\\u0987 \\u09ac\\u09c0\\u099c \\u0996\\u09c7\\u09b2\\u09c7 \\u0986\\u09b0\\u09be\\u09ae \\u09aa\\u09be\\u0993\\u09df\\u09be \\u09af\\u09be\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d2eaf79\"},{\"text\":\"\\u0995\\u09cb-\\u09b7\\u09cd\\u09a0-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7: \\u0987\\u09b8\\u09ac\\u0997\\u09c1\\u09b2 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7 \\u09a6\\u09be\\u09b0\\u09c1\\u09a3 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u09a4\\u09c7 \\u0989\\u09aa\\u09b8\\u09cd\\u09a5\\u09bf\\u09a4 \\u0985\\u09a6\\u09cd\\u09b0\\u09ac\\u09a3\\u09c0\\u09df \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09b0\\u09cb\\u0997\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09a8\\u09b0\\u09ae \\u0995\\u09b0\\u09c7 \\u09a6\\u09c7\\u09df\\u0964 \\u09ab\\u09b2\\u09c7 \\u0996\\u09c1\\u09ac \\u09b8\\u09b9\\u099c\\u09c7\\u0987 \\u0987\\u09b2\\u09bf\\u09ae\\u09bf\\u09a8\\u09c7\\u09b6\\u09a8 \\u09b8\\u09ae\\u09cd\\u09ad\\u09ac \\u09b9\\u09df\\u0964 \\u09a4\\u09be\\u0987 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u0998\\u09c1\\u09ae\\u09be\\u09a8\\u09cb\\u09b0 \\u0986\\u0997\\u09c7 \\u09e8 \\u099a\\u09be\\u09ae\\u099a \\u0987\\u09b8\\u09ac\\u0997\\u09c1\\u09b2\\u09c7\\u09b0 \\u09ad\\u09c1\\u09b8\\u09bf \\u0993 \\u09e7 \\u0997\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c1\\u09b8\\u09c1\\u09ae \\u0997\\u09b0\\u09ae \\u09a6\\u09c1\\u09a7 \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u0995\\u09c7\\u0989 \\u09af\\u09a6\\u09bf \\u09b0\\u09cb\\u0997\\u099f\\u09bf \\u09aa\\u09c1\\u09b7\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\\u09a8, \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u0995\\u09cb\\u09b2\\u09a8 \\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09b8\\u09be\\u09b0 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ad\\u09be\\u09ac\\u09a8\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d420d6c\"},{\"text\":\"\\u09b0\\u0995\\u09cd\\u09a4\\u09c7 \\u0995\\u09cb\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2 \\u0995\\u09ae\\u09be\\u09df: \\u098f \\u0987\\u09b8\\u09ac\\u0997\\u09c1\\u09b2 \\u0996\\u09c7\\u09b2\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0985\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09c7 \\u098f\\u0995\\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09a4\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09df\\u0964 \\u09af\\u09be \\u0995\\u09cb\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2 \\u09b6\\u09cb\\u09b7\\u09a3\\u09c7 \\u09ac\\u09be\\u09a7\\u09be \\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ab\\u09b2\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b0\\u0995\\u09cd\\u09a4\\u09c7 \\u0995\\u09cb\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u0995\\u09ae\\u09c7 \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u0985\\u09ac\\u09b8\\u09cd\\u09a5\\u09be\\u09df \\u09ab\\u09bf\\u09b0\\u09c7 \\u0986\\u09b8\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c0\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a6\\u09be\\u09b0\\u09c1\\u09a3 \\u098f\\u0995\\u099f\\u09bf \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u098f\\u099f\\u09bf\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2592254\"},{\"text\":\"\\u0993\\u099c\\u09a8 \\u0995\\u09ae\\u09be\\u09df: \\u098f\\u09a4\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0989\\u09aa\\u09b8\\u09cd\\u09a5\\u09bf\\u09a4 \\u09a5\\u09be\\u0995\\u09be\\u09df \\u09b9\\u099c\\u09ae \\u09aa\\u09cd\\u09b0\\u0995\\u09cd\\u09b0\\u09bf\\u09df\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u09a7\\u09c0\\u09b0\\u0997\\u09a4\\u09bf\\u09a4\\u09c7 \\u09b9\\u09df\\u0964 \\u09a4\\u09be\\u0987 \\u0995\\u09cd\\u09b7\\u09c1\\u09a7\\u09be \\u09b2\\u09be\\u0997\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u0995\\u09ae\\u0964 \\u098f\\u099f\\u09bf \\u0996\\u09c7\\u09b2\\u09c7 \\u0993\\u099c\\u09a8 \\u0995\\u09ae\\u09be\\u09a8\\u09cb \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09b9\\u099c \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"924a60d\"},{\"text\":\"\\u098f\\u0987 \\u09ac\\u09c0\\u099c\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09a5\\u09be\\u0995\\u09c7 \\u09af\\u09be \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u0993 \\u09ac\\u09a6\\u09b9\\u099c\\u09ae \\u09a5\\u09c7\\u0995\\u09c7 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09c7\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09c7\\u099f \\u09ac\\u09cd\\u09af\\u09be\\u09a5\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0996\\u09c1\\u09ac\\u0987 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\u0964 \\u09b9\\u09be\\u09b2\\u09bf\\u09ae \\u09ac\\u09c0\\u099c \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ad\\u09be\\u09b2\\u09cb \\u0989\\u09ce\\u09b8\\u0964 \\u09ab\\u09b2\\u09c7 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a4\\u09c3\\u09aa\\u09cd\\u09a4\\u09bf\\u09a6\\u09be\\u09df\\u0995 \\u09b9\\u09df\\u09c7 \\u0993\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2de9a4a\"},{\"text\":\"\\u09b9\\u09be\\u09b2\\u09bf\\u09ae \\u09ac\\u09c0\\u099c \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0996\\u09c1\\u09ac\\u0987 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0\\u0964 \\u098f\\u099f\\u09bf \\u09b2\\u09cb\\u09b9\\u09be\\u09b0 \\u0989\\u099a\\u09cd\\u099a \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09b2\\u09be\\u09b2 \\u09b0\\u0995\\u09cd\\u09a4 \\u0995\\u09cb\\u09b7\\u09c7\\u09b0 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8\\u0995\\u09c7 \\u0989\\u09ce\\u09b8\\u09be\\u09b9 \\u09a6\\u09c7\\u09af\\u09bc \\u098f\\u09ac\\u0982 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09b9\\u09bf\\u09ae\\u09cb\\u0997\\u09cd\\u09b2\\u09cb\\u09ac\\u09bf\\u09a8 \\u098f\\u09b0 \\u09b8\\u09cd\\u09a4\\u09b0 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964 \\u09ab\\u09b2\\u09c7 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be \\u09aa\\u09cd\\u09b0\\u0995\\u09cb\\u09aa \\u09a5\\u09c7\\u0995\\u09c7 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"dbca928\"},{\"text\":\"\\u09b9\\u09be\\u09b2\\u09bf\\u09ae \\u09ac\\u09c0\\u099c \\u0986\\u09cd\\u09af\\u09a8\\u09cd\\u099f\\u09bf \\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u0993 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7\\u0964 \\u09a4\\u09be\\u0987 \\u098f\\u099f\\u09bf \\u09b6\\u09b0\\u09c0\\u09b0\\u0995\\u09c7 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u099c\\u09c0\\u09ac\\u09be\\u09a3\\u09c1 \\u098f\\u09b0 \\u09b8\\u0982\\u0995\\u09cd\\u09b0\\u09ae\\u09a3 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"e24e91e\"},{\"text\":\"\\u099c\\u09cd\\u09ac\\u09b0, \\u09b8\\u09b0\\u09cd\\u09a6\\u09bf, \\u0997\\u09b2\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09a5\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7- \\u09b9\\u09be\\u09b2\\u09bf\\u09ae \\u09ac\\u09c0\\u099c \\u0986\\u09a8\\u09cd\\u099f\\u09bf \\u09ae\\u09be\\u0987\\u0995\\u09cd\\u09b0\\u09cb\\u09ac\\u09bf\\u09af\\u09bc\\u09be\\u09b2 \\u09ac\\u09c8\\u09b6\\u09bf\\u09b7\\u09cd\\u099f\\u09cd\\u09af \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u099f\\u09bf \\u099c\\u09cd\\u09ac\\u09b0 \\u09b8\\u09b0\\u09cd\\u09a6\\u09bf \\u09b8\\u09b9 \\u09b6\\u09cd\\u09ac\\u09be\\u09b8 \\u09aa\\u09cd\\u09b0\\u09b6\\u09cd\\u09ac\\u09be\\u09b8 \\u098f\\u09b0 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"88dfd2e\"},{\"text\":\"\\u09ae\\u09a7\\u09c1 \\u09b6\\u09bf\\u09b6\\u09c1\\u09a6\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc\\u09c7\\u09b0 \\u0997\\u09a0\\u09a8 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7, \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u098f\\u09ac\\u0982 \\u09b8\\u09cd\\u09ae\\u09c3\\u09a4\\u09bf\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d481b8c\"},{\"text\":\"\\u09b0\\u09be\\u09a4\\u09c7\\u09b0 \\u09ac\\u09c7\\u09b2\\u09be \\u09a6\\u09c1\\u09a7\\u09c7\\u09b0 \\u09b8\\u0999\\u09cd\\u0997\\u09c7 \\u09ae\\u09a7\\u09c1 \\u09ae\\u09bf\\u09b6\\u09bf\\u09df\\u09c7 \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09a8\\u09bf\\u09a6\\u09cd\\u09b0\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"4004081\"},{\"text\":\"\\u09b6\\u09be\\u09b0\\u09c0\\u09b0\\u09bf\\u0995 \\u09a6\\u09c2\\u09b0\\u09cd\\u09ac\\u09b2\\u09a4\\u09be \\u09a6\\u09c2\\u09b0\\u09c0\\u0995\\u09b0\\u09a3\\u09c7 \\u09ae\\u09a7\\u09c1\\u09b0 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09f7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"db20cb3\"},{\"text\":\"\\u09ae\\u09a7\\u09c1\\u09a4\\u09c7 \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09ae\\u09be\\u09a8 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u2013\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09b0\\u0982 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u09a4\\u09be\\u09b0\\u09c1\\u09a3\\u09cd\\u09af\\u09a4\\u09be \\u09ac\\u099c\\u09be\\u09af\\u09bc\\u09c7 \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09c7 \\u09f7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"9537b36\"},{\"text\":\"\\u09b0\\u0995\\u09cd\\u09a4\\u09b6\\u09c2\\u09a8\\u09cd\\u09af\\u09a4\\u09be \\u0993 \\u0995\\u09cb-\\u09b7\\u09cd\\u09a0-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7: \\u098f\\u09a4\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09ac\\u09bf-\\u0995\\u09ae\\u09aa\\u09cd\\u09b2\\u09c7\\u0995\\u09cd\\u09b8, \\u09af\\u09be \\u09b0\\u0995\\u09cd\\u09a4\\u09b6\\u09c2\\u09a8\\u09cd\\u09af\\u09a4\\u09be \\u0993 \\u0995\\u09cb-\\u09b7\\u09cd\\u09a0-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"821ed13\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7d5622cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u09ef\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\",\"align\":\"center\",\"title_color\":\"#07AF00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"bounceIn\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e06460d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7caafb81\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#07AF00\"},\"elements\":[{\"id\":\"72380d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e3333a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"195edaef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"725fccf4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6410ccf5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7, \\u09a6\\u09c7\\u0996\\u09c7,\\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f\\u09c7 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\"},{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"7dcd5f8\"},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09c1\\u09b0\\u09bf\\u09df\\u09be\\u09b0\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"727b43f\"},{\"text\":\"\\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09b8\\u09ae\\u09df \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"25ca027\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46ec3f6a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"77705a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3e45ea19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8    01819000000\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be570b3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\"},\"elements\":[{\"id\":\"4bea656d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#07AF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"37f3da9f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2121,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-9-2026-11_23_18-AM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37676298\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#07AF00\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a03de62\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45c6fd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4c7aa7f\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6405','2079','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6406','2079','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6407','2079','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6408','2079','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:46:\"শিপিং অ্যাডড্রেস\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6409','2079','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6410','2079','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6411','2079','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6412','2079','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6413','2079','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6414','2079','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6415','2079','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:69:\"আপনার ফোন নাম্বারটি লেখুন\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6416','2079','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6417','2079','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6418','2079','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6419','2079','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6420','2079','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6421','2079','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6422','2079','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6423','2079','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6424','2079','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6425','2079','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6426','2079','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6427','2079','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6428','2079','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6429','2079','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6430','2079','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6431','2079','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6432','2079','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6433','2079','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6434','2079','wcf-product-options','single-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6435','2079','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6436','2079','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6437','2079','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6438','2079','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6444','2080','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6445','2080','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6446','2080','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6447','2080','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6448','2080','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6449','2080','_elementor_data','[{\"id\":\"dcf224e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"shape_divider_bottom\":\"clouds\"},\"elements\":[{\"id\":\"db69026\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u09cd\\u09af\\u09be\\u09b8\\u09bf\\u09a1\\u09bf\\u099f\\u09bf, \\u09aa\\u09c7\\u09aa\\u099f\\u09bf\\u0995 \\u0986\\u09b2\\u09b8\\u09be\\u09b0 \\u0993 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u09c7 <span style=\\\"color: red\\\">\\u201c\\u09b8\\u09bf\\u09a1 \\u09b6\\u09b0\\u09ac\\u09a4\\u201d<\\/span>\\n\\n  \\u0996\\u09c1\\u09ac\\u0987 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\n\",\"align\":\"center\",\"title_color\":\"#10A31F\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"547188c4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70ee83e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"27991ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09a8\\u09c7\\u0995\\u09c7\\u0987 \\u09a6\\u09c0\\u09b0\\u09cd\\u0998\\u09a6\\u09bf\\u09a8 \\u09af\\u09be\\u09ac\\u09ce \\u09aa\\u09c7\\u099f\\u09c7\\u09b0 \\u09a8\\u09be\\u09a8\\u09be \\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09ad\\u09c1\\u0997\\u099b\\u09c7\\u09a8? \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7 \\u0995\\u09b0\\u09c7, \\u09af\\u09be\\u09b0\\u09be \\u0995\\u09cb-\\u09b7\\u09cd\\u09a0-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u09c7; \\u09a4\\u09be\\u09b0\\u09be \\u09ac\\u09c7\\u09b6\\u09bf\\u09b0\\u09ad\\u09be\\u0997 \\u09b8\\u09ae\\u09df\\u0987 \\u09b2\\u099c\\u09cd\\u099c\\u09be\\u09df \\u098f \\u09ae\\u09be\\u09b0\\u09be\\u09a4\\u09cd\\u09ae\\u0995 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u0995\\u09a5\\u09be \\u09b6\\u09c7\\u09df\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u09a8 \\u09a8\\u09be\\u0964 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u09a4\\u09bf\\u09a8\\u09bf \\u09a8\\u09bf\\u099c\\u09c7\\u0987 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u09aa\\u09be\\u09df\\u09c7 \\u0995\\u09c1\\u09dc\\u09be\\u09b2 \\u09ae\\u09be\\u09b0\\u099b\\u09c7\\u09a8\\u0964\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ad041da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":682,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green-and-White-Modern-New-Menu-Special-Matcha-Tea-Promotion-Instagram-Post.webp\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"461bf7de\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3954a96\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09e7\\u09e7\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#F30303\",\"title_color\":\"#050505\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":40,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"b9c93ae\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09ef\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"marker_color\":\"#F30303\",\"title_color\":\"#07AF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#FC0707\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"stroke_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"words_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44dc169b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7d217dc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8e8602\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09bf\\u09a1 \\u09b6\\u09b0\\u09ac\\u09a4 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be-\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"18\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54448d37\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"13558f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"279c60d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09c0\\u099c \\u0995\\u09ae\\u09cd\\u09ac\\u09cb \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u09ae\\u09c7\\u099f\\u09be\\u09ac\\u09b2\\u09bf\\u099c\\u09ae \\u09ac\\u09be\\u09dc\\u09bf\\u09df\\u09c7 \\u09a4\\u09c1\\u09b2\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u09a4\\u09c7 \\u0989\\u09aa\\u09b8\\u09cd\\u09a5\\u09bf\\u09a4 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0996\\u09c1\\u09ac\\u0987 \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#FE0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9346196\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0995\\u09af\\u09bc\\u09c7\\u0995\\u099f\\u09bf \\u0997\\u09ac\\u09c7\\u09b7\\u09a3\\u09be\\u09af\\u09bc \\u09a6\\u09c7\\u0996\\u09be \\u0997\\u09c7\\u099b\\u09c7, \\u09a4\\u09cb\\u0995\\u09ae\\u09be\\u09b0 \\u09a6\\u09be\\u09a8\\u09be \\u09a6\\u09c7\\u09b9\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0 \\u0995\\u09cb\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u099b\\u09be\\u09a1\\u09bc\\u09be\\u0993 \\u09b0\\u0995\\u09cd\\u09a4\\u09c7 \\u099a\\u09b0\\u09cd\\u09ac\\u09bf\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u0995\\u09ae\\u09be\\u09a8\\u09cb, \\u09a1\\u09be\\u09af\\u09bc\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3, \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u09b9\\u09be\\u09b0\\u09cd\\u099f \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09b0\\u09be\\u0996\\u09c7\\u0964 \\u09b9\\u09be\\u09a1\\u09bc \\u0997\\u09a0\\u09a8\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b240c08\"},{\"text\":\"\\u09b0\\u0995\\u09cd\\u09a4\\u09c7\\u09b0 \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0 \\u09a4\\u09cb\\u0995\\u09ae\\u09be\\u0964 \\u09ae\\u09c2\\u09b2\\u09a4 \\u09a6\\u09c7\\u09b9\\u09c7\\u09b0 \\u09ac\\u09bf\\u09aa\\u09be\\u0995\\u0995\\u09cd\\u09b0\\u09bf\\u09df\\u09be \\u09a7\\u09c0\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a6\\u09c7\\u09df \\u09a4\\u09cb\\u0995\\u09ae\\u09be\\u0964 \\u09ab\\u09b2\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09ac\\u09cb\\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u0995\\u09c7 \\u0997\\u09cd\\u09b2\\u09c1\\u09c1\\u0995\\u09cb\\u099c\\u09c7 \\u09b0\\u09c2\\u09aa\\u09be\\u09a8\\u09cd\\u09a4\\u09b0\\u09c7\\u09b0 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09be \\u09b8\\u09b9\\u099c \\u09b9\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c67dfa7\"},{\"text\":\"\\u0995\\u09cb-\\u09b7\\u09cd\\u099f-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0996\\u09c1\\u09ac\\u0987 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0 \\u09a4\\u09cb\\u0995\\u09ae\\u09be\\u0964 \\u09b8\\u09be\\u09ae\\u09be\\u09a8\\u09cd\\u09af \\u09a4\\u09cb\\u0995\\u09ae\\u09be \\u0985\\u09b2\\u09cd\\u09aa \\u09aa\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09ad\\u09bf\\u099c\\u09bf\\u09df\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u0995\\u09bf\\u099b\\u09c1\\u0995\\u09cd\\u09b7\\u09a3 \\u09aa\\u09b0 \\u09a4\\u09be \\u09a6\\u09c1\\u09a7\\u09c7 \\u09ae\\u09bf\\u09b6\\u09bf\\u09df\\u09c7 \\u0996\\u09c7\\u09b2\\u09c7\\u0993 \\u0989\\u09aa\\u0995\\u09be\\u09b0 \\u09aa\\u09be\\u0993\\u09df\\u09be \\u09af\\u09be\\u09ac\\u09c7\\u0964 \\u098f\\u099f\\u09bf \\u09b9\\u099c\\u09ae\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u0993 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09a8\\u09be\\u09a8\\u09be \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09a4\\u09cb\\u0995\\u09ae\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964 \\u098f\\u099f\\u09bf \\u09a8\\u09be\\u09a8\\u09be \\u099a\\u09b0\\u09cd\\u09ae\\u09b0\\u09cb\\u0997 \\u09a8\\u09bf\\u09b0\\u09be\\u09ae\\u09df\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u099f\\u09bf \\u098f\\u0995\\u099c\\u09bf\\u09ae\\u09be \\u0993 \\u09b8\\u09cb\\u09b0\\u09bf\\u09df\\u09be\\u09b8\\u09bf\\u09b8 \\u09a8\\u09bf\\u09b0\\u09be\\u09ae\\u09df\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u0964 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u099f\\u09bf \\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u0996\\u09be\\u0993\\u09df\\u09be \\u09af\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d971aea\"},{\"text\":\"\\u09a4\\u09cb\\u0995\\u09ae\\u09be \\u09ac\\u09c0\\u099c\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09a0\\u09be\\u09a3\\u09cd\\u09a1\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c0 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8\\u0964 \\u098f\\u099f\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c7\\u09b9\\u0995\\u09c7 \\u09a0\\u09be\\u09a3\\u09cd\\u09a1\\u09be\\u09b0 \\u09ac\\u09bf\\u09b0\\u09c1\\u09a6\\u09cd\\u09a7\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u0997\\u09dc\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u09b8\\u09b0\\u09cd\\u09a6\\u09bf-\\u0995\\u09be\\u09b6\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09a6\\u09c2\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\u09b2\\u09c7 \\u09a4\\u09be\\u0987 \\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u09a4\\u09cb\\u0995\\u09ae\\u09be \\u0996\\u09be\\u0993\\u09df\\u09be \\u09af\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"3e5bd2a\"},{\"text\":\"\\u09a4\\u09c1\\u09b2\\u09b8\\u09c0\\u09b0 \\u09aa\\u09be\\u09a4\\u09be\\u0987 \\u09a8\\u09df, \\u09a4\\u09c1\\u09b2\\u09b8\\u09c0\\u09b0 \\u09ac\\u09c0\\u099c\\u0993 \\u09a6\\u09be\\u09b0\\u09c1\\u09a3 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\u0964 \\u09a4\\u09c1\\u09b2\\u09b8\\u09c0 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u09ae\\u09a4\\u09cb\\u0987 \\u09a4\\u09c1\\u09b2\\u09b8\\u09c0 \\u09ac\\u09c0\\u099c\\u0993 \\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09be\\u09a1\\u09bc\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u09af\\u09c7\\u09ae\\u09a8- \\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3 \\u09b8\\u09b0\\u09cd\\u09a6\\u09bf \\u098f\\u09ac\\u0982 \\u09ab\\u09cd\\u09b2\\u09c1 \\u099c\\u09be\\u09a4\\u09c0\\u09af\\u09bc \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a5\\u09c7\\u0995\\u09c7\\u0993 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09c7\\u09a4\\u09c7 \\u098f\\u0987 \\u09ac\\u09c0\\u099c\\u09c7\\u09b0 \\u099c\\u09c1\\u09a1\\u09bc\\u09bf \\u09ae\\u09c7\\u09b2\\u09be \\u09ad\\u09be\\u09b0\\u0964 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09a4\\u09be-\\u0987 \\u09a8\\u09af\\u09bc, \\u09aa\\u09c7\\u09b6\\u09c0\\u09a4\\u09c7 \\u099f\\u09be\\u09a8 \\u09aa\\u09a1\\u09bc\\u09b2\\u09c7\\u0993 \\u098f\\u0987 \\u09ac\\u09c0\\u099c \\u0996\\u09c7\\u09b2\\u09c7 \\u0986\\u09b0\\u09be\\u09ae \\u09aa\\u09be\\u0993\\u09df\\u09be \\u09af\\u09be\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d2eaf79\"},{\"text\":\"\\u0995\\u09cb-\\u09b7\\u09cd\\u09a0-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7: \\u0987\\u09b8\\u09ac\\u0997\\u09c1\\u09b2 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7 \\u09a6\\u09be\\u09b0\\u09c1\\u09a3 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u09a4\\u09c7 \\u0989\\u09aa\\u09b8\\u09cd\\u09a5\\u09bf\\u09a4 \\u0985\\u09a6\\u09cd\\u09b0\\u09ac\\u09a3\\u09c0\\u09df \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09b0\\u09cb\\u0997\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09a8\\u09b0\\u09ae \\u0995\\u09b0\\u09c7 \\u09a6\\u09c7\\u09df\\u0964 \\u09ab\\u09b2\\u09c7 \\u0996\\u09c1\\u09ac \\u09b8\\u09b9\\u099c\\u09c7\\u0987 \\u0987\\u09b2\\u09bf\\u09ae\\u09bf\\u09a8\\u09c7\\u09b6\\u09a8 \\u09b8\\u09ae\\u09cd\\u09ad\\u09ac \\u09b9\\u09df\\u0964 \\u09a4\\u09be\\u0987 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u0998\\u09c1\\u09ae\\u09be\\u09a8\\u09cb\\u09b0 \\u0986\\u0997\\u09c7 \\u09e8 \\u099a\\u09be\\u09ae\\u099a \\u0987\\u09b8\\u09ac\\u0997\\u09c1\\u09b2\\u09c7\\u09b0 \\u09ad\\u09c1\\u09b8\\u09bf \\u0993 \\u09e7 \\u0997\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c1\\u09b8\\u09c1\\u09ae \\u0997\\u09b0\\u09ae \\u09a6\\u09c1\\u09a7 \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u0995\\u09c7\\u0989 \\u09af\\u09a6\\u09bf \\u09b0\\u09cb\\u0997\\u099f\\u09bf \\u09aa\\u09c1\\u09b7\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\\u09a8, \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u0995\\u09cb\\u09b2\\u09a8 \\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09b8\\u09be\\u09b0 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ad\\u09be\\u09ac\\u09a8\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d420d6c\"},{\"text\":\"\\u09b0\\u0995\\u09cd\\u09a4\\u09c7 \\u0995\\u09cb\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2 \\u0995\\u09ae\\u09be\\u09df: \\u098f \\u0987\\u09b8\\u09ac\\u0997\\u09c1\\u09b2 \\u0996\\u09c7\\u09b2\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0985\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09c7 \\u098f\\u0995\\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09a4\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09df\\u0964 \\u09af\\u09be \\u0995\\u09cb\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2 \\u09b6\\u09cb\\u09b7\\u09a3\\u09c7 \\u09ac\\u09be\\u09a7\\u09be \\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ab\\u09b2\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b0\\u0995\\u09cd\\u09a4\\u09c7 \\u0995\\u09cb\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u0995\\u09ae\\u09c7 \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u0985\\u09ac\\u09b8\\u09cd\\u09a5\\u09be\\u09df \\u09ab\\u09bf\\u09b0\\u09c7 \\u0986\\u09b8\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c0\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a6\\u09be\\u09b0\\u09c1\\u09a3 \\u098f\\u0995\\u099f\\u09bf \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u098f\\u099f\\u09bf\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2592254\"},{\"text\":\"\\u0993\\u099c\\u09a8 \\u0995\\u09ae\\u09be\\u09df: \\u098f\\u09a4\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0989\\u09aa\\u09b8\\u09cd\\u09a5\\u09bf\\u09a4 \\u09a5\\u09be\\u0995\\u09be\\u09df \\u09b9\\u099c\\u09ae \\u09aa\\u09cd\\u09b0\\u0995\\u09cd\\u09b0\\u09bf\\u09df\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u09a7\\u09c0\\u09b0\\u0997\\u09a4\\u09bf\\u09a4\\u09c7 \\u09b9\\u09df\\u0964 \\u09a4\\u09be\\u0987 \\u0995\\u09cd\\u09b7\\u09c1\\u09a7\\u09be \\u09b2\\u09be\\u0997\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u0995\\u09ae\\u0964 \\u098f\\u099f\\u09bf \\u0996\\u09c7\\u09b2\\u09c7 \\u0993\\u099c\\u09a8 \\u0995\\u09ae\\u09be\\u09a8\\u09cb \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09b9\\u099c \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"924a60d\"},{\"text\":\"\\u098f\\u0987 \\u09ac\\u09c0\\u099c\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09a5\\u09be\\u0995\\u09c7 \\u09af\\u09be \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u0993 \\u09ac\\u09a6\\u09b9\\u099c\\u09ae \\u09a5\\u09c7\\u0995\\u09c7 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09c7\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09c7\\u099f \\u09ac\\u09cd\\u09af\\u09be\\u09a5\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0996\\u09c1\\u09ac\\u0987 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\u0964 \\u09b9\\u09be\\u09b2\\u09bf\\u09ae \\u09ac\\u09c0\\u099c \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ad\\u09be\\u09b2\\u09cb \\u0989\\u09ce\\u09b8\\u0964 \\u09ab\\u09b2\\u09c7 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a4\\u09c3\\u09aa\\u09cd\\u09a4\\u09bf\\u09a6\\u09be\\u09df\\u0995 \\u09b9\\u09df\\u09c7 \\u0993\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2de9a4a\"},{\"text\":\"\\u09b9\\u09be\\u09b2\\u09bf\\u09ae \\u09ac\\u09c0\\u099c \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0996\\u09c1\\u09ac\\u0987 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0\\u0964 \\u098f\\u099f\\u09bf \\u09b2\\u09cb\\u09b9\\u09be\\u09b0 \\u0989\\u099a\\u09cd\\u099a \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09b2\\u09be\\u09b2 \\u09b0\\u0995\\u09cd\\u09a4 \\u0995\\u09cb\\u09b7\\u09c7\\u09b0 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8\\u0995\\u09c7 \\u0989\\u09ce\\u09b8\\u09be\\u09b9 \\u09a6\\u09c7\\u09af\\u09bc \\u098f\\u09ac\\u0982 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09b9\\u09bf\\u09ae\\u09cb\\u0997\\u09cd\\u09b2\\u09cb\\u09ac\\u09bf\\u09a8 \\u098f\\u09b0 \\u09b8\\u09cd\\u09a4\\u09b0 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964 \\u09ab\\u09b2\\u09c7 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be \\u09aa\\u09cd\\u09b0\\u0995\\u09cb\\u09aa \\u09a5\\u09c7\\u0995\\u09c7 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"dbca928\"},{\"text\":\"\\u09b9\\u09be\\u09b2\\u09bf\\u09ae \\u09ac\\u09c0\\u099c \\u0986\\u09cd\\u09af\\u09a8\\u09cd\\u099f\\u09bf \\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u0993 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7\\u0964 \\u09a4\\u09be\\u0987 \\u098f\\u099f\\u09bf \\u09b6\\u09b0\\u09c0\\u09b0\\u0995\\u09c7 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u099c\\u09c0\\u09ac\\u09be\\u09a3\\u09c1 \\u098f\\u09b0 \\u09b8\\u0982\\u0995\\u09cd\\u09b0\\u09ae\\u09a3 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"e24e91e\"},{\"text\":\"\\u099c\\u09cd\\u09ac\\u09b0, \\u09b8\\u09b0\\u09cd\\u09a6\\u09bf, \\u0997\\u09b2\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09a5\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7- \\u09b9\\u09be\\u09b2\\u09bf\\u09ae \\u09ac\\u09c0\\u099c \\u0986\\u09a8\\u09cd\\u099f\\u09bf \\u09ae\\u09be\\u0987\\u0995\\u09cd\\u09b0\\u09cb\\u09ac\\u09bf\\u09af\\u09bc\\u09be\\u09b2 \\u09ac\\u09c8\\u09b6\\u09bf\\u09b7\\u09cd\\u099f\\u09cd\\u09af \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u099f\\u09bf \\u099c\\u09cd\\u09ac\\u09b0 \\u09b8\\u09b0\\u09cd\\u09a6\\u09bf \\u09b8\\u09b9 \\u09b6\\u09cd\\u09ac\\u09be\\u09b8 \\u09aa\\u09cd\\u09b0\\u09b6\\u09cd\\u09ac\\u09be\\u09b8 \\u098f\\u09b0 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"88dfd2e\"},{\"text\":\"\\u09ae\\u09a7\\u09c1 \\u09b6\\u09bf\\u09b6\\u09c1\\u09a6\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc\\u09c7\\u09b0 \\u0997\\u09a0\\u09a8 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7, \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u098f\\u09ac\\u0982 \\u09b8\\u09cd\\u09ae\\u09c3\\u09a4\\u09bf\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d481b8c\"},{\"text\":\"\\u09b0\\u09be\\u09a4\\u09c7\\u09b0 \\u09ac\\u09c7\\u09b2\\u09be \\u09a6\\u09c1\\u09a7\\u09c7\\u09b0 \\u09b8\\u0999\\u09cd\\u0997\\u09c7 \\u09ae\\u09a7\\u09c1 \\u09ae\\u09bf\\u09b6\\u09bf\\u09df\\u09c7 \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09a8\\u09bf\\u09a6\\u09cd\\u09b0\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"4004081\"},{\"text\":\"\\u09b6\\u09be\\u09b0\\u09c0\\u09b0\\u09bf\\u0995 \\u09a6\\u09c2\\u09b0\\u09cd\\u09ac\\u09b2\\u09a4\\u09be \\u09a6\\u09c2\\u09b0\\u09c0\\u0995\\u09b0\\u09a3\\u09c7 \\u09ae\\u09a7\\u09c1\\u09b0 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09f7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"db20cb3\"},{\"text\":\"\\u09ae\\u09a7\\u09c1\\u09a4\\u09c7 \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09ae\\u09be\\u09a8 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u2013\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09b0\\u0982 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u09a4\\u09be\\u09b0\\u09c1\\u09a3\\u09cd\\u09af\\u09a4\\u09be \\u09ac\\u099c\\u09be\\u09af\\u09bc\\u09c7 \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09c7 \\u09f7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"9537b36\"},{\"text\":\"\\u09b0\\u0995\\u09cd\\u09a4\\u09b6\\u09c2\\u09a8\\u09cd\\u09af\\u09a4\\u09be \\u0993 \\u0995\\u09cb-\\u09b7\\u09cd\\u09a0-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7: \\u098f\\u09a4\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09ac\\u09bf-\\u0995\\u09ae\\u09aa\\u09cd\\u09b2\\u09c7\\u0995\\u09cd\\u09b8, \\u09af\\u09be \\u09b0\\u0995\\u09cd\\u09a4\\u09b6\\u09c2\\u09a8\\u09cd\\u09af\\u09a4\\u09be \\u0993 \\u0995\\u09cb-\\u09b7\\u09cd\\u09a0-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"821ed13\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7d5622cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u09ef\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\",\"align\":\"center\",\"title_color\":\"#07AF00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"bounceIn\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e06460d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7caafb81\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#07AF00\"},\"elements\":[{\"id\":\"72380d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e3333a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"195edaef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"725fccf4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6410ccf5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7, \\u09a6\\u09c7\\u0996\\u09c7,\\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f\\u09c7 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\"},{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"7dcd5f8\"},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09c1\\u09b0\\u09bf\\u09df\\u09be\\u09b0\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"727b43f\"},{\"text\":\"\\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09b8\\u09ae\\u09df \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"25ca027\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46ec3f6a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"77705a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3e45ea19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8    01819000000\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be570b3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\"},\"elements\":[{\"id\":\"4bea656d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#07AF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"37f3da9f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":683,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green-and-White-Modern-New-Menu-Special-Matcha-Tea-Promotion-Instagram-Postuu.webp\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37676298\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#07AF00\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a03de62\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45c6fd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4c7aa7f\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6450','2080','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6452','2080','_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:8;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:5:\"align\";i:8;s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:3;s:22:\"typography_font_family\";i:7;s:28:\"text_stroke_text_stroke_type\";i:1;s:23:\"text_stroke_text_stroke\";i:1;s:22:\"typography_font_weight\";i:6;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:3;s:17:\"_background_color\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_shape_divider\";a:1:{s:20:\"shape_divider_bottom\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:2;s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:2;s:18:\"image_border_color\";i:2;s:19:\"image_border_radius\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:2;s:4:\"link\";i:2;s:4:\"size\";i:2;s:13:\"selected_icon\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:29:\"button_background_hover_color\";i:2;s:15:\"hover_animation\";i:2;s:22:\"typography_font_family\";i:2;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:1;s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:10:\"after_text\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:2:{s:12:\"marker_color\";i:2;s:12:\"stroke_width\";i:1;}s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_font_weight\";i:2;s:11:\"words_color\";i:2;s:27:\"words_typography_typography\";i:2;s:28:\"words_typography_font_family\";i:2;s:28:\"words_typography_font_weight\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:3;s:3:\"gap\";i:6;s:6:\"layout\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:4;s:11:\"_element_id\";i:1;s:11:\"css_classes\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}s:14:\"section_border\";a:1:{s:13:\"border_border\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:2;s:7:\"divider\";i:2;}s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;s:24:\"icon_self_vertical_align\";i:2;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6453','2082','wcf-flow-id','2081');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6454','2082','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6455','2082','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6456','2081','wcf-steps','a:3:{i:0;a:3:{s:2:\"id\";i:2082;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2084;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2111;s:5:\"title\";s:6:\"Thanks\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6457','2084','wcf-flow-id','2081');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6458','2084','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6459','2084','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6460','2084','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6461','2084','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6462','2084','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6463','2084','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6464','2084','_edit_lock','1780982417:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6465','2084','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6466','2084','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6467','2084','_elementor_data','[{\"id\":\"2b3c079\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#EDCFFF\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":125,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\"},\"elements\":[{\"id\":\"74e5410\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"91a93c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#DE5801\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a543117\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u0987\\u09ae\\u09aa\\u09cb\\u09b0\\u09cd\\u099f\\u09c7\\u09a1 \\u0997\\u09be\\u09b0\\u09cd\\u09ae\\u09c7\\u09a8\\u09cd\\u099f\\u09b8 \\u09b6\\u09be\\u099f\\u09bf\\u0982 \\u09ab\\u09be\\u0987\\u09a8 \\u0995\\u099f\\u09a8 \\u0993 \\u09ad\\u09bf\\u09b8\\u0995\\u09cb\\u09b8 \\u0995\\u099f\\u09a8 \\u0995\\u09be\\u09aa\\u09dc\\u09c7\\u09b0 \\u0995\\u09c7\\u099c\\u09c1\\u09df\\u09be\\u09b2 \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u0993 \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf,  \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09af\\u09c7 \\u0995\\u09cb\\u09a8\\u09cb \\u0985\\u09a8\\u09c1\\u09b7\\u09cd\\u09a0\\u09be\\u09a8 \\u0993 \\u09aa\\u09be\\u09b0\\u09cd\\u099f\\u09bf\\u09a4\\u09c7 \\u09af\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ac\\u09c7\\u09b7\\u09cd\\u099f \\u099a\\u09df\\u09c7\\u099c \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"title_color\":\"#8F1EFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65bceb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"<s>\\u0986\\u0997\\u09c7\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\u0983 \\u09e7\\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/s>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":573,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":549,\"sizes\":[]},\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"title_color\":\"#7E7E7E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09c1880\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u09b8\\u09c7\\u09b0\\u09be \\u0985\\u09ab\\u09be\\u09b0\\u0983   \\u09e7 \\u09aa\\u09bf\\u09b8\",\"highlighted_text\":\"\\u09e7\\u09ea\\u09eb\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be (\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae  \\u09ab\\u09cd\\u09b0\\u09c0)\",\"marker_color\":\"#DE5801\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Animated Headline\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"7a9cbb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#DE5801\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ace547\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45fb7d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ca67923\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fd702d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0d0c29c\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"ac54b46\"},{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"faf8c2b\"},{\"image\":{\"id\":1738,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8ff395b\"},{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"46e9306\"},{\"image\":{\"id\":1728,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/p5xa7.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"bc3960e\"}],\"height\":{\"unit\":\"px\",\"size\":407,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"slide_border_color\":\"#ADA8A8\"},\"elements\":[],\"widgetType\":\"media-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd474e6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#EDCFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bb43190\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"940dc12\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09cd\\u09af\\u09c7\\u0995\\u099f\\u09bf \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09bf\\u0995\\u09a8 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u0993\\u09df\\u09be\\u09b8 \\u0995\\u09b0\\u09be, \\u09a4\\u09be\\u0987 \\u0996\\u09c1\\u09ac\\u0987 \\u09b8\\u09ab\\u099f \\u0993 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u09b2\\u09c1\\u0995\\u09b8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\",\"align\":\"center\",\"title_color\":\"#9A00FF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ed746a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09be \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u098f\\u09b0 \\u0995\\u09be\\u09aa\\u09dc \\u0987\\u09ae\\u09aa\\u09cb\\u09b0\\u09cd\\u099f\\u09c7\\u09a1 \\u09b6\\u09be\\u09b0\\u09cd\\u099f\\u09bf\\u0982 \\u09ab\\u09be\\u0987\\u09a8 \\u0995\\u099f\\u09a8\\u0964  \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0995\\u099f\\u09a8 \\u09a4\\u09be\\u0987 \\u0997\\u09b0\\u09ae\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0996\\u09c1\\u09ac-\\u0987 \\u0986\\u09b0\\u09be\\u09ae\\u09a6\\u09be\\u09df\\u0995 \\u098f\\u09ac\\u0982 \\u09b0\\u0982 \\u09a8\\u09b7\\u09cd\\u099f \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u0987\\u09a8\\u09b6\\u09be\\u2014\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u0964\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#E323E4\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77693b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09be\\u09aa\\u09dc\\u09c7\\u09b0 \\u09a7\\u09b0\\u09a3 : \\u0987\\u09ae\\u09aa\\u09cb\\u09b0\\u09cd\\u099f\\u09c7\\u09a1 \\u09b6\\u09be\\u09b0\\u09cd\\u099f\\u09bf\\u0982 \\u09ab\\u09be\\u0987\\u09a8 \\u0995\\u099f\\u09a8, 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0995\\u099f\\u09a8 ( \\u0997\\u09b0\\u09ae\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0996\\u09c1\\u09ac-\\u0987 \\u0986\\u09b0\\u09be\\u09ae\\u09a6\\u09be\\u09df\\u0995 )\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#ED33F8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9361b78\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#BA01DE\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3482309\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#EDCFFF\"},\"elements\":[{\"id\":\"6b7b965\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a788625\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09bf \\u0995\\u09bf \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b \\u09a5\\u09c7\\u0995\\u09c7 \\u09b6\\u09be\\u09b0\\u09cd\\u099f\\u099f\\u09bf \\u0995\\u09bf\\u09a8\\u09be \\u0989\\u099a\\u09bf\\u09ce!\",\"align\":\"left\",\"title_color\":\"#B500FF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f8c75f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":17,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ca89e3f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" \\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f  \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u09ac\\u09df\\u09c7\\u099c\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af  \\u09ab\\u09c7\\u09b6\\u09be\\u09a8\\u09be\\u09ac\\u09b2 \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u0993 \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09b8\\u099b\\u09c7 \\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1,  \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5933f44\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1  \\u0986\\u09aa\\u09a8\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0993 \\u099a\\u09be\\u09b9\\u09bf\\u09a6\\u09be\\u09b0 \\u0995\\u09a5\\u09be \\u09ae\\u09be\\u09a5\\u09be\\u09df \\u09b0\\u09c7\\u0996\\u09c7  \\u09b0\\u09c1\\u099a\\u09bf\\u09b6\\u09c0\\u09b2 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u0993 \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf\\u09b0 \\u09ae\\u09c7\\u09b2\\u09be \\u09b8\\u09be\\u099c\\u09bf\\u09df\\u09c7\\u099b\\u09c7,\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"8a730af\"},{\"text\":\" \\u09eb \\u099f\\u09bf \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u09aa\\u09cd\\u09b0\\u09bf\\u09a8\\u09cd\\u099f\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u099b\\u09c7 \\u09a8\\u09bf\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6\\u09c7\\u09b0 \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u0993 \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf,,   \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0995\\u099f\\u09a8, \\u0986\\u09b0\\u09be\\u09ae\\u09a6\\u09be\\u09df\\u0995 \\u0995\\u09be\\u09aa\\u09dc\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09df\\u09a4\\u09be \\u0993 \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0997\\u09c7\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09c7 \\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 ,  \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4f9bf5b\"},{\"text\":\"\\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 \\u2764\\ufe0f \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u09b8\\u09ae\\u09cd\\u09ae\\u09be\\u09a8\\u09bf\\u09a4 \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0\\u09c7\\u09b0 \\u09a6\\u09cb\\u09df\\u09be \\u0993 \\u09ad\\u09be\\u09b2\\u09cb\\u09ac\\u09be\\u09b8\\u09be \\u0986\\u09b6\\u09be\\u09ac\\u09be\\u09a6\\u09c0,  \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3b1c925\"},{\"_id\":\"2a2059e\",\"text\":\"\\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u09c7\\u09b0 \\u09b8\\u09c1\\u0987\\u0982 \\u0996\\u09c1\\u09ac\\u0987 \\u09a8\\u09bf\\u0996\\u09c1\\u0981\\u09a4 \\u0993 \\u099f\\u09c7\\u0995\\u09b8\\u0987 \\u0987\\u09a8\\u09b6\\u09be \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9,  \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},{\"_id\":\"e069d9f\",\"text\":\" \\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09b8\\u09cd\\u09a4 \\u098f\\u0995\\u099f\\u09bf  \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b7\\u09cd\\u09a0\\u09be\\u09a8,  \\ud83c\\udf41 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u09c7\\u09b0 \\u09b8\\u09be\\u0987\\u099c \\u098f\\u09ad\\u09c7\\u0987\\u09b2\\u09c7\\u09ac\\u09c7\\u09b2 \\u0986\\u099b\\u09c7,   \\u09ae\\u09bf\\u09a1\\u09bf\\u09df\\u09be\\u09ae, \\u09b2\\u09be\\u09b0\\u09cd\\u099c, \\u098f\\u0995\\u09cd\\u09b8\\u09c7\\u09b2\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},{\"_id\":\"d86e380\",\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a6\\u09c7\\u09b6\\u09bf\\u0993 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 \\u0997\\u09c1\\u09b2\\u09cb\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09ae\\u09a8\\u09cd\\u09ac\\u09df \\u09b0\\u09c7\\u0996\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u09c7\\u09b0 \\u09b8\\u09be\\u0987\\u099c \\u09b0\\u09c7\\u09b6\\u09bf\\u0993 \\u0995\\u09b0\\u09c7\\u099b\\u09bf\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#B501FF\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_color\":\"#572463\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":102.5},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"877f6f0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FBF2FF\",\"gap\":\"no\"},\"elements\":[{\"id\":\"3bfc7cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"2\",\"right\":\"20\",\"bottom\":\"2\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[{\"id\":\"5413740\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u0987\\u099c \\u0997\\u09be\\u0987\\u09a1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9de2556\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"style\":\"double\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":15,\"sizes\":[]},\"align\":\"center\",\"color\":\"#DE5801\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b4cace6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table style=\\\"height: 278px;\\\" width=\\\"230\\\"><tbody><tr><th><strong>SIZE (\\u09b8\\u09be\\u0987\\u099c)<\\/strong><\\/th><th><strong>CHEST (\\u09ac\\u09c1\\u0995\\u09c7\\u09b0 \\u09ae\\u09be\\u09aa)<\\/strong><\\/th><th><strong>LEANGTH (\\u09b2\\u09c7\\u09a8\\u09cd\\u09a5)<\\/strong><\\/th><\\/tr><tr><td><strong>M<\\/strong><\\/td><td><strong>38\\\"<\\/strong><\\/td><td><strong>27\\\"<\\/strong><\\/td><\\/tr><tr><td><b>L<\\/b><\\/td><td><strong>40\\\"<\\/strong><\\/td><td><strong>28\\\"<\\/strong><\\/td><\\/tr><tr><td><b>XL<\\/b><\\/td><td><strong>42\\\"<\\/strong><\\/td><td><strong>30\\\"<\\/strong><\\/td><\\/tr><\\/tbody><\\/table>\",\"_css_classes\":\"tsize\",\"custom_css\":\".tsize table {\\r\\n  \\r\\n  border-collapse: collapse;\\r\\n  width: 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n}\\r\\n\\r\\n.tsize th {\\r\\n    padding: 15px 0 !important;\\r\\n    text-align: center !important;\\r\\n}\\r\\n\\r\\n.tsize td, .tsize th {\\r\\n  border: 1px solid #dddddd !important;\\r\\n  text-align: left;\\r\\n  padding: 8px;\\r\\n}\\r\\n\\r\\n.tsize tr:nth-child(odd) {\\r\\n  background-color: #f1f1f1;\\r\\n}\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#C514C1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#220931\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":99.854},\"_element_vertical_align\":\"flex-start\",\"align\":\"center\",\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d879c5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_color\":\"#DE5801\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"88e95cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ec6499b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aad6116\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u098f\\u0987 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ab\\u09bf \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"400e0a6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a4c711e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13894d5\",\"elType\":\"widget\",\"settings\":{\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"layout\":\"two-column\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09b0\\u0982 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"order-form\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"heading_text_color\":\"#000000\",\"heading_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"checkout-form\"},{\"id\":\"f92e86c\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6468','2084','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6469','2084','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6470','2084','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6471','2084','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6472','2084','wcf-product-options','multiple-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6473','2084','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6474','2084','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6475','2084','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6476','2084','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6477','2084','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6478','2084','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6479','2084','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6480','2084','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6481','2084','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6482','2084','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6483','2084','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6484','2084','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6485','2084','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6486','2084','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6487','2084','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6488','2084','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6489','2084','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6490','2084','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6491','2084','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6492','2084','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6493','2084','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6494','2084','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6495','2084','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6501','2085','wcf-flow-id','2076');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6502','2085','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6503','2085','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6504','2085','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6505','2085','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6506','2085','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6507','2085','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6508','2085','_edit_lock','1716445211:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6509','2085','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6510','2085','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6511','2085','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6512','2085','_elementor_data','[{\"id\":\"38104840\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c3b0e9e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6180a536\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"12ea2a2c\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43986afd\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"44332d2e\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"29b7fcb5\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"387b344\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"749ebec\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fffb705\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"7a908452\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"349292d1\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22d62176\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\\">itgalaxi<\\/a><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6513','2085','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6514','2085','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:3;s:6:\"margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6515','2086','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6516','2086','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6517','2086','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6518','2086','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6519','2086','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6520','2086','_elementor_data','[{\"id\":\"38104840\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c3b0e9e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6180a536\",\"settings\":{\"image\":{\"id\":\"126\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/dfgdfg.webp\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"12ea2a2c\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43986afd\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"44332d2e\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"29b7fcb5\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"387b344\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"749ebec\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fffb705\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"7a908452\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"349292d1\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22d62176\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\\">itgalaxi<\\/a><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6521','2086','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6522','2086','_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:3;s:6:\"margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6523','2087','wcf-flow-id','1977');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6524','2087','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6525','2087','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6526','2087','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6527','2087','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6528','2087','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6529','2087','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6530','2087','_edit_lock','1717962458:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6531','2087','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6532','2087','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6533','2087','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6534','2087','_elementor_data','[{\"id\":\"3d0c27a\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"800\",\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"40\",\"bottom\":\"92\",\"left\":\"40\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"68\",\"left\":\"24\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"31\",\"left\":\"20\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#0F5149\",\"shape_divider_bottom\":\"opacity-fan\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8788fe7\",\"settings\":{\"_column_size\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"09fae76\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"size_mobile\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"a718b25\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.5\",\"sizes\":[]},\"align\":\"center\",\"header_size\":\"h1\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"f63900b\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"5be417f\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4400b50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"4d49cf89\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00000017\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d1aa5cd\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a692d55\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6535','2087','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6536','2087','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6538','2088','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6539','2088','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6540','2088','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6541','2088','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6542','2088','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6543','2088','_elementor_data','[{\"id\":\"3d0c27a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"800\",\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"40\",\"bottom\":\"92\",\"left\":\"40\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"68\",\"left\":\"24\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"31\",\"left\":\"20\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#0F5149\",\"shape_divider_bottom\":\"opacity-fan\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]}},\"elements\":[{\"id\":\"8788fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"09fae76\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#FFFFFF\",\"size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"size_mobile\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"a718b25\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.5\",\"sizes\":[]},\"align\":\"center\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f63900b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\",\"header_size\":\"p\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5be417f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4400b50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false},{\"id\":\"4d49cf89\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00000017\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2d1aa5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a692d55\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6544','2088','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6545','2088','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6546','2088','_elementor_controls_usage','a:5:{s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:4:\"size\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:2;s:25:\"typography_letter_spacing\";i:1;s:5:\"align\";i:3;s:22:\"typography_line_height\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:21:\"section_shape_divider\";a:2:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6547','2090','wcf-flow-id','2089');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6548','2090','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6549','2090','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6550','2090','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6551','2090','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6552','2090','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6553','2090','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6554','2090','_edit_lock','1780979179:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6555','2090','_elementor_data','[{\"id\":\"9c29464\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"shape_divider_top_color\":\"#DADADA\",\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51f51c9\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3156264\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"height\":{\"unit\":\"px\",\"size\":107,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7fbc454\",\"settings\":{\"before_text\":\"\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u09b0\",\"highlighted_text\":\"\\u09ac\\u09c7\\u099c \\u0993 \\u0987\\u09b0\\u09be\\u09a8\\u09bf \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u09b8\\u09cd\\u09af\\u09be\\u09ab\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b8\\u09ae\\u09a8\\u09cd\\u09a8\\u09df\\u09c7 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"words_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"__globals__\":{\"words_color\":\"\",\"marker_color\":\"globals\\/colors?id=7d38e3a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"1f45b3b\",\"settings\":{\"slides\":[{\"_id\":\"204137a\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"de40079\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"620eb02\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"c6ba750\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"c0b7ae0\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"slides_per_view_mobile\":\"1\",\"slides_per_view\":\"3\",\"slides_to_scroll\":\"2\",\"pagination\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"media-carousel\",\"elType\":\"widget\"},{\"id\":\"eeae4e3\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"_transform_rotate_3d_hover\":\"yes\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_keep_proportions_hover\":\"\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.7,\"sizes\":[]},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"-6\",\"bottom\":\"-6\",\"left\":\"-6\",\"isLinked\":true},\"_border_border\":\"none\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"background_color\":\"#C6005A\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"5524eb4\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09cb\\u09aa \\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0985\\u09a5\\u09c7\\u09a8\\u09cd\\u099f\\u09bf\\u0995 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0997\\u09be\\u09af\\u09bc\\u09c7 QR \\u0995\\u09cb\\u09a1 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u0986\\u099b\\u09c7 \\u09b8\\u09cd\\u0995\\u09cd\\u09af\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=af10557\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"e8420b9\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1\\u09ae\\u09c7\\u09a1 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09e7 \\u099f\\u09bf - \\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be ( \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09b9 )\",\"align\":\"center\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"df77c6a\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1\\u09ae\\u09c7\\u09a1 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09e8 \\u099f\\u09bf - \\u09ed\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be ( \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ab\\u09cd\\u09b0\\u09bf )\",\"align\":\"center\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"55f15a3\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"_transform_rotate_3d_hover\":\"yes\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_keep_proportions_hover\":\"\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.7,\"sizes\":[]},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"-6\",\"bottom\":\"-6\",\"left\":\"-6\",\"isLinked\":true},\"_border_border\":\"none\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"background_color\":\"#C6005A\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"915675d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2522c90\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0f7991a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"714a3b7\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0caa05c\",\"settings\":{\"title\":\"\\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0997\\u09c1\\u09a8\\u09be\\u0997\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a8e82fa\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09eb-\\u09ec \\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09a4\\u09c7 \\u09b6\\u09c1\\u09b0\\u09c1 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ea19a93\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2\\u09a4\\u09be \\u09ec \\u09a5\\u09c7\\u0995\\u09c7 \\u09ed\\u09b6\\u09c7\\u09a1 \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u09ac\\u09be\\u09a1\\u09bc\\u09be\\u09af\\u09bc\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"d2d11f3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0997\\u09be\\u09df\\u09c7\\u09b0 \\u09b0\\u0982 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ba28102\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0997\\u09ad\\u09c0\\u09b0\\u09c7 \\u0997\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09a6\\u09cd\\u09b0\\u09a4\\u09be \\u099c\\u09cb\\u0997\\u09be\\u09af\\u09bc\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5c1fd47\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09b9\\u099c\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u09ac\\u09af\\u09bc\\u09b8\\u09c7\\u09b0 \\u099b\\u09be\\u09aa \\u09aa\\u09a1\\u09bc\\u09a4\\u09c7 \\u09a6\\u09c7\\u09af\\u09bc \\u09a8\\u09be\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"686913c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09b0\\u09cd\\u0995 \\u09b8\\u09be\\u09b0\\u09cd\\u0995\\u09c7\\u09b2 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3f6a206\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0993\\u09aa\\u09c7\\u09a8 \\u09aa\\u09cb\\u09b0\\u09cd\\u09b8 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \\u0993 \\u09aa\\u09bf\\u09ae\\u09cd\\u09aa\\u09b2 \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4ea1beb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0995\\u09be\\u09b2\\u09cb \\u09ac\\u09cd\\u09b0\\u09a3\\u09c7\\u09b0 \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c4914ab\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09c7\\u099b\\u09a4\\u09be\\u09b0 \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"655b1b9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u099a\\u09cb\\u0996\\u09c7\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"231379e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a6\\u09bf\\u09a8\\u09c7 \\u09ef \\u09a5\\u09c7\\u0995\\u09c7 \\u09e7\\u09e6 \\u0998\\u09a8\\u09cd\\u099f\\u09be \\u0993\\u09af\\u09bc\\u09c7\\u09b2 \\u0995\\u09a8\\u09cd\\u099f\\u09cd\\u09b0\\u09cb\\u09b2 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"1dd0dd3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u0997\\u09cd\\u09b2\\u09cb \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u0995\\u09be\\u09b2\\u09cb \\u09a4\\u09bf\\u09b2 \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"2f1b5ba\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7d38e3a\"},\"icon_self_vertical_align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"4bffe8b\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7d38e3a\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a28e2a7\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"background_background\":\"classic\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d135fe7\",\"settings\":{\"title\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"c82744f\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.332,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"680d879\",\"settings\":{\"title\":\"\\u099c\\u09be\\u09ab\\u09cd\\u09b0\\u09be\\u09a8 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u099f\\u09be \\u098f\\u09a4\\u09cb \\u099f\\u09be \\u099c\\u09cb\\u09b6 \\u09af\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09a8\\u09be \\u0995\\u09b0\\u09b2\\u09c7 \\u09ac\\u09c1\\u099d\\u09be\\u0987 \\u09af\\u09be\\u09df \\u09a8\\u09be\\u0964 \\u09a4\\u09be\\u0987  \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a8 \\u09b8\\u09cd\\u099f\\u0995 \\u09b6\\u09c7\\u09b7 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u0986\\u0997\\u09c7\\u0964 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u0985\\u09a8\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09af  \\u099c\\u09be\\u09ab\\u09cd\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09a8\\u09be\\u0964 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7 \\u0986\\u099b\\u09c7 \\u099c\\u09be\\u09ab\\u09cd\\u09b0\\u09be\\u09a8,\\u09aa\\u09c7\\u09aa\\u09c7,\\u0993 \\u09ad\\u09bf\\u099f\\u09be- \\u09b8\\u09bf \\u0993 \\u099b\\u09be\\u0997\\u09b2\\u09c7\\u09b0 \\u09a6\\u09c1\\u09a7\\u09c7\\u09b0 \\u09a6\\u09be\\u09b0\\u09c1\\u09a3 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0\\u09a4\\u09be \\u09af\\u09be \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf\\u0995\\u09c7 \\u0995\\u09b0\\u09c7\\u099b\\u09c7 \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u0986\\u09b2\\u09be\\u09a6\\u09be\\u0964\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"58b127f\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"background_background\":\"classic\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d9afa8b\",\"settings\":{\"title\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"69eae71\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=36b5bc3\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9278fa3\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b0f0909\",\"settings\":{\"title\":\"\\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u09a8\\u09bf\\u09af\\u09bc\\u09ae \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7e9a6c2\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a827d64\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7710be7\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u09e8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e9 \\u09ac\\u09be\\u09b0 \\u09ae\\u09c1\\u0996 \\u09a7\\u09c1\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"ea19a93\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09c1\\u0996 \\u09a7\\u09cb\\u09af\\u09bc\\u09be\\u09b0 \\u09a8\\u09bf\\u09af\\u09bc\\u09ae \\u09ae\\u09c1\\u0996\\u09c7 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09be \\u09b2\\u09be\\u0997\\u09bf\\u09af\\u09bc\\u09c7 \\u09e9 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f \\u09b0\\u09be\\u0996\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u0986\\u09ac\\u09be\\u09b0 \\u09e8 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f \\u09ae\\u09be\\u09b8\\u09be\\u099c \\u0995\\u09b0\\u09c7 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a7\\u09c1\\u09af\\u09bc\\u09c7 \\u09ab\\u09c7\\u09b2\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"9a77d33\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7d38e3a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"516b413\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"structure\":\"20\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=36b5bc3\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ccc4f61\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2674217\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09c0\\u09a4\\u09be\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2fe3ab8\",\"settings\":{\"icon_list\":[{\"text\":\"3-4 \\u09b6\\u09c7\\u09a1 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09ac\\u09c7 \\u09a6\\u09c1\\u0987 \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09bf\\u09a8\\u099f\\u09be \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u0987\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ea19a93\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0995\\u09df\\u09c7\\u0995\\u09a6\\u09bf\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7\\u0987 \\u0986\\u09aa\\u09a8\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u09b2\\u0995\\u09cd\\u09b7\\u09cd\\u09af \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"83de2c5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u099f\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u09ac\\u09cd\\u09b0\\u09be\\u0987\\u099f \\u0995\\u09b0\\u09ac\\u09c7 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"22b3dfa\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u098f\\u0995\\u09a6\\u09ae \\u09ad\\u09c7\\u09a4\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0473121\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09ab\\u099f \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b02aa6d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09b8\\u09cd\\u09a4\\u09c7 \\u0986\\u09b8\\u09cd\\u09a4\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09a6\\u09be\\u0997\\u0997\\u09c1\\u09b2\\u09cb \\u0995\\u09ae\\u09be\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c934448\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u09ac\\u09cd\\u09b0\\u09a3 \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"29e047c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09c1\\u09b2 \\u09ac\\u09a1\\u09bf\\u09a4\\u09c7 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09a1\\u09bf\\u0995\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"45f9252\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7d38e3a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"82b05d5\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"583fee6\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"0c073ab\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"structure\":\"20\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=36b5bc3\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"523c007\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c1dcd4a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":45,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"ba574f7\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ad72423\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09c0\\u09a4\\u09be\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c64691a\",\"settings\":{\"icon_list\":[{\"text\":\"3-4 \\u09b6\\u09c7\\u09a1 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09ac\\u09c7 \\u09a6\\u09c1\\u0987 \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09bf\\u09a8\\u099f\\u09be \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u0987\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ea19a93\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0995\\u09df\\u09c7\\u0995\\u09a6\\u09bf\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7\\u0987 \\u0986\\u09aa\\u09a8\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u09b2\\u0995\\u09cd\\u09b7\\u09cd\\u09af \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"83de2c5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u099f\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u09ac\\u09cd\\u09b0\\u09be\\u0987\\u099f \\u0995\\u09b0\\u09ac\\u09c7 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"22b3dfa\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u098f\\u0995\\u09a6\\u09ae \\u09ad\\u09c7\\u09a4\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0473121\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09ab\\u099f \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b02aa6d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09b8\\u09cd\\u09a4\\u09c7 \\u0986\\u09b8\\u09cd\\u09a4\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09a6\\u09be\\u0997\\u0997\\u09c1\\u09b2\\u09cb \\u0995\\u09ae\\u09be\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c934448\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u09ac\\u09cd\\u09b0\\u09a3 \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"29e047c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09c1\\u09b2 \\u09ac\\u09a1\\u09bf\\u09a4\\u09c7 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09a1\\u09bf\\u0995\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"45f9252\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7d38e3a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"ecf2997\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7d38e3a\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c791771\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a6238c\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":12,\"vertical\":12,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":44,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"e289e90\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f2ea2b\",\"settings\":{\"title\":\"\\u098f\\u099f\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1 \\u09ae\\u09c7\\u09a1  \\u09ae\\u09c1\\u0996\\u09c7\\u09b0 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u0964 \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u09aa\\u09c1\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09b8\\u09c7\\u09b2 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\u0964\\u098f \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ae\\u09c1\\u0996\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09b2\\u09c7 \\u09ae\\u09c1\\u0996\\u09c7 \\u09ac\\u09cd\\u09b0\\u09a3, \\u09a4\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a4\\u09cd\\u09ac\\u0995\\u0995\\u09c7 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09c7  \\u09ae\\u09c1\\u0996\\u0995\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a4\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09b0\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u0986\\u09b0 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u099f\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0\\u0964\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"89f59df\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d0e4986\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"292e146\",\"settings\":{\"before_text\":\"\\u09a6\\u09c1\\u0987\\u099f\\u09bf \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u0995\\u09bf\\u09a8\\u09b2\\u09c7 \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09b9\\u09cb\\u09ae  \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c  \",\"highlighted_text\":\"\\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u099f\\u09be\\u0995\\u09be \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\",\"stroke_width\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"words_color\":\"globals\\/colors?id=secondary\",\"marker_color\":\"globals\\/colors?id=7d38e3a\"},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5a96ee9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"466d0db\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c9e5f3a\",\"settings\":{\"title\":\"\\u098f\\u0995\\u099f\\u09be \\u09a8\\u09bf\\u09b2\\u09c7 \\u09ea\\u09ee\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09b9 \\u09a6\\u09c1\\u0987\\u099f\\u09be \\u09a8\\u09bf\\u09b2\\u09c7 \\u09ed\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ab\\u09cd\\u09b0\\u09bf\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"14106ed\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7d98406\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"btn_background_color_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_element_id\":\"order\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"900\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"heading_typography_font_weight\":\"600\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"buttons_typography_font_weight\":\"800\",\"buttons_typography_font_style\":\"normal\",\"button_text_color\":\"#FFFFFF\",\"product_option_section_title_text\":\"\\u0995\\u09cb\\u09a8\\u099f\\u09be \\u0995\\u09cb\\u09a8\\u099f\\u09be \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8 \\u09a8\\u09bf\\u099a \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8  \",\"global_primary_color\":\"#E71919\",\"global_text_color\":\"#000000\",\"global_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"global_typography_font_style\":\"normal\",\"global_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"global_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"global_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.3,\"sizes\":[]},\"heading_text_color\":\"#000000\",\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"heading_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"heading_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.6,\"sizes\":[]},\"heading_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"input_color\":\"#A98E8E\",\"input_border_color\":\"#000000\",\"input_radius_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"payment_section_text_color\":\"#000000\",\"payment_section_desc_color\":\"#000000\",\"payment_section_bg_color\":\"#D7D7D7\",\"payment_info_bg_color\":\"#FFFFFF\",\"payment_section_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"payment_section_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"product_bg_color\":\"#F4F4F4\",\"product_option_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"highlight_product_border_size\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"highlight_product_border_radius\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"highlight_flag_text_color\":\"#000000\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.04)\"},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=7d38e3a\",\"btn_background_color_color\":\"globals\\/colors?id=7d38e3a\"},\"btn_border_border\":\"none\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"checkout-form\"},{\"id\":\"a4f5d0b\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c11f978\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01303832348\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"align_mobile\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=36b5bc3\",\"background_color\":\"globals\\/colors?id=af10557\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"dcdc999\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a0b378\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d7f131f\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6556','2090','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6557','2090','_oembed_f8a21e0e6a462ed42bd0798b2950cb9c','<iframe title=\"Video Placeholder\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6558','2090','_oembed_time_f8a21e0e6a462ed42bd0798b2950cb9c','1706610611');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6559','2090','_oembed_7befe71c04536851b6485e7b012d3f0d','<iframe title=\"Video Placeholder\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6560','2090','_oembed_time_7befe71c04536851b6485e7b012d3f0d','1706613059');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6561','2090','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6562','2090','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6563','2090','wcf-checkout-place-order-button-text','অর্ডার করুন');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6564','2090','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6565','2090','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6566','2090','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6567','2090','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6568','2090','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6569','2090','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6570','2090','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6571','2090','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6572','2090','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6573','2090','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6574','2090','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6575','2090','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6576','2090','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6577','2090','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6578','2090','wcf-enable-checkout-field-validation-text','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6579','2090','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6580','2090','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:0:\"\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:20:\"সাইজ কত?\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6581','2090','wcf_field_order_shipping','a:9:{s:19:\"shipping_first_name\";a:11:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_1\";a:11:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"shipping_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:14:\"shipping_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"shipping_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6582','2090','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6583','2090','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6584','2090','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6585','2090','wcf-product-options','multiple-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6586','2090','wcf-enable-product-variation','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6587','2090','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6588','2090','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6589','2090','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6590','2090','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6591','2090','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6592','2090','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6593','2090','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6594','2090','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6595','2090','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6596','2090','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6597','2090','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6598','2090','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6599','2090','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6600','2090','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6603','2089','wcf-steps','a:2:{i:0;a:3:{s:2:\"id\";i:2090;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:2102;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6604','2092','wcf-flow-id','2091');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6605','2092','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6606','2092','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6607','2092','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6608','2092','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6609','2092','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6610','2092','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6611','2092','_edit_lock','1780977817:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6612','2092','_elementor_data','[{\"id\":\"9c29464\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#3CC8D2\",\"shape_divider_top_color\":\"#DADADA\",\"shape_divider_bottom\":\"mountains\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51f51c9\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3156264\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7fbc454\",\"settings\":{\"before_text\":\"\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u09b0\",\"highlighted_text\":\"\\u09ac\\u09c7\\u099c \\u0993 \\u0987\\u09b0\\u09be\\u09a8\\u09bf \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u09b8\\u09cd\\u09af\\u09be\\u09ab\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b8\\u09ae\\u09a8\\u09cd\\u09a8\\u09df\\u09c7 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"words_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"__globals__\":{\"words_color\":\"\",\"marker_color\":\"\"},\"words_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"1f45b3b\",\"settings\":{\"slides\":[{\"_id\":\"204137a\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"de40079\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"620eb02\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"c6ba750\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_id\":\"c0b7ae0\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"slides_per_view_mobile\":\"1\",\"slides_per_view\":\"3\",\"slides_to_scroll\":\"2\",\"pagination\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"media-carousel\",\"elType\":\"widget\"},{\"id\":\"eeae4e3\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"_transform_rotate_3d_hover\":\"yes\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_keep_proportions_hover\":\"\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.7,\"sizes\":[]},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"-6\",\"bottom\":\"-6\",\"left\":\"-6\",\"isLinked\":true},\"_border_border\":\"none\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"background_color\":\"#287677\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"5524eb4\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09cb\\u09aa \\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0985\\u09a5\\u09c7\\u09a8\\u09cd\\u099f\\u09bf\\u0995 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0997\\u09be\\u09af\\u09bc\\u09c7 QR \\u0995\\u09cb\\u09a1 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u0986\\u099b\\u09c7 \\u09b8\\u09cd\\u0995\\u09cd\\u09af\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=af10557\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"e8420b9\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1\\u09ae\\u09c7\\u09a1 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09e7 \\u099f\\u09bf - \\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be ( \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09b9 )\",\"align\":\"center\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"df77c6a\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1\\u09ae\\u09c7\\u09a1 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09e8 \\u099f\\u09bf - \\u09ed\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be ( \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ab\\u09cd\\u09b0\\u09bf )\",\"align\":\"center\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"55f15a3\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"_transform_rotate_3d_hover\":\"yes\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_keep_proportions_hover\":\"\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.7,\"sizes\":[]},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"-6\",\"bottom\":\"-6\",\"left\":\"-6\",\"isLinked\":true},\"_border_border\":\"none\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"background_color\":\"#3092AE\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"915675d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#64C6D7\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"shape_divider_top\":\"mountains\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2522c90\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0f7991a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"714a3b7\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0caa05c\",\"settings\":{\"title\":\"\\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0997\\u09c1\\u09a8\\u09be\\u0997\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a8e82fa\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09eb-\\u09ec \\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09a4\\u09c7 \\u09b6\\u09c1\\u09b0\\u09c1 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ea19a93\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2\\u09a4\\u09be \\u09ec \\u09a5\\u09c7\\u0995\\u09c7 \\u09ed\\u09b6\\u09c7\\u09a1 \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u09ac\\u09be\\u09a1\\u09bc\\u09be\\u09af\\u09bc\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"d2d11f3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0997\\u09be\\u09df\\u09c7\\u09b0 \\u09b0\\u0982 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ba28102\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0997\\u09ad\\u09c0\\u09b0\\u09c7 \\u0997\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09a6\\u09cd\\u09b0\\u09a4\\u09be \\u099c\\u09cb\\u0997\\u09be\\u09af\\u09bc\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5c1fd47\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09b9\\u099c\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u09ac\\u09af\\u09bc\\u09b8\\u09c7\\u09b0 \\u099b\\u09be\\u09aa \\u09aa\\u09a1\\u09bc\\u09a4\\u09c7 \\u09a6\\u09c7\\u09af\\u09bc \\u09a8\\u09be\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"686913c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09b0\\u09cd\\u0995 \\u09b8\\u09be\\u09b0\\u09cd\\u0995\\u09c7\\u09b2 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3f6a206\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0993\\u09aa\\u09c7\\u09a8 \\u09aa\\u09cb\\u09b0\\u09cd\\u09b8 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \\u0993 \\u09aa\\u09bf\\u09ae\\u09cd\\u09aa\\u09b2 \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4ea1beb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0995\\u09be\\u09b2\\u09cb \\u09ac\\u09cd\\u09b0\\u09a3\\u09c7\\u09b0 \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c4914ab\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09c7\\u099b\\u09a4\\u09be\\u09b0 \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"655b1b9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u099a\\u09cb\\u0996\\u09c7\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"231379e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a6\\u09bf\\u09a8\\u09c7 \\u09ef \\u09a5\\u09c7\\u0995\\u09c7 \\u09e7\\u09e6 \\u0998\\u09a8\\u09cd\\u099f\\u09be \\u0993\\u09af\\u09bc\\u09c7\\u09b2 \\u0995\\u09a8\\u09cd\\u099f\\u09cd\\u09b0\\u09cb\\u09b2 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"1dd0dd3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u0997\\u09cd\\u09b2\\u09cb \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u0995\\u09be\\u09b2\\u09cb \\u09a4\\u09bf\\u09b2 \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"2f1b5ba\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7d38e3a\"},\"icon_self_vertical_align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"4bffe8b\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#80D5E9\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a28e2a7\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"background_background\":\"classic\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d135fe7\",\"settings\":{\"title\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"c82744f\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.332,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"680d879\",\"settings\":{\"title\":\"\\u099c\\u09be\\u09ab\\u09cd\\u09b0\\u09be\\u09a8 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u099f\\u09be \\u098f\\u09a4\\u09cb \\u099f\\u09be \\u099c\\u09cb\\u09b6 \\u09af\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09a8\\u09be \\u0995\\u09b0\\u09b2\\u09c7 \\u09ac\\u09c1\\u099d\\u09be\\u0987 \\u09af\\u09be\\u09df \\u09a8\\u09be\\u0964 \\u09a4\\u09be\\u0987  \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a8 \\u09b8\\u09cd\\u099f\\u0995 \\u09b6\\u09c7\\u09b7 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u0986\\u0997\\u09c7\\u0964 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u0985\\u09a8\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09af  \\u099c\\u09be\\u09ab\\u09cd\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09a8\\u09be\\u0964 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7 \\u0986\\u099b\\u09c7 \\u099c\\u09be\\u09ab\\u09cd\\u09b0\\u09be\\u09a8,\\u09aa\\u09c7\\u09aa\\u09c7,\\u0993 \\u09ad\\u09bf\\u099f\\u09be- \\u09b8\\u09bf \\u0993 \\u099b\\u09be\\u0997\\u09b2\\u09c7\\u09b0 \\u09a6\\u09c1\\u09a7\\u09c7\\u09b0 \\u09a6\\u09be\\u09b0\\u09c1\\u09a3 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0\\u09a4\\u09be \\u09af\\u09be \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf\\u0995\\u09c7 \\u0995\\u09b0\\u09c7\\u099b\\u09c7 \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u0986\\u09b2\\u09be\\u09a6\\u09be\\u0964\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"58b127f\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"background_background\":\"classic\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d9afa8b\",\"settings\":{\"title\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"69eae71\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#4BC4CC\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9278fa3\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b0f0909\",\"settings\":{\"title\":\"\\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u09a8\\u09bf\\u09af\\u09bc\\u09ae \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7e9a6c2\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a827d64\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7710be7\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u09e8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e9 \\u09ac\\u09be\\u09b0 \\u09ae\\u09c1\\u0996 \\u09a7\\u09c1\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"ea19a93\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09c1\\u0996 \\u09a7\\u09cb\\u09af\\u09bc\\u09be\\u09b0 \\u09a8\\u09bf\\u09af\\u09bc\\u09ae \\u09ae\\u09c1\\u0996\\u09c7 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09be \\u09b2\\u09be\\u0997\\u09bf\\u09af\\u09bc\\u09c7 \\u09e9 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f \\u09b0\\u09be\\u0996\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u0986\\u09ac\\u09be\\u09b0 \\u09e8 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f \\u09ae\\u09be\\u09b8\\u09be\\u099c \\u0995\\u09b0\\u09c7 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a7\\u09c1\\u09af\\u09bc\\u09c7 \\u09ab\\u09c7\\u09b2\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"9a77d33\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7d38e3a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"ecf2997\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#75C7CC\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c791771\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a6238c\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":12,\"vertical\":12,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":44,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"e289e90\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f2ea2b\",\"settings\":{\"title\":\"\\u098f\\u099f\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1 \\u09ae\\u09c7\\u09a1  \\u09ae\\u09c1\\u0996\\u09c7\\u09b0 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u0964 \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u09aa\\u09c1\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09b8\\u09c7\\u09b2 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\u0964\\u098f \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ae\\u09c1\\u0996\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09b2\\u09c7 \\u09ae\\u09c1\\u0996\\u09c7 \\u09ac\\u09cd\\u09b0\\u09a3, \\u09a4\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a4\\u09cd\\u09ac\\u0995\\u0995\\u09c7 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09c7  \\u09ae\\u09c1\\u0996\\u0995\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a4\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09b0\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u0986\\u09b0 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u099f\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0\\u0964\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"89f59df\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#52B9C1\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d0e4986\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"292e146\",\"settings\":{\"before_text\":\"\\u09a6\\u09c1\\u0987\\u099f\\u09bf \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u0995\\u09bf\\u09a8\\u09b2\\u09c7 \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09b9\\u09cb\\u09ae  \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c  \",\"highlighted_text\":\"\\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u099f\\u09be\\u0995\\u09be \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\",\"stroke_width\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"words_color\":\"globals\\/colors?id=secondary\",\"marker_color\":\"globals\\/colors?id=7d38e3a\"},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5a96ee9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#67DDD6\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"466d0db\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c9e5f3a\",\"settings\":{\"title\":\"\\u098f\\u0995\\u099f\\u09be \\u09a8\\u09bf\\u09b2\\u09c7 \\u09ea\\u09ee\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09b9 \\u09a6\\u09c1\\u0987\\u099f\\u09be \\u09a8\\u09bf\\u09b2\\u09c7 \\u09ed\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ab\\u09cd\\u09b0\\u09bf\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=36b5bc3\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"14106ed\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=7d38e3a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7d98406\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"btn_background_color_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_element_id\":\"order\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"900\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"heading_typography_font_weight\":\"600\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"buttons_typography_font_weight\":\"800\",\"buttons_typography_font_style\":\"normal\",\"button_text_color\":\"#FFFFFF\",\"product_option_section_title_text\":\"\\u0995\\u09cb\\u09a8\\u099f\\u09be \\u0995\\u09cb\\u09a8\\u099f\\u09be \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8 \\u09a8\\u09bf\\u099a \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8  \",\"global_primary_color\":\"#E71919\",\"global_text_color\":\"#000000\",\"global_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"global_typography_font_style\":\"normal\",\"global_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"global_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"global_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.3,\"sizes\":[]},\"heading_text_color\":\"#000000\",\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"heading_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"heading_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.6,\"sizes\":[]},\"heading_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"input_color\":\"#A98E8E\",\"input_border_color\":\"#000000\",\"input_radius_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"payment_section_text_color\":\"#000000\",\"payment_section_desc_color\":\"#000000\",\"payment_section_bg_color\":\"#D7D7D7\",\"payment_info_bg_color\":\"#FFFFFF\",\"payment_section_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"payment_section_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"product_bg_color\":\"#F4F4F4\",\"product_option_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"highlight_product_border_size\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"highlight_product_border_radius\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"highlight_flag_text_color\":\"#000000\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.04)\"},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\",\"btn_background_color_color\":\"\"},\"btn_border_border\":\"none\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"checkout-form\"},{\"id\":\"a4f5d0b\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c11f978\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01303832348\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"align_mobile\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=36b5bc3\",\"background_color\":\"globals\\/colors?id=af10557\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"dcdc999\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a0b378\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d7f131f\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6613','2092','_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6614','2092','_oembed_f8a21e0e6a462ed42bd0798b2950cb9c','<iframe title=\"Video Placeholder\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6615','2092','_oembed_time_f8a21e0e6a462ed42bd0798b2950cb9c','1706610611');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6616','2092','_oembed_7befe71c04536851b6485e7b012d3f0d','<iframe title=\"Video Placeholder\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6617','2092','_oembed_time_7befe71c04536851b6485e7b012d3f0d','1706613059');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6618','2092','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6619','2092','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6620','2092','wcf-checkout-place-order-button-text','অর্ডার করুন');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6621','2092','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6622','2092','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6623','2092','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6624','2092','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6625','2092','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6626','2092','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6627','2092','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6628','2092','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6629','2092','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6630','2092','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6631','2092','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6632','2092','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6633','2092','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6634','2092','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6635','2092','wcf-enable-checkout-field-validation-text','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6636','2092','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6637','2092','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:25:\"আপনার নাম\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:59:\"আপনার সম্পূর্ণ ঠিকানা\";s:11:\"placeholder\";s:0:\"\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:20:\"সাইজ কত?\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:47:\"আপনার ফোন নাম্বার\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6638','2092','wcf_field_order_shipping','a:9:{s:19:\"shipping_first_name\";a:11:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"shipping_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_1\";a:11:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:18:\"shipping_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"shipping_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:14:\"shipping_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"US\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"shipping_postcode\";a:12:{s:5:\"label\";s:8:\"ZIP Code\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6639','2092','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6640','2092','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6641','2092','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6642','2092','wcf-product-options','multiple-selection');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6643','2092','wcf-enable-product-variation','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6644','2092','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6645','2092','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6646','2092','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6647','2092','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6648','2092','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6649','2092','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6650','2092','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6651','2092','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6652','2092','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6653','2092','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6654','2092','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6655','2092','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6656','2092','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6657','2092','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6660','2091','wcf-steps','a:2:{i:0;a:3:{s:2:\"id\";i:2092;s:5:\"title\";s:14:\"Checkout (Woo)\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:2100;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6661','2093','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6662','2093','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6663','2093','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6664','2093','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6665','2093','_elementor_data','[{\"id\":\"c2771b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#EFF8FF\",\"shape_divider_bottom\":\"wave-brush\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"601\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/main-img-24.png\"},\"background_overlay_position\":\"top right\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\"},\"elements\":[{\"id\":\"6784ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"56b4a84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":12,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"62\",\"bottom\":\"62\",\"left\":\"62\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"125ec4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u099f\\u09bf\\u0986\\u0987\\u09ac\\u09c7\\u09ac\\u09bf \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09af\\u09bc\\u09be\\u09b0 <\\/br>\\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0989\\u099c\\u09bf\\u0995 \\u098f\\u09ac\\u0982 \\u09ad\\u09be\\u0987\\u09ac\\u09cd\\u09b0\\u09c7\\u09b6\\u09a8\",\"align\":\"center\",\"title_color\":\"#38B000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"471e74b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099b\\u09cb\\u099f \\u09ac\\u09be\\u09ac\\u09c1 \\u0986\\u099b\\u09c7 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u09ac\\u09be\\u09ac\\u09c1\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u0987 \\u09ac\\u09c7\\u09ac\\u09bf \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0 \\u09a8\\u09be\\u0987 \\u09a4\\u09be\\u09b0 \\u09ae\\u09be\\u09a8\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4\\u0964\",\"align\":\"center\",\"title_color\":\"#403A02\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f781be5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ae\\u09c2\\u09b2\\u09cd\\u09af <del>\\u09e9\\u09eb\\u09e6\\u09e6<\\/del> \\u09e9\\u09e7\\u09eb\\u09e6\\/=\",\"align\":\"center\",\"title_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2921832\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"800\",\"button_text_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_background_hover_color\":\"#FF5B4B\",\"hover_animation\":\"grow\",\"size\":\"md\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=5c74819\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f9c7d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"content_width_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"469bcca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2080a7b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"content_width_mobile\":{\"unit\":\"px\",\"size\":959,\"sizes\":[]}},\"elements\":[{\"id\":\"dc14a15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"db82e87\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/2qd1FrD5hDc?si=WRP7h784cUsAcyYb\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"dashed\",\"_border_color\":\"#38B000\",\"image_overlay\":{\"id\":\"602\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-2-1-1.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88babfa\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"800\",\"button_text_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"button_background_hover_color\":\"#FF5B4B\",\"hover_animation\":\"grow\",\"size\":\"md\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=5c74819\",\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"97a668d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#EFF8FF\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"daf4087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9b2699a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09af\\u09c7 \\u09eb\\u099f\\u09bf \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a4\\u09cd\\u09af\\u09c7\\u0995 \\u09ae\\u09be\\u09df\\u09c7\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ac\\u09c7\\u09ac\\u09bf \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0  \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09a6\\u09b0\\u0995\\u09be\\u09b0\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#38B000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"acfa23d\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag_tribal\",\"width\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FF5B4B\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0210446\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u0995\\u09c7  \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0\\u09c7 \\u09ac\\u09b8\\u09be\\u09b2\\u09c7 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be \\u0995\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u0995\\u09b0\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"16768eb\"},{\"text\":\"\\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u0995\\u09c7 \\u0995\\u09cb\\u09b2\\u09c7 \\u09a8\\u09c7\\u0993\\u09df\\u09be\\u09b0 \\u09b2\\u09cb\\u0995 \\u09a8\\u09be \\u09a5\\u09be\\u0995\\u09b2\\u09c7 \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0\\u09c7 \\u09ac\\u09b8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09b8\\u09b9\\u099c\\u09c7 \\u09af\\u09c7 \\u0995\\u09a8\\u09cb \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"380c45a\"},{\"text\":\"\\u09a6\\u09c0\\u09b0\\u09cd\\u0998\\u0995\\u09cd\\u09b7\\u09a3  \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u0995\\u09c7 \\u0995\\u09cb\\u09b2\\u09c7 \\u09a8\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09b9\\u09be\\u09b8\\u09bf\\u0996\\u09c1\\u09b6\\u09bf \\u0993 \\u0986\\u09a8\\u09a8\\u09cd\\u09a6\\u09c7 \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09b8\\u09ac\\u09b8\\u09ae\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"05b5ca1\"},{\"text\":\"\\u09ae\\u09be \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be-\\u09ac\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u0995\\u09b0\\u09be\\u09b8\\u09b9 \\u09af\\u09c7 \\u0995\\u09cb\\u09a8\\u09cb \\u09b9\\u09be\\u09a4\\u09c7\\u09b0 \\u0995\\u09be\\u099c \\u0985\\u09a4\\u09bf  \\u09b8\\u09b9\\u099c\\u09c7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09aa\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u0998\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09b2\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"1fb072b\"},{\"text\":\"\\u09af\\u09c7 \\u09b8\\u0995\\u09b2 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u09b0\\u09be \\u098f\\u0995\\u099f\\u09c1 \\u09b0\\u09bf\\u09b2\\u09be\\u0995\\u09cd\\u09b8 \\u09a5\\u09be\\u0995\\u09a4\\u09c7 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c7 \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u0987 \\u09aa\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u098f\\u09b0 \\u09ac\\u09bf\\u0995\\u09b2\\u09cd\\u09aa \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3f060eb\"}],\"icon_color\":\"#38B000\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_self_align\":\"left\",\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_color\":\"\"},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"divider\":\"yes\",\"divider_color\":\"#38B000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da1a2a3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"86a4956\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a83449e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ab\\u09bf\\u099a\\u09be\\u09b0\\u09b8\",\"align\":\"center\",\"title_color\":\"#38B000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8146969\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag_tribal\",\"width\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FF5B4B\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"46f43ca\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09a7\\u09c1\\u09a8\\u09bf\\u0995, \\u099f\\u09c7\\u0995\\u09b8\\u0987 \\u09ab\\u09cd\\u09b0\\u09c7\\u09ae\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"b564e8d\"},{\"text\":\"\\u09ac\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09bf\\u09b0 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af\\u09c7 \\u099a\\u09be\\u09b2\\u09bf\\u09a4\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"ee87bd6\"},{\"text\":\"\\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09af\\u09bc \\u09a6\\u09c1\\u0987\\u099f\\u09bf \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u09aa\\u09bf\\u0999\\u09cd\\u0995 \\u098f\\u09ac\\u0982 \\u09b8\\u09cd\\u0995\\u09be\\u0987 \\u09ac\\u09cd\\u09b2\\u09c1\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"f5be1f3\"},{\"text\":\"\\u0985\\u09aa\\u09b8\\u09be\\u09b0\\u09a3\\u09af\\u09cb\\u0997\\u09cd\\u09af \\u0996\\u09c7\\u09b2\\u09a8\\u09be \\u09ac\\u09be\\u09b0, \\u099d\\u09c1\\u09b2\\u09a8\\u09cd\\u09a4 \\u0996\\u09c7\\u09b2\\u09a8\\u09be\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"408754d\"},{\"text\":\"\\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be \\u09aa\\u09be \\u09a8\\u09be\\u09dc\\u09be\\u099a\\u09be\\u09dc\\u09be \\u0995\\u09b0\\u09b2\\u09c7 \\u098f\\u099f\\u09be\\u0993 (\\u09a6\\u09c1\\u09b2\\u09a4\\u09c7) \\u09a5\\u09be\\u0995\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"bce663a\"},{\"text\":\"\\u09ae\\u09bf\\u0989\\u099c\\u09bf\\u0995\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u0995\\u09bf\\u0982 \\u09ae\\u09cb\\u09b6\\u09a8 \\u0993 \\u09b8\\u09be\\u09a5\\u09c7 \\u0996\\u09c7\\u09b2\\u09a8\\u09be \\u09b0\\u09df\\u09c7\\u099b\\u09c7\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"90ebf9e\"},{\"text\":\"\\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a \\u09a7\\u09be\\u09b0\\u09a8 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09e7\\u09ee \\u0995\\u09c7\\u099c\\u09bf\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"a560504\"},{\"text\":\"\\u099a\\u09ae\\u09ce\\u0995\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09aa\\u09a8\\u09cd\\u09af \\u09af\\u09be \\u09a6\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be \\u0986\\u09a8\\u09a8\\u09cd\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0996\\u09c7\\u09b2\\u09be \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"e7771c5\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#38B000\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"divider_color\":\"#38B000\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"459658f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"acc38d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7837db5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u099b\\u09ac\\u09bf\\u09b0 \\u09a8\\u09cd\\u09af\\u09be\\u09df \\u09ac\\u0995\\u09cd\\u09b8 \\u0986\\u0995\\u09be\\u09b0\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09cc\\u099b\\u09be\\u09ac\\u09c7\\n\",\"align\":\"center\",\"title_color\":\"#38B000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c31f079\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag_tribal\",\"width\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FF5B4B\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e123b16\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":\"603\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/b40afdc3-30df-40c0-9ef7-d90752f27b32-1-1.jpeg\"},{\"id\":\"604\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5ca50362-b638-4037-b24b-ae7b756c6b31-1-1.jpeg\"},{\"id\":\"605\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5fc978a5-f7af-44e6-bcab-45e09618e8b0-1-1.jpeg\"},{\"id\":\"606\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/16c597b6-87d5-4901-8eb9-9fddd661ce0f-1-1.jpeg\"},{\"id\":\"607\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/53523eea-a33e-4b86-98b0-cecde95804f3-1-1.jpeg\"},{\"id\":614,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/caedf3b0-f245-4b59-be34-2f5656caf24c-1-1-1.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"arrows_color\":\"#38B000\",\"dots_position\":\"inside\",\"image_spacing\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#38B000\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"de57f44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09a8\\u09cd\\u09af \\u098f\\u09ae\\u09a8 \\u09ac\\u0995\\u09cd\\u09b8 \\u0986\\u0995\\u09be\\u09b0\\u09c7 \\u09af\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993 \\u09a6\\u09c7\\u0996\\u09c7 \\u09b8\\u09c7\\u099f\\u09bf\\u0982 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7, \\u0996\\u09c1\\u09ac\\u0987 \\u09b8\\u09b9\\u099c \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8, \\u09a8\\u09be \\u09aa\\u09be\\u09b0\\u09b2\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8, \\u0986\\u09ae\\u09b0\\u09be \\u09ac\\u09c1\\u099d\\u09be\\u09df \\u09a6\\u09bf\\u09ac\\u09cb\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#F80202\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43b72ca\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"content_width_mobile\":{\"unit\":\"px\",\"size\":959,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"e2ade22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18e9d16\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/Flp4yJNYcUs?si=60hWH_FNfVl_q3aL\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"dashed\",\"_border_color\":\"#38B000\",\"image_overlay\":{\"id\":615,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/placeholder-3-1.png\"}},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"0bcb093\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09c7\\u09ac\\u09c0 \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0 \\u09b8\\u09c7\\u099f\\u09bf\\u0982 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"348214e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#EFF8FF\",\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom\":\"clouds\",\"shape_divider_bottom_negative\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cc7fe23\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e336b06\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09af\\u09c7\\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8 - 01554462725\\n\",\"align\":\"center\",\"title_color\":\"#38B000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd86057\",\"elType\":\"widget\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"800\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#38B000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FF5B4B\",\"hover_animation\":\"grow\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\"},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"458b2ea\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"48af126\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#522694\",\"border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[{\"id\":\"a022e5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color: #000;\\\">\\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u09b9\\u09be\\u0987 \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf <\\/span>\\u099f\\u09c7\\u0995\\u09b8\\u0987 \\u09ac\\u09c7\\u09ac\\u09bf \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0  \\u09b8\\u09ac\\u09be\\u09b0\\u099a\\u09c7\\u09df\\u09c7 \\u0995\\u09ae \\u09a6\\u09be\\u09ae\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u099a\\u09be\\u09a8 \\u09a4\\u09ac\\u09c7 \\u098f\\u0996\\u09a8\\u09bf \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"title_color\":\"globals\\/colors?id=26ec5dd\"},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#38B000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c945344\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"global_text_color\":\"#180101\",\"global_typography_typography\":\"custom\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"global_primary_color\":\"#38B000\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#38B000\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-28\",\"right\":\"-20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"_element_id\":\"order\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ad9c7e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#EFF8FF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"11afa4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"65dfa5c\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align_tablet\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Outfit\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6666','2093','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6667','2093','_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:6:\"scroll\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6668','2093','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6669','2093','_elementor_controls_usage','a:10:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:9;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:5:\"align\";i:9;s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:9;s:22:\"typography_font_family\";i:9;s:20:\"typography_font_size\";i:9;s:22:\"typography_font_weight\";i:9;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:8;s:8:\"_padding\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:3;s:17:\"_background_color\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:3;s:4:\"link\";i:3;s:4:\"size\";i:3;s:13:\"selected_icon\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:12:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:17:\"button_text_color\";i:3;s:13:\"border_radius\";i:3;s:29:\"button_background_hover_color\";i:3;s:15:\"hover_animation\";i:3;s:11:\"hover_color\";i:3;s:16:\"background_color\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:4;s:3:\"gap\";i:9;s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:6;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:5;}s:21:\"section_shape_divider\";a:4:{s:20:\"shape_divider_bottom\";i:2;s:27:\"shape_divider_bottom_height\";i:1;s:24:\"shape_divider_top_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:29:\"background_overlay_attachment\";i:1;s:25:\"background_overlay_repeat\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:2;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:2;s:13:\"_border_color\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"style\";i:3;s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:5:\"color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_icon_style\";a:4:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;s:15:\"icon_self_align\";i:1;s:24:\"icon_self_vertical_align\";i:1;}s:18:\"section_text_style\";a:4:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;}s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:2;s:7:\"divider\";i:1;s:13:\"divider_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:2:{s:12:\"arrows_color\";i:1;s:13:\"dots_position\";i:1;}s:19:\"section_style_image\";a:5:{s:13:\"image_spacing\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:2;s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:2;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6670','2094','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6671','2094','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6672','2094','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6673','2094','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6674','2094','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6675','2094','_elementor_data','[{\"id\":\"44ff2c7b\",\"settings\":{\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"z_index\":44,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7bef347\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"70f24590\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":75,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"528\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/hamburger-and-fries-photo-2983101.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(30, 27, 27, 0)\",\"background_overlay_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":27,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"overlay_blend_mode\":\"multiply\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":720,\"sizes\":[]},\"background_xpos\":{\"unit\":\"vw\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":58,\"sizes\":[]},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"shape_divider_bottom_negative\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f3bc424\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d57b52f\",\"settings\":{\"title\":\"big bbq\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab Highlight\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":9,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":5.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"68ec4797\",\"settings\":{\"title\":\"cheeseburger & fries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab Highlight\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6f906cbf\",\"settings\":{\"title\":\"20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} OFF Family Meals\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"527\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/bbqshape.png\"},\"_background_position\":\"center center\",\"_background_size\":\"contain\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-4.082,\"unit\":\"vw\"},\"_offset_x_end\":{\"size\":62.035,\"unit\":\"vw\"},\"_offset_y\":{\"size\":-6.234,\"unit\":\"vh\"},\"_offset_y_end\":{\"size\":35,\"unit\":\"vh\"},\"_offset_x_mobile\":{\"size\":72.313,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":269.094,\"unit\":\"px\"},\"hide_mobile\":\"hidden-phone\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"3075b944\",\"settings\":{\"text\":\"Order Now\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_hover_border_color\":\"#FFFFFF\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#B83F2E\",\"align_mobile\":\"justify\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"6a36b8f8\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"541\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/image-from-rawpixel-id-556344-jpeg.jpg\"},\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.03,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ba68929\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38fee138\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":720,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64a10d6e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14ab8d72\",\"settings\":{\"title\":\"best bbq in town\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#222222\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6d2f46a8\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":11,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#B83F2E\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"462051ff\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<\\/p>\",\"align\":\"center\",\"text_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"1f9a0990\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"64\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4872ba8a\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57b5f408\",\"settings\":{\"image\":{\"id\":\"529\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/image-from-rawpixel-id-1200206-png-1.png\"},\"title_text\":\"burgers\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"position\":\"left\",\"title_size\":\"h4\",\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":40,\"sizes\":[]},\"hover_animation\":\"pop\",\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_color\":\"#222222\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Zilla Slab\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#222222\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Open Sans\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"20f4551f\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b183a9d\",\"settings\":{\"image\":{\"id\":\"530\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/image-from-rawpixel-id-1200242-png-1.png\"},\"title_text\":\"specialities\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"position\":\"left\",\"title_size\":\"h4\",\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":47,\"sizes\":[]},\"hover_animation\":\"pop\",\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_color\":\"#222222\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Zilla Slab\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#222222\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Open Sans\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"64c6ec39\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f8d491d\",\"settings\":{\"image\":{\"id\":\"531\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/image-from-rawpixel-id-410628-jpeg-1.png\"},\"title_text\":\"family deals\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur.\",\"position\":\"left\",\"title_size\":\"h4\",\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":57,\"sizes\":[]},\"hover_animation\":\"pop\",\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_color\":\"#222222\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Zilla Slab\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#222222\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Open Sans\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"3479bea9\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b76dcf5\",\"settings\":{\"image\":{\"id\":\"532\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/image-from-rawpixel-id-1200212-png-1.png\"},\"title_text\":\"drinks\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"position\":\"left\",\"title_size\":\"h4\",\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":25,\"sizes\":[]},\"hover_animation\":\"pop\",\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_color\":\"#222222\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Zilla Slab\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#222222\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Open Sans\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"7a05c8cb\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16937711\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#B83F2E\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"darken\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"163a9cfe\",\"settings\":{\"image\":{\"id\":\"533\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cow-1.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"4c60a52d\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":56,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"768 555-5555\",\"color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"283e65e4\",\"settings\":{\"editor\":\"<p>34th &amp; Douglas Ave. Minneapolis<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"42dc7fce\",\"settings\":{\"editor\":\"<p>Open hours:<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_style\":\"italic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"12bbab79\",\"settings\":{\"editor\":\"<p>Tues - Sat\\u00a0 2pm - 2am<\\/p><p>Sun -\\u00a0 Mon 12pm - 12pm<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"7ded735\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"534\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/meat-burger-with-coleslaw-on-side-and-brown-handled-fork-156114.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#222222\",\"background_overlay_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":9,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(242, 41, 91, 0.06)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.68,\"sizes\":[]},\"overlay_blend_mode\":\"multiply\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1324e1d1\",\"settings\":{\"title\":\"20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} Off BIG Family Meals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab Highlight\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5dd25dae\",\"settings\":{\"title\":\"New family deals to go.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6180c761\",\"settings\":{\"text\":\"get delivery\",\"align\":\"left\",\"size\":\"lg\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_hover_border_color\":\"#FFFFFF\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#B83F2E\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"justify\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"23ee8d4f\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"7ed232a4\",\"settings\":{\"title\":\"our specialties\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"59c99595\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"32\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"175c83a5\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7500798f\",\"settings\":{\"image\":{\"id\":\"535\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cooked-chicken-on-white-plate-2673353.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":137,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"192c8678\",\"settings\":{\"title\":\"$9.99\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#B83F2E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"180d0121\",\"settings\":{\"title\":\"BBq chicken &amp; Gumbo\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"242b14dd\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"14a9062f\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"598770ea\",\"settings\":{\"image\":{\"id\":\"536\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ham-and-bacon-burger-2983098.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":137,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"1eaf8cea\",\"settings\":{\"title\":\"$9.99\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#B83F2E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"3dde9b72\",\"settings\":{\"title\":\"BBQ Bacon burger\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"16b364ee\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"2e1d7758\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17c4bf14\",\"settings\":{\"image\":{\"id\":\"537\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/barbecue-bbq-beef-cooked-410648.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":137,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"1ea0694e\",\"settings\":{\"title\":\"$14.99\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#B83F2E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"e10d970\",\"settings\":{\"title\":\"signature bbq ribs\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"36564efe\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"3569acbc\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"32\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6332402a\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2346dd76\",\"settings\":{\"image\":{\"id\":\"538\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/burger-with-spinach-and-cheese-1199956.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":137,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"37951cfc\",\"settings\":{\"title\":\"$9.99\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#B83F2E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"65d14133\",\"settings\":{\"title\":\"signatue bbq burger\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6b3edf84\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"48aafdc0\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30dad394\",\"settings\":{\"image\":{\"id\":\"539\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/white-cream-on-white-bowl-1633525.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":137,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"65ed2d95\",\"settings\":{\"title\":\"$14.99\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#B83F2E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6beea2a3\",\"settings\":{\"title\":\"signature bbq ribs\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2491cf7d\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"3861ed0a\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1721102e\",\"settings\":{\"image\":{\"id\":\"540\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pexels-photo-106343.jpeg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":137,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"36a5bc69\",\"settings\":{\"title\":\"$9.99\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#B83F2E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"44ff8c48\",\"settings\":{\"title\":\"hot bbq wings\",\"align\":\"center\",\"title_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"350a06a1\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"f14aaa7\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":60,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#222222\",\"background_image\":{\"id\":\"542\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/close-up-photo-of-man-cooking-meat-1482803.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#222222\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.32,\"sizes\":[]},\"overlay_blend_mode\":\"multiply\",\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"228d88f\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42b5daa\",\"settings\":{\"title\":\"big independence day summer party\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab Highlight\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"115d7e39\",\"settings\":{\"title\":\"July 4th  2pm - 2am\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"73173535\",\"settings\":{\"text\":\"view details\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-birthday-cake\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"rgba(253, 247, 236, 0.02)\",\"border_border\":\"double\",\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#B83F2E\",\"hover_animation\":\"shrink\",\"align_mobile\":\"justify\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"4aeac25e\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":552,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Cow-Print-Wallpaper-Square.jpg\"},\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.03,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69e0ef31\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77a47754\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"247fe811\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e5323d6\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":56,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"favorites\",\"color\":\"#222222\",\"text_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"757a7caa\",\"settings\":{\"image\":{\"id\":\"543\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/123.jpg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"BBQ Burger & Beer  \",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.\",\"position\":\"left\",\"title_size\":\"h4\",\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":40,\"sizes\":[]},\"hover_animation\":\"pop\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_color\":\"#222222\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Zilla Slab\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"description_color\":\"#222222\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Open Sans\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"},{\"id\":\"293390ab\",\"settings\":{\"image\":{\"id\":\"544\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/barbecue-84671_1280.jpg\"},\"thumbnail_size\":\"medium\",\"thumbnail_custom_dimension\":{\"width\":\"80\",\"height\":\"80\"},\"title_text\":\"BBQebabs \",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.\",\"position\":\"left\",\"title_size\":\"h4\",\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":40,\"sizes\":[]},\"hover_animation\":\"pop\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_color\":\"#222222\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Zilla Slab\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"description_color\":\"#222222\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Open Sans\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"},{\"id\":\"16540d6f\",\"settings\":{\"image\":{\"id\":551,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pexels-photo-291528-1.jpeg\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Auntie\'s Fudge Cake\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.\",\"position\":\"left\",\"title_size\":\"h4\",\"image_size\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":40,\"sizes\":[]},\"hover_animation\":\"pop\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"title_color\":\"#222222\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Zilla Slab\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"description_color\":\"#222222\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Open Sans\",\"description_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-box\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"1462fcb4\",\"settings\":{\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":552,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Cow-Print-Wallpaper-Square.jpg\"},\"background_overlay_attachment\":\"fixed\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.03,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"294dda29\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#B83F2E\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"darken\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7533e6bf\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a879e3d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7de5e5ba\",\"settings\":{\"slides\":[{\"content\":\"This is my new favorite BBQ restaurant! Five stars and highly recommended!\",\"name\":\"Anna\",\"title\":\"Foodie Magazine\",\"image\":{\"id\":553,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/allef-vinicius-152195-unsplash-1.png\"},\"_id\":\"c9e5c8b\"},{\"content\":\"Those burgers are best in town! My favorite place definitely!\",\"name\":\"Jonathan\",\"title\":\"Timeout\",\"image\":{\"id\":554,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/angello-lopez-138917-unsplash-1.png\"},\"_id\":\"f4f8bba\"}],\"slides_per_view\":\"1\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100},\"autoplay_speed\":2600,\"space_between\":{\"unit\":\"px\",\"size\":0},\"show_arrows\":\"\",\"slide_border_radius\":{\"unit\":\"px\",\"size\":0},\"content_gap\":{\"unit\":\"px\",\"size\":38},\"content_color\":\"#ece1cf\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Zilla Slab\",\"content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.3},\"content_typography_font_weight\":\"600\",\"name_color\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Zilla Slab Highlight\",\"name_typography_font_size\":{\"unit\":\"rem\",\"size\":1.4},\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1},\"image_size\":{\"unit\":\"px\",\"size\":60},\"image_gap\":{\"unit\":\"px\",\"size\":16},\"image_border_radius\":{\"unit\":\"px\",\"size\":100},\"arrows_size\":{\"unit\":\"px\",\"size\":52},\"arrows_color\":\"#ece1cf\",\"pagination_size\":{\"unit\":\"px\",\"size\":7},\"pagination_color\":\"#222222\",\"background_color\":\"#b83f2e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"px\",\"size\":570},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Open Sans\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"testimonial-carousel\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"2b3e65f\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":555,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/patrick-tomasso-499112-unsplash.jpg\"},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#222222\",\"background_overlay_color_stop\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":45,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(242, 41, 91, 0.06)\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.68,\"sizes\":[]},\"overlay_blend_mode\":\"multiply\",\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8d21acd\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75fc2684\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e13c5f7\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ac98737\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"d7f0e8a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"9f37664\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#FFFFFF\",\"icon_secondary_color\":\"#222222\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"social-icons\",\"elType\":\"widget\"},{\"id\":\"10258a5c\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":66,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"keep up with us\",\"color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Zilla Slab\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"032\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"3cd636ce\",\"settings\":{\"text\":\"get delivery\",\"align\":\"center\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_hover_border_color\":\"#FFFFFF\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#B83F2E\",\"align_mobile\":\"justify\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"34d218e3\",\"settings\":{\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"10140b9e\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#222222\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"59494436\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32946685\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"facebook\",\"selected_icon\":{\"value\":\"fab fa-facebook-messenger\",\"library\":\"fa-brands\"},\"_id\":\"7292629\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"volt\",\"selected_icon\":{\"value\":\"fas fa-biking\",\"library\":\"fa-solid\"},\"_id\":\"7d8b9b6\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"deliverit\",\"selected_icon\":{\"value\":\"fas fa-dot-circle\",\"library\":\"fa-solid\"},\"_id\":\"56504ab\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#B83F2E\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_size\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"icon_typography_font_weight\":\"600\",\"icon_typography_text_transform\":\"uppercase\",\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"space_between_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#E6D9D9\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_color_b\":\"#340510\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#F54A4A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#6EC1E4\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#6EC1E4\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6676','2094','_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6677','2094','_elementor_controls_usage','a:12:{s:6:\"column\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:26;s:21:\"space_between_widgets\";i:11;s:16:\"content_position\";i:2;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:5:{s:21:\"background_background\";i:10;s:16:\"background_color\";i:8;s:16:\"background_image\";i:2;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:8:{s:29:\"background_overlay_background\";i:4;s:23:\"background_overlay_size\";i:2;s:18:\"overlay_blend_mode\";i:4;s:24:\"background_overlay_color\";i:2;s:29:\"background_overlay_color_stop\";i:2;s:26:\"background_overlay_color_b\";i:2;s:26:\"background_overlay_opacity\";i:2;s:33:\"background_overlay_gradient_angle\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:11;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:6:\"layout\";i:3;s:6:\"height\";i:3;s:13:\"custom_height\";i:3;s:13:\"content_width\";i:10;s:3:\"gap\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:6;s:7:\"z_index\";i:1;s:7:\"padding\";i:8;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:11:{s:21:\"background_background\";i:8;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:15:\"background_size\";i:2;s:15:\"background_xpos\";i:1;s:15:\"background_ypos\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:38:\"background_motion_fx_translateY_effect\";i:1;s:16:\"background_color\";i:7;s:21:\"background_attachment\";i:1;s:18:\"background_color_b\";i:1;}s:26:\"section_background_overlay\";a:10:{s:29:\"background_overlay_background\";i:6;s:24:\"background_overlay_color\";i:3;s:29:\"background_overlay_color_stop\";i:1;s:26:\"background_overlay_color_b\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;s:26:\"background_overlay_opacity\";i:5;s:18:\"overlay_blend_mode\";i:2;s:24:\"background_overlay_image\";i:3;s:29:\"background_overlay_attachment\";i:3;s:23:\"background_overlay_size\";i:3;}s:21:\"section_shape_divider\";a:4:{s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:22;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:22;s:11:\"header_size\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:20;s:21:\"typography_typography\";i:22;s:22:\"typography_font_family\";i:22;s:20:\"typography_font_size\";i:21;s:25:\"typography_text_transform\";i:19;s:22:\"typography_line_height\";i:11;s:5:\"align\";i:20;s:22:\"typography_font_weight\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:9:{s:7:\"_margin\";i:4;s:8:\"_padding\";i:7;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:13:\"_offset_y_end\";i:1;}s:19:\"_section_background\";a:4:{s:22:\"_background_background\";i:1;s:17:\"_background_image\";i:1;s:20:\"_background_position\";i:1;s:16:\"_background_size\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:4;s:4:\"size\";i:4;s:4:\"link\";i:1;s:10:\"icon_align\";i:3;s:13:\"selected_icon\";i:1;s:11:\"icon_indent\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:17:{s:5:\"align\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:25:\"typography_text_transform\";i:4;s:25:\"typography_letter_spacing\";i:4;s:13:\"border_radius\";i:4;s:25:\"button_hover_border_color\";i:3;s:13:\"border_border\";i:4;s:12:\"border_width\";i:3;s:12:\"border_color\";i:4;s:12:\"align_mobile\";i:4;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:15:\"hover_animation\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:4:{s:5:\"width\";i:4;s:5:\"align\";i:4;s:4:\"look\";i:3;s:4:\"text\";i:3;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:6:\"weight\";i:1;}s:18:\"section_text_style\";a:7:{s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:25:\"typography_text_transform\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:10;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:10;s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:10;s:22:\"typography_font_family\";i:10;s:20:\"typography_font_size\";i:10;s:22:\"typography_line_height\";i:3;s:22:\"typography_font_weight\";i:1;s:21:\"typography_font_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:7;s:10:\"title_text\";i:7;s:16:\"description_text\";i:7;s:10:\"title_size\";i:7;s:14:\"thumbnail_size\";i:3;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:3:{s:8:\"position\";i:7;s:26:\"content_vertical_alignment\";i:4;s:18:\"title_bottom_space\";i:7;}s:19:\"section_style_image\";a:2:{s:10:\"image_size\";i:7;s:15:\"hover_animation\";i:7;}s:21:\"section_style_content\";a:9:{s:11:\"title_color\";i:7;s:27:\"title_typography_typography\";i:7;s:28:\"title_typography_font_family\";i:7;s:26:\"title_typography_font_size\";i:7;s:31:\"title_typography_text_transform\";i:4;s:17:\"description_color\";i:7;s:33:\"description_typography_typography\";i:7;s:34:\"description_typography_font_family\";i:7;s:32:\"description_typography_font_size\";i:7;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:7;s:10:\"image_size\";i:7;s:22:\"image_custom_dimension\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:5:\"width\";i:1;s:22:\"css_filters_css_filter\";i:7;s:22:\"css_filters_brightness\";i:7;s:15:\"css_filters_hue\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:6;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:20:\"testimonial-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_slides\";a:3:{s:6:\"slides\";i:1;s:15:\"slides_per_view\";i:1;s:5:\"width\";i:1;}s:26:\"section_additional_options\";a:2:{s:14:\"autoplay_speed\";i:1;s:11:\"show_arrows\";i:1;}}s:5:\"style\";a:5:{s:20:\"section_slides_style\";a:2:{s:13:\"space_between\";i:1;s:19:\"slide_border_radius\";i:1;}s:21:\"section_content_style\";a:14:{s:11:\"content_gap\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:10:\"name_color\";i:1;s:26:\"name_typography_typography\";i:1;s:27:\"name_typography_font_family\";i:1;s:25:\"name_typography_font_size\";i:1;s:30:\"name_typography_letter_spacing\";i:1;s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;}s:19:\"section_image_style\";a:3:{s:10:\"image_size\";i:1;s:9:\"image_gap\";i:1;s:19:\"image_border_radius\";i:1;}s:18:\"section_navigation\";a:4:{s:11:\"arrows_size\";i:1;s:12:\"arrows_color\";i:1;s:15:\"pagination_size\";i:1;s:16:\"pagination_color\";i:1;}s:18:\"section_skin_style\";a:2:{s:16:\"background_color\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:1:{s:16:\"social_icon_list\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:1;s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;s:17:\"icon_align_mobile\";i:1;}s:18:\"section_icon_style\";a:1:{s:10:\"icon_color\";i:1;}s:18:\"section_text_style\";a:7:{s:10:\"text_color\";i:1;s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;s:30:\"icon_typography_text_transform\";i:1;s:30:\"icon_typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6678','2095','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6679','2095','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6680','2095','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6681','2095','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6682','2095','_elementor_data','[{\"id\":\"9c29464\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"shape_divider_top_color\":\"#DADADA\",\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51f51c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3156264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"height\":{\"unit\":\"px\",\"size\":107,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fbc454\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u09b0\",\"highlighted_text\":\"\\u09ac\\u09c7\\u099c \\u0993 \\u0987\\u09b0\\u09be\\u09a8\\u09bf \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u09b8\\u09cd\\u09af\\u09be\\u09ab\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b8\\u09ae\\u09a8\\u09cd\\u09a8\\u09df\\u09c7 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"words_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"__globals__\":{\"words_color\":\"\",\"marker_color\":\"globals\\/colors?id=7d38e3a\"}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"1f45b3b\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"204137a\",\"image\":{\"id\":755,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3.jpg\"}},{\"_id\":\"de40079\",\"image\":{\"id\":755,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3.jpg\"}},{\"_id\":\"620eb02\",\"image\":{\"id\":756,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/2.jpg\"}},{\"image\":{\"id\":757,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/4.jpg\"},\"_id\":\"c6ba750\"},{\"image\":{\"id\":758,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5.jpg\"},\"_id\":\"c0b7ae0\"}],\"slides_per_view_mobile\":\"1\",\"slides_per_view\":\"3\",\"slides_to_scroll\":\"2\",\"pagination\":\"\"},\"elements\":[],\"widgetType\":\"media-carousel\"},{\"id\":\"eeae4e3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"_transform_rotate_3d_hover\":\"yes\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_keep_proportions_hover\":\"\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.7,\"sizes\":[]},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"-6\",\"bottom\":\"-6\",\"left\":\"-6\",\"isLinked\":true},\"_border_border\":\"none\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"background_color\":\"#C6005A\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5524eb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09cb\\u09aa \\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0985\\u09a5\\u09c7\\u09a8\\u09cd\\u099f\\u09bf\\u0995 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0997\\u09be\\u09af\\u09bc\\u09c7 QR \\u0995\\u09cb\\u09a1 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u0986\\u099b\\u09c7 \\u09b8\\u09cd\\u0995\\u09cd\\u09af\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=af10557\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8420b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1\\u09ae\\u09c7\\u09a1 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09e7 \\u099f\\u09bf - \\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be ( \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09b9 )\",\"align\":\"center\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df77c6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1\\u09ae\\u09c7\\u09a1 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09e8 \\u099f\\u09bf - \\u09ed\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be ( \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ab\\u09cd\\u09b0\\u09bf )\",\"align\":\"center\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55f15a3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"_transform_rotate_3d_hover\":\"yes\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_keep_proportions_hover\":\"\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.7,\"sizes\":[]},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"-6\",\"bottom\":\"-6\",\"left\":\"-6\",\"isLinked\":true},\"_border_border\":\"none\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"background_color\":\"#C6005A\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"915675d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"2522c90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f7991a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":759,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/6-1.jpg\"},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"714a3b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0caa05c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0997\\u09c1\\u09a8\\u09be\\u0997\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a8e82fa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09eb-\\u09ec \\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09a4\\u09c7 \\u09b6\\u09c1\\u09b0\\u09c1 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ea19a93\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2\\u09a4\\u09be \\u09ec \\u09a5\\u09c7\\u0995\\u09c7 \\u09ed\\u09b6\\u09c7\\u09a1 \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u09ac\\u09be\\u09a1\\u09bc\\u09be\\u09af\\u09bc\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"d2d11f3\"},{\"text\":\"\\u0997\\u09be\\u09df\\u09c7\\u09b0 \\u09b0\\u0982 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ba28102\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0997\\u09ad\\u09c0\\u09b0\\u09c7 \\u0997\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09a6\\u09cd\\u09b0\\u09a4\\u09be \\u099c\\u09cb\\u0997\\u09be\\u09af\\u09bc\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5c1fd47\"},{\"text\":\"\\u09b8\\u09b9\\u099c\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u09ac\\u09af\\u09bc\\u09b8\\u09c7\\u09b0 \\u099b\\u09be\\u09aa \\u09aa\\u09a1\\u09bc\\u09a4\\u09c7 \\u09a6\\u09c7\\u09af\\u09bc \\u09a8\\u09be\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"686913c\"},{\"text\":\"\\u09a1\\u09be\\u09b0\\u09cd\\u0995 \\u09b8\\u09be\\u09b0\\u09cd\\u0995\\u09c7\\u09b2 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3f6a206\"},{\"text\":\"\\u0993\\u09aa\\u09c7\\u09a8 \\u09aa\\u09cb\\u09b0\\u09cd\\u09b8 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \\u0993 \\u09aa\\u09bf\\u09ae\\u09cd\\u09aa\\u09b2 \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4ea1beb\"},{\"text\":\"\\u0995\\u09be\\u09b2\\u09cb \\u09ac\\u09cd\\u09b0\\u09a3\\u09c7\\u09b0 \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c4914ab\"},{\"text\":\"\\u09ae\\u09c7\\u099b\\u09a4\\u09be\\u09b0 \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"655b1b9\"},{\"text\":\"\\u099a\\u09cb\\u0996\\u09c7\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"231379e\"},{\"text\":\"\\u09a6\\u09bf\\u09a8\\u09c7 \\u09ef \\u09a5\\u09c7\\u0995\\u09c7 \\u09e7\\u09e6 \\u0998\\u09a8\\u09cd\\u099f\\u09be \\u0993\\u09af\\u09bc\\u09c7\\u09b2 \\u0995\\u09a8\\u09cd\\u099f\\u09cd\\u09b0\\u09cb\\u09b2 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"1dd0dd3\"},{\"text\":\"\\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u0997\\u09cd\\u09b2\\u09cb \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u0995\\u09be\\u09b2\\u09cb \\u09a4\\u09bf\\u09b2 \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"2f1b5ba\"}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7d38e3a\"},\"icon_self_vertical_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4bffe8b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7d38e3a\"}},\"elements\":[{\"id\":\"a28e2a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"background_background\":\"classic\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"d135fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"c82744f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.332,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"680d879\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u099c\\u09be\\u09ab\\u09cd\\u09b0\\u09be\\u09a8 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u099f\\u09be \\u098f\\u09a4\\u09cb \\u099f\\u09be \\u099c\\u09cb\\u09b6 \\u09af\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09a8\\u09be \\u0995\\u09b0\\u09b2\\u09c7 \\u09ac\\u09c1\\u099d\\u09be\\u0987 \\u09af\\u09be\\u09df \\u09a8\\u09be\\u0964 \\u09a4\\u09be\\u0987  \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a8 \\u09b8\\u09cd\\u099f\\u0995 \\u09b6\\u09c7\\u09b7 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u0986\\u0997\\u09c7\\u0964 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u0985\\u09a8\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09af  \\u099c\\u09be\\u09ab\\u09cd\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09a8\\u09be\\u0964 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7 \\u0986\\u099b\\u09c7 \\u099c\\u09be\\u09ab\\u09cd\\u09b0\\u09be\\u09a8,\\u09aa\\u09c7\\u09aa\\u09c7,\\u0993 \\u09ad\\u09bf\\u099f\\u09be- \\u09b8\\u09bf \\u0993 \\u099b\\u09be\\u0997\\u09b2\\u09c7\\u09b0 \\u09a6\\u09c1\\u09a7\\u09c7\\u09b0 \\u09a6\\u09be\\u09b0\\u09c1\\u09a3 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0\\u09a4\\u09be \\u09af\\u09be \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf\\u0995\\u09c7 \\u0995\\u09b0\\u09c7\\u099b\\u09c7 \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u0986\\u09b2\\u09be\\u09a6\\u09be\\u0964\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"58b127f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"background_background\":\"classic\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"d9afa8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69eae71\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=36b5bc3\"}},\"elements\":[{\"id\":\"9278fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b0f0909\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u09a8\\u09bf\\u09af\\u09bc\\u09ae \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e9a6c2\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"a827d64\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"7710be7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u09e8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e9 \\u09ac\\u09be\\u09b0 \\u09ae\\u09c1\\u0996 \\u09a7\\u09c1\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"ea19a93\"},{\"text\":\"\\u09ae\\u09c1\\u0996 \\u09a7\\u09cb\\u09af\\u09bc\\u09be\\u09b0 \\u09a8\\u09bf\\u09af\\u09bc\\u09ae \\u09ae\\u09c1\\u0996\\u09c7 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09be \\u09b2\\u09be\\u0997\\u09bf\\u09af\\u09bc\\u09c7 \\u09e9 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f \\u09b0\\u09be\\u0996\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u0986\\u09ac\\u09be\\u09b0 \\u09e8 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f \\u09ae\\u09be\\u09b8\\u09be\\u099c \\u0995\\u09b0\\u09c7 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a7\\u09c1\\u09af\\u09bc\\u09c7 \\u09ab\\u09c7\\u09b2\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"9a77d33\"}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7d38e3a\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"516b413\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"structure\":\"20\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=36b5bc3\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ccc4f61\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"2674217\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09c0\\u09a4\\u09be\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fe3ab8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"3-4 \\u09b6\\u09c7\\u09a1 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09ac\\u09c7 \\u09a6\\u09c1\\u0987 \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09bf\\u09a8\\u099f\\u09be \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u0987\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ea19a93\"},{\"text\":\"\\u0995\\u09df\\u09c7\\u0995\\u09a6\\u09bf\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7\\u0987 \\u0986\\u09aa\\u09a8\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u09b2\\u0995\\u09cd\\u09b7\\u09cd\\u09af \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"83de2c5\"},{\"text\":\"\\u098f\\u099f\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u09ac\\u09cd\\u09b0\\u09be\\u0987\\u099f \\u0995\\u09b0\\u09ac\\u09c7 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"22b3dfa\"},{\"text\":\"\\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u098f\\u0995\\u09a6\\u09ae \\u09ad\\u09c7\\u09a4\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0473121\"},{\"text\":\"\\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09ab\\u099f \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b02aa6d\"},{\"text\":\"\\u0986\\u09b8\\u09cd\\u09a4\\u09c7 \\u0986\\u09b8\\u09cd\\u09a4\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09a6\\u09be\\u0997\\u0997\\u09c1\\u09b2\\u09cb \\u0995\\u09ae\\u09be\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c934448\"},{\"text\":\"\\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u09ac\\u09cd\\u09b0\\u09a3 \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"29e047c\"},{\"text\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09c1\\u09b2 \\u09ac\\u09a1\\u09bf\\u09a4\\u09c7 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09a1\\u09bf\\u0995\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"45f9252\"}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7d38e3a\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"82b05d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"583fee6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":760,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c073ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"structure\":\"20\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=36b5bc3\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"523c007\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"c1dcd4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":760,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":45,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ba574f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"ad72423\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09c0\\u09a4\\u09be\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c64691a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"3-4 \\u09b6\\u09c7\\u09a1 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09ac\\u09c7 \\u09a6\\u09c1\\u0987 \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09bf\\u09a8\\u099f\\u09be \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u0987\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ea19a93\"},{\"text\":\"\\u0995\\u09df\\u09c7\\u0995\\u09a6\\u09bf\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7\\u0987 \\u0986\\u09aa\\u09a8\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u09b2\\u0995\\u09cd\\u09b7\\u09cd\\u09af \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"83de2c5\"},{\"text\":\"\\u098f\\u099f\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u09ac\\u09cd\\u09b0\\u09be\\u0987\\u099f \\u0995\\u09b0\\u09ac\\u09c7 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"22b3dfa\"},{\"text\":\"\\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u098f\\u0995\\u09a6\\u09ae \\u09ad\\u09c7\\u09a4\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0473121\"},{\"text\":\"\\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09ab\\u099f \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b02aa6d\"},{\"text\":\"\\u0986\\u09b8\\u09cd\\u09a4\\u09c7 \\u0986\\u09b8\\u09cd\\u09a4\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09a6\\u09be\\u0997\\u0997\\u09c1\\u09b2\\u09cb \\u0995\\u09ae\\u09be\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c934448\"},{\"text\":\"\\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u09ac\\u09cd\\u09b0\\u09a3 \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"29e047c\"},{\"text\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09c1\\u09b2 \\u09ac\\u09a1\\u09bf\\u09a4\\u09c7 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09a1\\u09bf\\u0995\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"45f9252\"}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7d38e3a\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ecf2997\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=7d38e3a\"}},\"elements\":[{\"id\":\"c791771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a6238c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":760,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":12,\"vertical\":12,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e289e90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f2ea2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u099f\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1 \\u09ae\\u09c7\\u09a1  \\u09ae\\u09c1\\u0996\\u09c7\\u09b0 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u0964 \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u09aa\\u09c1\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09b8\\u09c7\\u09b2 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\u0964\\u098f \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ae\\u09c1\\u0996\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09b2\\u09c7 \\u09ae\\u09c1\\u0996\\u09c7 \\u09ac\\u09cd\\u09b0\\u09a3, \\u09a4\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a4\\u09cd\\u09ac\\u0995\\u0995\\u09c7 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09c7  \\u09ae\\u09c1\\u0996\\u0995\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a4\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09b0\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u0986\\u09b0 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u099f\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0\\u0964\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"89f59df\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0e4986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292e146\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u09a6\\u09c1\\u0987\\u099f\\u09bf \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u0995\\u09bf\\u09a8\\u09b2\\u09c7 \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09b9\\u09cb\\u09ae  \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c  \",\"highlighted_text\":\"\\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u099f\\u09be\\u0995\\u09be \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\",\"stroke_width\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"words_color\":\"globals\\/colors?id=secondary\",\"marker_color\":\"globals\\/colors?id=7d38e3a\"},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a96ee9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F0F2F5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"466d0db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c9e5f3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u0995\\u099f\\u09be \\u09a8\\u09bf\\u09b2\\u09c7 \\u09ea\\u09ee\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09b9 \\u09a6\\u09c1\\u0987\\u099f\\u09be \\u09a8\\u09bf\\u09b2\\u09c7 \\u09ed\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ab\\u09cd\\u09b0\\u09bf\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14106ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d98406\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"btn_background_color_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_element_id\":\"order\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"900\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"heading_typography_font_weight\":\"600\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"buttons_typography_font_weight\":\"800\",\"buttons_typography_font_style\":\"normal\",\"button_text_color\":\"#FFFFFF\",\"product_option_section_title_text\":\"\\u0995\\u09cb\\u09a8\\u099f\\u09be \\u0995\\u09cb\\u09a8\\u099f\\u09be \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8 \\u09a8\\u09bf\\u099a \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8  \",\"global_primary_color\":\"#E71919\",\"global_text_color\":\"#000000\",\"global_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"global_typography_font_style\":\"normal\",\"global_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"global_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"global_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.3,\"sizes\":[]},\"heading_text_color\":\"#000000\",\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"heading_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"heading_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.6,\"sizes\":[]},\"heading_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"input_color\":\"#A98E8E\",\"input_border_color\":\"#000000\",\"input_radius_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"payment_section_text_color\":\"#000000\",\"payment_section_desc_color\":\"#000000\",\"payment_section_bg_color\":\"#D7D7D7\",\"payment_info_bg_color\":\"#FFFFFF\",\"payment_section_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"payment_section_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"product_bg_color\":\"#F4F4F4\",\"product_option_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"highlight_product_border_size\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"highlight_product_border_radius\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"highlight_flag_text_color\":\"#000000\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.04)\"},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=7d38e3a\",\"btn_background_color_color\":\"globals\\/colors?id=7d38e3a\"},\"btn_border_border\":\"none\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"checkout-form\"},{\"id\":\"a4f5d0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c11f978\",\"elType\":\"widget\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01303832348\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"align_mobile\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=36b5bc3\",\"background_color\":\"globals\\/colors?id=af10557\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dcdc999\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a0b378\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d7f131f\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6683','2095','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6684','2095','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6685','2095','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6687','2095','_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:5;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:4;s:6:\"height\";i:1;s:32:\"image_box_shadow_box_shadow_type\";i:1;s:27:\"image_box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:3:{s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:10:\"after_text\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_font_weight\";i:2;s:28:\"title_typography_line_height\";i:2;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}s:20:\"section_style_marker\";a:1:{s:12:\"stroke_width\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:14:\"media-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"section_slides\";a:4:{s:6:\"slides\";i:1;s:22:\"slides_per_view_mobile\";i:1;s:15:\"slides_per_view\";i:1;s:16:\"slides_to_scroll\";i:1;}s:26:\"section_additional_options\";a:1:{s:10:\"pagination\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:3;s:4:\"link\";i:3;s:11:\"icon_indent\";i:2;s:4:\"size\";i:1;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:12:\"align_mobile\";i:3;s:22:\"typography_line_height\";i:2;s:16:\"background_color\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}s:18:\"_section_transform\";a:11:{s:31:\"_transform_rotateZ_effect_hover\";i:2;s:26:\"_transform_rotate_3d_hover\";i:2;s:31:\"_transform_rotateX_effect_hover\";i:2;s:31:\"_transform_rotateY_effect_hover\";i:2;s:35:\"_transform_perspective_effect_hover\";i:2;s:34:\"_transform_translateX_effect_hover\";i:2;s:34:\"_transform_translateY_effect_hover\";i:2;s:33:\"_transform_keep_proportions_hover\";i:2;s:29:\"_transform_scale_effect_hover\";i:2;s:30:\"_transform_scaleX_effect_hover\";i:2;s:30:\"_transform_scaleY_effect_hover\";i:2;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:2;s:24:\"_border_hover_transition\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:15;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:15;s:21:\"typography_typography\";i:15;s:22:\"typography_font_family\";i:15;s:20:\"typography_font_size\";i:15;s:22:\"typography_font_weight\";i:15;s:22:\"typography_line_height\";i:11;s:11:\"title_color\";i:10;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:11;s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:11;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:11;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:16;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:12;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:3;}s:21:\"section_shape_divider\";a:6:{s:23:\"shape_divider_top_color\";i:1;s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:7;s:7:\"padding\";i:10;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:2;s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:2:{s:18:\"section_text_style\";a:7:{s:26:\"icon_typography_typography\";i:4;s:27:\"icon_typography_font_family\";i:4;s:25:\"icon_typography_font_size\";i:4;s:27:\"icon_typography_font_weight\";i:4;s:27:\"icon_typography_line_height\";i:4;s:30:\"icon_typography_letter_spacing\";i:4;s:10:\"text_color\";i:4;}s:18:\"section_icon_style\";a:4:{s:9:\"icon_size\";i:4;s:11:\"text_indent\";i:4;s:15:\"icon_self_align\";i:4;s:24:\"icon_self_vertical_align\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:8:\"_padding\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6688','2096','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6689','2096','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6690','2096','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6691','2096','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6692','2096','_elementor_data','[{\"id\":\"9c29464\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#3CC8D2\",\"shape_divider_top_color\":\"#DADADA\",\"shape_divider_bottom\":\"mountains\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51f51c9\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3156264\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7fbc454\",\"settings\":{\"before_text\":\"\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u09b0\",\"highlighted_text\":\"\\u09ac\\u09c7\\u099c \\u0993 \\u0987\\u09b0\\u09be\\u09a8\\u09bf \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u09b8\\u09cd\\u09af\\u09be\\u09ab\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b8\\u09ae\\u09a8\\u09cd\\u09a8\\u09df\\u09c7 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"words_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"__globals__\":{\"words_color\":\"\",\"marker_color\":\"\"},\"words_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"1f45b3b\",\"settings\":{\"slides\":[{\"_id\":\"204137a\",\"image\":{\"id\":\"755\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3.jpg\"},\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"de40079\",\"image\":{\"id\":\"755\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3.jpg\"},\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"620eb02\",\"image\":{\"id\":\"756\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/2.jpg\"},\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"757\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/4.jpg\"},\"_id\":\"c6ba750\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"image\":{\"id\":\"758\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5.jpg\"},\"_id\":\"c0b7ae0\",\"type\":\"image\",\"image_link_to_type\":\"\",\"image_link_to\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"video\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"slides_per_view_mobile\":\"1\",\"slides_per_view\":\"3\",\"slides_to_scroll\":\"2\",\"pagination\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"media-carousel\",\"elType\":\"widget\"},{\"id\":\"eeae4e3\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"_transform_rotate_3d_hover\":\"yes\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_keep_proportions_hover\":\"\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.7,\"sizes\":[]},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"-6\",\"bottom\":\"-6\",\"left\":\"-6\",\"isLinked\":true},\"_border_border\":\"none\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"background_color\":\"#287677\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"5524eb4\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09cb\\u09aa \\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0985\\u09a5\\u09c7\\u09a8\\u09cd\\u099f\\u09bf\\u0995 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0997\\u09be\\u09af\\u09bc\\u09c7 QR \\u0995\\u09cb\\u09a1 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u0986\\u099b\\u09c7 \\u09b8\\u09cd\\u0995\\u09cd\\u09af\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=af10557\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"e8420b9\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1\\u09ae\\u09c7\\u09a1 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09e7 \\u099f\\u09bf - \\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be ( \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09b9 )\",\"align\":\"center\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"df77c6a\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1\\u09ae\\u09c7\\u09a1 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09e8 \\u099f\\u09bf - \\u09ed\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be ( \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ab\\u09cd\\u09b0\\u09bf )\",\"align\":\"center\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"55f15a3\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"_transform_rotate_3d_hover\":\"yes\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_transform_keep_proportions_hover\":\"\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.9,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.7,\"sizes\":[]},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"-6\",\"bottom\":\"-6\",\"left\":\"-6\",\"isLinked\":true},\"_border_border\":\"none\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"background_color\":\"#3092AE\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"915675d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#64C6D7\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"shape_divider_top\":\"mountains\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2522c90\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0f7991a\",\"settings\":{\"image\":{\"id\":\"759\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/6-1.jpg\"},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":60,\"sizes\":[]},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"714a3b7\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0caa05c\",\"settings\":{\"title\":\"\\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0997\\u09c1\\u09a8\\u09be\\u0997\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a8e82fa\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09eb-\\u09ec \\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09a4\\u09c7 \\u09b6\\u09c1\\u09b0\\u09c1 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ea19a93\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2\\u09a4\\u09be \\u09ec \\u09a5\\u09c7\\u0995\\u09c7 \\u09ed\\u09b6\\u09c7\\u09a1 \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u09ac\\u09be\\u09a1\\u09bc\\u09be\\u09af\\u09bc\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"d2d11f3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0997\\u09be\\u09df\\u09c7\\u09b0 \\u09b0\\u0982 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ba28102\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0997\\u09ad\\u09c0\\u09b0\\u09c7 \\u0997\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09a6\\u09cd\\u09b0\\u09a4\\u09be \\u099c\\u09cb\\u0997\\u09be\\u09af\\u09bc\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5c1fd47\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09b9\\u099c\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u09ac\\u09af\\u09bc\\u09b8\\u09c7\\u09b0 \\u099b\\u09be\\u09aa \\u09aa\\u09a1\\u09bc\\u09a4\\u09c7 \\u09a6\\u09c7\\u09af\\u09bc \\u09a8\\u09be\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"686913c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09b0\\u09cd\\u0995 \\u09b8\\u09be\\u09b0\\u09cd\\u0995\\u09c7\\u09b2 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3f6a206\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0993\\u09aa\\u09c7\\u09a8 \\u09aa\\u09cb\\u09b0\\u09cd\\u09b8 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \\u0993 \\u09aa\\u09bf\\u09ae\\u09cd\\u09aa\\u09b2 \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4ea1beb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0995\\u09be\\u09b2\\u09cb \\u09ac\\u09cd\\u09b0\\u09a3\\u09c7\\u09b0 \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c4914ab\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09c7\\u099b\\u09a4\\u09be\\u09b0 \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"655b1b9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u099a\\u09cb\\u0996\\u09c7\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"231379e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a6\\u09bf\\u09a8\\u09c7 \\u09ef \\u09a5\\u09c7\\u0995\\u09c7 \\u09e7\\u09e6 \\u0998\\u09a8\\u09cd\\u099f\\u09be \\u0993\\u09af\\u09bc\\u09c7\\u09b2 \\u0995\\u09a8\\u09cd\\u099f\\u09cd\\u09b0\\u09cb\\u09b2 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"1dd0dd3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u0997\\u09cd\\u09b2\\u09cb \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u0995\\u09be\\u09b2\\u09cb \\u09a4\\u09bf\\u09b2 \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"2f1b5ba\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"center\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7d38e3a\"},\"icon_self_vertical_align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"4bffe8b\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#80D5E9\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a28e2a7\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"background_background\":\"classic\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d135fe7\",\"settings\":{\"title\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"c82744f\",\"settings\":{\"_column_size\":33,\"_inline_size\":79.332,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"680d879\",\"settings\":{\"title\":\"\\u099c\\u09be\\u09ab\\u09cd\\u09b0\\u09be\\u09a8 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u099f\\u09be \\u098f\\u09a4\\u09cb \\u099f\\u09be \\u099c\\u09cb\\u09b6 \\u09af\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09a8\\u09be \\u0995\\u09b0\\u09b2\\u09c7 \\u09ac\\u09c1\\u099d\\u09be\\u0987 \\u09af\\u09be\\u09df \\u09a8\\u09be\\u0964 \\u09a4\\u09be\\u0987  \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a8 \\u09b8\\u09cd\\u099f\\u0995 \\u09b6\\u09c7\\u09b7 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u0986\\u0997\\u09c7\\u0964 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u0985\\u09a8\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09af  \\u099c\\u09be\\u09ab\\u09cd\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09a8\\u09be\\u0964 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7 \\u0986\\u099b\\u09c7 \\u099c\\u09be\\u09ab\\u09cd\\u09b0\\u09be\\u09a8,\\u09aa\\u09c7\\u09aa\\u09c7,\\u0993 \\u09ad\\u09bf\\u099f\\u09be- \\u09b8\\u09bf \\u0993 \\u099b\\u09be\\u0997\\u09b2\\u09c7\\u09b0 \\u09a6\\u09c1\\u09a7\\u09c7\\u09b0 \\u09a6\\u09be\\u09b0\\u09c1\\u09a3 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0\\u09a4\\u09be \\u09af\\u09be \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf\\u0995\\u09c7 \\u0995\\u09b0\\u09c7\\u099b\\u09c7 \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u0986\\u09b2\\u09be\\u09a6\\u09be\\u0964\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"58b127f\",\"settings\":{\"_column_size\":33,\"_inline_size\":10,\"background_background\":\"classic\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d9afa8b\",\"settings\":{\"title\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"69eae71\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#4BC4CC\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9278fa3\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b0f0909\",\"settings\":{\"title\":\"\\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u09a8\\u09bf\\u09af\\u09bc\\u09ae \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7e9a6c2\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a827d64\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7710be7\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u09e8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e9 \\u09ac\\u09be\\u09b0 \\u09ae\\u09c1\\u0996 \\u09a7\\u09c1\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"ea19a93\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09ae\\u09c1\\u0996 \\u09a7\\u09cb\\u09af\\u09bc\\u09be\\u09b0 \\u09a8\\u09bf\\u09af\\u09bc\\u09ae \\u09ae\\u09c1\\u0996\\u09c7 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09be \\u09b2\\u09be\\u0997\\u09bf\\u09af\\u09bc\\u09c7 \\u09e9 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f \\u09b0\\u09be\\u0996\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u0986\\u09ac\\u09be\\u09b0 \\u09e8 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f \\u09ae\\u09be\\u09b8\\u09be\\u099c \\u0995\\u09b0\\u09c7 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a7\\u09c1\\u09af\\u09bc\\u09c7 \\u09ab\\u09c7\\u09b2\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"9a77d33\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=7d38e3a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"ecf2997\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#75C7CC\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c791771\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a6238c\",\"settings\":{\"image\":{\"id\":\"760\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":12,\"vertical\":12,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"width_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":44,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"e289e90\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f2ea2b\",\"settings\":{\"title\":\"\\u098f\\u099f\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1 \\u09ae\\u09c7\\u09a1  \\u09ae\\u09c1\\u0996\\u09c7\\u09b0 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u0964 \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u09aa\\u09c1\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09b8\\u09c7\\u09b2 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\u0964\\u098f \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ae\\u09c1\\u0996\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09b2\\u09c7 \\u09ae\\u09c1\\u0996\\u09c7 \\u09ac\\u09cd\\u09b0\\u09a3, \\u09a4\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a4\\u09cd\\u09ac\\u0995\\u0995\\u09c7 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09c7  \\u09ae\\u09c1\\u0996\\u0995\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a4\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09b0\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u0986\\u09b0 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u099f\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0\\u0964\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"89f59df\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#52B9C1\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d0e4986\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"292e146\",\"settings\":{\"before_text\":\"\\u09a6\\u09c1\\u0987\\u099f\\u09bf \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u0995\\u09bf\\u09a8\\u09b2\\u09c7 \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09b9\\u09cb\\u09ae  \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c  \",\"highlighted_text\":\"\\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u099f\\u09be\\u0995\\u09be \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\",\"stroke_width\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"words_color\":\"globals\\/colors?id=secondary\",\"marker_color\":\"globals\\/colors?id=7d38e3a\"},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5a96ee9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#67DDD6\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"466d0db\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c9e5f3a\",\"settings\":{\"title\":\"\\u098f\\u0995\\u099f\\u09be \\u09a8\\u09bf\\u09b2\\u09c7 \\u09ea\\u09ee\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09b9 \\u09a6\\u09c1\\u0987\\u099f\\u09be \\u09a8\\u09bf\\u09b2\\u09c7 \\u09ed\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ab\\u09cd\\u09b0\\u09bf\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=36b5bc3\",\"_background_color\":\"globals\\/colors?id=7d38e3a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"14106ed\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=7d38e3a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7d98406\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"btn_background_color_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_element_id\":\"order\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"900\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"heading_typography_font_weight\":\"600\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"buttons_typography_font_weight\":\"800\",\"buttons_typography_font_style\":\"normal\",\"button_text_color\":\"#FFFFFF\",\"product_option_section_title_text\":\"\\u0995\\u09cb\\u09a8\\u099f\\u09be \\u0995\\u09cb\\u09a8\\u099f\\u09be \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8 \\u09a8\\u09bf\\u099a \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8  \",\"global_primary_color\":\"#E71919\",\"global_text_color\":\"#000000\",\"global_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"global_typography_font_style\":\"normal\",\"global_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"global_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"global_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.3,\"sizes\":[]},\"heading_text_color\":\"#000000\",\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"heading_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"heading_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-0.6,\"sizes\":[]},\"heading_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"input_color\":\"#A98E8E\",\"input_border_color\":\"#000000\",\"input_radius_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true},\"payment_section_text_color\":\"#000000\",\"payment_section_desc_color\":\"#000000\",\"payment_section_bg_color\":\"#D7D7D7\",\"payment_info_bg_color\":\"#FFFFFF\",\"payment_section_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"payment_section_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"product_bg_color\":\"#F4F4F4\",\"product_option_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"highlight_product_border_size\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"highlight_product_border_radius\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true},\"highlight_flag_text_color\":\"#000000\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.04)\"},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\",\"btn_background_color_color\":\"\"},\"btn_border_border\":\"none\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"checkout-form\"},{\"id\":\"a4f5d0b\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"c11f978\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01303832348\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"align_mobile\":\"justify\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=36b5bc3\",\"background_color\":\"globals\\/colors?id=af10557\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"dcdc999\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a0b378\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d7f131f\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6693','2096','_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6694','2096','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6695','2096','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6697','2096','_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:3;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:3;s:32:\"image_box_shadow_box_shadow_type\";i:1;s:27:\"image_box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:3:{s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:10:\"after_text\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_style_text\";a:10:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_font_weight\";i:2;s:28:\"title_typography_line_height\";i:2;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;s:11:\"words_color\";i:1;}s:20:\"section_style_marker\";a:1:{s:12:\"stroke_width\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:14:\"media-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"section_slides\";a:4:{s:6:\"slides\";i:1;s:22:\"slides_per_view_mobile\";i:1;s:15:\"slides_per_view\";i:1;s:16:\"slides_to_scroll\";i:1;}s:26:\"section_additional_options\";a:1:{s:10:\"pagination\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:3;s:4:\"link\";i:3;s:11:\"icon_indent\";i:2;s:4:\"size\";i:1;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:12:\"align_mobile\";i:3;s:22:\"typography_line_height\";i:2;s:16:\"background_color\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}s:18:\"_section_transform\";a:11:{s:31:\"_transform_rotateZ_effect_hover\";i:2;s:26:\"_transform_rotate_3d_hover\";i:2;s:31:\"_transform_rotateX_effect_hover\";i:2;s:31:\"_transform_rotateY_effect_hover\";i:2;s:35:\"_transform_perspective_effect_hover\";i:2;s:34:\"_transform_translateX_effect_hover\";i:2;s:34:\"_transform_translateY_effect_hover\";i:2;s:33:\"_transform_keep_proportions_hover\";i:2;s:29:\"_transform_scale_effect_hover\";i:2;s:30:\"_transform_scaleX_effect_hover\";i:2;s:30:\"_transform_scaleY_effect_hover\";i:2;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:2;s:24:\"_border_hover_transition\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:13;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:13;s:21:\"typography_typography\";i:13;s:22:\"typography_font_family\";i:13;s:20:\"typography_font_size\";i:13;s:22:\"typography_font_weight\";i:13;s:22:\"typography_line_height\";i:9;s:11:\"title_color\";i:6;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:9;s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:9;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:9;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:8;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:2;s:11:\"hide_mobile\";i:2;}s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:7;s:16:\"background_color\";i:7;}s:21:\"section_shape_divider\";a:8:{s:23:\"shape_divider_top_color\";i:1;s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:24:\"shape_divider_top_height\";i:1;s:17:\"shape_divider_top\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:5;s:7:\"padding\";i:8;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:1;s:18:\"gap_columns_custom\";i:1;s:16:\"content_position\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_text_style\";a:7:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:27:\"icon_typography_line_height\";i:2;s:30:\"icon_typography_letter_spacing\";i:2;s:10:\"text_color\";i:2;}s:18:\"section_icon_style\";a:4:{s:9:\"icon_size\";i:2;s:11:\"text_indent\";i:2;s:15:\"icon_self_align\";i:2;s:24:\"icon_self_vertical_align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6698','2097','wcf-flow-id','2056');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6699','2097','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6700','2097','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6701','2097','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6702','2097','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6703','2097','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6704','2097','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6705','2097','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6706','2097','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6707','2097','_edit_lock','1717923426:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6708','2097','_elementor_data','[{\"id\":\"12a79b6c\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75f97436\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"292c179\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2673fd80\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"2396a20c\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"a1d4dca\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"cb933ff\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5093624a\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FCFCFC\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7696918f\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":6,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"space_between_widgets\":0,\"box_shadow_box_shadow_type\":\"yes\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ea68dcc\",\"settings\":{\"html\":\"<style>n  #optin_ThankYou table tr td.download-file,n    #optin_ThankYou table th.download-file{n      text-align: right;n  }  n<\\/style>\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"html\",\"elType\":\"widget\"},{\"id\":\"a10db13\",\"elType\":\"widget\",\"settings\":{\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Poppins\",\"heading_typography_font_weight\":\"500\",\"section_heading_typography_typography\":\"custom\",\"section_heading_typography_font_family\":\"Poppins\",\"section_heading_typography_font_weight\":\"500\",\"section_text_typography_typography\":\"custom\",\"section_text_typography_font_family\":\"Asap\",\"section_all_background_color_background\":\"classic\",\"section_all_background_color_color\":\"#F2F2F2\",\"section_order_details_heading_typography_typography\":\"custom\",\"section_order_details_heading_typography_font_family\":\"Poppins\",\"section_order_details_heading_typography_font_weight\":\"500\",\"section_order_details_text_typography_typography\":\"custom\",\"section_order_details_text_typography_font_family\":\"Asap\"},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"2e97f5e1\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b846f2c\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"140b84d9\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6709','2097','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6710','2097','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6712','2098','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6713','2098','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6714','2098','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6715','2098','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6716','2098','_elementor_data','[{\"id\":\"12a79b6c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]}},\"elements\":[{\"id\":\"75f97436\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"292c179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2673fd80\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2396a20c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1d4dca\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb933ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5093624a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FCFCFC\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":850,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7696918f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":6,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"space_between_widgets\":0,\"box_shadow_box_shadow_type\":\"yes\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"1ea68dcc\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>n  #optin_ThankYou table tr td.download-file,n    #optin_ThankYou table th.download-file{n      text-align: right;n  }  n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"a10db13\",\"elType\":\"widget\",\"settings\":{\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Poppins\",\"heading_typography_font_weight\":\"500\",\"section_heading_typography_typography\":\"custom\",\"section_heading_typography_font_family\":\"Poppins\",\"section_heading_typography_font_weight\":\"500\",\"section_text_typography_typography\":\"custom\",\"section_text_typography_font_family\":\"Asap\",\"section_all_background_color_background\":\"classic\",\"section_all_background_color_color\":\"#F2F2F2\",\"section_order_details_heading_typography_typography\":\"custom\",\"section_order_details_heading_typography_font_family\":\"Poppins\",\"section_order_details_heading_typography_font_weight\":\"500\",\"section_order_details_text_typography_typography\":\"custom\",\"section_order_details_text_typography_font_family\":\"Asap\"},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e97f5e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2b846f2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"140b84d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6717','2098','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6718','2098','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6719','2098','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:16:\"background_color\";i:1;s:21:\"background_background\";i:1;}s:14:\"section_border\";a:3:{s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_radius\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:13:\"content_width\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:3;}}}}s:4:\"html\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6720','2099','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6721','2099','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6722','2099','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6723','2099','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6724','2099','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6725','2099','_elementor_data','[{\"id\":\"7a12f327\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"770\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"642\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/man-carrying-white-and-black-bianchi-road-bike-990427.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"animation\":\"fadeIn\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"60\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":\"\"},\"shape_divider_bottom\":\"wave-brush\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40259cb6\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"35\",\"bottom\":\"38\",\"left\":\"35\",\"isLinked\":\"\"},\"animation\":\"fadeInUp\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"20\",\"bottom\":\"34\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"1\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61199a84\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09c7\\u09ac\\u09be\\u09b8\\u09ae\\u09c2\\u09b9\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"5\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"none\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"4\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"2.7\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"f823a1b\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u0987\\u09a8 \\u0986\\u09aa \\u0995\\u09b0\\u09c1\\u09a8 \\u098f\\u09ac\\u0982 \\u09b8\\u09ae\\u09b8\\u09cd\\u09a4 \\u09a7\\u09b0\\u09a3\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09b7\\u09c7\\u09ac\\u09be\\u0997\\u09c1\\u09b2\\u09bf\\u09a4\\u09c7 \\u099b\\u09be\\u09a1\\u09bc \\u09aa\\u09be\\u09a8!\",\"align\":\"center\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.538\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"_animation_delay\":\"300\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"4383c399\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cc15383\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"647\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/full-bg-1410.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"animation\":\"none\",\"background_position_tablet\":\"center center\",\"background_repeat_tablet\":\"no-repeat\",\"background_size_tablet\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2287532b\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1170\",\"sizes\":[]},\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"157\",\"right\":\"0\",\"bottom\":\"155\",\"left\":\"0\",\"isLinked\":\"\"},\"animation\":\"none\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63b4f8e3\",\"settings\":{\"_column_size\":\"25\",\"space_between_widgets\":\"0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"36\",\"left\":\"30\",\"isLinked\":\"\"},\"animation\":\"fadeInUp\",\"background_background\":\"classic\",\"background_color\":\"#f7f5e7\",\"background_hover_background\":\"classic\",\"background_hover_color\":\"#251c1a\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"border_hover_color\":\"#251c1a\",\"css_classes\":\"envato-kit-221-services-block-hover-style\",\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"35\",\"left\":\"50\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"animation_mobile\":\"fadeIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22f89069\",\"settings\":{\"image\":{\"id\":\"643\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/crankset-red.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"60\",\"height\":\"57\"},\"align\":\"center\",\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"10a98c18\",\"settings\":{\"title\":\"\\u09ac\\u09c7\\u09b8\\u09bf\\u0995 \\u09b8\\u09be\\u09b0\\u09cd\\u09ad\\u09bf\\u09b8\",\"align\":\"center\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_animation\":\"fadeIn\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"59449acf\",\"settings\":{\"editor\":\"<p>\\u09b8\\u09c7\\u09a1 \\u0987\\u0989\\u099f, \\u0985\\u09a8\\u09cd\\u09a1 \\u0987\\u09ae\\u09a8\\u09bf\\u09b8 \\u0987\\u09b8\\u09cd\\u099f<br \\/>natus error \\u09ac\\u09b8\\u09c7 voluptatem<br \\/>accusantium doloremque<br \\/>laudantium<\\/p>\",\"align\":\"center\",\"text_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.75\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"6b07c0d5\",\"settings\":{\"_column_size\":\"25\",\"space_between_widgets\":\"0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"36\",\"left\":\"30\",\"isLinked\":\"\"},\"animation\":\"fadeInUp\",\"animation_delay\":\"200\",\"background_background\":\"classic\",\"background_color\":\"#f7f5e7\",\"background_hover_background\":\"classic\",\"background_hover_color\":\"#251c1a\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"border_hover_color\":\"#251c1a\",\"css_classes\":\"envato-kit-221-services-block-hover-style\",\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"35\",\"left\":\"50\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"animation_mobile\":\"fadeIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1fede04b\",\"settings\":{\"image\":{\"id\":\"644\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/chain-red.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"46\",\"height\":\"56\"},\"align\":\"center\",\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7ea4bc3b\",\"settings\":{\"title\":\"\\u09b8\\u09cd\\u099f\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1\\u09be\\u09b0\\u09cd\\u09a1 \\u09b8\\u09be\\u09b0\\u09cd\\u09ad\\u09bf\\u09b8\",\"align\":\"center\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_animation\":\"fadeIn\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"47aebbf1\",\"settings\":{\"editor\":\"<p>\\u09b8\\u09c7\\u09a1 \\u0987\\u0989\\u099f, \\u0985\\u09a8\\u09cd\\u09a1 \\u0987\\u09ae\\u09a8\\u09bf\\u09b8 \\u0987\\u09b8\\u09cd\\u099f<br \\/>natus error \\u09ac\\u09b8\\u09c7 voluptatem<br \\/>accusantium doloremque<br \\/>laudantium<\\/p>\",\"align\":\"center\",\"text_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.75\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"2160b869\",\"settings\":{\"_column_size\":\"25\",\"space_between_widgets\":\"0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"36\",\"left\":\"30\",\"isLinked\":\"\"},\"animation\":\"fadeInUp\",\"animation_delay\":\"400\",\"background_background\":\"classic\",\"background_color\":\"#f7f5e7\",\"background_hover_background\":\"classic\",\"background_hover_color\":\"#251c1a\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"border_hover_color\":\"#251c1a\",\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"css_classes\":\"envato-kit-221-services-block-hover-style\",\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"35\",\"left\":\"50\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"animation_mobile\":\"fadeIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47116638\",\"settings\":{\"image\":{\"id\":\"645\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/fix-red.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"56\",\"height\":\"56\"},\"align\":\"center\",\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"170b6202\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09aa\\u09b0\\u09bf\\u09b7\\u09c7\\u09ac\\u09be\",\"align\":\"center\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_animation\":\"fadeIn\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"13a94b8\",\"settings\":{\"editor\":\"<p>\\u09b8\\u09c7\\u09a1 \\u0987\\u0989\\u099f, \\u0985\\u09a8\\u09cd\\u09a1 \\u0987\\u09ae\\u09a8\\u09bf\\u09b8 \\u0987\\u09b8\\u09cd\\u099f<br \\/>natus error \\u09ac\\u09b8\\u09c7 voluptatem<br \\/>accusantium doloremque<br \\/>laudantium<\\/p>\",\"align\":\"center\",\"text_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.75\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"3d0e1639\",\"settings\":{\"_column_size\":\"25\",\"space_between_widgets\":\"0\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"border_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"36\",\"left\":\"30\",\"isLinked\":\"\"},\"animation\":\"fadeInUp\",\"animation_delay\":\"600\",\"background_background\":\"classic\",\"background_color\":\"#f7f5e7\",\"background_hover_background\":\"classic\",\"background_hover_color\":\"#251c1a\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"border_hover_color\":\"#251c1a\",\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"css_classes\":\"envato-kit-221-services-block-hover-style\",\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"35\",\"left\":\"50\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"animation_mobile\":\"fadeIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cf6a1b6\",\"settings\":{\"image\":{\"id\":\"646\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/gear-red.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"57\",\"height\":\"57\"},\"align\":\"center\",\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"3ca0194\",\"settings\":{\"title\":\"\\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09cd\\u09af\\u09be\\u0995 \\u09aa\\u09b0\\u09bf\\u09b7\\u09c7\\u09ac\\u09be\",\"align\":\"center\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_animation\":\"fadeIn\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.5\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6c56ca47\",\"settings\":{\"editor\":\"<p>\\u09b8\\u09c7\\u09a1 \\u0987\\u0989\\u099f, \\u0985\\u09a8\\u09cd\\u09a1 \\u0987\\u09ae\\u09a8\\u09bf\\u09b8 \\u0987\\u09b8\\u09cd\\u099f<br \\/>natus error \\u09ac\\u09b8\\u09c7 voluptatem<br \\/>accusantium doloremque<br \\/>laudantium<\\/p>\",\"align\":\"center\",\"text_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.75\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeIn\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"6b7fb503\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1170\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"146\",\"left\":\"0\",\"isLinked\":\"\"},\"animation\":\"fadeIn\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"98\",\"right\":\"30\",\"bottom\":\"96\",\"left\":\"30\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"68\",\"left\":\"30\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"87eb1f0\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ee9d0f1\",\"settings\":{\"title\":\"\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 ...\",\"align\":\"left\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"3.75\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"3.2\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"2.6\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7daef415\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1170\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ab79c95\",\"settings\":{\"_column_size\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48a33100\",\"settings\":{\"image\":{\"id\":\"648\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/daniel-llorente-K7yTmKG7kac-unsplash-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"570\",\"height\":\"330\"},\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"hover_animation\":\"float\",\"_animation\":\"fadeInLeft\",\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"eee3291\",\"settings\":{\"title\":\"\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u09b8\\u09be\\u0987\\u0995\\u09c7\\u09b2 \\u099f\\u09be\\u09af\\u09bc\\u09be\\u09b0 \\u09ab\\u09cb\\u09b2\\u09be\\u09a8\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":\"\"},\"_animation\":\"fadeInLeft\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"66999939\",\"settings\":{\"editor\":\"<p>Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\\u200b\\u200b<\\/p>\",\"align\":\"left\",\"text_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.538\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":\"\"},\"_animation\":\"fadeInLeft\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"46b3b912\",\"settings\":{\"text\":\"More Info\",\"align\":\"left\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"8\",\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"0.875\",\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.4\",\"sizes\":[]},\"button_text_color\":\"#e12c3d\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#251c1a\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"_animation\":\"fadeInLeft\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"2f91a693\",\"settings\":{\"_column_size\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2afd1788\",\"settings\":{\"image\":{\"id\":\"649\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/bicycle-breaks-exercise-professional-6946-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"570\",\"height\":\"330\"},\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"hover_animation\":\"float\",\"_animation\":\"fadeInRight\",\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"dcc689c\",\"settings\":{\"title\":\"\\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1\\u09c7\\u09b2\\u09ac\\u09be\\u09b0\\u0997\\u09c1\\u09b2\\u09bf \\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09cb\\u09a1\\u09bc\\u09be\\u09a8\\u09cb \\u09af\\u09be\\u09af\\u09bc\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":\"\"},\"_animation\":\"fadeInRight\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1317490e\",\"settings\":{\"editor\":\"Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\\u200b\\u200b\",\"align\":\"left\",\"text_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.538\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":\"\"},\"_animation\":\"fadeInRight\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"caeb6cb\",\"settings\":{\"text\":\"More Info\",\"align\":\"left\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"8\",\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"0.875\",\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.4\",\"sizes\":[]},\"button_text_color\":\"#e12c3d\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#251c1a\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"_animation\":\"fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"c4fd0b8\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1170\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"57\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"693173e1\",\"settings\":{\"_column_size\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a625a3c\",\"settings\":{\"image\":{\"id\":656,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/john-nzoka-dhoAzw-NGk4-unsplash-2.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"570\",\"height\":\"330\"},\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"hover_animation\":\"float\",\"_animation\":\"fadeInLeft\",\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7d5a4427\",\"settings\":{\"title\":\"\\u0995\\u09c0\\u09ad\\u09be\\u09ac\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09c7\\u0995\\u0997\\u09c1\\u09b2\\u09bf \\u09aa\\u09c1\\u09a8\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u0982\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":\"\"},\"_animation\":\"fadeInLeft\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7aa9c17\",\"settings\":{\"editor\":\"Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\\u200b\\u200b\",\"align\":\"left\",\"text_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.538\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":\"\"},\"_animation\":\"fadeInLeft\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"10060c6d\",\"settings\":{\"text\":\"More Info\",\"align\":\"left\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"8\",\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"0.875\",\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.4\",\"sizes\":[]},\"button_text_color\":\"#e12c3d\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#251c1a\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"_animation\":\"fadeInLeft\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"},{\"id\":\"28362343\",\"settings\":{\"_column_size\":\"50\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e81b828\",\"settings\":{\"image\":{\"id\":657,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/florencia-viadana-rMPr-UhfaXI-unsplash-1.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"570\",\"height\":\"330\"},\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"hover_animation\":\"float\",\"_animation\":\"fadeInRight\",\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"343ea60\",\"settings\":{\"title\":\"\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099a\\u09c7\\u0987\\u09a8 \\u09a0\\u09bf\\u0995 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":\"\"},\"_animation\":\"fadeInRight\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"1.4\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7cb69343\",\"settings\":{\"editor\":\"Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.\\u200b\\u200b\",\"align\":\"left\",\"text_color\":\"#251c1a\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1.625\",\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.538\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":\"\"},\"_animation\":\"fadeInRight\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"775eca73\",\"settings\":{\"text\":\"More Info\",\"align\":\"left\",\"selected_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"8\",\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"0.875\",\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.4\",\"sizes\":[]},\"button_text_color\":\"#e12c3d\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#251c1a\",\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"_animation\":\"fadeInRight\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"31\",\"isLinked\":\"\"},\"_animation_tablet\":\"fadeIn\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"42a5b2a\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"770\",\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":658,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/asoggetti-HPpj2190tGs-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_scale_effect\":\"yes\",\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#3A2D2A\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"501\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":\"\"},\"animation\":\"fadeIn\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"51\",\"left\":\"30\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"46\",\"left\":\"30\",\"isLinked\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ca874fb\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43a83dde\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-play\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"primary_color\":\"#ffffff\",\"secondary_color\":\"#010101\",\"hover_primary_color\":\"#e12c3d\",\"hover_secondary_color\":\"#ffffff\",\"hover_animation\":\"float\",\"size\":{\"unit\":\"px\",\"size\":\"9\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"26dcecb5\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"470\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1259634c\",\"settings\":{\"_column_size\":\"100\",\"space_between_widgets\":\"0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d443a0a\",\"settings\":{\"title\":\"\\u09b8\\u09c7\\u09b0\\u09be \\u09ac\\u09be\\u0987\\u0995 \\u09b0\\u09c1\\u099f\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fjalla One\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"3.125\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"16\",\"left\":\"40\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":\"1\"},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"3\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":\"2.2\",\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"18\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"14\",\"left\":\"15\",\"isLinked\":\"\"},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":\"1\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":\"1\",\"elType\":\"column\"}],\"isInner\":\"1\",\"elType\":\"section\"},{\"id\":\"49c90dae\",\"settings\":{\"editor\":\"<p>\\u098f\\u099f\\u09bf \\u09b8\\u09b0\\u09cd\\u09ac\\u09a8\\u09bf\\u09ae\\u09cd\\u09a8\\u09ad\\u09be\\u09ac\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.75\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_animation\":\"fadeInUp\",\"_animation_delay\":\"200\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":\"\",\"elType\":\"column\"}],\"isInner\":\"\",\"elType\":\"section\"},{\"id\":\"c559378\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#E9E9E9\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6b06a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#6EC1E4\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#6EC1E4\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"e3d773d\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#2C3F600F\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fa53a06\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ccff08\",\"settings\":{\"title\":\"Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6726','2099','_elementor_page_assets','a:1:{s:6:\"styles\";a:70:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6727','2099','_elementor_controls_usage','a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:13;s:11:\"header_size\";i:5;s:4:\"link\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:5:\"align\";i:13;s:11:\"title_color\";i:12;s:21:\"typography_typography\";i:13;s:22:\"typography_font_family\";i:13;s:20:\"typography_font_size\";i:13;s:22:\"typography_font_weight\";i:13;s:25:\"typography_text_transform\";i:12;s:22:\"typography_line_height\";i:12;s:25:\"typography_letter_spacing\";i:12;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:12;s:8:\"_padding\";i:12;}s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:12;s:16:\"_animation_delay\";i:1;s:17:\"_animation_tablet\";i:4;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:21:\"space_between_widgets\";i:13;s:12:\"_inline_size\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:5;s:27:\"background_hover_background\";i:4;s:22:\"background_hover_color\";i:4;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:14:\"section_border\";a:8:{s:13:\"border_radius\";i:5;s:13:\"border_border\";i:5;s:12:\"border_width\";i:5;s:12:\"border_color\";i:5;s:19:\"border_hover_border\";i:4;s:18:\"border_hover_width\";i:4;s:18:\"border_hover_color\";i:4;s:19:\"border_radius_hover\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:13;s:7:\"padding\";i:13;s:11:\"css_classes\";i:4;}s:15:\"section_effects\";a:3:{s:9:\"animation\";i:6;s:16:\"animation_mobile\";i:4;s:15:\"animation_delay\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:7;s:6:\"layout\";i:1;s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;s:40:\"background_motion_fx_motion_fx_scrolling\";i:2;s:33:\"background_motion_fx_scale_effect\";i:2;s:32:\"background_motion_fx_scale_speed\";i:2;s:16:\"background_color\";i:4;}s:21:\"section_shape_divider\";a:1:{s:20:\"shape_divider_bottom\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:8;s:7:\"padding\";i:10;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:4;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:8;s:10:\"image_size\";i:8;s:22:\"image_custom_dimension\";i:8;s:7:\"link_to\";i:4;s:13:\"open_lightbox\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"align\";i:4;s:15:\"hover_animation\";i:4;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:8;s:17:\"_animation_tablet\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:9;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:5:\"align\";i:9;s:10:\"text_color\";i:9;s:21:\"typography_typography\";i:9;s:22:\"typography_font_family\";i:9;s:20:\"typography_font_size\";i:9;s:22:\"typography_font_weight\";i:9;s:25:\"typography_text_transform\";i:9;s:22:\"typography_line_height\";i:9;s:25:\"typography_letter_spacing\";i:9;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:9;}s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:9;s:17:\"_animation_tablet\";i:4;s:16:\"_animation_delay\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:13:\"selected_icon\";i:4;s:10:\"icon_align\";i:4;s:11:\"icon_indent\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:14:{s:5:\"align\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:25:\"typography_text_transform\";i:4;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:4;s:17:\"button_text_color\";i:4;s:16:\"background_color\";i:4;s:11:\"hover_color\";i:4;s:15:\"hover_animation\";i:4;s:13:\"border_radius\";i:4;s:12:\"text_padding\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:8:\"_padding\";i:4;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:4;s:17:\"_animation_tablet\";i:4;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:1;s:4:\"view\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:7:{s:13:\"primary_color\";i:1;s:15:\"secondary_color\";i:1;s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;s:15:\"hover_animation\";i:1;s:4:\"size\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6728','2100','wcf-flow-id','2091');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6729','2100','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6730','2100','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6731','2100','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6732','2100','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6733','2100','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6734','2100','_edit_lock','1717805630:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6735','2100','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6736','2100','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6737','2100','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6738','2100','_elementor_data','[{\"id\":\"382faa4c\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36326a42\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e8787fd\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"31c1f5c6\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=36b5bc3\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70c31ef2\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ec5132a\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6739','2100','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6740','2100','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6742','2101','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6743','2101','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6744','2101','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6745','2101','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6746','2101','_elementor_data','[{\"id\":\"382faa4c\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36326a42\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e8787fd\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"31c1f5c6\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=36b5bc3\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70c31ef2\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ec5132a\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6747','2101','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6748','2101','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6749','2101','_elementor_controls_usage','a:4:{s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6750','2102','wcf-flow-id','2089');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6751','2102','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6752','2102','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6753','2102','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6754','2102','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6755','2102','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6756','2102','_edit_lock','1717919539:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6757','2102','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6758','2102','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6759','2102','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6760','2102','_elementor_data','[{\"id\":\"382faa4c\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36326a42\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e8787fd\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"31c1f5c6\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=36b5bc3\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70c31ef2\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ec5132a\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6761','2102','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6762','2102','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6764','2103','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6765','2103','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6766','2103','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6767','2103','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6768','2103','_elementor_data','[{\"id\":\"382faa4c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36326a42\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"4e8787fd\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"31c1f5c6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=36b5bc3\"}},\"elements\":[{\"id\":\"70c31ef2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3ec5132a\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6769','2103','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6770','2103','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6771','2103','_elementor_controls_usage','a:4:{s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6772','2104','wcf-flow-id','2063');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6773','2104','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6774','2104','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6775','2104','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6776','2104','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6777','2104','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6778','2104','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6779','2104','_edit_lock','1716492910:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6780','2104','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6781','2104','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6782','2104','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6783','2104','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#6A6A6A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6784','2104','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6786','2105','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6787','2105','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6788','2105','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6789','2105','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6790','2105','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6791','2105','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#6A6A6A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":\"296\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/dfgdfg-1.webp\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6792','2105','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6793','2105','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6794','2106','wcf-flow-id','2035');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6795','2106','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6796','2106','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6797','2106','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6798','2106','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6799','2106','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6800','2106','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6801','2106','_edit_lock','1716483671:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6802','2106','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6803','2106','wcf-dynamic-css-version','1717775417');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6804','2106','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6805','2106','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6806','2106','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6808','2107','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6809','2107','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6810','2107','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6811','2107','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6812','2107','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6813','2107','_elementor_data','[{\"id\":\"6e18c484\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#08AC03\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58dc0f63\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b1b5b4a\",\"settings\":{\"image\":{\"id\":\"296\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/dfgdfg-1.webp\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2b4d20ba\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon\",\"elType\":\"widget\"},{\"id\":\"43614d00\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4b7cd504\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"49d33178\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"81f30b4\",\"settings\":{\"flex_direction\":\"column\",\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"0d9c59a\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e015b17\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"79ff67d9\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"710056f4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e540ace\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6814','2107','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6815','2107','_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6816','2108','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6817','2108','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6818','2108','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6819','2108','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6820','2108','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6821','2108','_elementor_data','[{\"id\":\"2b3c079\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#E0E0E0\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":125,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\"},\"elements\":[{\"id\":\"74e5410\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"91a93c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#DE5801\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a543117\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u0987\\u09ae\\u09aa\\u09cb\\u09b0\\u09cd\\u099f\\u09c7\\u09a1 \\u0997\\u09be\\u09b0\\u09cd\\u09ae\\u09c7\\u09a8\\u09cd\\u099f\\u09b8 \\u09b6\\u09be\\u099f\\u09bf\\u0982 \\u09ab\\u09be\\u0987\\u09a8 \\u0995\\u099f\\u09a8 \\u0993 \\u09ad\\u09bf\\u09b8\\u0995\\u09cb\\u09b8 \\u0995\\u099f\\u09a8 \\u0995\\u09be\\u09aa\\u09dc\\u09c7\\u09b0 \\u0995\\u09c7\\u099c\\u09c1\\u09df\\u09be\\u09b2 \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u0993 \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf,  \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09af\\u09c7 \\u0995\\u09cb\\u09a8\\u09cb \\u0985\\u09a8\\u09c1\\u09b7\\u09cd\\u09a0\\u09be\\u09a8 \\u0993 \\u09aa\\u09be\\u09b0\\u09cd\\u099f\\u09bf\\u09a4\\u09c7 \\u09af\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ac\\u09c7\\u09b7\\u09cd\\u099f \\u099a\\u09df\\u09c7\\u099c \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65bceb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"<s>\\u0986\\u0997\\u09c7\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\u0983 \\u09e7\\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/s>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":573,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":549,\"sizes\":[]},\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"title_color\":\"#7E7E7E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09c1880\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u09b8\\u09c7\\u09b0\\u09be \\u0985\\u09ab\\u09be\\u09b0\\u0983   \\u09e7 \\u09aa\\u09bf\\u09b8\",\"highlighted_text\":\"\\u09e7\\u09ea\\u09eb\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be (\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae  \\u09ab\\u09cd\\u09b0\\u09c0)\",\"marker_color\":\"#DE5801\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Animated Headline\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"7a9cbb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#DE5801\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ace547\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45fb7d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ca67923\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fd702d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0d0c29c\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"image\":{\"id\":\"712\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/04-1-1.jpg\"},\"_id\":\"ac54b46\"},{\"image\":{\"id\":719,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/12-1.jpg\"},\"_id\":\"faf8c2b\"},{\"image\":{\"id\":\"720\",\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/09.jpg\"},\"_id\":\"8ff395b\"},{\"image\":{\"id\":722,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/06-2.jpg\"},\"_id\":\"46e9306\"},{\"image\":{\"id\":724,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/02-1-1.jpg\"},\"_id\":\"bc3960e\"}],\"height\":{\"unit\":\"px\",\"size\":407,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"slide_border_color\":\"#ADA8A8\"},\"elements\":[],\"widgetType\":\"media-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd474e6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F4F3EA\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bb43190\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"940dc12\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09cd\\u09af\\u09c7\\u0995\\u099f\\u09bf \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09bf\\u0995\\u09a8 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u0993\\u09df\\u09be\\u09b8 \\u0995\\u09b0\\u09be, \\u09a4\\u09be\\u0987 \\u0996\\u09c1\\u09ac\\u0987 \\u09b8\\u09ab\\u099f \\u0993 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u09b2\\u09c1\\u0995\\u09b8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\",\"align\":\"center\",\"title_color\":\"#FF7400\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ed746a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09be \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u098f\\u09b0 \\u0995\\u09be\\u09aa\\u09dc \\u0987\\u09ae\\u09aa\\u09cb\\u09b0\\u09cd\\u099f\\u09c7\\u09a1 \\u09b6\\u09be\\u09b0\\u09cd\\u099f\\u09bf\\u0982 \\u09ab\\u09be\\u0987\\u09a8 \\u0995\\u099f\\u09a8\\u0964  \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0995\\u099f\\u09a8 \\u09a4\\u09be\\u0987 \\u0997\\u09b0\\u09ae\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0996\\u09c1\\u09ac-\\u0987 \\u0986\\u09b0\\u09be\\u09ae\\u09a6\\u09be\\u09df\\u0995 \\u098f\\u09ac\\u0982 \\u09b0\\u0982 \\u09a8\\u09b7\\u09cd\\u099f \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u0987\\u09a8\\u09b6\\u09be\\u2014\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u0964\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77693b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09be\\u09aa\\u09dc\\u09c7\\u09b0 \\u09a7\\u09b0\\u09a3 : \\u0987\\u09ae\\u09aa\\u09cb\\u09b0\\u09cd\\u099f\\u09c7\\u09a1 \\u09b6\\u09be\\u09b0\\u09cd\\u099f\\u09bf\\u0982 \\u09ab\\u09be\\u0987\\u09a8 \\u0995\\u099f\\u09a8, 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0995\\u099f\\u09a8 ( \\u0997\\u09b0\\u09ae\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0996\\u09c1\\u09ac-\\u0987 \\u0986\\u09b0\\u09be\\u09ae\\u09a6\\u09be\\u09df\\u0995 )\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"027e6e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fdb66dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6704c5d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":726,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/0112-2-1-1.jpg\"},\"caption\":\"Blue Panjabi\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FFD38C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"322274f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"f50a395\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":728,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/088-1-1-1.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FFD38C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"94239e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"69a7d00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":730,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/055-1-1-1.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FFD38C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a4f5ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b9efc99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"c0260d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":732,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/033-1-1-1.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FFD38C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6d795c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bc7efc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":734,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/111-1-1-1.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FFD38C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"afc7fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5cf6177\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":736,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/0112-1-1-1-1.jpg\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FFD38C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9361b78\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#DE5801\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3482309\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6b7b965\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a788625\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09bf \\u0995\\u09bf \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b \\u09a5\\u09c7\\u0995\\u09c7 \\u09b6\\u09be\\u09b0\\u09cd\\u099f\\u099f\\u09bf \\u0995\\u09bf\\u09a8\\u09be \\u0989\\u099a\\u09bf\\u09ce!\",\"align\":\"left\",\"title_color\":\"#FF7400\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f8c75f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":17,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ca89e3f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" \\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f  \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u09ac\\u09df\\u09c7\\u099c\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af  \\u09ab\\u09c7\\u09b6\\u09be\\u09a8\\u09be\\u09ac\\u09b2 \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u0993 \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09b8\\u099b\\u09c7 \\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1,  \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5933f44\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1  \\u0986\\u09aa\\u09a8\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0993 \\u099a\\u09be\\u09b9\\u09bf\\u09a6\\u09be\\u09b0 \\u0995\\u09a5\\u09be \\u09ae\\u09be\\u09a5\\u09be\\u09df \\u09b0\\u09c7\\u0996\\u09c7  \\u09b0\\u09c1\\u099a\\u09bf\\u09b6\\u09c0\\u09b2 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u0993 \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf\\u09b0 \\u09ae\\u09c7\\u09b2\\u09be \\u09b8\\u09be\\u099c\\u09bf\\u09df\\u09c7\\u099b\\u09c7,\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"8a730af\"},{\"text\":\" \\u09eb \\u099f\\u09bf \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u09aa\\u09cd\\u09b0\\u09bf\\u09a8\\u09cd\\u099f\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u099b\\u09c7 \\u09a8\\u09bf\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6\\u09c7\\u09b0 \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u0993 \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf,,   \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0995\\u099f\\u09a8, \\u0986\\u09b0\\u09be\\u09ae\\u09a6\\u09be\\u09df\\u0995 \\u0995\\u09be\\u09aa\\u09dc\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09df\\u09a4\\u09be \\u0993 \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0997\\u09c7\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09c7 \\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 ,  \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4f9bf5b\"},{\"text\":\"\\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 \\u2764\\ufe0f \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u09b8\\u09ae\\u09cd\\u09ae\\u09be\\u09a8\\u09bf\\u09a4 \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0\\u09c7\\u09b0 \\u09a6\\u09cb\\u09df\\u09be \\u0993 \\u09ad\\u09be\\u09b2\\u09cb\\u09ac\\u09be\\u09b8\\u09be \\u0986\\u09b6\\u09be\\u09ac\\u09be\\u09a6\\u09c0,  \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3b1c925\"},{\"_id\":\"2a2059e\",\"text\":\"\\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u09c7\\u09b0 \\u09b8\\u09c1\\u0987\\u0982 \\u0996\\u09c1\\u09ac\\u0987 \\u09a8\\u09bf\\u0996\\u09c1\\u0981\\u09a4 \\u0993 \\u099f\\u09c7\\u0995\\u09b8\\u0987 \\u0987\\u09a8\\u09b6\\u09be \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9,  \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},{\"_id\":\"e069d9f\",\"text\":\" \\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09b8\\u09cd\\u09a4 \\u098f\\u0995\\u099f\\u09bf  \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b7\\u09cd\\u09a0\\u09be\\u09a8,  \\ud83c\\udf41 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u09c7\\u09b0 \\u09b8\\u09be\\u0987\\u099c \\u098f\\u09ad\\u09c7\\u0987\\u09b2\\u09c7\\u09ac\\u09c7\\u09b2 \\u0986\\u099b\\u09c7,   \\u09ae\\u09bf\\u09a1\\u09bf\\u09df\\u09be\\u09ae, \\u09b2\\u09be\\u09b0\\u09cd\\u099c, \\u098f\\u0995\\u09cd\\u09b8\\u09c7\\u09b2\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},{\"_id\":\"d86e380\",\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a6\\u09c7\\u09b6\\u09bf\\u0993 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 \\u0997\\u09c1\\u09b2\\u09cb\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09ae\\u09a8\\u09cd\\u09ac\\u09df \\u09b0\\u09c7\\u0996\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u09c7\\u09b0 \\u09b8\\u09be\\u0987\\u099c \\u09b0\\u09c7\\u09b6\\u09bf\\u0993 \\u0995\\u09b0\\u09c7\\u099b\\u09bf\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#01CDFF\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_color\":\"#54595F\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":102.5},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"877f6f0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F4F3EA\",\"gap\":\"no\"},\"elements\":[{\"id\":\"3bfc7cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"2\",\"right\":\"20\",\"bottom\":\"2\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[{\"id\":\"5413740\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u0987\\u099c \\u0997\\u09be\\u0987\\u09a1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9de2556\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"style\":\"double\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":15,\"sizes\":[]},\"align\":\"center\",\"color\":\"#DE5801\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b4cace6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table style=\\\"height: 278px;\\\" width=\\\"230\\\"><tbody><tr><th><strong>SIZE (\\u09b8\\u09be\\u0987\\u099c)<\\/strong><\\/th><th><strong>CHEST (\\u09ac\\u09c1\\u0995\\u09c7\\u09b0 \\u09ae\\u09be\\u09aa)<\\/strong><\\/th><th><strong>LEANGTH (\\u09b2\\u09c7\\u09a8\\u09cd\\u09a5)<\\/strong><\\/th><\\/tr><tr><td><strong>M<\\/strong><\\/td><td><strong>38\\\"<\\/strong><\\/td><td><strong>27\\\"<\\/strong><\\/td><\\/tr><tr><td><b>L<\\/b><\\/td><td><strong>40\\\"<\\/strong><\\/td><td><strong>28\\\"<\\/strong><\\/td><\\/tr><tr><td><b>XL<\\/b><\\/td><td><strong>42\\\"<\\/strong><\\/td><td><strong>30\\\"<\\/strong><\\/td><\\/tr><\\/tbody><\\/table>\",\"_css_classes\":\"tsize\",\"custom_css\":\".tsize table {\\r\\n  \\r\\n  border-collapse: collapse;\\r\\n  width: 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n}\\r\\n\\r\\n.tsize th {\\r\\n    padding: 15px 0 !important;\\r\\n    text-align: center !important;\\r\\n}\\r\\n\\r\\n.tsize td, .tsize th {\\r\\n  border: 1px solid #dddddd !important;\\r\\n  text-align: left;\\r\\n  padding: 8px;\\r\\n}\\r\\n\\r\\n.tsize tr:nth-child(odd) {\\r\\n  background-color: #f1f1f1;\\r\\n}\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#DE5801\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100},\"_element_vertical_align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d879c5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_color\":\"#DE5801\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"88e95cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ec6499b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aad6116\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u098f\\u0987 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ab\\u09bf \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"400e0a6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a4c711e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13894d5\",\"elType\":\"widget\",\"settings\":{\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"layout\":\"two-column\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09b0\\u0982 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"order-form\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"heading_text_color\":\"#000000\",\"heading_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"checkout-form\"},{\"id\":\"f92e86c\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6822','2108','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6823','2108','_elementor_controls_usage','a:10:{s:5:\"image\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:7;s:10:\"image_size\";i:1;s:7:\"caption\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:1;s:19:\"image_border_border\";i:7;s:18:\"image_border_width\";i:7;s:18:\"image_border_color\";i:7;s:19:\"image_border_radius\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:5:\"align\";i:10;s:21:\"typography_typography\";i:10;s:22:\"typography_font_family\";i:10;s:20:\"typography_font_size\";i:10;s:22:\"typography_font_weight\";i:10;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:7;s:23:\"text_stroke_text_stroke\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:4;s:21:\"_element_custom_width\";i:2;s:7:\"_margin\";i:2;}s:18:\"_section_transform\";a:3:{s:28:\"_transform_translateX_effect\";i:1;s:28:\"_transform_translateY_effect\";i:1;s:23:\"_transform_scale_effect\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:3:{s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:10:\"after_text\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:1;}s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:6:\"_title\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:14;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:1:{s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:7;s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;}s:21:\"section_shape_divider\";a:3:{s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}s:14:\"section_border\";a:1:{s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:14:\"media-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_slides\";a:3:{s:6:\"slides\";i:1;s:6:\"height\";i:1;s:5:\"width\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_slides_style\";a:4:{s:13:\"space_between\";i:1;s:17:\"slide_border_size\";i:1;s:19:\"slide_border_radius\";i:1;s:18:\"slide_border_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:4:{s:5:\"width\";i:2;s:5:\"align\";i:2;s:4:\"look\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_border\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:5:\"color\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:6:{s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;s:27:\"icon_typography_line_height\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:6:{s:12:\"_css_classes\";i:1;s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6841','2109','_wp_attached_file','2026/06/ai-image-20260608-224817-efc78e612a04de0f0396fc98.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6842','2109','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260608-224817-efc78e612a04de0f0396fc98.png\";s:8:\"filesize\";i:1330598;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6843','2109','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260608-224817-efc78e612a04de0f0396fc98.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6844','2092','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6845','2092','_wp_trash_meta_time','1780979163');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6846','2092','_wp_desired_post_slug','checkout-woo-42');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6847','2100','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6848','2100','_wp_trash_meta_time','1780979163');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6849','2100','_wp_desired_post_slug','thank-you-woo-39');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6850','89','_wp_trash_meta_status','draft');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6851','89','_wp_trash_meta_time','1780979163');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6852','89','_wp_desired_post_slug','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6853','89','_wp_trash_meta_comments_status','a:1:{i:21;s:1:\"1\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6854','2091','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6855','2091','_wp_trash_meta_time','1780979163');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6856','2091','_wp_desired_post_slug','soap-02');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6857','2090','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6858','2090','_wp_trash_meta_time','1780979205');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6859','2090','_wp_desired_post_slug','checkout-woo-41');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6860','2102','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6861','2102','_wp_trash_meta_time','1780979205');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6862','2102','_wp_desired_post_slug','thank-you-woo-40');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6863','2089','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6864','2089','_wp_trash_meta_time','1780979205');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6865','2089','_wp_desired_post_slug','soap');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6868','2110','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6869','2110','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6870','2110','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6871','2110','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6872','2110','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6873','2110','_elementor_data','[{\"id\":\"2b3c079\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#EDCFFF\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":125,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\"},\"elements\":[{\"id\":\"74e5410\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"91a93c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":990,\"url\":\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#DE5801\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a543117\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u0987\\u09ae\\u09aa\\u09cb\\u09b0\\u09cd\\u099f\\u09c7\\u09a1 \\u0997\\u09be\\u09b0\\u09cd\\u09ae\\u09c7\\u09a8\\u09cd\\u099f\\u09b8 \\u09b6\\u09be\\u099f\\u09bf\\u0982 \\u09ab\\u09be\\u0987\\u09a8 \\u0995\\u099f\\u09a8 \\u0993 \\u09ad\\u09bf\\u09b8\\u0995\\u09cb\\u09b8 \\u0995\\u099f\\u09a8 \\u0995\\u09be\\u09aa\\u09dc\\u09c7\\u09b0 \\u0995\\u09c7\\u099c\\u09c1\\u09df\\u09be\\u09b2 \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u0993 \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf,  \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09af\\u09c7 \\u0995\\u09cb\\u09a8\\u09cb \\u0985\\u09a8\\u09c1\\u09b7\\u09cd\\u09a0\\u09be\\u09a8 \\u0993 \\u09aa\\u09be\\u09b0\\u09cd\\u099f\\u09bf\\u09a4\\u09c7 \\u09af\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ac\\u09c7\\u09b7\\u09cd\\u099f \\u099a\\u09df\\u09c7\\u099c \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"title_color\":\"#8F1EFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65bceb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"<s>\\u0986\\u0997\\u09c7\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\u0983 \\u09e7\\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/s>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":573,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":549,\"sizes\":[]},\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"title_color\":\"#7E7E7E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09c1880\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u09b8\\u09c7\\u09b0\\u09be \\u0985\\u09ab\\u09be\\u09b0\\u0983   \\u09e7 \\u09aa\\u09bf\\u09b8\",\"highlighted_text\":\"\\u09e7\\u09ea\\u09eb\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be (\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae  \\u09ab\\u09cd\\u09b0\\u09c0)\",\"marker_color\":\"#DE5801\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Animated Headline\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"7a9cbb9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#DE5801\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ace547\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45fb7d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ca67923\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fd702d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0d0c29c\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"ac54b46\"},{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"faf8c2b\"},{\"image\":{\"id\":1738,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"8ff395b\"},{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"46e9306\"},{\"image\":{\"id\":1728,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/p5xa7.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"bc3960e\"}],\"height\":{\"unit\":\"px\",\"size\":407,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"slide_border_color\":\"#ADA8A8\"},\"elements\":[],\"widgetType\":\"media-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd474e6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#EDCFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bb43190\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"940dc12\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09cd\\u09af\\u09c7\\u0995\\u099f\\u09bf \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09bf\\u0995\\u09a8 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u0993\\u09df\\u09be\\u09b8 \\u0995\\u09b0\\u09be, \\u09a4\\u09be\\u0987 \\u0996\\u09c1\\u09ac\\u0987 \\u09b8\\u09ab\\u099f \\u0993 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u09b2\\u09c1\\u0995\\u09b8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\",\"align\":\"center\",\"title_color\":\"#9A00FF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ed746a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09be \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u098f\\u09b0 \\u0995\\u09be\\u09aa\\u09dc \\u0987\\u09ae\\u09aa\\u09cb\\u09b0\\u09cd\\u099f\\u09c7\\u09a1 \\u09b6\\u09be\\u09b0\\u09cd\\u099f\\u09bf\\u0982 \\u09ab\\u09be\\u0987\\u09a8 \\u0995\\u099f\\u09a8\\u0964  \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0995\\u099f\\u09a8 \\u09a4\\u09be\\u0987 \\u0997\\u09b0\\u09ae\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0996\\u09c1\\u09ac-\\u0987 \\u0986\\u09b0\\u09be\\u09ae\\u09a6\\u09be\\u09df\\u0995 \\u098f\\u09ac\\u0982 \\u09b0\\u0982 \\u09a8\\u09b7\\u09cd\\u099f \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u0987\\u09a8\\u09b6\\u09be\\u2014\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u0964\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#E323E4\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77693b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09be\\u09aa\\u09dc\\u09c7\\u09b0 \\u09a7\\u09b0\\u09a3 : \\u0987\\u09ae\\u09aa\\u09cb\\u09b0\\u09cd\\u099f\\u09c7\\u09a1 \\u09b6\\u09be\\u09b0\\u09cd\\u099f\\u09bf\\u0982 \\u09ab\\u09be\\u0987\\u09a8 \\u0995\\u099f\\u09a8, 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0995\\u099f\\u09a8 ( \\u0997\\u09b0\\u09ae\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0996\\u09c1\\u09ac-\\u0987 \\u0986\\u09b0\\u09be\\u09ae\\u09a6\\u09be\\u09df\\u0995 )\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#ED33F8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9361b78\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#BA01DE\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3482309\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#EDCFFF\"},\"elements\":[{\"id\":\"6b7b965\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a788625\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09bf \\u0995\\u09bf \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b \\u09a5\\u09c7\\u0995\\u09c7 \\u09b6\\u09be\\u09b0\\u09cd\\u099f\\u099f\\u09bf \\u0995\\u09bf\\u09a8\\u09be \\u0989\\u099a\\u09bf\\u09ce!\",\"align\":\"left\",\"title_color\":\"#B500FF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f8c75f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":17,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ca89e3f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" \\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f  \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u09ac\\u09df\\u09c7\\u099c\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af  \\u09ab\\u09c7\\u09b6\\u09be\\u09a8\\u09be\\u09ac\\u09b2 \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u0993 \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09b8\\u099b\\u09c7 \\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1,  \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5933f44\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1  \\u0986\\u09aa\\u09a8\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0993 \\u099a\\u09be\\u09b9\\u09bf\\u09a6\\u09be\\u09b0 \\u0995\\u09a5\\u09be \\u09ae\\u09be\\u09a5\\u09be\\u09df \\u09b0\\u09c7\\u0996\\u09c7  \\u09b0\\u09c1\\u099a\\u09bf\\u09b6\\u09c0\\u09b2 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u0993 \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf\\u09b0 \\u09ae\\u09c7\\u09b2\\u09be \\u09b8\\u09be\\u099c\\u09bf\\u09df\\u09c7\\u099b\\u09c7,\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"8a730af\"},{\"text\":\" \\u09eb \\u099f\\u09bf \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u09aa\\u09cd\\u09b0\\u09bf\\u09a8\\u09cd\\u099f\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u099b\\u09c7 \\u09a8\\u09bf\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6\\u09c7\\u09b0 \\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u0993 \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf,,   \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0995\\u099f\\u09a8, \\u0986\\u09b0\\u09be\\u09ae\\u09a6\\u09be\\u09df\\u0995 \\u0995\\u09be\\u09aa\\u09dc\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09df\\u09a4\\u09be \\u0993 \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0997\\u09c7\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09c7 \\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 ,  \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4f9bf5b\"},{\"text\":\"\\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 \\u2764\\ufe0f \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u09b8\\u09ae\\u09cd\\u09ae\\u09be\\u09a8\\u09bf\\u09a4 \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0\\u09c7\\u09b0 \\u09a6\\u09cb\\u09df\\u09be \\u0993 \\u09ad\\u09be\\u09b2\\u09cb\\u09ac\\u09be\\u09b8\\u09be \\u0986\\u09b6\\u09be\\u09ac\\u09be\\u09a6\\u09c0,  \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3b1c925\"},{\"_id\":\"2a2059e\",\"text\":\"\\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u09c7\\u09b0 \\u09b8\\u09c1\\u0987\\u0982 \\u0996\\u09c1\\u09ac\\u0987 \\u09a8\\u09bf\\u0996\\u09c1\\u0981\\u09a4 \\u0993 \\u099f\\u09c7\\u0995\\u09b8\\u0987 \\u0987\\u09a8\\u09b6\\u09be \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9,  \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},{\"_id\":\"e069d9f\",\"text\":\" \\u09b8\\u09cd\\u09ae\\u09be\\u09b0\\u09cd\\u099f \\u0993\\u09df\\u09be\\u09b0 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09ac\\u09bf\\u09b6\\u09cd\\u09ac\\u09b8\\u09cd\\u09a4 \\u098f\\u0995\\u099f\\u09bf  \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b7\\u09cd\\u09a0\\u09be\\u09a8,  \\ud83c\\udf41 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u09c7\\u09b0 \\u09b8\\u09be\\u0987\\u099c \\u098f\\u09ad\\u09c7\\u0987\\u09b2\\u09c7\\u09ac\\u09c7\\u09b2 \\u0986\\u099b\\u09c7,   \\u09ae\\u09bf\\u09a1\\u09bf\\u09df\\u09be\\u09ae, \\u09b2\\u09be\\u09b0\\u09cd\\u099c, \\u098f\\u0995\\u09cd\\u09b8\\u09c7\\u09b2\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},{\"_id\":\"d86e380\",\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a6\\u09c7\\u09b6\\u09bf\\u0993 \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 \\u0997\\u09c1\\u09b2\\u09cb\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09ae\\u09a8\\u09cd\\u09ac\\u09df \\u09b0\\u09c7\\u0996\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u09c7\\u09b0 \\u09b8\\u09be\\u0987\\u099c \\u09b0\\u09c7\\u09b6\\u09bf\\u0993 \\u0995\\u09b0\\u09c7\\u099b\\u09bf\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#B501FF\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_color\":\"#572463\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":102.5},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"877f6f0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FBF2FF\",\"gap\":\"no\"},\"elements\":[{\"id\":\"3bfc7cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"2\",\"right\":\"20\",\"bottom\":\"2\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[{\"id\":\"5413740\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09be\\u0987\\u099c \\u0997\\u09be\\u0987\\u09a1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9de2556\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"style\":\"double\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":15,\"sizes\":[]},\"align\":\"center\",\"color\":\"#DE5801\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b4cace6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table style=\\\"height: 278px;\\\" width=\\\"230\\\"><tbody><tr><th><strong>SIZE (\\u09b8\\u09be\\u0987\\u099c)<\\/strong><\\/th><th><strong>CHEST (\\u09ac\\u09c1\\u0995\\u09c7\\u09b0 \\u09ae\\u09be\\u09aa)<\\/strong><\\/th><th><strong>LEANGTH (\\u09b2\\u09c7\\u09a8\\u09cd\\u09a5)<\\/strong><\\/th><\\/tr><tr><td><strong>M<\\/strong><\\/td><td><strong>38\\\"<\\/strong><\\/td><td><strong>27\\\"<\\/strong><\\/td><\\/tr><tr><td><b>L<\\/b><\\/td><td><strong>40\\\"<\\/strong><\\/td><td><strong>28\\\"<\\/strong><\\/td><\\/tr><tr><td><b>XL<\\/b><\\/td><td><strong>42\\\"<\\/strong><\\/td><td><strong>30\\\"<\\/strong><\\/td><\\/tr><\\/tbody><\\/table>\",\"_css_classes\":\"tsize\",\"custom_css\":\".tsize table {\\r\\n  \\r\\n  border-collapse: collapse;\\r\\n  width: 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n}\\r\\n\\r\\n.tsize th {\\r\\n    padding: 15px 0 !important;\\r\\n    text-align: center !important;\\r\\n}\\r\\n\\r\\n.tsize td, .tsize th {\\r\\n  border: 1px solid #dddddd !important;\\r\\n  text-align: left;\\r\\n  padding: 8px;\\r\\n}\\r\\n\\r\\n.tsize tr:nth-child(odd) {\\r\\n  background-color: #f1f1f1;\\r\\n}\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#C514C1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#220931\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":99.854},\"_element_vertical_align\":\"flex-start\",\"align\":\"center\",\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d879c5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_color\":\"#DE5801\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"88e95cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ec6499b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aad6116\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u098f\\u0987 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ab\\u09bf \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"400e0a6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a4c711e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13894d5\",\"elType\":\"widget\",\"settings\":{\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"layout\":\"two-column\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09b0\\u0982 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"order-form\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"heading_text_color\":\"#000000\",\"heading_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"checkout-form\"},{\"id\":\"f92e86c\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6874','2110','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6877','2084','_elementor_controls_usage','a:11:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:10;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:5:\"align\";i:10;s:21:\"typography_typography\";i:10;s:22:\"typography_font_family\";i:10;s:20:\"typography_font_size\";i:10;s:22:\"typography_font_weight\";i:10;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:7;s:23:\"text_stroke_text_stroke\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:4;s:21:\"_element_custom_width\";i:2;s:7:\"_margin\";i:2;}s:18:\"_section_transform\";a:3:{s:28:\"_transform_translateX_effect\";i:1;s:28:\"_transform_translateY_effect\";i:1;s:23:\"_transform_scale_effect\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:3:{s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:10:\"after_text\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:1;}s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:6:\"_title\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:8;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:4:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;}s:21:\"section_shape_divider\";a:3:{s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}s:14:\"section_border\";a:1:{s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:3;}}}}s:14:\"media-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_slides\";a:3:{s:6:\"slides\";i:1;s:6:\"height\";i:1;s:5:\"width\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_slides_style\";a:4:{s:13:\"space_between\";i:1;s:17:\"slide_border_size\";i:1;s:19:\"slide_border_radius\";i:1;s:18:\"slide_border_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:4:{s:5:\"width\";i:2;s:5:\"align\";i:2;s:4:\"look\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_border\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:5:\"color\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:6:{s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;s:27:\"icon_typography_line_height\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:7:{s:12:\"_css_classes\";i:1;s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:23:\"_element_vertical_align\";i:1;s:10:\"_flex_size\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:5:\"align\";i:1;}}}}s:13:\"checkout-form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:22:\"section_general_fields\";a:1:{s:6:\"layout\";i:1;}s:37:\"section_product_option_section_fields\";a:4:{s:24:\"product_options_position\";i:1;s:20:\"product_options_skin\";i:1;s:22:\"product_options_images\";i:1;s:33:\"product_option_section_title_text\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:1;s:11:\"_element_id\";i:1;}s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;}}s:5:\"style\";a:4:{s:28:\"section_general_style_fields\";a:4:{s:28:\"global_typography_typography\";i:1;s:29:\"global_typography_font_family\";i:1;s:27:\"global_typography_font_size\";i:1;s:29:\"global_typography_font_weight\";i:1;}s:28:\"section_heading_style_fields\";a:5:{s:29:\"heading_typography_typography\";i:1;s:30:\"heading_typography_font_family\";i:1;s:28:\"heading_typography_font_size\";i:1;s:18:\"heading_text_color\";i:1;s:30:\"heading_typography_font_weight\";i:1;}s:13:\"input_section\";a:3:{s:32:\"input_text_typography_typography\";i:1;s:33:\"input_text_typography_font_family\";i:1;s:31:\"input_text_typography_font_size\";i:1;}s:14:\"button_section\";a:3:{s:29:\"buttons_typography_typography\";i:1;s:30:\"buttons_typography_font_family\";i:1;s:28:\"buttons_typography_font_size\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6878','2084','wcf-checkout-products','a:1:{i:0;a:5:{s:8:\"quantity\";s:1:\"1\";s:13:\"discount_type\";s:0:\"\";s:14:\"discount_value\";s:0:\"\";s:7:\"product\";s:4:\"1775\";s:9:\"unique_id\";s:8:\"ghgws3lh\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6879','2084','wcf-product-options-data','a:1:{s:8:\"ghgws3lh\";a:5:{s:11:\"add_to_cart\";s:3:\"yes\";s:16:\"enable_highlight\";s:2:\"no\";s:14:\"highlight_text\";s:0:\"\";s:12:\"product_name\";s:0:\"\";s:15:\"product_subtext\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6880','2111','wcf-flow-id','2081');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6881','2111','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6882','2111','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6888','2112','_wcf_flow_id','2081');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6889','2111','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6890','2111','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6891','2111','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6892','2111','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6893','2111','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6894','2111','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6895','2111','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6896','2111','_kad_pagebuilder_layout_flag','disabled');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6897','2111','_kad_post_title','hide');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6898','2111','_kad_post_content_style','unboxed');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6899','2111','_kad_post_vertical_padding','hide');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6900','2111','_kad_post_feature','hide');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6901','2111','_kad_post_layout','fullwidth');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6902','2111','_edit_lock','1780991383:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6903','2084','wcf-custom-no-shipping-method-message-toggle','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6904','2084','wcf-no-shipping-method-message','There are no shipping options available. Please ensure that your address has been entered correctly, or contact us if you need any help.');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6905','2084','wcf-order-review-summary-position','top');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6906','2084','wcf-instant-checkout-shipping-options-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6910','2113','_wcf_flow_id','2081');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6920','2084','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6921','2084','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6922','2084','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6923','2115','_wcf_flow_id','2081');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6925','2117','_wcf_flow_id','2081');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6926','2118','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6927','2118','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6928','2118','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6929','2118','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6930','2118','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6932','2111','_elementor_data','[{\"id\":\"025f8df\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"d6879d1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"html\":\"<!DOCTYPE html>\\r\\n<html lang=\\\"bn\\\">\\r\\n<head>\\r\\n<meta charset=\\\"UTF-8\\\">\\r\\n<meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\r\\n<title>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6 - \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u09b8\\u09ab\\u09b2<\\/title>\\r\\n\\r\\n<style>\\r\\n*{\\r\\n    margin:0;\\r\\n    padding:0;\\r\\n    box-sizing:border-box;\\r\\n    font-family: Arial, sans-serif;\\r\\n}\\r\\n\\r\\nbody{\\r\\n    background:#f5f7fa;\\r\\n    display:flex;\\r\\n    justify-content:center;\\r\\n    align-items:center;\\r\\n    min-height:100vh;\\r\\n    padding:20px;\\r\\n}\\r\\n\\r\\n.thankyou-box{\\r\\n    background:#fff;\\r\\n    max-width:500px;\\r\\n    width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n    text-align:center;\\r\\n    padding:40px 30px;\\r\\n    border-radius:15px;\\r\\n    box-shadow:0 10px 30px rgba(0,0,0,0.1);\\r\\n}\\r\\n\\r\\n.success-icon{\\r\\n    width:80px;\\r\\n    height:80px;\\r\\n    background:#22c55e;\\r\\n    color:#fff;\\r\\n    font-size:40px;\\r\\n    border-radius:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n    display:flex;\\r\\n    align-items:center;\\r\\n    justify-content:center;\\r\\n    margin:0 auto 20px;\\r\\n}\\r\\n\\r\\nh1{\\r\\n    color:#22c55e;\\r\\n    margin-bottom:15px;\\r\\n}\\r\\n\\r\\np{\\r\\n    color:#555;\\r\\n    line-height:1.7;\\r\\n    margin-bottom:12px;\\r\\n}\\r\\n\\r\\n.order-info{\\r\\n    background:#f8fafc;\\r\\n    padding:15px;\\r\\n    border-radius:10px;\\r\\n    margin:20px 0;\\r\\n    color:#333;\\r\\n}\\r\\n\\r\\n.btn{\\r\\n    display:inline-block;\\r\\n    background:#22c55e;\\r\\n    color:#fff;\\r\\n    text-decoration:none;\\r\\n    padding:12px 25px;\\r\\n    border-radius:8px;\\r\\n    margin-top:10px;\\r\\n    transition:.3s;\\r\\n}\\r\\n\\r\\n.btn:hover{\\r\\n    background:#16a34a;\\r\\n}\\r\\n<\\/style>\\r\\n<\\/head>\\r\\n<body>\\r\\n\\r\\n<div class=\\\"thankyou-box\\\">\\r\\n\\r\\n    <div class=\\\"success-icon\\\">\\u2713<\\/div>\\r\\n\\r\\n    <h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6!<\\/h1>\\r\\n\\r\\n    <p>\\r\\n        \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u09c7\\u099b\\u09c7\\u0964\\r\\n    <\\/p>\\r\\n\\r\\n \\r\\n\\r\\n    <p>\\r\\n        \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0996\\u09c1\\u09ac \\u09b6\\u09c0\\u0998\\u09cd\\u09b0\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09ac\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\\u0964\\r\\n    <\\/p>\\r\\n \\r\\n    <a href=\\\"\\/\\\" class=\\\"btn\\\">\\u09b9\\u09cb\\u09ae \\u09aa\\u09c7\\u099c\\u09c7 \\u09ab\\u09bf\\u09b0\\u09c7 \\u09af\\u09be\\u09a8<\\/a>\\r\\n\\r\\n<\\/div>\\r\\n\\r\\n<\\/body>\\r\\n<\\/html>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6933','2119','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6934','2119','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6935','2119','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6936','2119','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6937','2119','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6939','2119','_elementor_data','[{\"id\":\"2ebce51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"6ca6e2a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"025f8df\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"d6879d1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"html\":\"<!DOCTYPE html>\\r\\n<html lang=\\\"bn\\\">\\r\\n<head>\\r\\n<meta charset=\\\"UTF-8\\\">\\r\\n<meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\r\\n<title>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6 - \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u09b8\\u09ab\\u09b2<\\/title>\\r\\n\\r\\n<style>\\r\\n*{\\r\\n    margin:0;\\r\\n    padding:0;\\r\\n    box-sizing:border-box;\\r\\n    font-family: Arial, sans-serif;\\r\\n}\\r\\n\\r\\nbody{\\r\\n    background:#f5f7fa;\\r\\n    display:flex;\\r\\n    justify-content:center;\\r\\n    align-items:center;\\r\\n    min-height:100vh;\\r\\n    padding:20px;\\r\\n}\\r\\n\\r\\n.thankyou-box{\\r\\n    background:#fff;\\r\\n    max-width:500px;\\r\\n    width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n    text-align:center;\\r\\n    padding:40px 30px;\\r\\n    border-radius:15px;\\r\\n    box-shadow:0 10px 30px rgba(0,0,0,0.1);\\r\\n}\\r\\n\\r\\n.success-icon{\\r\\n    width:80px;\\r\\n    height:80px;\\r\\n    background:#22c55e;\\r\\n    color:#fff;\\r\\n    font-size:40px;\\r\\n    border-radius:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n    display:flex;\\r\\n    align-items:center;\\r\\n    justify-content:center;\\r\\n    margin:0 auto 20px;\\r\\n}\\r\\n\\r\\nh1{\\r\\n    color:#22c55e;\\r\\n    margin-bottom:15px;\\r\\n}\\r\\n\\r\\np{\\r\\n    color:#555;\\r\\n    line-height:1.7;\\r\\n    margin-bottom:12px;\\r\\n}\\r\\n\\r\\n.order-info{\\r\\n    background:#f8fafc;\\r\\n    padding:15px;\\r\\n    border-radius:10px;\\r\\n    margin:20px 0;\\r\\n    color:#333;\\r\\n}\\r\\n\\r\\n.btn{\\r\\n    display:inline-block;\\r\\n    background:#22c55e;\\r\\n    color:#fff;\\r\\n    text-decoration:none;\\r\\n    padding:12px 25px;\\r\\n    border-radius:8px;\\r\\n    margin-top:10px;\\r\\n    transition:.3s;\\r\\n}\\r\\n\\r\\n.btn:hover{\\r\\n    background:#16a34a;\\r\\n}\\r\\n<\\/style>\\r\\n<\\/head>\\r\\n<body>\\r\\n\\r\\n<div class=\\\"thankyou-box\\\">\\r\\n\\r\\n    <div class=\\\"success-icon\\\">\\u2713<\\/div>\\r\\n\\r\\n    <h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6!<\\/h1>\\r\\n\\r\\n    <p>\\r\\n        \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u09c7\\u099b\\u09c7\\u0964\\r\\n    <\\/p>\\r\\n\\r\\n \\r\\n\\r\\n    <p>\\r\\n        \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0996\\u09c1\\u09ac \\u09b6\\u09c0\\u0998\\u09cd\\u09b0\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09ac\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\\u0964\\r\\n    <\\/p>\\r\\n \\r\\n    <a href=\\\"\\/\\\" class=\\\"btn\\\">\\u09b9\\u09cb\\u09ae \\u09aa\\u09c7\\u099c\\u09c7 \\u09ab\\u09bf\\u09b0\\u09c7 \\u09af\\u09be\\u09a8<\\/a>\\r\\n\\r\\n<\\/div>\\r\\n\\r\\n<\\/body>\\r\\n<\\/html>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6940','2111','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6954','2121','_wp_attached_file','2026/06/ChatGPT-Image-Jun-9-2026-11_23_18-AM.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6955','2121','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1122;s:6:\"height\";i:1402;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-9-2026-11_23_18-AM.png\";s:8:\"filesize\";i:2142047;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6956','2122','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6957','2122','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6958','2122','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6959','2122','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6960','2122','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6961','2122','_elementor_data','[{\"id\":\"dcf224e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"shape_divider_bottom\":\"clouds\"},\"elements\":[{\"id\":\"db69026\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u09cd\\u09af\\u09be\\u09b8\\u09bf\\u09a1\\u09bf\\u099f\\u09bf, \\u09aa\\u09c7\\u09aa\\u099f\\u09bf\\u0995 \\u0986\\u09b2\\u09b8\\u09be\\u09b0 \\u0993 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u09c7 <span style=\\\"color: red\\\">\\u201c\\u09b8\\u09bf\\u09a1 \\u09b6\\u09b0\\u09ac\\u09a4\\u201d<\\/span>\\n\\n  \\u0996\\u09c1\\u09ac\\u0987 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\n\",\"align\":\"center\",\"title_color\":\"#10A31F\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"547188c4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70ee83e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"27991ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09a8\\u09c7\\u0995\\u09c7\\u0987 \\u09a6\\u09c0\\u09b0\\u09cd\\u0998\\u09a6\\u09bf\\u09a8 \\u09af\\u09be\\u09ac\\u09ce \\u09aa\\u09c7\\u099f\\u09c7\\u09b0 \\u09a8\\u09be\\u09a8\\u09be \\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09ad\\u09c1\\u0997\\u099b\\u09c7\\u09a8? \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7 \\u0995\\u09b0\\u09c7, \\u09af\\u09be\\u09b0\\u09be \\u0995\\u09cb-\\u09b7\\u09cd\\u09a0-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u09c7; \\u09a4\\u09be\\u09b0\\u09be \\u09ac\\u09c7\\u09b6\\u09bf\\u09b0\\u09ad\\u09be\\u0997 \\u09b8\\u09ae\\u09df\\u0987 \\u09b2\\u099c\\u09cd\\u099c\\u09be\\u09df \\u098f \\u09ae\\u09be\\u09b0\\u09be\\u09a4\\u09cd\\u09ae\\u0995 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u0995\\u09a5\\u09be \\u09b6\\u09c7\\u09df\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u09a8 \\u09a8\\u09be\\u0964 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u09a4\\u09bf\\u09a8\\u09bf \\u09a8\\u09bf\\u099c\\u09c7\\u0987 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u09aa\\u09be\\u09df\\u09c7 \\u0995\\u09c1\\u09dc\\u09be\\u09b2 \\u09ae\\u09be\\u09b0\\u099b\\u09c7\\u09a8\\u0964\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"461bf7de\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3954a96\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09e7\\u09e7\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#F30303\",\"title_color\":\"#050505\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":40,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"b9c93ae\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09ef\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"marker_color\":\"#F30303\",\"title_color\":\"#07AF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#FC0707\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"stroke_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"words_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"5ad041da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2121,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-9-2026-11_23_18-AM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44dc169b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7d217dc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8e8602\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09bf\\u09a1 \\u09b6\\u09b0\\u09ac\\u09a4 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be-\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"18\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54448d37\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"13558f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"279c60d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09c0\\u099c \\u0995\\u09ae\\u09cd\\u09ac\\u09cb \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u09ae\\u09c7\\u099f\\u09be\\u09ac\\u09b2\\u09bf\\u099c\\u09ae \\u09ac\\u09be\\u09dc\\u09bf\\u09df\\u09c7 \\u09a4\\u09c1\\u09b2\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u09a4\\u09c7 \\u0989\\u09aa\\u09b8\\u09cd\\u09a5\\u09bf\\u09a4 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0996\\u09c1\\u09ac\\u0987 \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#FE0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9346196\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0995\\u09af\\u09bc\\u09c7\\u0995\\u099f\\u09bf \\u0997\\u09ac\\u09c7\\u09b7\\u09a3\\u09be\\u09af\\u09bc \\u09a6\\u09c7\\u0996\\u09be \\u0997\\u09c7\\u099b\\u09c7, \\u09a4\\u09cb\\u0995\\u09ae\\u09be\\u09b0 \\u09a6\\u09be\\u09a8\\u09be \\u09a6\\u09c7\\u09b9\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0 \\u0995\\u09cb\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u099b\\u09be\\u09a1\\u09bc\\u09be\\u0993 \\u09b0\\u0995\\u09cd\\u09a4\\u09c7 \\u099a\\u09b0\\u09cd\\u09ac\\u09bf\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u0995\\u09ae\\u09be\\u09a8\\u09cb, \\u09a1\\u09be\\u09af\\u09bc\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3, \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u09b9\\u09be\\u09b0\\u09cd\\u099f \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09b0\\u09be\\u0996\\u09c7\\u0964 \\u09b9\\u09be\\u09a1\\u09bc \\u0997\\u09a0\\u09a8\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b240c08\"},{\"text\":\"\\u09b0\\u0995\\u09cd\\u09a4\\u09c7\\u09b0 \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0 \\u09a4\\u09cb\\u0995\\u09ae\\u09be\\u0964 \\u09ae\\u09c2\\u09b2\\u09a4 \\u09a6\\u09c7\\u09b9\\u09c7\\u09b0 \\u09ac\\u09bf\\u09aa\\u09be\\u0995\\u0995\\u09cd\\u09b0\\u09bf\\u09df\\u09be \\u09a7\\u09c0\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a6\\u09c7\\u09df \\u09a4\\u09cb\\u0995\\u09ae\\u09be\\u0964 \\u09ab\\u09b2\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09ac\\u09cb\\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u0995\\u09c7 \\u0997\\u09cd\\u09b2\\u09c1\\u09c1\\u0995\\u09cb\\u099c\\u09c7 \\u09b0\\u09c2\\u09aa\\u09be\\u09a8\\u09cd\\u09a4\\u09b0\\u09c7\\u09b0 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09be \\u09b8\\u09b9\\u099c \\u09b9\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c67dfa7\"},{\"text\":\"\\u0995\\u09cb-\\u09b7\\u09cd\\u099f-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0996\\u09c1\\u09ac\\u0987 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0 \\u09a4\\u09cb\\u0995\\u09ae\\u09be\\u0964 \\u09b8\\u09be\\u09ae\\u09be\\u09a8\\u09cd\\u09af \\u09a4\\u09cb\\u0995\\u09ae\\u09be \\u0985\\u09b2\\u09cd\\u09aa \\u09aa\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09ad\\u09bf\\u099c\\u09bf\\u09df\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u0995\\u09bf\\u099b\\u09c1\\u0995\\u09cd\\u09b7\\u09a3 \\u09aa\\u09b0 \\u09a4\\u09be \\u09a6\\u09c1\\u09a7\\u09c7 \\u09ae\\u09bf\\u09b6\\u09bf\\u09df\\u09c7 \\u0996\\u09c7\\u09b2\\u09c7\\u0993 \\u0989\\u09aa\\u0995\\u09be\\u09b0 \\u09aa\\u09be\\u0993\\u09df\\u09be \\u09af\\u09be\\u09ac\\u09c7\\u0964 \\u098f\\u099f\\u09bf \\u09b9\\u099c\\u09ae\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u0993 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09a8\\u09be\\u09a8\\u09be \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09a4\\u09cb\\u0995\\u09ae\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964 \\u098f\\u099f\\u09bf \\u09a8\\u09be\\u09a8\\u09be \\u099a\\u09b0\\u09cd\\u09ae\\u09b0\\u09cb\\u0997 \\u09a8\\u09bf\\u09b0\\u09be\\u09ae\\u09df\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u099f\\u09bf \\u098f\\u0995\\u099c\\u09bf\\u09ae\\u09be \\u0993 \\u09b8\\u09cb\\u09b0\\u09bf\\u09df\\u09be\\u09b8\\u09bf\\u09b8 \\u09a8\\u09bf\\u09b0\\u09be\\u09ae\\u09df\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u0964 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u099f\\u09bf \\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u0996\\u09be\\u0993\\u09df\\u09be \\u09af\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d971aea\"},{\"text\":\"\\u09a4\\u09cb\\u0995\\u09ae\\u09be \\u09ac\\u09c0\\u099c\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09a0\\u09be\\u09a3\\u09cd\\u09a1\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c0 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8\\u0964 \\u098f\\u099f\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c7\\u09b9\\u0995\\u09c7 \\u09a0\\u09be\\u09a3\\u09cd\\u09a1\\u09be\\u09b0 \\u09ac\\u09bf\\u09b0\\u09c1\\u09a6\\u09cd\\u09a7\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u0997\\u09dc\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u09b8\\u09b0\\u09cd\\u09a6\\u09bf-\\u0995\\u09be\\u09b6\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09a6\\u09c2\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\u09b2\\u09c7 \\u09a4\\u09be\\u0987 \\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u09a4\\u09cb\\u0995\\u09ae\\u09be \\u0996\\u09be\\u0993\\u09df\\u09be \\u09af\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"3e5bd2a\"},{\"text\":\"\\u09a4\\u09c1\\u09b2\\u09b8\\u09c0\\u09b0 \\u09aa\\u09be\\u09a4\\u09be\\u0987 \\u09a8\\u09df, \\u09a4\\u09c1\\u09b2\\u09b8\\u09c0\\u09b0 \\u09ac\\u09c0\\u099c\\u0993 \\u09a6\\u09be\\u09b0\\u09c1\\u09a3 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\u0964 \\u09a4\\u09c1\\u09b2\\u09b8\\u09c0 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u09ae\\u09a4\\u09cb\\u0987 \\u09a4\\u09c1\\u09b2\\u09b8\\u09c0 \\u09ac\\u09c0\\u099c\\u0993 \\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09be\\u09a1\\u09bc\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u09af\\u09c7\\u09ae\\u09a8- \\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3 \\u09b8\\u09b0\\u09cd\\u09a6\\u09bf \\u098f\\u09ac\\u0982 \\u09ab\\u09cd\\u09b2\\u09c1 \\u099c\\u09be\\u09a4\\u09c0\\u09af\\u09bc \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a5\\u09c7\\u0995\\u09c7\\u0993 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09c7\\u09a4\\u09c7 \\u098f\\u0987 \\u09ac\\u09c0\\u099c\\u09c7\\u09b0 \\u099c\\u09c1\\u09a1\\u09bc\\u09bf \\u09ae\\u09c7\\u09b2\\u09be \\u09ad\\u09be\\u09b0\\u0964 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09a4\\u09be-\\u0987 \\u09a8\\u09af\\u09bc, \\u09aa\\u09c7\\u09b6\\u09c0\\u09a4\\u09c7 \\u099f\\u09be\\u09a8 \\u09aa\\u09a1\\u09bc\\u09b2\\u09c7\\u0993 \\u098f\\u0987 \\u09ac\\u09c0\\u099c \\u0996\\u09c7\\u09b2\\u09c7 \\u0986\\u09b0\\u09be\\u09ae \\u09aa\\u09be\\u0993\\u09df\\u09be \\u09af\\u09be\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d2eaf79\"},{\"text\":\"\\u0995\\u09cb-\\u09b7\\u09cd\\u09a0-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7: \\u0987\\u09b8\\u09ac\\u0997\\u09c1\\u09b2 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7 \\u09a6\\u09be\\u09b0\\u09c1\\u09a3 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u09a4\\u09c7 \\u0989\\u09aa\\u09b8\\u09cd\\u09a5\\u09bf\\u09a4 \\u0985\\u09a6\\u09cd\\u09b0\\u09ac\\u09a3\\u09c0\\u09df \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09b0\\u09cb\\u0997\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09a8\\u09b0\\u09ae \\u0995\\u09b0\\u09c7 \\u09a6\\u09c7\\u09df\\u0964 \\u09ab\\u09b2\\u09c7 \\u0996\\u09c1\\u09ac \\u09b8\\u09b9\\u099c\\u09c7\\u0987 \\u0987\\u09b2\\u09bf\\u09ae\\u09bf\\u09a8\\u09c7\\u09b6\\u09a8 \\u09b8\\u09ae\\u09cd\\u09ad\\u09ac \\u09b9\\u09df\\u0964 \\u09a4\\u09be\\u0987 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u0998\\u09c1\\u09ae\\u09be\\u09a8\\u09cb\\u09b0 \\u0986\\u0997\\u09c7 \\u09e8 \\u099a\\u09be\\u09ae\\u099a \\u0987\\u09b8\\u09ac\\u0997\\u09c1\\u09b2\\u09c7\\u09b0 \\u09ad\\u09c1\\u09b8\\u09bf \\u0993 \\u09e7 \\u0997\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c1\\u09b8\\u09c1\\u09ae \\u0997\\u09b0\\u09ae \\u09a6\\u09c1\\u09a7 \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u0995\\u09c7\\u0989 \\u09af\\u09a6\\u09bf \\u09b0\\u09cb\\u0997\\u099f\\u09bf \\u09aa\\u09c1\\u09b7\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\\u09a8, \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u0995\\u09cb\\u09b2\\u09a8 \\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09b8\\u09be\\u09b0 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ad\\u09be\\u09ac\\u09a8\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d420d6c\"},{\"text\":\"\\u09b0\\u0995\\u09cd\\u09a4\\u09c7 \\u0995\\u09cb\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2 \\u0995\\u09ae\\u09be\\u09df: \\u098f \\u0987\\u09b8\\u09ac\\u0997\\u09c1\\u09b2 \\u0996\\u09c7\\u09b2\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0985\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09c7 \\u098f\\u0995\\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09a4\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09df\\u0964 \\u09af\\u09be \\u0995\\u09cb\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2 \\u09b6\\u09cb\\u09b7\\u09a3\\u09c7 \\u09ac\\u09be\\u09a7\\u09be \\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ab\\u09b2\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b0\\u0995\\u09cd\\u09a4\\u09c7 \\u0995\\u09cb\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u0995\\u09ae\\u09c7 \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u0985\\u09ac\\u09b8\\u09cd\\u09a5\\u09be\\u09df \\u09ab\\u09bf\\u09b0\\u09c7 \\u0986\\u09b8\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c0\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a6\\u09be\\u09b0\\u09c1\\u09a3 \\u098f\\u0995\\u099f\\u09bf \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u098f\\u099f\\u09bf\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2592254\"},{\"text\":\"\\u0993\\u099c\\u09a8 \\u0995\\u09ae\\u09be\\u09df: \\u098f\\u09a4\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0989\\u09aa\\u09b8\\u09cd\\u09a5\\u09bf\\u09a4 \\u09a5\\u09be\\u0995\\u09be\\u09df \\u09b9\\u099c\\u09ae \\u09aa\\u09cd\\u09b0\\u0995\\u09cd\\u09b0\\u09bf\\u09df\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u09a7\\u09c0\\u09b0\\u0997\\u09a4\\u09bf\\u09a4\\u09c7 \\u09b9\\u09df\\u0964 \\u09a4\\u09be\\u0987 \\u0995\\u09cd\\u09b7\\u09c1\\u09a7\\u09be \\u09b2\\u09be\\u0997\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u0995\\u09ae\\u0964 \\u098f\\u099f\\u09bf \\u0996\\u09c7\\u09b2\\u09c7 \\u0993\\u099c\\u09a8 \\u0995\\u09ae\\u09be\\u09a8\\u09cb \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09b9\\u099c \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"924a60d\"},{\"text\":\"\\u098f\\u0987 \\u09ac\\u09c0\\u099c\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09a5\\u09be\\u0995\\u09c7 \\u09af\\u09be \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u0993 \\u09ac\\u09a6\\u09b9\\u099c\\u09ae \\u09a5\\u09c7\\u0995\\u09c7 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09c7\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09c7\\u099f \\u09ac\\u09cd\\u09af\\u09be\\u09a5\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0996\\u09c1\\u09ac\\u0987 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\u0964 \\u09b9\\u09be\\u09b2\\u09bf\\u09ae \\u09ac\\u09c0\\u099c \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ad\\u09be\\u09b2\\u09cb \\u0989\\u09ce\\u09b8\\u0964 \\u09ab\\u09b2\\u09c7 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a4\\u09c3\\u09aa\\u09cd\\u09a4\\u09bf\\u09a6\\u09be\\u09df\\u0995 \\u09b9\\u09df\\u09c7 \\u0993\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2de9a4a\"},{\"text\":\"\\u09b9\\u09be\\u09b2\\u09bf\\u09ae \\u09ac\\u09c0\\u099c \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0996\\u09c1\\u09ac\\u0987 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0\\u0964 \\u098f\\u099f\\u09bf \\u09b2\\u09cb\\u09b9\\u09be\\u09b0 \\u0989\\u099a\\u09cd\\u099a \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09b2\\u09be\\u09b2 \\u09b0\\u0995\\u09cd\\u09a4 \\u0995\\u09cb\\u09b7\\u09c7\\u09b0 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8\\u0995\\u09c7 \\u0989\\u09ce\\u09b8\\u09be\\u09b9 \\u09a6\\u09c7\\u09af\\u09bc \\u098f\\u09ac\\u0982 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09b9\\u09bf\\u09ae\\u09cb\\u0997\\u09cd\\u09b2\\u09cb\\u09ac\\u09bf\\u09a8 \\u098f\\u09b0 \\u09b8\\u09cd\\u09a4\\u09b0 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964 \\u09ab\\u09b2\\u09c7 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be \\u09aa\\u09cd\\u09b0\\u0995\\u09cb\\u09aa \\u09a5\\u09c7\\u0995\\u09c7 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"dbca928\"},{\"text\":\"\\u09b9\\u09be\\u09b2\\u09bf\\u09ae \\u09ac\\u09c0\\u099c \\u0986\\u09cd\\u09af\\u09a8\\u09cd\\u099f\\u09bf \\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u0993 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7\\u0964 \\u09a4\\u09be\\u0987 \\u098f\\u099f\\u09bf \\u09b6\\u09b0\\u09c0\\u09b0\\u0995\\u09c7 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u099c\\u09c0\\u09ac\\u09be\\u09a3\\u09c1 \\u098f\\u09b0 \\u09b8\\u0982\\u0995\\u09cd\\u09b0\\u09ae\\u09a3 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"e24e91e\"},{\"text\":\"\\u099c\\u09cd\\u09ac\\u09b0, \\u09b8\\u09b0\\u09cd\\u09a6\\u09bf, \\u0997\\u09b2\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09a5\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7- \\u09b9\\u09be\\u09b2\\u09bf\\u09ae \\u09ac\\u09c0\\u099c \\u0986\\u09a8\\u09cd\\u099f\\u09bf \\u09ae\\u09be\\u0987\\u0995\\u09cd\\u09b0\\u09cb\\u09ac\\u09bf\\u09af\\u09bc\\u09be\\u09b2 \\u09ac\\u09c8\\u09b6\\u09bf\\u09b7\\u09cd\\u099f\\u09cd\\u09af \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u099f\\u09bf \\u099c\\u09cd\\u09ac\\u09b0 \\u09b8\\u09b0\\u09cd\\u09a6\\u09bf \\u09b8\\u09b9 \\u09b6\\u09cd\\u09ac\\u09be\\u09b8 \\u09aa\\u09cd\\u09b0\\u09b6\\u09cd\\u09ac\\u09be\\u09b8 \\u098f\\u09b0 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"88dfd2e\"},{\"text\":\"\\u09ae\\u09a7\\u09c1 \\u09b6\\u09bf\\u09b6\\u09c1\\u09a6\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc\\u09c7\\u09b0 \\u0997\\u09a0\\u09a8 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7, \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u098f\\u09ac\\u0982 \\u09b8\\u09cd\\u09ae\\u09c3\\u09a4\\u09bf\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d481b8c\"},{\"text\":\"\\u09b0\\u09be\\u09a4\\u09c7\\u09b0 \\u09ac\\u09c7\\u09b2\\u09be \\u09a6\\u09c1\\u09a7\\u09c7\\u09b0 \\u09b8\\u0999\\u09cd\\u0997\\u09c7 \\u09ae\\u09a7\\u09c1 \\u09ae\\u09bf\\u09b6\\u09bf\\u09df\\u09c7 \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09a8\\u09bf\\u09a6\\u09cd\\u09b0\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"4004081\"},{\"text\":\"\\u09b6\\u09be\\u09b0\\u09c0\\u09b0\\u09bf\\u0995 \\u09a6\\u09c2\\u09b0\\u09cd\\u09ac\\u09b2\\u09a4\\u09be \\u09a6\\u09c2\\u09b0\\u09c0\\u0995\\u09b0\\u09a3\\u09c7 \\u09ae\\u09a7\\u09c1\\u09b0 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09f7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"db20cb3\"},{\"text\":\"\\u09ae\\u09a7\\u09c1\\u09a4\\u09c7 \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09ae\\u09be\\u09a8 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u2013\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09b0\\u0982 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u09a4\\u09be\\u09b0\\u09c1\\u09a3\\u09cd\\u09af\\u09a4\\u09be \\u09ac\\u099c\\u09be\\u09af\\u09bc\\u09c7 \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09c7 \\u09f7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"9537b36\"},{\"text\":\"\\u09b0\\u0995\\u09cd\\u09a4\\u09b6\\u09c2\\u09a8\\u09cd\\u09af\\u09a4\\u09be \\u0993 \\u0995\\u09cb-\\u09b7\\u09cd\\u09a0-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7: \\u098f\\u09a4\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09ac\\u09bf-\\u0995\\u09ae\\u09aa\\u09cd\\u09b2\\u09c7\\u0995\\u09cd\\u09b8, \\u09af\\u09be \\u09b0\\u0995\\u09cd\\u09a4\\u09b6\\u09c2\\u09a8\\u09cd\\u09af\\u09a4\\u09be \\u0993 \\u0995\\u09cb-\\u09b7\\u09cd\\u09a0-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"821ed13\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7d5622cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u09ef\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\",\"align\":\"center\",\"title_color\":\"#07AF00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"bounceIn\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e06460d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7caafb81\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#07AF00\"},\"elements\":[{\"id\":\"72380d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e3333a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"195edaef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"725fccf4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6410ccf5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7, \\u09a6\\u09c7\\u0996\\u09c7,\\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f\\u09c7 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\"},{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"7dcd5f8\"},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09c1\\u09b0\\u09bf\\u09df\\u09be\\u09b0\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"727b43f\"},{\"text\":\"\\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09b8\\u09ae\\u09df \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"25ca027\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46ec3f6a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"77705a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3e45ea19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8    01819000000\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be570b3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\"},\"elements\":[{\"id\":\"4bea656d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#07AF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"37f3da9f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2121,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-9-2026-11_23_18-AM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37676298\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#07AF00\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a03de62\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b45c6fd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4c7aa7f\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6962','2122','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6964','2079','_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:8;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:5:\"align\";i:8;s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_line_height\";i:3;s:22:\"typography_font_family\";i:7;s:28:\"text_stroke_text_stroke_type\";i:1;s:23:\"text_stroke_text_stroke\";i:1;s:22:\"typography_font_weight\";i:6;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:3;s:17:\"_background_color\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_shape_divider\";a:1:{s:20:\"shape_divider_bottom\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:2;s:4:\"link\";i:2;s:4:\"size\";i:2;s:13:\"selected_icon\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:29:\"button_background_hover_color\";i:2;s:15:\"hover_animation\";i:2;s:22:\"typography_font_family\";i:2;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:1;s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:10:\"after_text\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:2:{s:12:\"marker_color\";i:2;s:12:\"stroke_width\";i:1;}s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_font_weight\";i:2;s:11:\"words_color\";i:2;s:27:\"words_typography_typography\";i:2;s:28:\"words_typography_font_family\";i:2;s:28:\"words_typography_font_weight\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:2;s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:2;s:18:\"image_border_color\";i:2;s:19:\"image_border_radius\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:3;s:3:\"gap\";i:6;s:6:\"layout\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:4;s:11:\"_element_id\";i:1;s:11:\"css_classes\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}s:14:\"section_border\";a:1:{s:13:\"border_border\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:2;s:7:\"divider\";i:2;}s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;s:24:\"icon_self_vertical_align\";i:2;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:13:\"checkout-form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_general_fields\";a:1:{s:6:\"layout\";i:1;}}s:5:\"style\";a:1:{s:28:\"section_general_style_fields\";a:4:{s:28:\"global_typography_typography\";i:1;s:29:\"global_typography_font_family\";i:1;s:27:\"global_typography_font_size\";i:1;s:29:\"global_typography_font_weight\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6965','2123','_edit_last','17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6966','2123','_edit_lock','1781108123:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6967','2123','_thumbnail_id','2163');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6968','2123','_pys_conversion_label_settings','a:3:{s:6:\"enable\";b:0;s:5:\"label\";s:0:\"\";s:2:\"id\";s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6969','2123','cartflows_redirect_flow_id','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6970','2123','cartflows_add_to_cart_text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6971','2123','total_sales','2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6972','2123','_tax_status','taxable');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6973','2123','_tax_class','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6974','2123','_manage_stock','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6975','2123','_backorders','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6976','2123','_sold_individually','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6977','2123','_virtual','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6978','2123','_downloadable','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6979','2123','_download_limit','-1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6980','2123','_download_expiry','-1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6981','2123','_stock',NULL);
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6982','2123','_stock_status','instock');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6983','2123','_wc_average_rating','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6984','2123','_wc_review_count','0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6985','2123','_product_version','9.2.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6986','2123','_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6987','2123','_kad_post_transparent','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6988','2123','_kad_post_layout','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6989','2123','_kad_post_content_style','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6990','2123','_kad_post_vertical_padding','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6991','2123','_regular_price','990');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6992','2123','_price','990');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6993','2079','wcf-checkout-products','a:1:{i:0;a:5:{s:8:\"quantity\";s:1:\"1\";s:13:\"discount_type\";s:0:\"\";s:14:\"discount_value\";s:0:\"\";s:7:\"product\";s:4:\"2123\";s:9:\"unique_id\";s:8:\"d51pmq3f\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6994','2079','wcf-product-options-data','a:1:{s:8:\"d51pmq3f\";a:5:{s:16:\"enable_highlight\";s:2:\"no\";s:14:\"highlight_text\";s:0:\"\";s:12:\"product_name\";s:0:\"\";s:15:\"product_subtext\";s:0:\"\";s:11:\"add_to_cart\";s:3:\"yes\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6996','2079','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6997','2079','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('6998','2079','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7000','2124','_wp_attached_file','2026/06/ChatGPT-Image-Jun-9-2026-11_25_27-AM.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7001','2124','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1448;s:6:\"height\";i:1086;s:4:\"file\";s:48:\"2026/06/ChatGPT-Image-Jun-9-2026-11_25_27-AM.png\";s:8:\"filesize\";i:2122907;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7002','2125','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7003','2125','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7004','2125','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7005','2125','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7006','2125','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7007','2125','_elementor_data','[{\"id\":\"547188c4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70ee83e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"236b84b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\",\"align\":\"center\",\"title_color\":\"#07AF00\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"_animation\":\"bounceIn\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ad041da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2124,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-9-2026-11_25_27-AM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2bc8b0d\",\"elType\":\"widget\",\"settings\":{\"due_date\":\"2024-02-16 13:38\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_background_color\":\"#07AF00\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_spacing_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"box_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"digits_typography_typography\":\"custom\",\"digits_typography_font_family\":\"Hind Siliguri\",\"digits_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"digits_typography_font_weight\":\"400\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Hind Siliguri\",\"label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":70,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"countdown_type\":\"evergreen\"},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"3954a96\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09e7\\u09e7\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#F30303\",\"title_color\":\"#050505\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":40,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"b9c93ae\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09ef\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"marker_color\":\"#F30303\",\"title_color\":\"#07AF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#FC0707\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"461bf7de\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44dc169b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7d217dc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8e8602\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0995\\u09c7\\u09a8 \\u0996\\u09be\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"18\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54448d37\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"13558f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"279c60d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0, \\u0986\\u09df\\u09b0\\u09a8, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae\\u09b8\\u09b9 \\u09a8\\u09be\\u09a8\\u09be\\u09a8 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3\\u0964 \\u098f\\u09b8\\u09ac \\u0996\\u09be\\u09a6\\u09cd\\u09af \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u0985\\u09a4\\u09c0\\u09ac \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09b9\\u09df\\u09c7 \\u0993\\u09a0\\u09c7 \\u09af\\u0996\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09df\\u09b8 \\u09aa\\u09cc\\u0981\\u099b\\u09be\\u09ac\\u09c7 \\u09e9\\u09e6-\\u098f\\u09b0 \\u0995\\u09cb\\u09a0\\u09be\\u09df\\u0964\",\"align\":\"center\",\"title_color\":\"#FE0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9346196\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09af\\u09be \\u09b9\\u09be\\u09b0\\u09cd\\u099f\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf\\u09a4\\u09c7 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u0993 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7, \\u09af\\u09be \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"b240c08\"},{\"text\":\"\\u09b0\\u0995\\u09cd\\u09a4\\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be\\u09df \\u09ad\\u09cb\\u0997\\u09be \\u09b0\\u09cb\\u0997\\u09c0\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u098f\\u0995\\u099c\\u09a8 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09af\\u09a4\\u099f\\u09c1\\u0995\\u09c1 \\u0986\\u09df\\u09b0\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8, \\u09a4\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09df \\u09e7\\u09e7 \\u09ad\\u09be\\u0997 \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c67dfa7\"},{\"text\":\"\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u0996\\u09a8\\u09bf\\u099c, \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09df\\u09be\\u09ae \\u0993 \\u09aa\\u099f\\u09be\\u09b6\\u09bf\\u09df\\u09be\\u0964 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09be \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09be\\u09dc\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\"},{\"text\":\"\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0989\\u099a\\u09cd\\u099a \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b9\\u099c\\u09ae\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u09ac\\u0982 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d971aea\"},{\"text\":\"\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2\\u09cb \\u0989\\u09ce\\u09b8, \\u09af\\u09be \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"3e5bd2a\"},{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09e8\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e8\\u09eb \\u09ae\\u09bf\\u09b2\\u09bf\\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae, \\u09af\\u09be \\u0989\\u099a\\u09cd\\u099a \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d2eaf79\"},{\"text\":\"\\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09b0\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09bf\\u099c\\u09bf\\u09df\\u09c7 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964 \\u09aa\\u09b0 \\u09a6\\u09bf\\u09a8 \\u09b8\\u0995\\u09be\\u09b2\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09c7\\u099c\\u09be\\u09a8\\u09cb \\u09aa\\u09be\\u09a8\\u09bf \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u09a6\\u09c2\\u09b0 \\u09b9\\u09ac\\u09c7 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d420d6c\"},{\"text\":\"\\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2 \\u0989\\u09a4\\u09cd\\u09b8, \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u098f\\u09ac\\u0982 \\u09a4\\u09c3\\u09aa\\u09cd\\u09a4 \\u09ac\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2592254\"},{\"text\":\"\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u0993 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09a5\\u09be\\u0995\\u09c7 \\u09af\\u09be \\u09b9\\u09be\\u09a1\\u09bc \\u0993 \\u09a6\\u09be\\u0981\\u09a4\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"924a60d\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7d5622cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u09ef\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\",\"align\":\"center\",\"title_color\":\"#07AF00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e06460d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"button_background_hover_color\":\"#169203\",\"hover_animation\":\"grow\",\"_animation\":\"bounceIn\",\"typography_font_family\":\"Hind Siliguri\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7caafb81\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#07AF00\"},\"elements\":[{\"id\":\"72380d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e3333a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"195edaef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"725fccf4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6410ccf5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u098f\\u0987 \\u09b8\\u09c0\\u099c\\u09a8\\u09c7\\u09b0 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u0997\\u09be\\u099b\\u09aa\\u09be\\u0995\\u09be \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"c92e222\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u098f \\u0995\\u09cb\\u09a8\\u09cb \\u09aa\\u09cb\\u0995\\u09be \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09a8\\u09be \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"7dcd5f8\"},{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0  \\u0995\\u09b0\\u09a4\\u09c7  \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"727b43f\"},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"25ca027\"},{\"text\":\"\\u09aa\\u09a3\\u09cd\\u09af \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0996\\u09c7\\u09df\\u09c7 \\u09b0\\u09bf\\u09b8\\u09bf\\u09ad \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"2a45dc3\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09a5\\u09be \\u09ae\\u09a4 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09a8\\u09be \\u09aa\\u09c7\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u09bf\\u09b0\\u09cd\\u099f\\u09be\\u09a8 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09a5\\u09be\\u0995\\u099b\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"d1dec1a\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#07AF00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46ec3f6a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#07AF00\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"77705a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3e45ea19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8    01819000000\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_background_background\":\"classic\",\"_background_color\":\"#07AF00\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be570b3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\"},\"elements\":[{\"id\":\"4bea656d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#07AF00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"37676298\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#07AF00\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a03de62\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Anek Bangla\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"checkout-form\"},{\"id\":\"37f3da9f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2124,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-9-2026-11_25_27-AM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"double\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_color\":\"#07AF00\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"image_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"166c517e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5628e6b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34307e5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7008','2125','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7011','2072','_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:7;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:7;s:11:\"title_color\";i:7;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:3;s:17:\"_background_color\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:2;s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:2;s:18:\"image_border_color\";i:2;s:19:\"image_border_radius\";i:2;}}}}s:9:\"countdown\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:17:\"section_countdown\";a:2:{s:8:\"due_date\";i:1;s:14:\"countdown_type\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_box_style\";a:2:{s:20:\"box_background_color\";i:1;s:17:\"box_border_radius\";i:1;}s:21:\"section_content_style\";a:6:{s:28:\"digits_typography_typography\";i:1;s:29:\"digits_typography_font_family\";i:1;s:29:\"digits_typography_font_weight\";i:1;s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_family\";i:1;s:28:\"label_typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:1;s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:10:\"after_text\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:2;}s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_font_weight\";i:2;s:11:\"words_color\";i:2;s:27:\"words_typography_typography\";i:2;s:28:\"words_typography_font_family\";i:2;s:28:\"words_typography_font_weight\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:2;s:4:\"link\";i:2;s:4:\"size\";i:2;s:13:\"selected_icon\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:29:\"button_background_hover_color\";i:2;s:15:\"hover_animation\";i:2;s:22:\"typography_font_family\";i:2;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:8;s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:3;s:3:\"gap\";i:6;s:6:\"layout\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:5;s:11:\"_element_id\";i:1;s:11:\"css_classes\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:4;}s:14:\"section_border\";a:1:{s:13:\"border_border\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:2;s:7:\"divider\";i:2;}s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;s:24:\"icon_self_vertical_align\";i:2;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:13:\"checkout-form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_general_fields\";a:1:{s:6:\"layout\";i:1;}}s:5:\"style\";a:1:{s:28:\"section_general_style_fields\";a:4:{s:28:\"global_typography_typography\";i:1;s:29:\"global_typography_font_family\";i:1;s:27:\"global_typography_font_size\";i:1;s:29:\"global_typography_font_weight\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7014','2064','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7015','2064','_wp_trash_meta_time','1780982784');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7016','2064','_wp_desired_post_slug','sales-landing-35');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7017','2066','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7018','2066','_wp_trash_meta_time','1780982784');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7019','2066','_wp_desired_post_slug','checkout-woo-37');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7020','2104','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7021','2104','_wp_trash_meta_time','1780982784');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7022','2104','_wp_desired_post_slug','thank-you-woo-41');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7023','84','_wp_trash_meta_status','draft');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7024','84','_wp_trash_meta_time','1780982784');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7025','84','_wp_desired_post_slug','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7026','84','_wp_trash_meta_comments_status','a:3:{i:10;s:1:\"1\";i:11;s:1:\"1\";i:12;s:1:\"1\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7027','2063','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7028','2063','_wp_trash_meta_time','1780982784');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7029','2063','_wp_desired_post_slug','saikaling-service-04');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7040','2041','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7041','2041','_wp_trash_meta_time','1780985057');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7042','2041','_wp_desired_post_slug','sales-landing-32');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7043','2043','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7044','2043','_wp_trash_meta_time','1780985057');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7045','2043','_wp_desired_post_slug','checkout-woo-36');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7046','2046','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7047','2046','_wp_trash_meta_time','1780985057');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7048','2046','_wp_desired_post_slug','thank-you-woo-30');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7049','2040','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7050','2040','_wp_trash_meta_time','1780985058');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7051','2040','_wp_desired_post_slug','red-rice');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7052','2126','_wp_attached_file','2026/06/c5ce835e-4872-4d7f-a060-1717ee012280.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7053','2126','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1448;s:6:\"height\";i:1086;s:4:\"file\";s:48:\"2026/06/c5ce835e-4872-4d7f-a060-1717ee012280.png\";s:8:\"filesize\";i:1696000;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7054','2127','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7055','2127','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7056','2127','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7057','2127','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7058','2127','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7059','2127','_elementor_data','[{\"id\":\"af889b7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"9db2065\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b819e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"8381e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"77b2b10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rice Skin Beauty Serum 15ML\",\"title_color\":\"#eb1111\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bb578b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09cd\\u09b0\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u0997\\u09b0\\u09cd\\u09a4\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b9\\u09df, \\u0986\\u09b0 \\u098f\\u0995\\u09c7 pores \\u09ac\\u09b2\\u09c7\\u0964 \\u0986\\u09b0 \\u098f\\u0987 pores \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09ac\\u099a\\u09c7\\u09df\\u09c7 \\u09ac\\u09c7\\u09b8\\u09cd\\u099f \\u09b9\\u09b2\\u09cb<span style=\\\"color: #ff0000;\\\">\\u00a0Rice Serum<\\/span>. \\u098f\\u099f\\u09be \\u09b6\\u09c1\\u09a7\\u09c1 pores remove \\u0995\\u09b0\\u09c7 \\u09a8\\u09be, \\u09b8\\u09cd\\u0995\\u09bf\\u09a8\\u099f\\u09be\\u0987\\u099f \\u0993 \\u0997\\u09cd\\u09b2\\u09cb\\u09df\\u09bf\\u0982 \\u0995\\u09b0\\u09c7 Damage Skin Repair \\u0995\\u09b0\\u09c7\\u0964<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ae527d0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#EB1111\",\"button_background_hover_color\":\"#FB6107\",\"hover_animation\":\"pop\",\"align_mobile\":\"justify\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a49bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b37fe17\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2126,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/c5ce835e-4872-4d7f-a060-1717ee012280.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b871e90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F1F1F1\",\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]}},\"elements\":[{\"id\":\"a838f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61b505b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09cd\\u09b0\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u0997\\u09b0\\u09cd\\u09a4\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b9\\u09df\\u09c7, \\u0986\\u09b0 \\u098f\\u0995\\u09c7 pores \\u09ac\\u09b2\\u09c7\\u0964 \\u0986\\u09b0 \\u098f\\u0987 pores \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09ac\\u099a\\u09c7\\u09df\\u09c7 Best \\u09b9\\u09b2\\u09cb Rice Serum. \\u098f\\u099f\\u09bf \\u099b\\u09c7\\u09b2\\u09c7 \\u09ae\\u09c7\\u09df\\u09c7 \\u09b8\\u09ac\\u09be\\u0987 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u0964 \\u0995\\u09cb\\u09a3 \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b0 \\u09b8\\u09be\\u0987\\u09a1 \\u0987\\u09ab\\u09c7\\u0995\\u09cd\\u099f \\u09a8\\u09c7\\u0987\\u0964<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"align\":\"center\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"81b6de5\",\"elType\":\"widget\",\"settings\":{\"marker\":\"curly\",\"before_text\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed*\\u09a6\\u09bf*\\u09a8\\u09c7 \\u099a\\u09c7\\u09b9\\u09be\\u09b0\\u09be\\u09df \\u0995\\u09ae\\u09ac\\u09c7\",\"highlighted_text\":\"\\u09eb*\\u09ac\\u099b*\\u09b0\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#FD0303\",\"title_color\":\"#000000\",\"words_color\":\"#FD2804\",\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Anek Bangla\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"e1cd4df\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"justify\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#EB1111\",\"button_background_hover_color\":\"#000000\",\"hover_animation\":\"push\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":70,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a433ddc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"b54e401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e7718e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd036ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c8ff88\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b0\\u09be\\u0987\\u09b8 \\u09b8\\u09bf\\u09b0\\u09be\\u09ae \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8?\",\"title_color\":\"#EB1111\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f23b62\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a4\\u09cd\\u09ac\\u0995 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be,\\u0989\\u099c\\u09cd\\u099c\\u09b2,\\u0997\\u09cd\\u09b2\\u09cb\\u09df\\u09bf\\u0982 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"4c1eab1\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09aa\\u09cb\\u09b0 \\u09ae\\u09bf\\u09a8\\u09bf\\u09ae\\u09be\\u0987\\u099c \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"c27d33b\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995 \\u09ae\\u09b8\\u09c3\\u09a3 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"4f54ccb\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"d641ba9\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u09af\\u09cb\\u0997\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"1449e9c\"},{\"text\":\"\\u09a1\\u09cd\\u09b0\\u09be\\u0987 \\u09a4\\u09cd\\u09ac\\u0995 \\u09ae\\u09af\\u09bc\\u09c7\\u09b6\\u09cd\\u099a\\u09be\\u09b0\\u09be\\u0987\\u099c \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2d350d8\"},{\"text\":\"\\u0995\\u09cb\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09a8 \\u09ae\\u09c7\\u09af\\u09bc\\u09c7\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a4 \\u09b8\\u09cd\\u0995\\u09bf\\u09a8\\u0995\\u09c7 \\u0997\\u09cd\\u09b2\\u09be\\u09b8\\u09b8\\u09cd\\u0995\\u09cd\\u09b0\\u09bf\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"70a40e2\"},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09bf\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a4\\u09cd\\u09ac\\u0995\\u0995\\u09c7 \\u099f\\u09be\\u09a8\\u099f\\u09be\\u09a8 \\u09b0\\u09be\\u0996\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"3768a17\"},{\"text\":\"\\u09b8\\u09c2\\u09b0\\u09cd\\u09af\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09b0 \\u09aa\\u09cd\\u09b0\\u09ad\\u09be\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"19ff708\"},{\"text\":\"\\u09a4\\u09cd\\u09ac\\u0995 \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09b9 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09be\\u099a\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"97ffc23\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"divider\":\"yes\",\"icon_color\":\"#FB6107\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Anek Bangla\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"802d395\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#EB1111\",\"button_background_hover_color\":\"#FB6107\",\"hover_animation\":\"pop\",\"align_mobile\":\"justify\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d207a7a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F8F3F0\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]}},\"elements\":[{\"id\":\"7147666\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"7c15ffa\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\",\"align\":\"center\",\"title_color\":\"#EB1111\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a4b772\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b8\\u09bf\\u09b0\\u09be\\u09ae\\u09c7\\u09b0 \\u09e8\\/\\u09e9 \\u09ab\\u09cb\\u0981\\u099f\\u09be \\u09b9\\u09be\\u09a4\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u0999\\u09cd\\u0997\\u09c1\\u09b2 \\u09a6\\u09bf\\u09df\\u09c7 \\u09b9\\u09be\\u09b2\\u0995\\u09be Dabbing motion \\u098f massage \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"_id\":\"4c1eab1\",\"selected_icon\":{\"value\":\"fas fa-eye-dropper\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"left\",\"divider\":\"yes\",\"icon_color\":\"#FB6107\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Anek Bangla\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"text_color\":\"#000000\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":80,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"529359f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"4cafbbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"494881e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2126,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/c5ce835e-4872-4d7f-a060-1717ee012280.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1564efa\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"justify\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#EB1111\",\"button_background_hover_color\":\"#000000\",\"hover_animation\":\"push\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"05fe02b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F8F3F0\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\"},\"elements\":[{\"id\":\"82720a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EB1111\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a9501a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995 \\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09c1\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#EB1111\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31ee8a7\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8: \",\"highlighted_text\":\"01819000000\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"marker_color\":\"#FF0000\",\"title_color\":\"#000000\",\"words_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Anek Bangla\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Anek Bangla\",\"words_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"d504c6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_text_color\":\"#000000\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_color\":\"#000000\",\"input_border_size\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"input_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#FF0000\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf39f02\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"350081b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d73da1e\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Anek Bangla\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__dynamic__\":[],\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7060','2127','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7063','2053','_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:4;s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:22:\"typography_line_height\";i:5;s:5:\"align\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:4;s:4:\"size\";i:4;s:4:\"link\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:16:\"background_color\";i:4;s:29:\"button_background_hover_color\";i:4;s:15:\"hover_animation\";i:4;s:12:\"align_mobile\";i:2;s:13:\"border_radius\";i:4;s:5:\"align\";i:3;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:21:\"_element_custom_width\";i:2;s:14:\"_element_width\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:10;s:16:\"content_position\";i:3;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:8;s:16:\"content_position\";i:3;s:13:\"content_width\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:7;s:16:\"background_color\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:7;s:6:\"margin\";i:1;s:11:\"_element_id\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:2;s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:4:\"link\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:2;}s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:2;s:11:\"words_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:28:\"title_typography_font_weight\";i:2;s:26:\"title_typography_font_size\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:2;s:7:\"divider\";i:2;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:6:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:27:\"icon_typography_line_height\";i:1;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:21:\"_element_custom_width\";i:1;}}}}s:13:\"checkout-form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_general_fields\";a:1:{s:6:\"layout\";i:1;}}s:5:\"style\";a:3:{s:28:\"section_general_style_fields\";a:5:{s:17:\"global_text_color\";i:1;s:28:\"global_typography_typography\";i:1;s:29:\"global_typography_font_family\";i:1;s:27:\"global_typography_font_size\";i:1;s:29:\"global_typography_font_weight\";i:1;}s:13:\"input_section\";a:5:{s:32:\"input_text_typography_typography\";i:1;s:31:\"input_text_typography_font_size\";i:1;s:11:\"label_color\";i:1;s:17:\"input_border_size\";i:1;s:12:\"input_radius\";i:1;}s:14:\"button_section\";a:2:{s:31:\"btn_background_color_background\";i:1;s:26:\"btn_background_color_color\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7064','2027','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7065','2027','_wp_trash_meta_time','1780985181');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7066','2027','_wp_desired_post_slug','checkout-woo-34');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7067','2033','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7068','2033','_wp_trash_meta_time','1780985181');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7069','2033','_wp_desired_post_slug','thank-you-woo-29');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7070','79','_wp_trash_meta_status','draft');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7071','79','_wp_trash_meta_time','1780985181');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7072','79','_wp_desired_post_slug','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7073','2026','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7074','2026','_wp_trash_meta_time','1780985181');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7075','2026','_wp_desired_post_slug','panjabi');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7076','2057','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7077','2057','_wp_trash_meta_time','1780985208');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7078','2057','_wp_desired_post_slug','sales-landing-34');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7079','2059','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7080','2059','_wp_trash_meta_time','1780985208');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7081','2059','_wp_desired_post_slug','ibaby-toddler-rocker-baby-rocking-chair');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7082','2097','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7083','2097','_wp_trash_meta_time','1780985208');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7084','2097','_wp_desired_post_slug','thank-you-woo-38');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7085','2056','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7086','2056','_wp_trash_meta_time','1780985208');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7087','2056','_wp_desired_post_slug','rocking-chair-03');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7088','2021','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7089','2021','_wp_trash_meta_time','1780985217');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7090','2021','_wp_desired_post_slug','sales-landing-30');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7091','2023','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7092','2023','_wp_trash_meta_time','1780985217');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7093','2023','_wp_desired_post_slug','checkout-woo-33');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7094','2054','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7095','2054','_wp_trash_meta_time','1780985217');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7096','2054','_wp_desired_post_slug','thank-you-woo-32');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7097','78','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7098','78','_wp_trash_meta_time','1780985217');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7099','78','_wp_desired_post_slug','thank-you-woo');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7100','2128','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7101','2128','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7102','2128','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7103','2128','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7104','2128','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7105','2128','_elementor_data','[{\"id\":\"516a438\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c757090\",\"settings\":{\"content_width\":\"full\",\"confirmation_message_text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u09b8\\u09ab\\u09b2 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"confirmation_message_alignment\":\"center\",\"payment_details_number\":\"Order Number:\",\"payment_details_date\":\"Order Date:\",\"payment_details_email\":\"Order Email:\",\"payment_details_total\":\"Order Total:\",\"payment_details_payment\":\"Payment Method:\",\"bank_details_text\":\"Our Bank Details\",\"downloads_text\":\"Downloads\",\"order_summary_text\":\"Order Details\",\"billing_details_text\":\"Billing Details\",\"shipping_details_text\":\"Shipping Details\",\"confirmation_message_color\":\"#010101\",\"confirmation_message_typography_typography\":\"custom\",\"confirmation_message_typography_font_family\":\"Hind Siliguri\",\"confirmation_message_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"order_details_button_normal_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"order_details_button_normal_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"order_details_button_normal_background_slideshow_gallery\":[],\"order_details_button_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"order_details_button_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"order_details_button_hover_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"woocommerce-purchase-summary\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7106','2128','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7107','2020','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7108','2020','_wp_trash_meta_time','1780985217');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7109','2020','_wp_desired_post_slug','mustard-oil');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7110','2036','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7111','2036','_wp_trash_meta_time','1780985238');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7112','2036','_wp_desired_post_slug','sales-landing-31');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7113','2038','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7114','2038','_wp_trash_meta_time','1780985238');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7115','2038','_wp_desired_post_slug','checkout-woo-35');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7116','2106','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7117','2106','_wp_trash_meta_time','1780985238');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7118','2106','_wp_desired_post_slug','thank-you-woo-42');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7119','2035','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7120','2035','_wp_trash_meta_time','1780985238');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7121','2035','_wp_desired_post_slug','pizza-template-copy');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7122','2129','_wp_attached_file','2026/06/1aa282a8-e97b-45cb-9fe4-c4e7411a5986.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7123','2129','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1122;s:6:\"height\";i:1402;s:4:\"file\";s:48:\"2026/06/1aa282a8-e97b-45cb-9fe4-c4e7411a5986.png\";s:8:\"filesize\";i:2127114;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7124','2130','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7125','2130','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7126','2130','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7127','2130','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7128','2130','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7129','2130','_elementor_data','[{\"id\":\"7956fdd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#B5FABC\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_color_b\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"shape_divider_top\":\"clouds\",\"shape_divider_top_color\":\"#42CE71\",\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"shape_divider_bottom\":\"zigzag\",\"shape_divider_bottom_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":241,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":137,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":155,\"sizes\":[]}},\"elements\":[{\"id\":\"124bfee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a8cc0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2129,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/1aa282a8-e97b-45cb-9fe4-c4e7411a5986.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b8d73b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color: #368C29;\\\">\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be <\\/span> \\u0986\\u09aa\\u09a8\\u09bf \\u0993 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b6\\u09bf\\u09b6\\u09c1\\u09b0 \\u099c\\u09a8\\u09cd\\u09af <span style=\\\"color: #368C29;\\\">\\u201c\\u09b8\\u09c1\\u09aa\\u09be\\u09b0\\u09ab\\u09c1\\u09a1\\u201d<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"700\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e6d85a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be \\u098f\\u0995\\u099f\\u09be \\u09b8\\u09c1\\u09aa\\u09be\\u09b0\\u09ab\\u09c1\\u09a1, \\u098f\\u099f\\u09bf\\u0995\\u09c7 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u09b0 \\u0986\\u09a7\\u09be\\u09b0\\u0993 \\u09ac\\u09b2\\u09be \\u09b9\\u09df\\u0964 \\u098f\\u099f\\u09be \\u09b9\\u09b0\\u09ae\\u09cb\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09b2\\u09c7\\u09a8\\u09cd\\u09b8, \\u09a1\\u09be\\u0987\\u099c\\u09c7\\u09b6\\u09a8 \\u0993 \\u09ae\\u09c7\\u099f\\u09be\\u09ac\\u09b2\\u09bf\\u099c\\u09ae\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u099f\\u09be \\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u0993 \\u099a\\u09c1\\u09b2\\u09c7\\u0993 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0985\\u09a8\\u09c7\\u0995 \\u0997\\u09c1\\u09a8\\u0964 \",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b077ba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#6EFFAA\",\"shape_divider_top\":\"zigzag\",\"shape_divider_top_width_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":161,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":93,\"sizes\":[]}},\"elements\":[{\"id\":\"de306bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ff0e814\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=fbe9ec8\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fad08c8\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"314819e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2121,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-9-2026-11_23_18-AM.png\"},{\"id\":2129,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/1aa282a8-e97b-45cb-9fe4-c4e7411a5986.png\"}],\"thumbnail_size\":\"medium_large\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"image_border_color\":\"#E8B541\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a15846f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#C5FFDD\"},\"elements\":[{\"id\":\"16d9e54\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f68197\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=7f29ec1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec4e4b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\"},\"elements\":[{\"id\":\"467695a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"769d3fb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b6\\u09bf\\u09b6\\u09c1\\u09a6\\u09c7\\u09b0 \\u0985\\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"de592f2\"},{\"text\":\"\\u09b8\\u09cd\\u09a4\\u09a8\\u09cd\\u09af\\u09a6\\u09be\\u09a8\\u0995\\u09be\\u09b0\\u09c0 \\u09ae\\u09be\\u09df\\u09c7\\u09a6\\u09c7\\u09b0 \\u09ac\\u09c1\\u0995\\u09c7\\u09b0 \\u09a6\\u09c1\\u09a7 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0307d68\"},{\"text\":\"\\u0989\\u099a\\u09cd\\u099a \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"cca2a6d\"},{\"text\":\"\\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b0\\u09c1\\u099a\\u09bf \\u09ab\\u09c7\\u09b0\\u09be\\u09df\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"9ccff14\"},{\"text\":\"\\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09bf\\u09ae\\u09bf\\u09df\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0d8f142\"},{\"text\":\"\\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"fed7f67\"},{\"text\":\"\\u0985\\u09a8\\u09cd\\u09a7\\u09a4\\u09cd\\u09ac \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"1876337\"},{\"text\":\"\\u09ac\\u09df\\u09b8\\u09c7\\u09b0 \\u099b\\u09be\\u09aa \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"f5d270b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_color\":\"#C17E09\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"b26d710\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"0c178f9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09b8\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"626a83c\"},{\"text\":\" \\u09b9\\u09be\\u09b0\\u09cd\\u099f \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"842208d\"},{\"text\":\"\\u0993\\u099c\\u09a8 \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c424393\"},{\"text\":\"\\u0995\\u09bf\\u09a1\\u09a8\\u09bf \\u0993 \\u09b2\\u09bf\\u09ad\\u09be\\u09b0 \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"414a3a1\"},{\"text\":\"\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"d55ec96\"},{\"text\":\"\\u0997\\u09cd\\u09af\\u09be\\u09b8\\u09cd\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"e0af607\"},{\"text\":\"\\u099a\\u09c1\\u09b2 \\u09aa\\u09dc\\u09be \\u09ac\\u09a8\\u09cd\\u09a7 \\u0995\\u09b0\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"ff665e9\"},{\"text\":\"\\u09ae\\u09c1\\u0996\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u0993 \\u09ae\\u09c7\\u09b8\\u09cd\\u09a4\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"a05adad\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"space_between_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_color\":\"#C17E09\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50cfa7c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#CAFFBE\"},\"elements\":[{\"id\":\"b1e2dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"793427e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u0985\\u09a5\\u09ac\\u09be \\u0986\\u09b6\\u09c7\\u09aa\\u09be\\u09b6\\u09c7 \\u0995\\u09cb\\u09a5\\u09be\\u0993 \\u09af\\u09a6\\u09bf \\u09b8\\u099c\\u09a8\\u09c7 \\u0997\\u09be\\u099b \\u09a5\\u09be\\u0995\\u09c7 \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u09b8\\u09c7\\u0996\\u09be\\u09a8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09be\\u09a4\\u09be \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0996\\u09be\\u09a6\\u09cd\\u09af \\u09a4\\u09be\\u09b2\\u09bf\\u0995\\u09be\\u09df \\u098f\\u099f\\u09be \\u09b0\\u09be\\u0996\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u0964 \\u09b8\\u09c7\\u099f\\u09be \\u09b8\\u09ae\\u09cd\\u09ad\\u09ac \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a4\\u09be \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0993 \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be\\u0964 \",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_family\":\"Hind Siliguri\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f579bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2129,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/1aa282a8-e97b-45cb-9fe4-c4e7411a5986.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":60,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"efc2335\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=fbe9ec8\",\"button_text_color\":\"globals\\/colors?id=26ec5dd\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a90df62\",\"elType\":\"section\",\"settings\":{\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#CAFFBE\"},\"elements\":[{\"id\":\"be009c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d64d6d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u0996\\u09be\\u09ac\\u09c7\\u09a8 \\u0993 \\u09b6\\u09bf\\u09b6\\u09c1\\u09a6\\u09c7\\u09b0\\u0993 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09ac\\u09c7\\u09a8  \",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=7f29ec1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f028c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ab\\u09b2 \\u0985\\u09a5\\u09ac\\u09be \\u09ab\\u09b2\\u09c7\\u09b0 \\u099c\\u09c1\\u09b8 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"aedcea0\"},{\"text\":\"\\u09a1\\u09be\\u09b2 \\u0985\\u09a5\\u09ac\\u09be \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u0995\\u09b0\\u09be \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"bb8fed8\"},{\"text\":\"\\u09ad\\u09b0\\u09cd\\u09a4\\u09be \\u09ac\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"3c44ca9\"},{\"text\":\"\\u09b8\\u09b0\\u09be\\u09b8\\u09b0\\u09bf \\u099c\\u09c1\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"236467a\"},{\"text\":\"\\u09ae\\u09be\\u099b, \\u09ae\\u09be\\u0982\\u09b8 \\u0985\\u09a5\\u09ac\\u09be \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09a4\\u09b0\\u0995\\u09be\\u09b0\\u09c0\\u09a4\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"413526c\"},{\"text\":\"\\u09a8\\u09c1\\u09a1\\u09c1\\u09b2\\u09b8 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"0d6f2b5\"},{\"text\":\"\\u09ae\\u09a7\\u09c1 \\u09a6\\u09bf\\u09df\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"73d9902\"},{\"text\":\"\\u09a1\\u09be\\u09b2\\u09c7\\u09b0 \\u09ac\\u09dc\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"a275c3c\"},{\"text\":\"\\u09b0\\u09c1\\u099f\\u09bf \\u0985\\u09a5\\u09ac\\u09be \\u099a\\u09be\\u09aa\\u099f\\u09bf \\u09ac\\u09be\\u09a8\\u09be\\u09a8\\u09cb\\u09b0 \\u09b8\\u09ae\\u09df \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"far fa-hand-point-right\",\"library\":\"fa-regular\"},\"_id\":\"450edd6\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Baloo Da 2\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_color\":\"#917509\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0ce700\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#CDFFCF\"},\"elements\":[{\"id\":\"6ce0954\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#00000009\"},\"elements\":[{\"id\":\"e1b73cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 \",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e8c17\",\"elType\":\"widget\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"tel:01819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=26ec5dd\",\"background_color\":\"globals\\/colors?id=fbe9ec8\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a35bc8b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#CAFFBE\"},\"elements\":[{\"id\":\"1d8dd32\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"0b0e396\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09b8\\u09cd\\u09a5\\u09be \\u09b0\\u09be\\u0996\\u09c1\\u09a8 \\u0986\\u09b8\\u09cd\\u09a5\\u09be\\u09df \\u09a5\\u09be\\u0995\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=7f29ec1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e3ae6f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0993 \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"aedcea0\"},{\"text\":\"\\u09aa\\u09a3\\u09cd\\u09af \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"bb8fed8\"},{\"text\":\"\\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u09ab\\u09c7\\u09b0\\u09a4 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3c44ca9\"},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09a4\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"52c64a2\"},{\"text\":\"\\u0996\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u09a8\\u09bf\\u09df\\u09ae\\u09b8\\u09b9 \\u09b0\\u09c7\\u09b8\\u09bf\\u09aa\\u09bf \\u0985\\u09a8\\u09b2\\u09be\\u0987\\u09a8\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"6366393\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Baloo Da 2\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":110.039},\"__globals__\":{\"icon_color\":\"\"},\"space_between_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_color\":\"#DC7600\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c559378\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#C2FDB5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#E6FFE9\"},\"elements\":[{\"id\":\"9a6b06a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"72090b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#BBFFC9\",\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d864ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"600\",\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#2ECC71\",\"_element_id\":\"order\",\"global_primary_color\":\"#2C3F60\",\"global_text_color\":\"#2C3F60\",\"heading_text_color\":\"#2C3F60\",\"heading_typography_typography\":\"custom\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_weight\":\"600\",\"label_color\":\"#2C3F60\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_border_color\":\"#2C3F60\",\"payment_section_text_color\":\"#2C3F60\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3d773d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#00000012\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fa53a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5248d0a\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7130','2130','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7133','2018','_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:2;s:19:\"image_border_radius\";i:2;s:32:\"image_box_shadow_box_shadow_type\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:9;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:21:\"typography_typography\";i:9;s:22:\"typography_font_weight\";i:8;s:5:\"align\";i:9;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:7;s:22:\"typography_font_family\";i:8;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:11;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:2:{s:12:\"border_width\";i:3;s:13:\"border_border\";i:1;}s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:8;s:13:\"content_width\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:9;s:16:\"background_color\";i:9;s:18:\"background_color_b\";i:1;}s:21:\"section_shape_divider\";a:5:{s:17:\"shape_divider_top\";i:2;s:23:\"shape_divider_top_color\";i:1;s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:24:\"shape_divider_top_height\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:6;s:6:\"margin\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:3;s:4:\"size\";i:3;s:4:\"link\";i:3;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:33:\"button_box_shadow_box_shadow_type\";i:3;s:28:\"button_box_shadow_box_shadow\";i:3;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:2:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:4;s:7:\"divider\";i:2;s:14:\"divider_weight\";i:4;}s:18:\"section_icon_style\";a:3:{s:9:\"icon_size\";i:4;s:11:\"text_indent\";i:4;s:10:\"icon_color\";i:4;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:4;s:27:\"icon_typography_font_family\";i:4;s:25:\"icon_typography_font_size\";i:4;s:27:\"icon_typography_font_weight\";i:4;s:10:\"text_color\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:4;s:21:\"_element_custom_width\";i:4;s:8:\"_padding\";i:2;}}}}s:13:\"checkout-form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_general_fields\";a:1:{s:6:\"layout\";i:1;}}s:5:\"style\";a:5:{s:28:\"section_general_style_fields\";a:5:{s:28:\"global_typography_typography\";i:1;s:29:\"global_typography_font_family\";i:1;s:29:\"global_typography_font_weight\";i:1;s:20:\"global_primary_color\";i:1;s:17:\"global_text_color\";i:1;}s:14:\"button_section\";a:2:{s:31:\"btn_background_color_background\";i:1;s:26:\"btn_background_color_color\";i:1;}s:28:\"section_heading_style_fields\";a:2:{s:18:\"heading_text_color\";i:1;s:29:\"heading_typography_typography\";i:1;}s:13:\"input_section\";a:6:{s:32:\"input_text_typography_typography\";i:1;s:33:\"input_text_typography_font_family\";i:1;s:33:\"input_text_typography_font_weight\";i:1;s:11:\"label_color\";i:1;s:31:\"input_text_typography_font_size\";i:1;s:18:\"input_border_color\";i:1;}s:28:\"section_payment_style_fields\";a:1:{s:26:\"payment_section_text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:11:\"_element_id\";i:1;s:8:\"_padding\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7136','2018','wcf-checkout-products','a:1:{i:0;a:5:{s:8:\"quantity\";s:1:\"1\";s:13:\"discount_type\";s:0:\"\";s:14:\"discount_value\";s:0:\"\";s:7:\"product\";s:4:\"2123\";s:9:\"unique_id\";s:8:\"n5aj113o\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7137','2018','wcf-product-options-data','a:1:{s:8:\"n5aj113o\";a:1:{s:11:\"add_to_cart\";s:3:\"yes\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7138','2018','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7139','2018','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7140','2018','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7141','2131','_wcf_flow_id','2015');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7144','2132','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7145','2132','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7146','2132','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7147','2132','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7148','2132','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7149','2132','_elementor_data','[{\"id\":\"76bbe1e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#1D4E2B\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"shape_divider_bottom\":\"triangle\",\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"background_color_b\":\"#463E90\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":160,\"sizes\":[]},\"shape_divider_bottom_color\":\"#FCFCFC\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"150\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"200\",\"left\":\"50\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]}},\"elements\":[{\"id\":\"2ebcc16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"44cd926c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":10,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6db996ea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"__globals__\":{\"primary_color\":\"\"},\"primary_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"37b80ae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3021c293\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d00d2a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11e102b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"46b73b7\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"4e43ef9\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"order-details-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6299d275\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00000005\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b5b88f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40aeb09f\",\"elType\":\"widget\",\"settings\":{\"editor\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7150','2132','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7153','2030','_elementor_controls_usage','a:8:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:11:\"title_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:13:\"content_width\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:21:\"section_shape_divider\";a:5:{s:20:\"shape_divider_bottom\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:18:\"order-details-form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7160','2133','_wp_attached_file','2026/06/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7161','2133','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1448;s:6:\"height\";i:1086;s:4:\"file\";s:48:\"2026/06/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\";s:8:\"filesize\";i:1746583;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7162','2134','_wp_attached_file','2026/06/e956d34a-1cbf-46e3-a049-ab86322c876a.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7163','2134','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1122;s:6:\"height\";i:1402;s:4:\"file\";s:48:\"2026/06/e956d34a-1cbf-46e3-a049-ab86322c876a.png\";s:8:\"filesize\";i:1891328;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7164','2135','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7165','2135','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7166','2135','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7167','2135','_elementor_version','3.18.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7168','2135','_elementor_data','[{\"id\":\"a3e1d5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#E7F0E1\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_b\":\"#B0CF9C\",\"background_gradient_type\":\"radial\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FF42AC\",\"shape_divider_top\":\"triangle\",\"shape_divider_top_color\":\"#4F0534\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":127,\"sizes\":[]},\"shape_divider_bottom\":\"wave-brush\"},\"elements\":[{\"id\":\"ae19893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"1303061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2133,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#A21581\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3702568\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"d6913b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cdbeb12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rosemary Mint Scalp & Hair Strengthening Oil\",\"align_mobile\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-33\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0231586\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Rosemary:<\\/strong>\\u00a0Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"8864e9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation\":\"fadeInUp\",\"box_shadow_box_shadow_type\":\"yes\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"92d0329\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2133,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\"},{\"id\":2134,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/e956d34a-1cbf-46e3-a049-ab86322c876a.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"dots_position\":\"inside\",\"image_border_border\":\"dotted\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"#C6267C\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fceebe3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"dd61e80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68f924c\",\"elType\":\"section\",\"settings\":{\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f65597\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FF3B89\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"a06266b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2134,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/e956d34a-1cbf-46e3-a049-ab86322c876a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a562f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Use for daily hair care or specialized scalp treatments\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#C0077D\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc9b16c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c57d802\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FF28C8\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"zoomIn\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"53bd132\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2133,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9fbee41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Features more than 30 essential oils and extracts\\n\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#C0077D\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c44832c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_animation\":\"bounce\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9b843fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FF3B89\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"f8f4e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2134,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/e956d34a-1cbf-46e3-a049-ab86322c876a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e747d90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Helps improve length retention\\n\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#C0077D\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f8b209\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"da76ee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call if necessary or click the button below to call\",\"align\":\"center\",\"title_color\":\"#C0077D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ba9e63\",\"elType\":\"widget\",\"settings\":{\"text\":\"+971 50 278 0363\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Gotu\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c94202\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"76e0391\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#B74573\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#8C1142\"},\"elements\":[{\"id\":\"6bff2d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why take from us?\",\"align\":\"center\",\"title_color\":\"#102A00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc5ac54\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} authentic product\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"9e8f154\"},{\"text\":\"Our products will stop your hair loss\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"1799e92\"},{\"text\":\"Helps in hair growth\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"a35fe15\"},{\"text\":\"Infused with Biotin\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"28aa9f8\"},{\"text\":\"Features more than 30 essential oils and extracts\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"cc51c74\"},{\"text\":\"Delivery is free all over the UAE\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"3f66d7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#E3E3E3\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#DEDEDE\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"860d03e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8991467\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e6a814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e6d7c96\",\"elType\":\"widget\",\"settings\":{\"title\":\"Key Ingredients:\\n\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b988c9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Rosemary: Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2d5ffa7\"},{\"text\":\"Mint: Invigorates scalp\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"fccdefe\"},{\"text\":\"Biotin: Nourishes hair follicles, improving strength, and elasticity. Glycine Soja (Soybean) Oil, Ricinus Communis (Castor) Seed Oil, Rosmarinus Officinalis (Rosemary) Leaf Oil, Simmondsia Chinensis (Jojoba) Seed Oil, Mentha Piperita (Peppermint) Oil, Eucalyptus Globolus (Eucalyptus) Leaf Oil, Menthol, Melalueca Alternifolia (Tea Tree) Leaf Oil, Cocos Nucifera (Coconut) Oil, Equisetum Arvense (Horsetail) Extract, Aloe Barbadensis Extract, Lavandula Angustifolia (Lavender) Oil, Triticum Vulgare (Wheat) Germ Oil, Carthamus Tinctorius (Safflower) Seed Oil, Oenothera Biennis (Evening Primrose) Oil, Vitis Vinifera (Grape) Seed Oil, Benzyl Nicotinate, Prunus Amygdalus Dulcis (Sweet Almond) Oil, Oryza Sativa (Rice) Bran Oil, Tocopheryl Acetate, Biotin, Arctium Lappa (Burdock) Root Extract, Glycerin, Apium Graveolens (Celery) Seed Extract, Cholecalciferol (Vitamin D), Ascorbic Acid, Ocimum, Basilicum (Basil) Oil, Pogostemon Cablin (Patchouli) Oil, Salvia Officinalis (Sage) Oil, Silica, Urtica Dioica (Nettle) Extract\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"89e8c5d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#C0077D\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#C0077D\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"space_between_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e37b26c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"38c4690\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e5f74ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reviews of respected customers\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6561139\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"dots_position\":\"inside\",\"image_spacing\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"image_border_color\":\"#3DA300\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"carousel\":[{\"id\":2134,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/e956d34a-1cbf-46e3-a049-ab86322c876a.png\"},{\"id\":2133,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"8e8c69c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a79d0ad\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e5f67bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3DA300\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ca60d18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fill the form below to order\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51c2dc4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"Determine the quantity\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"700\",\"btn_background_color_background\":\"gradient\",\"btn_background_color_color\":\"#E7F0E1\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#000000\",\"btn_background_color_color_b\":\"#B0CF9C\",\"btn_background_color_gradient_type\":\"radial\",\"_element_id\":\"order\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_weight\":\"700\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_weight\":\"500\",\"heading_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"checkout-form\"},{\"id\":\"fdfeb55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Delivery is free all over the UAE\",\"align\":\"center\",\"title_color\":\"#DB2089\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"436482e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2f32ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"1c80419\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7169','2135','_elementor_page_assets','a:1:{s:6:\"styles\";a:12:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7170','2135','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7174','1999','wcf-checkout-products','a:1:{i:0;a:5:{s:8:\"quantity\";s:1:\"1\";s:13:\"discount_type\";s:0:\"\";s:14:\"discount_value\";s:0:\"\";s:7:\"product\";s:4:\"2123\";s:9:\"unique_id\";s:8:\"duikanho\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7175','1999','wcf-product-options-data','a:1:{s:8:\"duikanho\";a:5:{s:16:\"enable_highlight\";s:2:\"no\";s:14:\"highlight_text\";s:0:\"\";s:12:\"product_name\";s:0:\"\";s:15:\"product_subtext\";s:0:\"\";s:11:\"add_to_cart\";s:3:\"yes\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7176','2136','_wp_attached_file','2026/06/ae207ae6-4f6e-4149-ac5c-901975502708.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7177','2136','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1122;s:6:\"height\";i:1402;s:4:\"file\";s:48:\"2026/06/ae207ae6-4f6e-4149-ac5c-901975502708.png\";s:8:\"filesize\";i:2470927;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7178','1999','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7179','1999','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7180','1999','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7191','1995','wcf-checkout-products','a:1:{i:0;a:5:{s:8:\"quantity\";s:1:\"1\";s:13:\"discount_type\";s:0:\"\";s:14:\"discount_value\";s:0:\"\";s:7:\"product\";s:4:\"2123\";s:9:\"unique_id\";s:8:\"y5v2zjzt\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7192','1995','wcf-product-options-data','a:1:{s:8:\"y5v2zjzt\";a:1:{s:11:\"add_to_cart\";s:3:\"yes\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7195','2138','_wp_attached_file','2026/06/a1ff130e-64cc-495f-bbb2-34ee8b7c01ed.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7196','2138','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:4:\"file\";s:48:\"2026/06/a1ff130e-64cc-495f-bbb2-34ee8b7c01ed.png\";s:8:\"filesize\";i:1731096;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7197','2139','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7198','2139','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7199','2139','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7200','2139','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7201','2139','_elementor_data','[{\"id\":\"a3e1d5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#E7F0E1\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_b\":\"#B0CF9C\",\"background_gradient_type\":\"radial\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FF42AC\",\"shape_divider_top\":\"triangle\",\"shape_divider_top_color\":\"#4F0534\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":127,\"sizes\":[]},\"shape_divider_bottom\":\"wave-brush\"},\"elements\":[{\"id\":\"ae19893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"1303061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2133,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#A21581\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3702568\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"d6913b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cdbeb12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rosemary Mint Scalp & Hair Strengthening Oil\",\"align_mobile\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-33\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0231586\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Rosemary:<\\/strong>\\u00a0Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"8864e9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation\":\"fadeInUp\",\"box_shadow_box_shadow_type\":\"yes\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"92d0329\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2133,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\"},{\"id\":2134,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/e956d34a-1cbf-46e3-a049-ab86322c876a.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"dots_position\":\"inside\",\"image_border_border\":\"dotted\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"#C6267C\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fceebe3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"dd61e80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68f924c\",\"elType\":\"section\",\"settings\":{\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f65597\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FF3B89\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"a06266b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2134,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/e956d34a-1cbf-46e3-a049-ab86322c876a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a562f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Use for daily hair care or specialized scalp treatments\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#C0077D\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc9b16c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c57d802\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FF28C8\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"zoomIn\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"53bd132\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2133,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9fbee41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Features more than 30 essential oils and extracts\\n\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#C0077D\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c44832c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_animation\":\"bounce\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9b843fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FF3B89\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"f8f4e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2134,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/e956d34a-1cbf-46e3-a049-ab86322c876a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e747d90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Helps improve length retention\\n\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#C0077D\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f8b209\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"da76ee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call if necessary or click the button below to call\",\"align\":\"center\",\"title_color\":\"#C0077D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ba9e63\",\"elType\":\"widget\",\"settings\":{\"text\":\"+971 50 278 0363\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Gotu\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c94202\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"76e0391\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#B74573\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#8C1142\"},\"elements\":[{\"id\":\"6bff2d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why take from us?\",\"align\":\"center\",\"title_color\":\"#102A00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc5ac54\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} authentic product\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"9e8f154\"},{\"text\":\"Our products will stop your hair loss\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"1799e92\"},{\"text\":\"Helps in hair growth\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"a35fe15\"},{\"text\":\"Infused with Biotin\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"28aa9f8\"},{\"text\":\"Features more than 30 essential oils and extracts\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"cc51c74\"},{\"text\":\"Delivery is free all over the UAE\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"3f66d7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#E3E3E3\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#DEDEDE\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"860d03e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8991467\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e6a814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e6d7c96\",\"elType\":\"widget\",\"settings\":{\"title\":\"Key Ingredients:\\n\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b988c9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Rosemary: Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2d5ffa7\"},{\"text\":\"Mint: Invigorates scalp\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"fccdefe\"},{\"text\":\"Biotin: Nourishes hair follicles, improving strength, and elasticity. Glycine Soja (Soybean) Oil, Ricinus Communis (Castor) Seed Oil, Rosmarinus Officinalis (Rosemary) Leaf Oil, Simmondsia Chinensis (Jojoba) Seed Oil, Mentha Piperita (Peppermint) Oil, Eucalyptus Globolus (Eucalyptus) Leaf Oil, Menthol, Melalueca Alternifolia (Tea Tree) Leaf Oil, Cocos Nucifera (Coconut) Oil, Equisetum Arvense (Horsetail) Extract, Aloe Barbadensis Extract, Lavandula Angustifolia (Lavender) Oil, Triticum Vulgare (Wheat) Germ Oil, Carthamus Tinctorius (Safflower) Seed Oil, Oenothera Biennis (Evening Primrose) Oil, Vitis Vinifera (Grape) Seed Oil, Benzyl Nicotinate, Prunus Amygdalus Dulcis (Sweet Almond) Oil, Oryza Sativa (Rice) Bran Oil, Tocopheryl Acetate, Biotin, Arctium Lappa (Burdock) Root Extract, Glycerin, Apium Graveolens (Celery) Seed Extract, Cholecalciferol (Vitamin D), Ascorbic Acid, Ocimum, Basilicum (Basil) Oil, Pogostemon Cablin (Patchouli) Oil, Salvia Officinalis (Sage) Oil, Silica, Urtica Dioica (Nettle) Extract\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"89e8c5d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#C0077D\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#C0077D\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"space_between_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e37b26c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"38c4690\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e5f74ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reviews of respected customers\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6561139\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"dots_position\":\"inside\",\"image_spacing\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"image_border_color\":\"#3DA300\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"carousel\":[{\"id\":2138,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/a1ff130e-64cc-495f-bbb2-34ee8b7c01ed.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"8e8c69c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a79d0ad\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e5f67bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3DA300\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ca60d18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fill the form below to order\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51c2dc4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"Determine the quantity\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"700\",\"btn_background_color_background\":\"gradient\",\"btn_background_color_color\":\"#E7F0E1\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#000000\",\"btn_background_color_color_b\":\"#B0CF9C\",\"btn_background_color_gradient_type\":\"radial\",\"_element_id\":\"order\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_weight\":\"700\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_weight\":\"500\",\"heading_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"checkout-form\"},{\"id\":\"fdfeb55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Delivery is free all over the UAE\",\"align\":\"center\",\"title_color\":\"#DB2089\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"436482e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2f32ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"1c80419\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7202','2139','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7203','2139','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7205','2140','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7206','2140','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7207','2140','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7208','2140','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7209','2140','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7210','2140','_elementor_data','[{\"id\":\"6c5a2f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#3A531C\",\"shape_divider_bottom\":\"wave-brush\",\"shape_divider_bottom_color\":\"#FFFFFF\",\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff314df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"997f5d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2136,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ae207ae6-4f6e-4149-ac5c-901975502708.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"89b4c17\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e7\\u09e6\\u09e6\\u09e6+ \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u099a\\u09c1\\u09b2 \\u09aa\\u09be\\u0995\\u09be, \\u099a\\u09c1\\u09b2 \\u09aa\\u09dc\\u09be, \\u099a\\u09c1\\u09b2\\u09c7 \\u0996\\u09c1\\u09b6\\u0995\\u09bf \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u0995\\u09b0\\u09c7\\u099b\\u09c7 \\\"\\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09c0 \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\\"\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c81a1fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u09b8\\u09ac \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09ae\\u09bf\\u0995\\u09cd\\u09b8\\u09bf\\u0982 \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-26\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"64505f1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFF3F\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_border\":\"double\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5837298\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"215d4fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bbac98e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2136,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ae207ae6-4f6e-4149-ac5c-901975502708.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5582d6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#3A531C\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f71a3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6ade757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b0\\u09be\\u09b8\\u09c2\\u09b2\\u09c1\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 (\\u09b8\\u09be.) \\u09ac\\u09b2\\u09c7\\u09a8, \\u09af\\u09c7 \\u09ac\\u09cd\\u09af\\u0995\\u09cd\\u09a4\\u09bf \\u099a\\u09c1\\u09b2\\u09c7 \\u0995\\u09be\\u09b2\\u09cb \\u0995\\u09b2\\u09aa \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7 \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09a4\\u09be\\u09df\\u09be\\u09b2\\u09be\\n\\u0995\\u09bf\\u09df\\u09be\\u09ae\\u09a4\\u09c7\\u09b0 \\u09a6\\u09bf\\u09a8 \\u09a4\\u09be\\u09b0 \\u099a\\u09c7\\u09b9\\u09be\\u09b0\\u09be \\u0995\\u09be\\u09b2\\u09cb \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8640ce4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a4\\u09c1\\u09b9\\u09ab\\u09be\\u09a4\\u09c1\\u09b2 \\u0986\\u09b9\\u0993\\u09df\\u09be\\u09af\\u09bf: \\u09eb\\/\\u09e9\\u09eb\\u09eb\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed2f48b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"c129915\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"76dabf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u098f\\u0987 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09b2\\u09c7 \\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u09af\\u09c7 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#3A531C\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9e1f3f1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"085c97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2bddd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u099a\\u09c1\\u09b2 \\u09aa\\u09be\\u0995\\u09be \\u09ac\\u09a8\\u09cd\\u09a7 \\u0995\\u09b0\\u09c7\\u0964\",\"_id\":\"cc2a863\"},{\"text\":\"\\u099a\\u09c1\\u09b2 \\u0997\\u09cb\\u09dc\\u09be \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09bf \\u0995\\u09b0\\u09c7\\u0964\",\"_id\":\"ad5fd58\"},{\"text\":\"\\u099a\\u09c1\\u09b2 \\u09b9\\u09c7\\u09b2\\u09a6\\u09bf \\u0995\\u09b0\\u09c7\\u0964\",\"_id\":\"f0f1c05\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"493531a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0d4d6f3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u099a\\u09c1\\u09b2\\u09c7 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09a6\\u09bf\\u09b2\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb \\u0998\\u09c1\\u09ae \\u09b9\\u09df\\u0964\",\"_id\":\"cc2a863\"},{\"text\":\"\\u099a\\u09c1\\u09b2 \\u09b8\\u09be\\u0987\\u09a8\\u09bf, \\u09b8\\u09bf\\u09b2\\u09cd\\u0995\\u09bf \\u0995\\u09b0\\u09c7\\u0964\",\"_id\":\"ad5fd58\"},{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"_id\":\"55af717\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d022293\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#3A531C\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f116ad\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e213a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"09e81fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u099a\\u09c1\\u09b2 \\u09aa\\u09be\\u0995\\u09be, \\u099a\\u09c1\\u09b2 \\u09aa\\u09dc\\u09be, \\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u0996\\u09c1\\u09b6\\u0995\\u09bf, \\u099a\\u09c1\\u09b2 \\u09b0\\u09c1\\u0995\\u09cd\\u09b7 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09ac \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09af\\u09a6\\u09bf \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u09a8? \\u0995\\u09cb\\u09a8 \\u09aa\\u09be\\u09b0\\u09cd\\u09b6\\u09cd\\u09ac-\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u0995\\u09cd\\u09b0\\u09bf\\u09df\\u09be \\u099b\\u09be\\u09dc\\u09be \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u098f\\u0996\\u09a8\\u09bf \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09ae\\u09bf\\u0995\\u09cd\\u09b8\\u09bf\\u0982 \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#FD0404\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e6c376\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2136,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ae207ae6-4f6e-4149-ac5c-901975502708.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"76a9d38\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#3A531C\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"797c9c9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"40b8c3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c62b2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09c7\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099a\\u09c1\\u09b2\\u09c7 \\u0995\\u09b2\\u09ab \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09a8\\u09be \\u0995\\u09b0\\u09c7 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u0989\\u099a\\u09bf\\u09a4?\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#3A531C\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60172af\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"eb24c3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5b26d9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0995\\u09b2\\u09ab \\u0995\\u09b0\\u09b2\\u09c7 \\u099a\\u09c1\\u09b2 \\u099d\\u09dc\\u09c7 \\u09aa\\u09dc\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"cc2a863\"},{\"text\":\"\\u0995\\u09b2\\u09ab \\u0995\\u09b0\\u09b2\\u09c7 \\u099a\\u09c1\\u09b2 \\u09b0\\u09c1\\u0995\\u09cd\\u09b7 \\u09b6\\u09c1\\u09b7\\u09cd\\u0995 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"dd7a04a\"},{\"text\":\"\\u0995\\u09b2\\u09ab \\u0995\\u09b0\\u09b2\\u09c7 \\u099a\\u09c1\\u09b2 \\u0986\\u09b0\\u09cb \\u09ac\\u09c7\\u09b6\\u09bf \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8\\u09c7 \\u09aa\\u09c7\\u0995\\u09c7 \\u09af\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"bd9e58e\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7ff4af9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b1ef3b2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u099a\\u09c1\\u09b2\\u09c7 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09a6\\u09bf\\u09b2\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb \\u0998\\u09c1\\u09ae \\u09b9\\u09df\\u0964\",\"_id\":\"cc2a863\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"}},{\"text\":\"\\u099a\\u09c1\\u09b2 \\u09b8\\u09be\\u0987\\u09a8\\u09bf, \\u09b8\\u09bf\\u09b2\\u09cd\\u0995\\u09bf \\u0995\\u09b0\\u09c7\\u0964\",\"_id\":\"ad5fd58\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"}},{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"_id\":\"55af717\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46e5031\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#3A531C\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d9cb8d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color\":\"#3A531C\"},\"elements\":[{\"id\":\"8861972\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"570b970\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b33db4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b8\\u09ae\\u09b0\\u09cd\\u09aa\\u09c1\\u09a8 \\u09a8\\u09cd\\u09af\\u09be\\u099a\\u09be\\u09b0\\u09be\\u09b2 \\u0997\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"cc2a863\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09c0 \\u09aa\\u09be\\u09a4\\u09be \\u0997\\u09c1\\u09a1\\u09bc\\u09be\\u09a4\\u09c7  \\u0995\\u09cb\\u09a8 \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09a8\\u09c7\\u0987\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"dd7a04a\"},{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09b6\\u09c1\\u09a7\\u09c1 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09aa\\u09be\\u09a4\\u09be\\u09af\\u09bc \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09a8\\u09be \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09b6\\u09bf\\u0995\\u09be\\u0995\\u09be\\u0987, \\u0986\\u09ae\\u09b2\\u0995\\u09bf \\u0997\\u09c1\\u09a1\\u09bc\\u09be \\u09ae\\u09bf\\u0995\\u09cd\\u09b8\\u09bf\\u0982 \\u0995\\u09b0\\u09c7  \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"bd9e58e\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u099f\\u09bf \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09b9\\u09be\\u09b2\\u09be\\u09b2 \\u098f\\u09ac\\u0982 \\u09b6\\u09a4\\u09b6\\u09a4 \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u098f\\u0987 \\u09b9\\u09c7\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u0989\\u09aa\\u0995\\u09be\\u09b0 \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7 \",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"4cae869\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"700\",\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10b30b9\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#3A531C\",\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44bcfd6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc0f08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4adf93c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b6\\u09a4 \\u09b6\\u09a4 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0 \\u09aa\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u0987\\u099c\\u09c7 \\u0986\\u099b\\u09c7\\u0964 \\u09a4\\u09be\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09bf\\u099b\\u09c1 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989 \\u098f\\u0996\\u09be\\u09a8\\u09c7 \\u09a6\\u09c7\\u09df\\u09be \\u09b9\\u09b2\\u0983\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_color\":\"#3A531C\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14a2a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/a1ff130e-64cc-495f-bbb2-34ee8b7c01ed.png\",\"id\":2138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"83b6ff7\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"align_mobile\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#3A531C\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"border_border\":\"double\",\"border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"__globals__\":{\"button_background_hover_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db65a57\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#18240B\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74bd626\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7e31315\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09ea\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u09c7\\u09b0 \\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\",\"highlighted_text\":\"\\u09e7\\u09e8\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"marker_color\":\"#F10202\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#FFFFFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"69f2cb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09ee\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"align\":\"center\",\"title_color\":\"#FFFF3F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf2f4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"(\\u09ab\\u09cd\\u09b0\\u09bf \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf!!)\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7eef05\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFFFFF\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"b969f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#3A531C\"},\"elements\":[{\"id\":\"b80ff61\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 <br>\\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Order Now \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9c3da2f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\"},\"elements\":[{\"id\":\"ab2aca8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#160D0D75\"},\"elements\":[{\"id\":\"9bc0799\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"global_text_color\":\"#000000\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"input_text_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"btn_background_color_background\":\"classic\",\"btn_background_color_color\":\"#3BB44A\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"256d8ee\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"c4c2f4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"95de950\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7211','2140','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7213','1995','_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:3;s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:12;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:12;s:11:\"title_color\";i:12;s:21:\"typography_typography\";i:12;s:22:\"typography_font_family\";i:12;s:20:\"typography_font_size\";i:11;s:22:\"typography_font_weight\";i:12;s:22:\"typography_line_height\";i:10;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:6;s:7:\"_margin\";i:2;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:6;s:4:\"size\";i:6;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:6;s:12:\"align_mobile\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:17:\"button_text_color\";i:6;s:16:\"background_color\";i:6;s:13:\"border_border\";i:6;s:11:\"hover_color\";i:6;s:12:\"border_width\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:16;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:5;}s:21:\"section_shape_divider\";a:2:{s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_color\";i:1;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:10;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:11;s:11:\"_element_id\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:5;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:5;s:7:\"divider\";i:4;s:13:\"divider_color\";i:1;}s:18:\"section_text_style\";a:5:{s:10:\"text_color\";i:5;s:26:\"icon_typography_typography\";i:5;s:27:\"icon_typography_font_family\";i:5;s:27:\"icon_typography_font_weight\";i:5;s:25:\"icon_typography_font_size\";i:1;}s:18:\"section_icon_style\";a:1:{s:10:\"icon_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:1;s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:10:\"after_text\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:1;}s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:13:\"checkout-form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_general_fields\";a:1:{s:6:\"layout\";i:1;}}s:5:\"style\";a:3:{s:28:\"section_general_style_fields\";a:5:{s:17:\"global_text_color\";i:1;s:28:\"global_typography_typography\";i:1;s:29:\"global_typography_font_family\";i:1;s:27:\"global_typography_font_size\";i:1;s:29:\"global_typography_font_weight\";i:1;}s:13:\"input_section\";a:3:{s:32:\"input_text_typography_typography\";i:1;s:31:\"input_text_typography_font_size\";i:1;s:33:\"input_text_typography_font_weight\";i:1;}s:14:\"button_section\";a:2:{s:31:\"btn_background_color_background\";i:1;s:26:\"btn_background_color_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7215','1995','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7216','1995','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7217','1995','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7221','2141','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7222','2141','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7223','2141','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7224','2141','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7225','2141','_elementor_data','[{\"id\":\"a3e1d5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#E7F0E1\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_b\":\"#B0CF9C\",\"background_gradient_type\":\"radial\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FF42AC\",\"shape_divider_top\":\"triangle\",\"shape_divider_top_color\":\"#4F0534\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":127,\"sizes\":[]},\"shape_divider_bottom\":\"wave-brush\"},\"elements\":[{\"id\":\"ae19893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"1303061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2133,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#A21581\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3702568\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"d6913b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cdbeb12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rosemary Mint Scalp & Hair Strengthening Oil\",\"align_mobile\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":73,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-33\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0231586\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Rosemary:<\\/strong>\\u00a0Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"8864e9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation\":\"fadeInUp\",\"box_shadow_box_shadow_type\":\"yes\",\"border_border\":\"none\"},\"elements\":[{\"id\":\"92d0329\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2133,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\"},{\"id\":2134,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/e956d34a-1cbf-46e3-a049-ab86322c876a.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"dots_position\":\"inside\",\"image_border_border\":\"dotted\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"#C6267C\",\"navigation\":\"dots\",\"dots_size\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fceebe3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"dd61e80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68f924c\",\"elType\":\"section\",\"settings\":{\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f65597\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FF3B89\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"a06266b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2134,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/e956d34a-1cbf-46e3-a049-ab86322c876a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a562f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Use for daily hair care or specialized scalp treatments\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#C0077D\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc9b16c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c57d802\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FF28C8\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"zoomIn\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"53bd132\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2133,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9fbee41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Features more than 30 essential oils and extracts\\n\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#C0077D\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c44832c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"_animation\":\"bounce\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9b843fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FF3B89\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"f8f4e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2134,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/e956d34a-1cbf-46e3-a049-ab86322c876a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e747d90\",\"elType\":\"widget\",\"settings\":{\"title\":\"Helps improve length retention\\n\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#C0077D\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f8b209\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"da76ee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call if necessary or click the button below to call\",\"align\":\"center\",\"title_color\":\"#C0077D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ba9e63\",\"elType\":\"widget\",\"settings\":{\"text\":\"+971 50 278 0363\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Gotu\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c94202\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"76e0391\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#B74573\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#8C1142\"},\"elements\":[{\"id\":\"6bff2d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why take from us?\",\"align\":\"center\",\"title_color\":\"#102A00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc5ac54\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} authentic product\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"9e8f154\"},{\"text\":\"Our products will stop your hair loss\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"1799e92\"},{\"text\":\"Helps in hair growth\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"a35fe15\"},{\"text\":\"Infused with Biotin\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"28aa9f8\"},{\"text\":\"Features more than 30 essential oils and extracts\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"cc51c74\"},{\"text\":\"Delivery is free all over the UAE\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"3f66d7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#E3E3E3\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#DEDEDE\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"860d03e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8991467\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e6a814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e6d7c96\",\"elType\":\"widget\",\"settings\":{\"title\":\"Key Ingredients:\\n\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b988c9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Rosemary: Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2d5ffa7\"},{\"text\":\"Mint: Invigorates scalp\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"fccdefe\"},{\"text\":\"Biotin: Nourishes hair follicles, improving strength, and elasticity. Glycine Soja (Soybean) Oil, Ricinus Communis (Castor) Seed Oil, Rosmarinus Officinalis (Rosemary) Leaf Oil, Simmondsia Chinensis (Jojoba) Seed Oil, Mentha Piperita (Peppermint) Oil, Eucalyptus Globolus (Eucalyptus) Leaf Oil, Menthol, Melalueca Alternifolia (Tea Tree) Leaf Oil, Cocos Nucifera (Coconut) Oil, Equisetum Arvense (Horsetail) Extract, Aloe Barbadensis Extract, Lavandula Angustifolia (Lavender) Oil, Triticum Vulgare (Wheat) Germ Oil, Carthamus Tinctorius (Safflower) Seed Oil, Oenothera Biennis (Evening Primrose) Oil, Vitis Vinifera (Grape) Seed Oil, Benzyl Nicotinate, Prunus Amygdalus Dulcis (Sweet Almond) Oil, Oryza Sativa (Rice) Bran Oil, Tocopheryl Acetate, Biotin, Arctium Lappa (Burdock) Root Extract, Glycerin, Apium Graveolens (Celery) Seed Extract, Cholecalciferol (Vitamin D), Ascorbic Acid, Ocimum, Basilicum (Basil) Oil, Pogostemon Cablin (Patchouli) Oil, Salvia Officinalis (Sage) Oil, Silica, Urtica Dioica (Nettle) Extract\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"89e8c5d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#C0077D\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#C0077D\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"space_between_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e37b26c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"38c4690\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e5f74ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reviews of respected customers\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb03859\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\",\"id\":2133,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8e8c69c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order Now \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#D7226A\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a79d0ad\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e5f67bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3DA300\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ca60d18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fill the form below to order\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#D43474\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51c2dc4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"Determine the quantity\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"700\",\"btn_background_color_background\":\"gradient\",\"btn_background_color_color\":\"#E7F0E1\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#000000\",\"btn_background_color_color_b\":\"#B0CF9C\",\"btn_background_color_gradient_type\":\"radial\",\"_element_id\":\"order\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_weight\":\"700\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_weight\":\"500\",\"heading_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"checkout-form\"},{\"id\":\"fdfeb55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Delivery is free all over the UAE\",\"align\":\"center\",\"title_color\":\"#DB2089\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"436482e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2f32ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"1c80419\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 Your Busness Name | This website made with \\u2764\\ufe0f by itgalaxi<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7226','2141','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7227','2141','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7230','1999','_elementor_controls_usage','a:11:{s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:5;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:3;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:10;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:10;s:21:\"typography_typography\";i:10;s:22:\"typography_font_family\";i:10;s:20:\"typography_font_size\";i:10;s:22:\"typography_font_weight\";i:9;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:6;s:28:\"text_stroke_text_stroke_type\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:7;s:8:\"_padding\";i:8;}s:19:\"_section_background\";a:6:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:4;s:28:\"_background_hover_background\";i:4;s:19:\"_background_color_b\";i:4;s:25:\"_background_gradient_type\";i:4;s:26:\"_background_gradient_angle\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:5:\"align\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:11;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:7:\"padding\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_border\";a:5:{s:26:\"box_shadow_box_shadow_type\";i:1;s:13:\"border_border\";i:5;s:12:\"border_width\";i:4;s:12:\"border_color\";i:4;s:13:\"border_radius\";i:3;}s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:4:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;s:10:\"navigation\";i:1;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:2:{s:13:\"dots_position\";i:1;s:9:\"dots_size\";i:1;}s:19:\"section_style_image\";a:3:{s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:7;s:18:\"gap_columns_custom\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;s:24:\"background_gradient_type\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}s:21:\"section_shape_divider\";a:5:{s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:20:\"shape_divider_bottom\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:5;s:6:\"margin\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:6;s:4:\"link\";i:6;s:4:\"size\";i:6;s:13:\"selected_icon\";i:6;s:11:\"icon_indent\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:6;s:12:\"align_mobile\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:6;s:16:\"background_color\";i:6;s:15:\"hover_animation\";i:5;s:12:\"border_width\";i:5;s:12:\"border_color\";i:5;s:13:\"border_radius\";i:6;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:13:\"checkout-form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:22:\"section_general_fields\";a:1:{s:6:\"layout\";i:1;}s:37:\"section_product_option_section_fields\";a:4:{s:24:\"product_options_position\";i:1;s:20:\"product_options_skin\";i:1;s:22:\"product_options_images\";i:1;s:33:\"product_option_section_title_text\";i:1;}}s:5:\"style\";a:4:{s:28:\"section_general_style_fields\";a:3:{s:28:\"global_typography_typography\";i:1;s:29:\"global_typography_font_family\";i:1;s:29:\"global_typography_font_weight\";i:1;}s:14:\"button_section\";a:8:{s:31:\"btn_background_color_background\";i:1;s:26:\"btn_background_color_color\";i:1;s:17:\"button_text_color\";i:1;s:28:\"btn_background_color_color_b\";i:1;s:34:\"btn_background_color_gradient_type\";i:1;s:29:\"buttons_typography_typography\";i:1;s:30:\"buttons_typography_font_family\";i:1;s:30:\"buttons_typography_font_weight\";i:1;}s:28:\"section_heading_style_fields\";a:3:{s:29:\"heading_typography_typography\";i:1;s:30:\"heading_typography_font_weight\";i:1;s:30:\"heading_typography_font_family\";i:1;}s:13:\"input_section\";a:3:{s:32:\"input_text_typography_typography\";i:1;s:33:\"input_text_typography_font_weight\";i:1;s:33:\"input_text_typography_font_family\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:1;s:11:\"_element_id\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7233','2142','_wp_attached_file','2026/06/62377b17-7d55-45c5-b128-b993e01ae1f7.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7234','2142','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1448;s:6:\"height\";i:1086;s:4:\"file\";s:48:\"2026/06/62377b17-7d55-45c5-b128-b993e01ae1f7.png\";s:8:\"filesize\";i:1932915;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7235','2143','_wp_attached_file','2026/06/fc721dd8-d92e-4070-a025-16757ef31f00.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7236','2143','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1122;s:6:\"height\";i:1402;s:4:\"file\";s:48:\"2026/06/fc721dd8-d92e-4070-a025-16757ef31f00.png\";s:8:\"filesize\";i:2018873;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7247','2145','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7248','2145','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7249','2145','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7250','2145','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7251','2145','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7252','2145','_elementor_data','[{\"id\":\"2b3c079\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFE1BA\",\"shape_divider_bottom_color\":\"#FF8800\",\"shape_divider_bottom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":88,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"shape_divider_top\":\"drops\",\"shape_divider_top_color\":\"#F59B47\",\"shape_divider_top_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"shape_divider_bottom\":\"opacity-fan\"},\"elements\":[{\"id\":\"74e5410\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"91a93c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2142,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/62377b17-7d55-45c5-b128-b993e01ae1f7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#DE5801\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a543117\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u0986\\u09ae\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"title_color\":\"#0A0A0A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65bceb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"<s>\\u0986\\u0997\\u09c7\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\u0983 \\u09e7\\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/s>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":573,\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":549,\"sizes\":[]},\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"title_color\":\"#7E7E7E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09c1880\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u09b8\\u09c7\\u09b0\\u09be \\u0985\\u09ab\\u09be\\u09b0\\u0983   \\u09ea  \\u0995\\u09c7\\u099c\\u09bf\",\"highlighted_text\":\"1000\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be (\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae  \\u09ab\\u09cd\\u09b0\\u09c0)\",\"marker_color\":\"#FFFFFF\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"words_color\":\"#000000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_title\":\"Animated Headline\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"601222e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F4F3EA\"},\"elements\":[{\"id\":\"506fab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ae\\u09cd\\u09af\\u09be\\u0982\\u0997\\u09cb\\u09b0\\u09be\\u099c \\u0995\\u09c7\\u09a8 \\u09b8\\u09c7\\u09b0\\u09be  <span style=\\\"color: red\\\">? <\\/span>\\n\",\"align\":\"center\",\"title_color\":\"#FF7400\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74c1541\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":844,\"sizes\":[]}},\"elements\":[{\"id\":\"d3ee39f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"lazy_load\":\"yes\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"id\":2142,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/62377b17-7d55-45c5-b128-b993e01ae1f7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":77,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"_border_color\":\"#FF7400\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"2f5d6cd\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"background_color\":\"#DE5801\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3ace547\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45fb7d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ca67923\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fd702d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0d0c29c\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"image\":{\"id\":2142,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/62377b17-7d55-45c5-b128-b993e01ae1f7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"ac54b46\"},{\"image\":{\"id\":2142,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/62377b17-7d55-45c5-b128-b993e01ae1f7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_id\":\"bc3960e\"}],\"height\":{\"unit\":\"px\",\"size\":407,\"sizes\":[]},\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":100,\"sizes\":[]},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"slide_border_size\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"slide_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"slide_border_color\":\"#ADA8A8\",\"image\":{\"id\":1163,\"url\":\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/a0eaa9e3-9232-49d8-90fd-ae6c80f0e05b_13_11zon.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"media-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd474e6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F4F3EA\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bb43190\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0f00fa2\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#DE5801\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"940dc12\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09a8\\u09cd\\u09af \\u0997\\u09cd\\u09b0\\u09b9\\u09a8 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\",\"align\":\"center\",\"title_color\":\"#FF7400\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77693b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u098f\\u09a4\\u0987 \\u0995\\u09a8\\u09ab\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u09b8 \\u09af\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u0986\\u09b6\\u09be \\u09b0\\u09be\\u0996\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09be\\u09b8\\u09be\\u09af\\u09bc \\u09af\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09a6\\u09c7\\u0996\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09a8\\u09c7\\u0995\\u09cd\\u09b8\\u099f \\u099f\\u09be\\u0987\\u09ae \\u0986\\u09ac\\u09be\\u09b0\\u09cb \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u0964\\u0964 \\n\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"027e6e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fdb66dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"f50a395\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2142,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/62377b17-7d55-45c5-b128-b993e01ae1f7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FFD38C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"322274f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6704c5d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2143,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/fc721dd8-d92e-4070-a025-16757ef31f00.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"caption\":\"Blue Panjabi\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FFD38C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"94239e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"69a7d00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2142,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/62377b17-7d55-45c5-b128-b993e01ae1f7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FFD38C\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ec9ca61\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#DE5801\",\"link\":{\"url\":\"#order-form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3482309\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6b7b965\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a788625\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09bf \\u0995\\u09bf \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u0995\\u09bf\\u09a8\\u09be \\u0989\\u099a\\u09bf\\u09ce!\",\"align\":\"center\",\"title_color\":\"#FF7400\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f8c75f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":17,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ca89e3f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u0986\\u09ae\\u09b0\\u09be \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09a4\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5933f44\"},{\"text\":\"\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"8a730af\"},{\"text\":\"\\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0\\u09a4\\u09c7 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u0995\\u09b0\\u09bf \\u09b8\\u09c1\\u09a4\\u09b0\\u09be\\u0982 \\u09aa\\u09a8\\u09cd\\u09af \\u0997\\u09cd\\u09b0\\u09b9\\u09a8 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4f9bf5b\"},{\"text\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0986\\u0997\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ae\\u09cd\\u09af\\u09be\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09be\\u09b8\\u09be\\u09af\\u09bc \\u09af\\u09be\\u09ac\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09a3\\u09cd\\u09af \\u09a6\\u09c7\\u0996\\u09c7 \\u09b6\\u09c1\\u09a8\\u09c7 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b7\\u09a6 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3b1c925\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#01CDFF\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_color\":\"#54595F\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":102.5},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d879c5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_color\":\"#DE5801\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"88e95cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ec6499b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0 \\u09b8\\u09ae\\u09c2\\u09b9\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FF7400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3797e4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"css_classes\":\"oreder\"},\"elements\":[{\"id\":\"9d68e4c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#FF7400\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ce1199d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u09b9\\u09bf\\u09ae\\u09b8\\u09be\\u0997\\u09b0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6f2064f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6e9554\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"988ad84\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u09ac\\u09be\\u09a1\\u09bc\\u09bf -\\u09ea\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5a59132\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b284e10\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"de603e0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u09ab\\u099c\\u09b2\\u09bf\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7134893\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ae99c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"697a975\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u09a4\\u09cb\\u09a4\\u09be\\u09aa\\u09b0\\u09c0 \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d1f98b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e95544b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"eaee218\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":\"50\"},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#FF7400\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"f991b37\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u09b2\\u09cd\\u09af\\u09be\\u0982\\u09a1\\u09bc\\u09be \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4e08e1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2aaaed3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"313c12a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u0986\\u09ae\\u09cd\\u09b0\\u09c1\\u09aa\\u09be\\u09b2\\u09c0 \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"background_color\":\"#FF7400\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fea5adc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2343a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"edadd9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u0997\\u09c1\\u099f\\u09bf\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0585ee5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"09feaba\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ceaab92\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u099a\\u09b2\\u099b\\u09c7  -> \\u0986\\u09b6\\u09cd\\u09ac\\u09bf\\u09a8\\u09be \",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"background_color\":\"#FF7400\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c033c4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n \\u09e7\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"942b0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09e8\\u09e6\\u0995\\u09c7\\u099c\\u09bf \\u0995\\u09cd\\u09af\\u09be\\u09b0\\u09c7\\u099f   \\u09e7---- \\u099f\\u09be\\u0995\\u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 <\\/a>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef15288\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"040d32f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d8549e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09b6\\u09b0\\u09cd\\u09a4\\u09be\\u09ac\\u09b2\\u09c0\\u0983\",\"align\":\"center\",\"title_color\":\"#FF7400\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":78,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7cef7d4\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":17,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48a1c9d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09e6\\u09e7\\u0964 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09be\\u0987\\u09b0\\u09c7 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09b6\\u09c1\\u09a7\\u09c1 \\u099c\\u09c7\\u09b2\\u09be \\u09b8\\u09a6\\u09b0\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09af\\u09cb\\u099c\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5933f44\"},{\"text\":\"\\u09e6\\u09e8\\u0964 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09b9\\u09b2\\u09c7 \\u09a4\\u09be\\u09b0 \\u09a6\\u09be\\u09df\\u09ad\\u09be\\u09b0 \\u0995\\u09c1\\u09b0\\u09bf\\u09df\\u09be\\u09b0 \\u0995\\u09b0\\u09cd\\u09a4\\u09c3\\u09aa\\u0995\\u09cd\\u09b7 \\u09ac\\u09b9\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"8a730af\"},{\"text\":\"\\u09e9\\u0964 \\u0986\\u09ae \\u09b0\\u09bf\\u09b8\\u09bf\\u09ad \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u0997\\u09cd\\u09b0\\u09be\\u09b9\\u0995\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993 \\u09a7\\u09be\\u09b0\\u09a3 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u0995\\u09b0\\u099b\\u09bf\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4f9bf5b\"},{\"text\":\"\\u09ea\\u0964 \\u0993\\u09df\\u09c7\\u09ac\\u09b8\\u09be\\u0987\\u099f \\u098f \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09c7\\u09a4\\u09cd\\u09b0\\u09c7 \\u09b6\\u09c1\\u09a7\\u09c1 Steadfast \\u0995\\u09c1\\u09b0\\u09bf\\u09df\\u09be\\u09b0\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u0986\\u09ae \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\\u0964 \\u0985\\u09a8\\u09cd\\u09af\\u09be \\u0995\\u09cb\\u09a8 \\u0995\\u09c1\\u09b0\\u09bf\\u09b0\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u0986\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a8\\u09bf\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\u09b2\\u09c7 MangoRaj \\u098f\\u09b0 \\u0995\\u09a8\\u09cd\\u099f\\u09be\\u0995\\u09cd\\u099f \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 (01733601555) \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c7 \\u099c\\u09be\\u09a8\\u09be\\u09a8\\u09cb\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2\\u09cb\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3b1c925\"}],\"space_between\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#E4881D\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_color\":\"#54595F\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}\",\"size\":102.5},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"400e0a6\",\"elType\":\"section\",\"settings\":{\"_element_id\":\"order\"},\"elements\":[{\"id\":\"a4c711e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13894d5\",\"elType\":\"widget\",\"settings\":{\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"layout\":\"two-column\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Hind Siliguri\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"order-form\",\"global_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"global_typography_font_weight\":\"600\",\"heading_text_color\":\"#000000\",\"heading_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0812fd0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"81677c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design by itgalaxi<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7a93074\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7253','2145','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7255','1987','_elementor_controls_usage','a:13:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:4;s:10:\"image_size\";i:1;s:7:\"caption\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:1;s:19:\"image_border_border\";i:4;s:18:\"image_border_width\";i:4;s:18:\"image_border_color\";i:4;s:19:\"image_border_radius\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:24;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:24;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:5:\"align\";i:24;s:21:\"typography_typography\";i:24;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:24;s:22:\"typography_font_weight\";i:7;s:22:\"typography_line_height\";i:2;s:11:\"title_color\";i:8;s:23:\"text_stroke_text_stroke\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:21:\"_element_custom_width\";i:3;}s:18:\"_section_transform\";a:3:{s:28:\"_transform_translateX_effect\";i:1;s:28:\"_transform_translateY_effect\";i:1;s:23:\"_transform_scale_effect\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:3:{s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:10:\"after_text\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:1;}s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_family\";i:1;s:28:\"words_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:6:\"_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:11;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:1:{s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:2;}s:21:\"section_shape_divider\";a:8:{s:26:\"shape_divider_bottom_color\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_color\";i:1;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:20:\"shape_divider_bottom\";i:1;}s:14:\"section_border\";a:1:{s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:11:\"_element_id\";i:1;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:1:{s:9:\"lazy_load\";i:1;}s:21:\"section_image_overlay\";a:2:{s:18:\"show_image_overlay\";i:1;s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:21:\"_element_custom_width\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:11;s:4:\"link\";i:11;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:11;s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:3;s:16:\"background_color\";i:11;s:22:\"typography_font_family\";i:3;s:22:\"typography_font_weight\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:11:\"boxed_width\";i:1;s:14:\"flex_direction\";i:6;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:13:\"border_radius\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:2:{s:6:\"margin\";i:2;s:11:\"css_classes\";i:1;}}}}s:14:\"media-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_slides\";a:3:{s:6:\"slides\";i:1;s:6:\"height\";i:1;s:5:\"width\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_slides_style\";a:4:{s:13:\"space_between\";i:1;s:17:\"slide_border_size\";i:1;s:19:\"slide_border_radius\";i:1;s:18:\"slide_border_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"width\";i:2;s:5:\"align\";i:2;s:4:\"look\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:2;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:6:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:27:\"icon_typography_line_height\";i:2;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;}}}}s:13:\"checkout-form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:22:\"section_general_fields\";a:1:{s:6:\"layout\";i:1;}s:37:\"section_product_option_section_fields\";a:3:{s:24:\"product_options_position\";i:1;s:20:\"product_options_skin\";i:1;s:22:\"product_options_images\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:1;s:11:\"_element_id\";i:1;}s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;}}s:5:\"style\";a:4:{s:28:\"section_general_style_fields\";a:4:{s:28:\"global_typography_typography\";i:1;s:29:\"global_typography_font_family\";i:1;s:27:\"global_typography_font_size\";i:1;s:29:\"global_typography_font_weight\";i:1;}s:28:\"section_heading_style_fields\";a:5:{s:29:\"heading_typography_typography\";i:1;s:30:\"heading_typography_font_family\";i:1;s:28:\"heading_typography_font_size\";i:1;s:18:\"heading_text_color\";i:1;s:30:\"heading_typography_font_weight\";i:1;}s:13:\"input_section\";a:3:{s:32:\"input_text_typography_typography\";i:1;s:33:\"input_text_typography_font_family\";i:1;s:31:\"input_text_typography_font_size\";i:1;}s:14:\"button_section\";a:3:{s:29:\"buttons_typography_typography\";i:1;s:30:\"buttons_typography_font_family\";i:1;s:28:\"buttons_typography_font_size\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7260','1856','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7261','1856','_wp_trash_meta_time','1780986999');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7262','1856','_wp_desired_post_slug','sales-landing-9');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7263','1858','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7264','1858','_wp_trash_meta_time','1780986999');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7265','1858','_wp_desired_post_slug','checkout-woo-11');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7266','1874','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7267','1874','_wp_trash_meta_time','1780986999');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7268','1874','_wp_desired_post_slug','thank-you-woo-7');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7269','54','_wp_trash_meta_status','inherit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7270','54','_wp_trash_meta_time','1780986999');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7271','54','_wp_desired_post_slug','water-pluncton-min-300x300');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7272','1855','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7273','1855','_wp_trash_meta_time','1780986999');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7274','1855','_wp_desired_post_slug','tea-plaza-01');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7275','1852','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7276','1852','_wp_trash_meta_time','1780987006');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7277','1852','_wp_desired_post_slug','sales-landing-8');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7278','1854','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7279','1854','_wp_trash_meta_time','1780987006');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7280','1854','_wp_desired_post_slug','checkout-woo-10');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7281','1881','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7282','1881','_wp_trash_meta_time','1780987006');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7283','1881','_wp_desired_post_slug','thank-you-woo-9');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7284','53','_wp_trash_meta_status','inherit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7285','53','_wp_trash_meta_time','1780987006');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7286','53','_wp_desired_post_slug','double-growth-min-300x300');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7287','1851','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7288','1851','_wp_trash_meta_time','1780987006');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7289','1851','_wp_desired_post_slug','taste-01-copy-copy');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7290','1845','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7291','1845','_wp_trash_meta_time','1780987014');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7292','1845','_wp_desired_post_slug','sales-landing-7');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7293','1847','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7294','1847','_wp_trash_meta_time','1780987014');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7295','1847','_wp_desired_post_slug','checkout-woo-9');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7296','1879','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7297','1879','_wp_trash_meta_time','1780987014');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7298','1879','_wp_desired_post_slug','thank-you-woo-8');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7299','52','_wp_trash_meta_status','inherit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7300','52','_wp_trash_meta_time','1780987014');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7301','52','_wp_desired_post_slug','440470036_459782033107096_6852173422467720754_n');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7302','1844','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7303','1844','_wp_trash_meta_time','1780987014');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7304','1844','_wp_desired_post_slug','taste-01-copy');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7305','1865','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7306','1865','_wp_trash_meta_time','1780987024');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7307','1865','_wp_desired_post_slug','sales-landing-10');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7308','1867','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7309','1867','_wp_trash_meta_time','1780987024');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7310','1867','_wp_desired_post_slug','checkout-woo-12');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7311','1898','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7312','1898','_wp_trash_meta_time','1780987024');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7313','1898','_wp_desired_post_slug','thank-you-woo-11');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7314','55','_wp_trash_meta_status','inherit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7315','55','_wp_trash_meta_time','1780987024');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7316','55','_wp_desired_post_slug','green-natural-hello-spring-season-instagram-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7317','1864','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7318','1864','_wp_trash_meta_time','1780987024');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7319','1864','_wp_desired_post_slug','tea-plaza-02');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7342','1903','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7343','1903','_wp_trash_meta_time','1780987164');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7344','1903','_wp_desired_post_slug','sales-landing-14');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7345','1905','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7346','1905','_wp_trash_meta_time','1780987164');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7347','1905','_wp_desired_post_slug','checkout-woo-18');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7348','1944','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7349','1944','_wp_trash_meta_time','1780987164');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7350','1944','_wp_desired_post_slug','thank-you-woo-17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7351','61','_wp_trash_meta_status','inherit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7352','61','_wp_trash_meta_time','1780987164');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7353','61','_wp_desired_post_slug','green-natural-hello-spring-season-instagram-post-768x768-jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7354','1902','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7355','1902','_wp_trash_meta_time','1780987164');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7356','1902','_wp_desired_post_slug','digital-timer-switch');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7357','1920','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7358','1920','_wp_trash_meta_time','1780987252');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7359','1920','_wp_desired_post_slug','sales-landing-16');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7360','1922','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7361','1922','_wp_trash_meta_time','1780987252');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7362','1922','_wp_desired_post_slug','checkout-woo-19');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7363','1942','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7364','1942','_wp_trash_meta_time','1780987252');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7365','1942','_wp_desired_post_slug','thank-you-woo-16');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7366','63','_wp_trash_meta_status','inherit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7367','63','_wp_trash_meta_time','1780987252');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7368','63','_wp_desired_post_slug','green-natural-hello-spring-season-instagram-post-jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7369','1919','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7370','1919','_wp_trash_meta_time','1780987252');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7371','1919','_wp_desired_post_slug','foodheavenbd');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7372','1911','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7373','1911','_wp_trash_meta_time','1780987259');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7374','1911','_wp_desired_post_slug','sales-landing-15');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7375','1913','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7376','1913','_wp_trash_meta_time','1780987259');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7377','1913','_wp_desired_post_slug','shirts-checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7378','1915','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7379','1915','_wp_trash_meta_time','1780987259');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7380','1915','_wp_desired_post_slug','thanks-for-order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7381','58','_wp_trash_meta_status','inherit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7382','58','_wp_trash_meta_time','1780987259');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7383','58','_wp_desired_post_slug','58-revision-v1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7384','1910','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7385','1910','_wp_trash_meta_time','1780987259');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7386','1910','_wp_desired_post_slug','eid-shirts');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7387','1956','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7388','1956','_wp_trash_meta_time','1780987268');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7389','1956','_wp_desired_post_slug','sales-landing-21');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7390','1958','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7391','1958','_wp_trash_meta_time','1780987268');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7392','1958','_wp_desired_post_slug','checkout-woo-24');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7393','1989','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7394','1989','_wp_trash_meta_time','1780987268');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7395','1989','_wp_desired_post_slug','thank-you-woo-23');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7396','69','_wp_trash_meta_status','inherit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7397','69','_wp_trash_meta_time','1780987268');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7398','69','_wp_desired_post_slug','placeholder-1-2-png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7399','1955','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7400','1955','_wp_trash_meta_time','1780987268');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7401','1955','_wp_desired_post_slug','khimar');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7402','1930','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7403','1930','_wp_trash_meta_time','1780987278');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7404','1930','_wp_desired_post_slug','sales-landing-17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7405','1932','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7406','1932','_wp_trash_meta_time','1780987278');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7407','1932','_wp_desired_post_slug','checkout-woo-21');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7408','1981','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7409','1981','_wp_trash_meta_time','1780987278');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7410','1981','_wp_desired_post_slug','thank-you-woo-21');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7411','65','_wp_trash_meta_status','inherit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7412','65','_wp_trash_meta_time','1780987278');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7413','65','_wp_desired_post_slug','screenshot-2024-07-01-134806-webp');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7414','1929','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7415','1929','_wp_trash_meta_time','1780987278');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7416','1929','_wp_desired_post_slug','itgalaxi-testing-funel');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7417','1890','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7418','1890','_wp_trash_meta_time','1780987288');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7419','1890','_wp_desired_post_slug','checkout-woo-16');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7420','1917','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7421','1917','_wp_trash_meta_time','1780987288');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7422','1917','_wp_desired_post_slug','thank-you-woo-13');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7423','59','_wp_trash_meta_status','inherit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7424','59','_wp_trash_meta_time','1780987288');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7425','59','_wp_desired_post_slug','green-natural-hello-spring-season-instagram-post-100x100-jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7426','1889','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7427','1889','_wp_trash_meta_time','1780987288');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7428','1889','_wp_desired_post_slug','tshirt-02');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7429','1888','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7430','1888','_wp_trash_meta_time','1780987304');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7431','1888','_wp_desired_post_slug','checkout-woo-15');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7432','1908','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7433','1908','_wp_trash_meta_time','1780987304');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7434','1908','_wp_desired_post_slug','thank-you-woo-12');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7435','58','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7436','58','_wp_trash_meta_time','1780987304');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7437','58','_wp_desired_post_slug','fishgrowth-02');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7438','2146','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7439','2146','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7440','2146','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7441','2146','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7442','2146','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7443','2146','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7444','2146','_elementor_data','[{\"id\":\"56af9bdc\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0D7422\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_negative\":\"yes\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"20\",\"bottom\":\"36\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6354fe87\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ca4d84f\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\"},\"width\":{\"unit\":\"px\",\"size\":162,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"2817b6e6\",\"settings\":{\"title\":\"<strong style=\\\"background: linear-gradient(90deg, #ff0000, #ff7f00);\\n      color: #ffffff;\\n      font-size: 14px;\\n      font-weight: 900;\\n      padding: 4px;\\n      text-align: center;\\n      border-radius: 12px;\\n      box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);\\n      font-family: \'Arial\', sans-serif;\\n      margin: 20px;\\n      animation: pulse 2s infinite;\\\">\\u099a\\u09b2\\u099b\\u09c7 \\u09b8\\u09b0\\u09cd\\u09ac\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09b8\\u09c7\\u09b0\\u09be \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f<\\/strong> \\n \\n    <span> \\u098f\\u0996\\u09a8 \\u09eb\\u09e6{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f !<\\/span>  <br><br>\\n\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09be\\u0987 \\u09b8\\u09bf\\u09a6\\u09cd\\u09a7\\u09be\\u09a8\\u09cd\\u09a4 \\u2013 \\u0996\\u09b0\\u099a \\u0995\\u09ae\\u09be\\u09ac\\u09c7 \\u09eb\\u09e6{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4!\\n <br><br>\\n\\n\\u26d4 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09b2\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_animation\":\"fadeInDown\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_background_color\":\"#21503B\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"570c0eb4\",\"settings\":{\"title\":\"<br\\/> \\u09e7\\u09e6\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09df \\u0986\\u09aa\\u09a8\\u09bf \\u09ac\\u09be\\u0981\\u099a\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09a4\\u09c7\\u09a8 \\u09e7\\u09eb\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0?\\n\\n<br\\/><br\\/>\\n\\u09a4\\u09be\\u0987 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u09a8\\u09be \\u0995\\u09b0\\u09c7 \\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09c1\\u09a8 \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"35cf3d3b\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"78895acb\",\"settings\":{\"button_type\":\"success\",\"text\":\"\\u09b9\\u09cb\\u09af\\u09bc\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_element_width\":\"auto\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"720c8da1\",\"settings\":{\"button_type\":\"danger\",\"text\":\"  \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"link\":{\"url\":\" tel:01838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"background_color\":\"#F70944\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"8366e1a\",\"settings\":{\"background_background\":\"classic\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color\":\"#FFFFFF\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"237445d4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f71532a\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/PKwk_GzEyao\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"video_type\":\"hosted\",\"hosted_url\":{\"id\":64,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/sorkoar-agro-dicche.mp4\"},\"autoplay\":\"yes\",\"poster\":{\"id\":65,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Screenshot-2024-07-01-134806.webp\"},\"image_overlay\":{\"id\":66,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/placeholder.png\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"d6334dd\",\"settings\":{\"thumbnail_size\":\"medium_large\",\"autoplay_speed\":2000,\"carousel\":[],\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"},{\"id\":\"21652aea\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\"},\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"31c87f7\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0D7422\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d2923e5\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d5d5f54\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"17632185\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"24cf03d5\",\"settings\":{\"content_position\":\"middle\",\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c582a9b\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6355a4f5\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5006653\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"6d18c6a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"P H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4bed90a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0d295c0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7059cbe\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c6a56c8\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"17fafae\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ea0db2\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0acdf06\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#FFFFFF\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"3e9980a3\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"59c5b7af\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ae7a46a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b9db319\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"56f4c721\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#54A41F\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"3a31b225\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ef7714e\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d81fdf9\",\"settings\":{\"image\":{\"id\":65,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Screenshot-2024-07-01-134806.webp\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_animation\":\"fadeIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"513395d9\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33a94c14\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"396e5194\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7995c68\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#54A41F\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"232a7d13\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"196d5788\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7995c68\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#54A41F\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"46d52cd7\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"7557cce3\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0D7422\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"205e1a79\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22ff8f09\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6755c86b\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"divider\",\"elType\":\"widget\"},{\"id\":\"656f7e53\",\"settings\":{\"content_position\":\"middle\",\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71d861ed\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e3f3b4\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5006653\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"95b3d64\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4763cdd\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5c62940\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3f89b83\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#FFFFFF\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"4167eca5\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"35637d4e\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.74,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3bec52f0\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FB6107\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2422081d\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09ed\\u09eb \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"title_color\":\"#54A41F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"__globals__\":{\"marker_color\":\"\",\"words_color\":\"\"},\"marker_color\":\"#FB6107\",\"words_color\":\"#FB6107\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"921a419\",\"settings\":{\"title\":\"\\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e9\\u09ed\\u09eb\\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FB0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"bounceIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"},{\"id\":\"32deff59\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FB6107\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2748054\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09eb\\u09e6 \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\" \\u099f\\u09be\\u0995\\u09be\",\"title_color\":\"#54A41F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"__globals__\":{\"marker_color\":\"\",\"words_color\":\"\"},\"marker_color\":\"#FB6107\",\"words_color\":\"#FB6107\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"1d7c7f92\",\"settings\":{\"title\":\"\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e9\\u09ed\\u09eb \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FB0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"bounceIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"a80cf01\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_position\":\"middle\",\"background_color\":\"#0D7455\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"12bf4bc4\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ed8c323\",\"settings\":{\"title\":\"\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u0985\\u09a5\\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6641457c\",\"settings\":{\"text\":\"01838 40 40 44\",\"link\":{\"url\":\"tel:01838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"6b619a31\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"checkout\",\"background_background\":\"classic\",\"background_color\":\"#AAFFBB\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29cc3b4a\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#1D5F4B\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f1d51c\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\"> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 <\\/span> \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"title_color\":\"#1D5F4B\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"166b94d4\",\"settings\":{\"title\":\"\",\"align\":\"center\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5f4afc4\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#E7FFEB\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e284e0\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#03DE91\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"45d5910\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ded94d3\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F20055\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"1d7d9558\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a7a1d51\",\"settings\":{\"editor\":\"<p>Develop by itgalaxy<\\/p>\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7445','2146','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7446','1887','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7447','1887','_wp_trash_meta_time','1780987304');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7448','1887','_wp_desired_post_slug','tshirt');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7449','1839','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7450','1839','_wp_trash_meta_time','1780987314');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7451','1839','_wp_desired_post_slug','sales-landing-6');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7452','1841','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7453','1841','_wp_trash_meta_time','1780987314');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7454','1841','_wp_desired_post_slug','checkout-woo-8');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7455','1860','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7456','1860','_wp_trash_meta_time','1780987314');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7457','1860','_wp_desired_post_slug','thank-you-woo-5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7458','1838','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7459','1838','_wp_trash_meta_time','1780987314');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7460','1838','_wp_desired_post_slug','sugai-khejur-02');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7461','1873','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7462','1873','_wp_trash_meta_time','1780987323');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7463','1873','_wp_desired_post_slug','sales-landing-11');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7464','1876','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7465','1876','_wp_trash_meta_time','1780987323');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7466','1876','_wp_desired_post_slug','checkout-woo-13');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7467','1892','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7468','1892','_wp_trash_meta_time','1780987324');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7469','1892','_wp_desired_post_slug','thank-you-woo-10');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7470','56','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7471','56','_wp_trash_meta_time','1780987324');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7472','56','_wp_desired_post_slug','fishgrowth-02');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7473','1872','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7474','1872','_wp_trash_meta_time','1780987324');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7475','1872','_wp_desired_post_slug','three-piece');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7476','1830','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7477','1830','_wp_trash_meta_time','1780987337');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7478','1830','_wp_desired_post_slug','sales-landing-4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7479','1832','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7480','1832','_wp_trash_meta_time','1780987337');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7481','1832','_wp_desired_post_slug','checkout-woo-6');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7482','1842','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7483','1842','_wp_trash_meta_time','1780987337');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7484','1842','_wp_desired_post_slug','thank-you-woo-3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7485','49','_wp_trash_meta_status','auto-draft');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7486','49','_wp_trash_meta_time','1780987337');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7487','49','_wp_desired_post_slug','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7488','1829','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7489','1829','_wp_trash_meta_time','1780987337');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7490','1829','_wp_desired_post_slug','special-red-atta-02');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7491','2148','_wp_attached_file','2026/06/57c01c34-e870-491b-ae61-980267b58c4d.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7492','2148','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1254;s:6:\"height\";i:1254;s:4:\"file\";s:48:\"2026/06/57c01c34-e870-491b-ae61-980267b58c4d.png\";s:8:\"filesize\";i:2258084;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7493','2149','_wp_attached_file','2026/06/0fbf1966-c265-45fb-b5f3-6b832b38fc22.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7494','2149','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1122;s:6:\"height\";i:1402;s:4:\"file\";s:48:\"2026/06/0fbf1966-c265-45fb-b5f3-6b832b38fc22.png\";s:8:\"filesize\";i:2332138;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7495','1978','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7496','1978','_wp_trash_meta_time','1780987512');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7497','1978','_wp_desired_post_slug','sales-landing-24');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7498','1980','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7499','1980','_wp_trash_meta_time','1780987512');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7500','1980','_wp_desired_post_slug','checkout-woo-27');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7501','2087','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7502','2087','_wp_trash_meta_time','1780987512');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7503','2087','_wp_desired_post_slug','thank-you-woo-37');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7504','72','_wp_trash_meta_status','inherit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7505','72','_wp_trash_meta_time','1780987512');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7506','72','_wp_desired_post_slug','placeholder-png-2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7507','1977','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7508','1977','_wp_trash_meta_time','1780987512');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7509','1977','_wp_desired_post_slug','loper');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7512','1974','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7513','1974','_wp_trash_meta_time','1780987537');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7514','1974','_wp_desired_post_slug','sales-landing-23');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7515','1976','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7516','1976','_wp_trash_meta_time','1780987537');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7517','1976','_wp_desired_post_slug','checkout-woo-26');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7518','2048','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7519','2048','_wp_trash_meta_time','1780987537');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7520','2048','_wp_desired_post_slug','thank-you-woo-31');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7521','70','_wp_trash_meta_status','inherit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7522','70','_wp_trash_meta_time','1780987537');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7523','70','_wp_desired_post_slug','70-revision-v1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7524','1973','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7525','1973','_wp_trash_meta_time','1780987537');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7526','1973','_wp_desired_post_slug','leap-care-mask-0');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7527','1964','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7528','1964','_wp_trash_meta_time','1780987569');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7529','1964','_wp_desired_post_slug','sales-landing-22');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7530','1966','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7531','1966','_wp_trash_meta_time','1780987569');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7532','1966','_wp_desired_post_slug','checkout-woo-25');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7533','2060','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7534','2060','_wp_trash_meta_time','1780987569');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7535','2060','_wp_desired_post_slug','thank-you-woo-33');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7536','70','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7537','70','_wp_trash_meta_time','1780987569');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7538','70','_wp_desired_post_slug','checkout-woo-2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7539','2150','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7540','2150','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7541','2150','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7542','2150','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7543','2150','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7544','2150','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7545','2150','_elementor_data','[{\"id\":\"731f89b4\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"280939d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f2dd970\",\"settings\":{\"title\":\"\\u09b8\\u09c0\\u09ae\\u09bf\\u09a4 \\u09b8\\u09ae\\u09df\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09ab\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u099c\\n\",\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#00921E\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"37fb909b\",\"settings\":{\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"digits_typography_typography\":\"custom\",\"digits_typography_font_family\":\"Roboto\",\"digits_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":false},\"box_background_color\":\"#00921E\",\"digits_color\":\"#FFFFFF\",\"digits_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"digits_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"label_color\":\"#FFFFFF\",\"container_width_mobile\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":0,\"sizes\":[]},\"box_spacing_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"box_padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"digits_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto Slab\",\"label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInDown\",\"due_date\":\"2024-08-29 19:22\",\"countdown_type\":\"evergreen\",\"evergreen_counter_hours\":1,\"evergreen_counter_minutes\":5,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"countdown\",\"elType\":\"widget\"},{\"id\":\"48248c8b\",\"settings\":{\"background_background\":\"gradient\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#BAF8C7\",\"background_overlay_opacity_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33530621\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ef9cb5f\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"16a82c23\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#00921E\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4bbed449\",\"settings\":{\"before_text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09ed\\u09eb \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"marker_color\":\"#FF0000\",\"title_color\":\"#00921E\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"words_color\":\"#000000\",\"stroke_width\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"above_content\":\"yes\",\"rounded_edges\":\"yes\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"title_typography_font_family\":\"Hind Siliguri\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"marker\":\"x\",\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_element_width\":\"inherit\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"6c94bfcb\",\"settings\":{\"before_text\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09eb\\u09e6 \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"marker_color\":\"#FF001E\",\"title_color\":\"#00921E\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"words_color\":\"#000000\",\"stroke_width\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"above_content\":\"yes\",\"rounded_edges\":\"yes\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"title_typography_font_family\":\"Hind Siliguri\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"marker\":\"x\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\",\"words_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"4157db97\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"\",\"highlighted_text\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#EF0505\",\"stroke_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"rounded_edges\":\"yes\",\"title_color\":\"#672F2F\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"words_color\":\"#FF022D\",\"words_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"title_typography_font_family\":\"Allison\",\"_background_background\":\"classic\",\"words_typography_typography\":\"custom\",\"words_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"10bffc22\",\"settings\":{\"before_text\":\"\\u0995\\u09ae\\u09cd\\u09ac\\u09cb \\u0985\\u09ab\\u09be\\u09b0 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 & \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \",\"highlighted_text\":\"\\u09e7\\u09e6\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"marker_color\":\"#FF0000\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"words_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"stroke_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"above_content\":\"yes\",\"title_color\":\"#39911D\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"marker\":\"underline_zigzag\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"63ed4c2e\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"button_box_shadow_box_shadow_type\":\"yes\",\"_animation\":\"fadeInDown\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=edcb9c8\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"15fbf269\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3530c1b2\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"background_color\":\"#C6FFCA\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78c5ee61\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=Lrdqc3AwV9I\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_overlay\":{\"id\":72,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/placeholder-1.png\"},\"insert_url\":\"yes\",\"external_url\":{\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=9D6P0jDMTJo\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"78f885d7\",\"settings\":{\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#C6FFCA\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45dd859d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38714fbd\",\"settings\":{\"title\":\"\\n\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n<span style=\\\"color:#00FF48\\\">\\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8   <\\/span>?\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#045916\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"66\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2cafa942\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7&nbsp;\\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 <strong>fishgrowth<\\/strong>\\u0964&nbsp;<b>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8<\\/b>&nbsp;\\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964&nbsp;\\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":100.175},\"_flex_align_self\":\"flex-start\",\"typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_element_width\":\"initial\",\"_flex_size\":\"none\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"15a46097\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0  \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"cf2251b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b7264ab\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"P H  \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7fc5b22\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b76666d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"8cdceeb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"51179e9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"64b4248\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"89f6948\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"53766b0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"565c8b9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"1f70568\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"6e78d97\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"left\",\"icon_color\":\"#00921E\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_self_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"445a913d\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C6FFCA\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5833de3b\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1226764\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#045916\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5594c2fa\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54f11e84\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a631c2\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983 \\n\",\"align\":\"center\",\"title_color\":\"#0B6517\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"3c710941\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"typography_line_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1c6e5ab7\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#0B6517\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"text_stroke_text_stroke_type\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"69353b9c\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"59874d85\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"button_box_shadow_box_shadow_type\":\"yes\",\"_animation\":\"fadeInDown\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=edcb9c8\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"2d2ca21e\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u099c\\u09cd\\u099e\\u09a4\\u09be, \\u09b6\\u09bf\\u0995\\u09cd\\u09b7\\u09be \\u0993 \\u09aa\\u09b0\\u09c0\\u0995\\u09cd\\u09b7\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ac\\u09a8\\u09df\\u09c7 fishgrowth \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09ac\\u09cd\\u09af\\u09be\\u09aa\\u09c0 \\u09ae\\u09be\\u099b \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u09b8\\u09c7\\u09ac\\u09be, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6 \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09aa\\u09a3\\u09cd\\u09af \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09c7 \\u0986\\u09b8\\u099b\\u09c7\\u0964 \\u09ae\\u09be\\u099b \\u099b\\u09be\\u09dc\\u09be \\u09b9\\u09a4\\u09c7 \\u09ac\\u09be\\u099c\\u09be\\u09b0\\u099c\\u09be\\u09a4 \\u0995\\u09b0\\u09be \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09c1\\u09a8\\u09bf\\u09aa\\u09c1\\u09a8 \\u09ae\\u09a8\\u09bf\\u099f\\u09b0\\u09bf\\u0982 \\u098f\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09aa\\u09a5\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u0997\\u09a3 \\u09b9\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8\\u0964\\n\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"8e950d3\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#045916\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"48ff8e4d\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"75d92a9\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"789341b\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"_id\":\"d11504e\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\",\"_id\":\"9de7d2f\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"c81d964\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"_id\":\"e523b92\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\",\"_id\":\"5d725c6\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#045916\",\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"011\",\"bottom\":\"0\",\"left\":\"0111\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"1b70727a\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\",\"background_background\":\"classic\",\"background_color\":\"#C6FFCA\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"150ddfda\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#4AAC3F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40a2cb10\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\"> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  <\\/span> \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_css_classes\":\"order\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"563e8658\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964    \\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"31955583\",\"settings\":{\"marker\":\"curly\",\"before_text\":\"\",\"highlighted_text\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"highlight_animation_duration\":1827,\"highlight_iteration_delay\":95,\"marker_color\":\"#C60000\",\"above_content\":\"yes\",\"rounded_edges\":\"yes\",\"title_color\":\"#562222\",\"words_color\":\"#DC0909\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"569c4df4\",\"settings\":{\"title\":\"\",\"align\":\"center\",\"title_color\":\"#FD3535\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5f4afc4\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e284e0\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#03DE91\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"7289cd30\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c87e62a\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F20055\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"2a9e407c\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"707ad36c\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ecafdda\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 fishgrowth| This website made with \\u2764\\ufe0f by <a style=\\\"color: red;\\\" href=\\\"https:\\/\\/itgalaxi.com\\/\\\"><b> itgalaxi<\\/b><\\/a><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7546','2150','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7547','1963','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7548','1963','_wp_trash_meta_time','1780987569');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7549','1963','_wp_desired_post_slug','leap-care-mask');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7550','1952','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7551','1952','_wp_trash_meta_time','1780987591');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7552','1952','_wp_desired_post_slug','sales-landing-20');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7553','1954','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7554','1954','_wp_trash_meta_time','1780987591');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7555','1954','_wp_desired_post_slug','khejurer-gur');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7556','1970','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7557','1970','_wp_trash_meta_time','1780987592');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7558','1970','_wp_desired_post_slug','thank-you-woo-20');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7559','67','_wp_trash_meta_status','inherit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7560','67','_wp_trash_meta_time','1780987592');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7561','67','_wp_desired_post_slug','67-revision-v1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7562','1951','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7563','1951','_wp_trash_meta_time','1780987592');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7564','1951','_wp_desired_post_slug','khejurer-gur');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7565','1948','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7566','1948','_wp_trash_meta_time','1780987625');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7567','1948','_wp_desired_post_slug','sales-landing-19');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7568','1950','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7569','1950','_wp_trash_meta_time','1780987625');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7570','1950','_wp_desired_post_slug','checkout-woo-23');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7571','1968','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7572','1968','_wp_trash_meta_time','1780987625');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7573','1968','_wp_desired_post_slug','thank-you-woo-19');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7574','67','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7575','67','_wp_trash_meta_time','1780987625');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7576','67','_wp_desired_post_slug','checkout-woo');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7577','2151','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7578','2151','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7579','2151','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7580','2151','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7581','2151','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7582','2151','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7583','2151','_elementor_data','[{\"id\":\"1965c1d2\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#9BFC8F\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"shape_divider_bottom\":\"zigzag\",\"shape_divider_bottom_negative\":\"yes\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"20\",\"bottom\":\"36\",\"left\":\"20\",\"isLinked\":false},\"shape_divider_bottom_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":184,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c95a42e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6be0e455\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\"},\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"63248444\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_animation\":\"fadeInDown\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#085400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"11f85201\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7 \\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 fishgrowth\\u0964 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964 \\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964\\n\\n\",\"align\":\"center\",\"title_color\":\"#22592C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"58b727d1\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"far fa-hand-point-down\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#F3DE2C\",\"hover_animation\":\"push\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"64e08cfe\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#C9FFA9\",\"shape_divider_top\":\"zigzag\",\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":139,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":101,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b71f38d\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":97.045},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6972ce1f\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":712,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d02b5f9\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=mjr8CjmMFL0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"loop\":\"yes\",\"css_filters_css_filter\":\"custom\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":11,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.76)\"},\"image_overlay\":{\"id\":69,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/placeholder-1-2.png\"},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_border_color\":\"#2F9226\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"a54a337\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008021\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#00360F\",\"button_background_hover_color\":\"#F5F2F1\",\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"24045da2\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#BEFFC3\",\"background_color_b\":\"#D5F4AE\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b269c13\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"240f69d\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n\",\"align\":\"center\",\"title_color\":\"#135E2C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"ee44033\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":95.425},\"min_height\":{\"unit\":\"px\",\"size\":339,\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78dc954e\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"046bfd6\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"P H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"1eada04\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"6392abe\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"ec2a39c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"f6fc568\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"4fdeb75\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"01216bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"2a08443\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"7cd6d51\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"ca4fa22\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_color\":\"#1E5C24\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"3ee16b0a\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#7AE282\",\"background_color_b\":\"#DAFFA8\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"55726d7c\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#0A5115\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"771cd63b\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c7f5bb4\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ee1986e\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":95.425},\"min_height\":{\"unit\":\"px\",\"size\":339,\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ed5d8fb\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1A6F30\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"40e60c24\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"67a32d69\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#106C3F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"10efc91f\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"5de5559a\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008013\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#003D06\",\"button_background_hover_color\":\"#FFFFFF\",\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"65b3891b\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":521,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFD1D1\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64fcdb68\",\"settings\":{\"image\":{\"id\":63,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\"},\"align\":\"center\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":9,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.77)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"422c73c3\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"overflow\":\"hidden\",\"background_color\":\"#C9FFA9\",\"width_mobile\":{\"unit\":\"px\",\"size\":307},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b16432c\",\"settings\":{\"content_width\":\"full\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4adda39c\",\"settings\":{\"content_width\":\"full\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#008024\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"566b5d51\",\"settings\":{\"title\":\"\\ud83d\\udca5\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\ud83d\\udca5\",\"header_size\":\"span\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"align_mobile\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"531950b5\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4dd017e9\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"10306a7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"9fd5518\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"d66b4f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"6d5bd08\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"c986e5e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"3acd941\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"text_color\":\"#166D08\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"1b994605\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"df2d8b0\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008021\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#00500C\",\"button_background_hover_color\":\"#FFFFFF\",\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"38a84c86\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#045304\",\"shape_divider_top_color\":\"#56FF07\",\"shape_divider_top_flip\":\"yes\",\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"px\",\"size\":1528,\"sizes\":[]},\"css_classes\":\"order\",\"margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_id\":\"checkout\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2205f14d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#C9FFA9\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#045304\",\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3485003d\",\"settings\":{\"title\":\"<span style=\\\"color:#00FF48\\\"> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  <\\/span>\\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#045304\",\"title_color\":\"#FFFFFF\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1626b5c0\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#0E371C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"5f4afc4\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e284e0\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#03DE91\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"26aaf0b8\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72b53444\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F20055\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"49772d91\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"flex_justify_content_mobile\":\"center\",\"flex_align_items_mobile\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_flex_align_self_mobile\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#B3FD99\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#777777\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49368123\",\"settings\":{\"title\":\"\\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 - 01838 40 40 44\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7584','2151','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7585','1947','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7586','1947','_wp_trash_meta_time','1780987625');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7587','1947','_wp_desired_post_slug','khejur-badam-barafi');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7588','1936','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7589','1936','_wp_trash_meta_time','1780987648');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7590','1936','_wp_desired_post_slug','sales-landing-18');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7591','1938','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7592','1938','_wp_trash_meta_time','1780987648');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7593','1938','_wp_desired_post_slug','checkout-woo-22');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7594','1960','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7595','1960','_wp_trash_meta_time','1780987648');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7596','1960','_wp_desired_post_slug','thank-you-woo-18');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7597','66','_wp_trash_meta_status','inherit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7598','66','_wp_trash_meta_time','1780987648');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7599','66','_wp_desired_post_slug','placeholder-png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7600','1935','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7601','1935','_wp_trash_meta_time','1780987648');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7602','1935','_wp_desired_post_slug','japanese-fusion');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7603','1925','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7604','1925','_wp_trash_meta_time','1780987675');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7605','1925','_wp_desired_post_slug','checkout-woo-20');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7606','1983','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7607','1983','_wp_trash_meta_time','1780987675');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7608','1983','_wp_desired_post_slug','thank-you-woo-22');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7609','64','_wp_trash_meta_status','inherit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7610','64','_wp_trash_meta_time','1780987675');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7611','64','_wp_desired_post_slug','sorkoar-agro-dicche-mp4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7612','1924','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7613','1924','_wp_trash_meta_time','1780987675');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7614','1924','_wp_desired_post_slug','himsagor-1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7615','1884','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7616','1884','_wp_trash_meta_time','1780987745');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7617','1884','_wp_desired_post_slug','sales-landing-12');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7618','1886','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7619','1886','_wp_trash_meta_time','1780987746');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7620','1886','_wp_desired_post_slug','checkout-woo-14');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7621','1939','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7622','1939','_wp_trash_meta_time','1780987746');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7623','1939','_wp_desired_post_slug','thank-you-woo-15');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7624','57','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7625','57','_wp_trash_meta_time','1780987746');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7626','57','_wp_desired_post_slug','sales-landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7627','1883','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7628','1883','_wp_trash_meta_time','1780987746');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7629','1883','_wp_desired_post_slug','trimmer');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7630','1822','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7631','1822','_wp_trash_meta_time','1780987762');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7632','1822','_wp_desired_post_slug','sales-landing-3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7633','1824','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7634','1824','_wp_trash_meta_time','1780987762');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7635','1824','_wp_desired_post_slug','checkout-woo-5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7636','1848','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7637','1848','_wp_trash_meta_time','1780987762');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7638','1848','_wp_desired_post_slug','thank-you-woo-4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7639','1821','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7640','1821','_wp_trash_meta_time','1780987762');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7641','1821','_wp_desired_post_slug','blue-cut-glass-02');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7642','1816','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7643','1816','_wp_trash_meta_time','1780987768');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7644','1816','_wp_desired_post_slug','sales-landing-2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7645','1818','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7646','1818','_wp_trash_meta_time','1780987768');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7647','1818','_wp_desired_post_slug','checkout-woo-4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7648','1820','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7649','1820','_wp_trash_meta_time','1780987768');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7650','1820','_wp_desired_post_slug','thank-you-woo-2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7651','1815','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7652','1815','_wp_trash_meta_time','1780987768');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7653','1815','_wp_desired_post_slug','blue-cut-glass');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7656','2153','_wp_attached_file','2026/06/79cb8f3c-5692-4e31-950d-e723a35373c3.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7657','2153','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1254;s:6:\"height\";i:1254;s:4:\"file\";s:48:\"2026/06/79cb8f3c-5692-4e31-950d-e723a35373c3.png\";s:8:\"filesize\";i:2560689;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7668','2155','_wp_attached_file','2026/06/10a91c3c-afe2-4a7d-86bd-7edd27071144.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7669','2155','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1254;s:6:\"height\";i:1254;s:4:\"file\";s:48:\"2026/06/10a91c3c-afe2-4a7d-86bd-7edd27071144.png\";s:8:\"filesize\";i:2653494;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7670','2156','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7671','2156','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7672','2156','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7673','2156','_elementor_version','3.21.5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7674','2156','_elementor_data','[{\"id\":\"a3e1d5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#E7F0E1\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_b\":\"#B0CF9C\",\"background_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"ae19893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"1303061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2153,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/79cb8f3c-5692-4e31-950d-e723a35373c3.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FC7F01\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3702568\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"d6913b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"cdbeb12\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09c1\\u09b0\\u09be\\u09a8 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 \\u0995\\u09c1\\u09dc\\u09ae\\u09c1\\u09dc\\u09c7 \\u09a8\\u09be\\u09b0\\u09bf\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be \\u0996\\u09be\\u09ac\\u09c7\\u09a8 \\u09a4\\u09cb \\u09ae\\u099c\\u09be \\u09aa\\u09be\\u09ac\\u09c7\\u09a8\",\"align_mobile\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0231586\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09a8\\u09be\\u09b0\\u09bf\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be, \\u0985\\u09a8\\u09c7\\u0995\\u09c7 \\u098f\\u099f\\u09be\\u0995\\u09c7 \\u09a8\\u09be\\u09b0\\u0995\\u09c7\\u09b2\\u09bf \\u09ac\\u09b2\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u09ae\\u09c1\\u0996\\u09cb\\u09b0\\u09cb\\u099a\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u098f\\u099f\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09df \\u098f\\u0995\\u099f\\u09bf \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2540cf3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8864e9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"92d0329\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2153,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/79cb8f3c-5692-4e31-950d-e723a35373c3.png\"},{\"id\":2155,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/10a91c3c-afe2-4a7d-86bd-7edd27071144.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"dots_position\":\"inside\",\"image_border_border\":\"groove\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"#FC7F01\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fceebe3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"dd61e80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68f924c\",\"elType\":\"section\",\"settings\":{\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f65597\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a06266b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2153,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/79cb8f3c-5692-4e31-950d-e723a35373c3.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3a562f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09c1\\u09dc\\u09ae\\u09c1\\u09dc\\u09c7 \\u09aa\\u09c1\\u09b0\\u09be\\u09a8 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 \\u09a8\\u09be\\u09b0\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be \\u2013 \\u09ea\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09eb\\u09e8\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#3DA300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc9b16c\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c57d802\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"zoomIn\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53bd132\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2155,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/10a91c3c-afe2-4a7d-86bd-7edd27071144.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9fbee41\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09c1\\u09dc\\u09ae\\u09c1\\u09dc\\u09c7 \\u09aa\\u09c1\\u09b0\\u09be\\u09a8 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 \\u09a8\\u09be\\u09b0\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be \\u2013 \\u09ec\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09ec\\u09ed\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#3DA300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c44832c\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"9b843fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8f4e38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":2153,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/79cb8f3c-5692-4e31-950d-e723a35373c3.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e747d90\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09c1\\u09dc\\u09ae\\u09c1\\u09dc\\u09c7 \\u09aa\\u09c1\\u09b0\\u09be\\u09a8 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 \\u09a8\\u09be\\u09b0\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be \\u2013 \\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u09e7\\u09e6\\u09e8\\u09e6 \\u099f\\u09be\\u0995\\u09be\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_color\":\"#3DA300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f8b209\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"da76ee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 \\u09ac\\u09be \\u0995\\u09b2 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#3DA300\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ba9e63\",\"elType\":\"widget\",\"settings\":{\"text\":\"01819000000\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801819000000\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Gotu\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c94202\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"76e0391\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#E9FFEB\"},\"elements\":[{\"id\":\"6bff2d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8?\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#B0CF9C\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc5ac54\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09ad\\u09c7\\u099c\\u09be\\u09b2\\u09c7\\u09b0 \\u098f\\u0987 \\u09b8\\u09ae\\u09af\\u09bc \\u09b0\\u09cd\\u09a8\\u09bf\\u09ad\\u09c7\\u099c\\u09be\\u09b2 \\u098f\\u0995\\u099f\\u09bf \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"9e8f154\"},{\"text\":\"\\u099b\\u09cb\\u099f \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09a1\\u09bc \\u09b8\\u09ac\\u09be\\u0987 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09ac\\u09b0\\u09c7\\u09a8\\u0964 \",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"5749317\"},{\"text\":\"\\u09ae\\u09a8 \\u09ad\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09af\\u09bc,\\u0995\\u09be\\u09b0\\u09a3 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf \\u0995\\u09ae \\u09a6\\u09c7\\u09df\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"cc51c74\"},{\"text\":\"\\u09ac\\u09bf\\u0995\\u09c7\\u09b2\\u09c7\\u09b0 \\u09a8\\u09be\\u09b8\\u09cd\\u09a4\\u09be \\u09ac\\u09be \\u09ae\\u09c7\\u09b9\\u09ae\\u09be\\u09a8\\u09a6\\u09be\\u09b0\\u09c0\\u09a4\\u09c7 \\u0985\\u09a4\\u09c1\\u09b2\\u09a8\\u09c0\\u09af\\u09bc \\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"65d0bfa\"},{\"text\":\"\\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09bf\\u09af\\u09bc\\u099c\\u09a8\\u0995\\u09c7 \\u0989\\u09aa\\u09b9\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"8eafe76\"},{\"text\":\"\\u098f\\u0987 \\u09a8\\u09be\\u09b0\\u09bf\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u09ac\\u09c7 \\u09b8\\u09c7\\u0987 \\u099b\\u09cb\\u099f\\u09cd\\u099f\\u09ac\\u09c7\\u09b2\\u09be\\u09b0 \\u09b8\\u09cd\\u09ae\\u09c3\\u09a4\\u09bf\\u09b0 \\u099c\\u0997\\u09a4\\u09c7\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"139a89b\"},{\"text\":\"\\u0995\\u09c1\\u09a1\\u09bc\\u09ae\\u09c1\\u09a1\\u09bc\\u09c7 \\u0993 \\u09ae\\u099a\\u09ae\\u099a\\u09c7 \\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"8bde54e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#3DA300\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#3DA300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"860d03e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8991467\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e6a814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e6d7c96\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09af\\u09be \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df?\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#B0CF9C\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b988c9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u0995\\u09cb\\u09a8 \\u09b0\\u0995\\u09ae \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u099b\\u09be\\u09a1\\u09bc\\u09be \\u0998\\u09b0\\u09cb\\u09df\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09b8\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2d5ffa7\"},{\"text\":\"\\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u0985\\u099e\\u09cd\\u099a\\u09b2 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4  \\u09a8\\u09be\\u09b0\\u09bf\\u0995\\u09c7\\u09b2 \\u09a6\\u09cd\\u09ac\\u09be\\u09b0\\u09be \\u0993 \\u099a\\u09bf\\u09a8\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"fccdefe\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#3DA300\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#3DA300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"space_between_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e37b26c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"38c4690\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e5f74ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09ae\\u09cd\\u09ae\\u09be\\u09a8\\u09bf\\u09a4 \\u0997\\u09cd\\u09b0\\u09be\\u09b9\\u0995\\u09a6\\u09c7\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#B0CF9C\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6561139\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"3\",\"dots_position\":\"inside\",\"image_spacing\":\"custom\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"image_border_color\":\"#3DA300\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"carousel\":[{\"id\":2155,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/10a91c3c-afe2-4a7d-86bd-7edd27071144.png\"},{\"id\":2153,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/79cb8f3c-5692-4e31-950d-e723a35373c3.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"8e8c69c\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a79d0ad\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e5f67bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3DA300\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ca60d18\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8-\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#B0CF9C\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51c2dc4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09a8\\u09bf\\u09b0\\u09cd\\u09a7\\u09be\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\",\"global_typography_typography\":\"custom\",\"global_typography_font_family\":\"Hind Siliguri\",\"global_typography_font_weight\":\"700\",\"btn_background_color_background\":\"gradient\",\"btn_background_color_color\":\"#E7F0E1\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#000000\",\"btn_background_color_color_b\":\"#B0CF9C\",\"btn_background_color_gradient_type\":\"radial\",\"_element_id\":\"order\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_weight\":\"700\",\"input_text_typography_typography\":\"custom\",\"input_text_typography_font_weight\":\"500\",\"heading_typography_font_family\":\"Hind Siliguri\",\"input_text_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_typography\":\"custom\",\"buttons_typography_font_family\":\"Hind Siliguri\",\"buttons_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"efd863b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7972e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9fe03ad\",\"elType\":\"widget\",\"settings\":{\"title\":\" Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7675','2156','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7676','2156','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7678','1897','_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:4;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:3;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:10;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:10;s:21:\"typography_typography\";i:10;s:22:\"typography_font_family\";i:10;s:20:\"typography_font_size\";i:10;s:22:\"typography_font_weight\";i:10;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:6;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:7;s:8:\"_padding\";i:8;}s:19:\"_section_background\";a:6:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;s:28:\"_background_hover_background\";i:4;s:19:\"_background_color_b\";i:4;s:25:\"_background_gradient_type\";i:4;s:26:\"_background_gradient_angle\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:7;s:4:\"link\";i:7;s:4:\"size\";i:7;s:13:\"selected_icon\";i:7;s:11:\"icon_indent\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:12:\"align_mobile\";i:7;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_font_weight\";i:7;s:16:\"background_color\";i:7;s:15:\"hover_animation\";i:6;s:12:\"border_width\";i:6;s:12:\"border_color\";i:6;s:13:\"border_radius\";i:7;s:5:\"align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:12;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:7:\"padding\";i:4;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:4;s:12:\"border_width\";i:4;s:12:\"border_color\";i:4;}s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:4:{s:8:\"carousel\";i:2;s:14:\"thumbnail_size\";i:2;s:14:\"slides_to_show\";i:2;s:10:\"navigation\";i:1;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:1:{s:13:\"dots_position\";i:2;}s:19:\"section_style_image\";a:5:{s:19:\"image_border_border\";i:2;s:18:\"image_border_width\";i:2;s:18:\"image_border_color\";i:2;s:13:\"image_spacing\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:8;s:18:\"gap_columns_custom\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:6;s:6:\"margin\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:13:\"checkout-form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:22:\"section_general_fields\";a:1:{s:6:\"layout\";i:1;}s:37:\"section_product_option_section_fields\";a:4:{s:24:\"product_options_position\";i:1;s:20:\"product_options_skin\";i:1;s:22:\"product_options_images\";i:1;s:33:\"product_option_section_title_text\";i:1;}}s:5:\"style\";a:4:{s:28:\"section_general_style_fields\";a:3:{s:28:\"global_typography_typography\";i:1;s:29:\"global_typography_font_family\";i:1;s:29:\"global_typography_font_weight\";i:1;}s:14:\"button_section\";a:8:{s:31:\"btn_background_color_background\";i:1;s:26:\"btn_background_color_color\";i:1;s:17:\"button_text_color\";i:1;s:28:\"btn_background_color_color_b\";i:1;s:34:\"btn_background_color_gradient_type\";i:1;s:29:\"buttons_typography_typography\";i:1;s:30:\"buttons_typography_font_family\";i:1;s:30:\"buttons_typography_font_weight\";i:1;}s:28:\"section_heading_style_fields\";a:3:{s:29:\"heading_typography_typography\";i:1;s:30:\"heading_typography_font_weight\";i:1;s:30:\"heading_typography_font_family\";i:1;}s:13:\"input_section\";a:3:{s:32:\"input_text_typography_typography\";i:1;s:33:\"input_text_typography_font_weight\";i:1;s:33:\"input_text_typography_font_family\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:1;s:11:\"_element_id\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7681','1811','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7682','1811','_wp_trash_meta_time','1780987991');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7683','1811','_wp_desired_post_slug','{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}b8{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}be{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}b9{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}be{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}ac{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}be-{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}ab{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a7{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}81{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a1-{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}b8{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a7{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}8d{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}aa{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a7{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}87{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}b6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}be{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}b2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7684','1813','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7685','1813','_wp_trash_meta_time','1780987991');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7686','1813','_wp_desired_post_slug','thank-you');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7687','1810','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7688','1810','_wp_trash_meta_time','1780987991');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7689','1810','_wp_desired_post_slug','{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}97{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a7{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}81{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}81{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a1{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}bc');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7690','1827','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7691','1827','_wp_trash_meta_time','1780988000');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7692','1827','_wp_desired_post_slug','store-checkout-02');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7693','1933','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7694','1933','_wp_trash_meta_time','1780988000');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7695','1933','_wp_desired_post_slug','store-checkout-thank-you-02');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7696','1826','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7697','1826','_wp_trash_meta_time','1780988000');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7698','1826','_wp_desired_post_slug','chingri-balachao');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7699','1835','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7700','1835','_wp_trash_meta_time','1780988006');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7701','1835','_wp_desired_post_slug','sales-landing-5');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7702','1837','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7703','1837','_wp_trash_meta_time','1780988006');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7704','1837','_wp_desired_post_slug','checkout-woo-7');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7705','1863','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7706','1863','_wp_trash_meta_time','1780988006');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7707','1863','_wp_desired_post_slug','thank-you-woo-6');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7708','50','_wp_trash_meta_status','inherit');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7709','50','_wp_trash_meta_time','1780988006');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7710','50','_wp_desired_post_slug','01');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7711','1834','_wp_trash_meta_status','publish');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7712','1834','_wp_trash_meta_time','1780988006');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7713','1834','_wp_desired_post_slug','sugai-khejur');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7714','1897','wcf-checkout-products','a:1:{i:0;a:5:{s:8:\"quantity\";s:1:\"1\";s:13:\"discount_type\";s:0:\"\";s:14:\"discount_value\";s:0:\"\";s:7:\"product\";s:4:\"2123\";s:9:\"unique_id\";s:8:\"y64x1d9j\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7715','1897','wcf-product-options-data','a:1:{s:8:\"y64x1d9j\";a:5:{s:16:\"enable_highlight\";s:2:\"no\";s:14:\"highlight_text\";s:0:\"\";s:12:\"product_name\";s:0:\"\";s:15:\"product_subtext\";s:0:\"\";s:11:\"add_to_cart\";s:3:\"yes\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7716','2158','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7717','2158','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7718','2158','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7719','2158','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7720','2158','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7721','2158','_elementor_data','[{\"id\":\"025f8df\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"d6879d1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"html\":\"<!DOCTYPE html>\\r\\n<html lang=\\\"bn\\\">\\r\\n<head>\\r\\n<meta charset=\\\"UTF-8\\\">\\r\\n<meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\r\\n<title>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6 - \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u09b8\\u09ab\\u09b2<\\/title>\\r\\n\\r\\n<style>\\r\\n*{\\r\\n    margin:0;\\r\\n    padding:0;\\r\\n    box-sizing:border-box;\\r\\n    font-family: Arial, sans-serif;\\r\\n}\\r\\n\\r\\nbody{\\r\\n    background:#f5f7fa;\\r\\n    display:flex;\\r\\n    justify-content:center;\\r\\n    align-items:center;\\r\\n    min-height:100vh;\\r\\n    padding:20px;\\r\\n}\\r\\n\\r\\n.thankyou-box{\\r\\n    background:#fff;\\r\\n    max-width:500px;\\r\\n    width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n    text-align:center;\\r\\n    padding:40px 30px;\\r\\n    border-radius:15px;\\r\\n    box-shadow:0 10px 30px rgba(0,0,0,0.1);\\r\\n}\\r\\n\\r\\n.success-icon{\\r\\n    width:80px;\\r\\n    height:80px;\\r\\n    background:#22c55e;\\r\\n    color:#fff;\\r\\n    font-size:40px;\\r\\n    border-radius:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\\r\\n    display:flex;\\r\\n    align-items:center;\\r\\n    justify-content:center;\\r\\n    margin:0 auto 20px;\\r\\n}\\r\\n\\r\\nh1{\\r\\n    color:#22c55e;\\r\\n    margin-bottom:15px;\\r\\n}\\r\\n\\r\\np{\\r\\n    color:#555;\\r\\n    line-height:1.7;\\r\\n    margin-bottom:12px;\\r\\n}\\r\\n\\r\\n.order-info{\\r\\n    background:#f8fafc;\\r\\n    padding:15px;\\r\\n    border-radius:10px;\\r\\n    margin:20px 0;\\r\\n    color:#333;\\r\\n}\\r\\n\\r\\n.btn{\\r\\n    display:inline-block;\\r\\n    background:#22c55e;\\r\\n    color:#fff;\\r\\n    text-decoration:none;\\r\\n    padding:12px 25px;\\r\\n    border-radius:8px;\\r\\n    margin-top:10px;\\r\\n    transition:.3s;\\r\\n}\\r\\n\\r\\n.btn:hover{\\r\\n    background:#16a34a;\\r\\n}\\r\\n<\\/style>\\r\\n<\\/head>\\r\\n<body>\\r\\n\\r\\n<div class=\\\"thankyou-box\\\">\\r\\n\\r\\n    <div class=\\\"success-icon\\\">\\u2713<\\/div>\\r\\n\\r\\n    <h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6!<\\/h1>\\r\\n\\r\\n    <p>\\r\\n        \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u09c7\\u099b\\u09c7\\u0964\\r\\n    <\\/p>\\r\\n\\r\\n \\r\\n\\r\\n    <p>\\r\\n        \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0996\\u09c1\\u09ac \\u09b6\\u09c0\\u0998\\u09cd\\u09b0\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09ac\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\\u0964\\r\\n    <\\/p>\\r\\n \\r\\n    <a href=\\\"\\/\\\" class=\\\"btn\\\">\\u09b9\\u09cb\\u09ae \\u09aa\\u09c7\\u099c\\u09c7 \\u09ab\\u09bf\\u09b0\\u09c7 \\u09af\\u09be\\u09a8<\\/a>\\r\\n\\r\\n<\\/div>\\r\\n\\r\\n<\\/body>\\r\\n<\\/html>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7722','2158','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7723','2111','_elementor_controls_usage','a:2:{s:4:\"html\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7726','2160','wcf-flow-id','2159');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7727','2160','wcf-step-type','landing');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7728','2160','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7729','2159','wcf-steps','a:6:{i:0;a:3:{s:2:\"id\";i:2160;s:5:\"title\";s:13:\"Sales Landing\";s:4:\"type\";s:7:\"landing\";}i:1;a:3:{s:2:\"id\";i:2161;s:5:\"title\";s:13:\"fishgrowth-02\";s:4:\"type\";s:8:\"checkout\";}i:2;a:3:{s:2:\"id\";i:2167;s:5:\"title\";s:12:\"checkout-woo\";s:4:\"type\";s:8:\"checkout\";}i:3;a:3:{s:2:\"id\";i:2169;s:5:\"title\";s:14:\"checkout-woo 2\";s:4:\"type\";s:8:\"checkout\";}i:4;a:3:{s:2:\"id\";i:2171;s:5:\"title\";s:14:\"checkout-woo 3\";s:4:\"type\";s:8:\"checkout\";}i:5;a:3:{s:2:\"id\";i:2173;s:5:\"title\";s:15:\"Thank You (Woo)\";s:4:\"type\";s:8:\"thankyou\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7730','2161','wcf-flow-id','2159');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7731','2161','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7732','2161','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7733','2161','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7734','2161','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7735','2161','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7736','2161','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7737','2161','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7738','2161','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7739','2161','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7740','2161','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7741','2161','wcf-pro-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7742','2161','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7743','2161','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7744','2161','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7745','2161','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7746','2161','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7747','2161','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7748','2161','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7749','2161','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:28:\"আপনার নামঃ\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:37:\"মোবাইল নম্বরঃ\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:20;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:46:\"ডেলিভারি ঠিকানাঃ\";s:11:\"placeholder\";s:0:\"\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:30;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:40;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:50;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:60;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:70;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:80;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:90;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:100;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7750','2161','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7751','2161','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7752','2161','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7753','2161','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7754','2161','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7755','2161','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7756','2161','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7757','2161','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7758','2161','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7759','2161','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7760','2161','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7761','2161','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7762','2161','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7763','2161','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7764','2161','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7765','2161','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7766','2161','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7767','2161','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7768','2161','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7769','2161','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7770','2161','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7771','2161','_edit_lock','1781108277:17');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7772','2161','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7773','2161','_elementor_data','[{\"id\":\"56af9bdc\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#863C91\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_negative\":\"yes\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"20\",\"bottom\":\"36\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6354fe87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6ca4d84f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\"},\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2817b6e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n<strong style=\\\"background: linear-gradient(90deg, #ff0000, #ff7f00);\\n      color: #ffffff;\\n      font-size: 18px;\\n      font-weight: 900;\\n      padding: 2px;\\n      text-align: center;\\n      border-radius: 12px;\\n      box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);\\n      font-family: \'Arial\', sans-serif;\\n      margin: 20px;\\n      animation: pulse 2s infinite;\\\">\\u099a\\u09b2\\u099b\\u09c7 \\u09b8\\u09b0\\u09cd\\u09ac\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09b8\\u09c7\\u09b0\\u09be \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f<\\/strong> \\u2013 \\n    <span>\\ud83c\\udfaf \\\"\\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c7 \\u09b2\\u09be\\u09ad\\u09c7\\u09b0 \\u09a8\\u09a4\\u09c1\\u09a8 \\u09a6\\u09bf\\u0997\\u09a8\\u09cd\\u09a4 \\u2013 \\u0985\\u09b2\\u09cd\\u09aa \\u0996\\u09b0\\u099a\\u09c7 \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a \\u09ab\\u09b2\\u09be\\u09ab\\u09b2!\\\" <br\\/>\\n \\ud83c\\udfaf \\\"\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09b9\\u09ac\\u09c7 \\u09a6\\u09cd\\u09ac\\u09bf\\u0997\\u09c1\\u09a3 \\u0986\\u09b0 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b9\\u09be\\u09b8\\u09bf\\u0993!\\\"\\\" <br\\/><br\\/>\\n\\n\\u26d4 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09b2\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_animation\":\"fadeInDown\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_background_color\":\"#621167\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570c0eb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"<br\\/>\\ud83d\\udea8 \\u098f\\u099f\\u09be\\u0987 \\u09ac\\u099b\\u09b0\\u099c\\u09c1\\u09dc\\u09c7 \\u09b8\\u09ac\\u099a\\u09c7\\u09df\\u09c7 \\u09ac\\u09dc \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f \\n<br\\/><br\\/>\\n\\u09a4\\u09be\\u0987 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u09a8\\u09be \\u0995\\u09b0\\u09c7 \\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09c1\\u09a8 \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35cf3d3b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"78895acb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"\\u09b9\\u09cb\\u09af\\u09bc\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"720c8da1\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"danger\",\"text\":\"  \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"link\":{\"url\":\" tel:01838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"background_color\":\"#F70944\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8366e1a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"237445d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f71532a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=YtRdBQF8cVM\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"hosted_url\":{\"id\":\"64\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/sorkoar-agro-dicche.mp4\"},\"autoplay\":\"yes\",\"poster\":{\"id\":\"65\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Screenshot-2024-07-01-134806.webp\"},\"image_overlay\":{\"id\":2166,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/placeholder-2.png\"}},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"21652aea\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\"},\"background_color\":\"#2C0935\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31c87f7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#6B3074\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2d2923e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5d5d5f54\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17632185\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"24cf03d5\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"6c582a9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6355a4f5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5006653\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"6d18c6a\"},{\"text\":\"P H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4bed90a\"},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0d295c0\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7059cbe\"},{\"text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c6a56c8\"},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"17fafae\"},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ea0db2\"},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0acdf06\"},{\"text\":\"* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"e119be2\"},{\"text\":\"* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3a98024\"},{\"text\":\"\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"f925d64\"}],\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#FFFFFF\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3e9980a3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#3F0541\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"59c5b7af\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ae7a46a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b9db319\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56f4c721\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#54A41F\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3a31b225\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"7ef7714e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d81fdf9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Screenshot-2024-07-01-134806.webp\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"513395d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"33a94c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"396e5194\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7995c68\"}],\"icon_color\":\"#54A41F\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"232a7d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"196d5788\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7995c68\"}],\"icon_color\":\"#54A41F\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46d52cd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#490D55\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7557cce3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#56215E\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"205e1a79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"22ff8f09\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6755c86b\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"656f7e53\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"71d861ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7e3f3b4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5006653\"},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"95b3d64\"},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4763cdd\"},{\"text\":\"4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"e10efcb\"},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5c62940\"},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3f89b83\"},{\"text\":\"7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"67f92da\"}],\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#FFFFFF\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4167eca5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#41023F\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35637d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.74,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"structure\":\"20\"},\"elements\":[{\"id\":\"3bec52f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#431053\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2422081d\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"650\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"title_color\":\"#54A41F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"__globals__\":{\"marker_color\":\"\",\"words_color\":\"\"},\"marker_color\":\"#48116B\",\"words_color\":\"#FB6107\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"921a419\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 500  \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FB0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"32deff59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#351057\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2748054\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"650\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\" \\u099f\\u09be\\u0995\\u09be\",\"title_color\":\"#54A41F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"__globals__\":{\"marker_color\":\"\",\"words_color\":\"\"},\"marker_color\":\"#4A1566\",\"words_color\":\"#FB6107\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"1d7c7f92\",\"elType\":\"widget\",\"settings\":{\"title\":\" \\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 500  \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FB0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a80cf01\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_position\":\"middle\",\"background_color\":\"#54285B\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"12bf4bc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed8c323\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u0985\\u09a5\\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6641457c\",\"elType\":\"widget\",\"settings\":{\"text\":\"01838 40 40 44\",\"link\":{\"url\":\"tel:01838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b619a31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"checkout\",\"background_background\":\"classic\",\"background_color\":\"#FAD7FF\"},\"elements\":[{\"id\":\"29cc3b4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#250C30\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"64f1d51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\"> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 <\\/span> \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"title_color\":\"#481D5F\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"166b94d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#1D0824\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f4afc4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F9CEFF\"},\"elements\":[{\"id\":\"4e284e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#361253\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"45d5910\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4ded94d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#380D3D\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1d7d9558\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4a7a1d51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Develop by itgalaxy<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7774','2161','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7775','2161','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7779','2161','_oembed_2eb870b29308e19a161bdccc715b9f53','<iframe title=\"Sorkar Agro Care\" width=\"800\" height=\"600\" src=\"https://www.youtube.com/embed/PKwk_GzEyao?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7780','2161','_oembed_time_2eb870b29308e19a161bdccc715b9f53','1731603925');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7781','2161','_oembed_cf3702f1f5d1f48594fb0fc30211171c','<iframe title=\"মাছ চাষে আপনার লাভের চাবিকাঠি! 🐟\" width=\"800\" height=\"600\" src=\"https://www.youtube.com/embed/XzHseE4It-0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7782','2161','_oembed_time_cf3702f1f5d1f48594fb0fc30211171c','1750557453');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7783','2161','_oembed_917518cc87b13b1e8476a71b11e254d0','<iframe title=\"মাছ চাষে আপনার লাভের চাবিকাঠি! 🐟\" width=\"800\" height=\"600\" src=\"https://www.youtube.com/embed/XzHseE4It-0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7784','2161','_oembed_time_917518cc87b13b1e8476a71b11e254d0','1750557529');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7785','2161','_oembed_4452b7ad7281972d8433efa710a64b42','<iframe title=\"সরকার এগ্রো কেয়ার-এর পণ্য &quot;ওয়াটার প্ল্যাংকটন প্লাস&quot; এবং &quot;ডাবল গ্রোথ প্লাস&quot;\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/YtRdBQF8cVM?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7786','2161','_oembed_time_4452b7ad7281972d8433efa710a64b42','1753936607');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7790','2162','_wp_attached_file','2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-2.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7791','2162','_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:70:\"2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-2.jpg\";s:8:\"filesize\";i:5074;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7792','2162','_cartflows_image_hash','9820926c69eabc212def24103d9745cf1fda8f18');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7793','2163','_wp_attached_file','2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-2.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7794','2163','_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:70:\"2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-2.jpg\";s:8:\"filesize\";i:83688;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28333;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9203;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:70:\"Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28333;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:70:\"Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5080;}}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:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7795','2163','_cartflows_image_hash','ce66f46e79225b5c9a4fb969d41f2e136f1ea812');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7796','2164','_wp_attached_file','2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-2.jpg');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7797','2164','_wp_attachment_metadata','a:6:{s:5:\"width\";i:768;s:6:\"height\";i:768;s:4:\"file\";s:70:\"2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-2.jpg\";s:8:\"filesize\";i:121974;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27701;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9125;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:70:\"Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27701;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:70:\"Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78714;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:70:\"Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5060;}}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:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7798','2164','_cartflows_image_hash','7a65e427f0541334e4eed7008223cc9c824656df');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7799','2165','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7800','2165','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7801','2165','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7802','2165','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7803','2165','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7804','2165','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7805','2165','_elementor_data','[{\"id\":\"56af9bdc\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#863C91\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5300000000000000266453525910037569701671600341796875,\"sizes\":[]},\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_negative\":\"yes\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"20\",\"bottom\":\"36\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6354fe87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6ca4d84f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\"},\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2817b6e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n<strong style=\\\"background: linear-gradient(90deg, #ff0000, #ff7f00);\\n      color: #ffffff;\\n      font-size: 18px;\\n      font-weight: 900;\\n      padding: 2px;\\n      text-align: center;\\n      border-radius: 12px;\\n      box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);\\n      font-family: \'Arial\', sans-serif;\\n      margin: 20px;\\n      animation: pulse 2s infinite;\\\">\\u099a\\u09b2\\u099b\\u09c7 \\u09b8\\u09b0\\u09cd\\u09ac\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09b8\\u09c7\\u09b0\\u09be \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f<\\/strong> \\u2013 \\n    <span>\\ud83c\\udfaf \\\"\\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c7 \\u09b2\\u09be\\u09ad\\u09c7\\u09b0 \\u09a8\\u09a4\\u09c1\\u09a8 \\u09a6\\u09bf\\u0997\\u09a8\\u09cd\\u09a4 \\u2013 \\u0985\\u09b2\\u09cd\\u09aa \\u0996\\u09b0\\u099a\\u09c7 \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a \\u09ab\\u09b2\\u09be\\u09ab\\u09b2!\\\" <br\\/>\\n \\ud83c\\udfaf \\\"\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09b9\\u09ac\\u09c7 \\u09a6\\u09cd\\u09ac\\u09bf\\u0997\\u09c1\\u09a3 \\u0986\\u09b0 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b9\\u09be\\u09b8\\u09bf\\u0993!\\\"\\\" <br\\/><br\\/>\\n\\n\\u26d4 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09b2\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_animation\":\"fadeInDown\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_background_color\":\"#621167\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570c0eb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"<br\\/>\\ud83d\\udea8 \\u098f\\u099f\\u09be\\u0987 \\u09ac\\u099b\\u09b0\\u099c\\u09c1\\u09dc\\u09c7 \\u09b8\\u09ac\\u099a\\u09c7\\u09df\\u09c7 \\u09ac\\u09dc \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f \\n<br\\/><br\\/>\\n\\u09a4\\u09be\\u0987 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u09a8\\u09be \\u0995\\u09b0\\u09c7 \\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09c1\\u09a8 \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35cf3d3b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"78895acb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"\\u09b9\\u09cb\\u09af\\u09bc\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"720c8da1\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"danger\",\"text\":\"  \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"link\":{\"url\":\" tel:01838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"background_color\":\"#F70944\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8366e1a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"237445d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f71532a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=YtRdBQF8cVM\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"hosted_url\":{\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/sorkoar-agro-dicche.mp4\",\"id\":2838,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"poster\":{\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp\",\"id\":22,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"d6334dd\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"medium_large\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"21652aea\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\"},\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31c87f7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#6B3074\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2d2923e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5d5d5f54\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17632185\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"24cf03d5\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"6c582a9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6355a4f5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5006653\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"6d18c6a\"},{\"text\":\"P H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4bed90a\"},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0d295c0\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7059cbe\"},{\"text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c6a56c8\"},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"17fafae\"},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ea0db2\"},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0acdf06\"},{\"text\":\"* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"e119be2\"},{\"text\":\"* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3a98024\"},{\"text\":\"\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"f925d64\"}],\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#FFFFFF\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3e9980a3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"59c5b7af\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ae7a46a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b9db319\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56f4c721\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#54A41F\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3a31b225\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"7ef7714e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d81fdf9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":22,\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"513395d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"33a94c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"396e5194\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7995c68\"}],\"icon_color\":\"#54A41F\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"232a7d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"196d5788\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7995c68\"}],\"icon_color\":\"#54A41F\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46d52cd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7557cce3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#863C91\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"205e1a79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"22ff8f09\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6755c86b\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"656f7e53\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"71d861ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7e3f3b4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5006653\"},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"95b3d64\"},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4763cdd\"},{\"text\":\"4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"e10efcb\"},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5c62940\"},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3f89b83\"},{\"text\":\"7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"67f92da\"}],\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#FFFFFF\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4167eca5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35637d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"structure\":\"20\"},\"elements\":[{\"id\":\"3bec52f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FB6107\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2422081d\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09ed\\u09eb \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"title_color\":\"#54A41F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"__globals__\":{\"marker_color\":\"\",\"words_color\":\"\"},\"marker_color\":\"#FB6107\",\"words_color\":\"#FB6107\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"921a419\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ea\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FB0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"32deff59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FB6107\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2748054\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09eb\\u09e6 \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\" \\u099f\\u09be\\u0995\\u09be\",\"title_color\":\"#54A41F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"__globals__\":{\"marker_color\":\"\",\"words_color\":\"\"},\"marker_color\":\"#FB6107\",\"words_color\":\"#FB6107\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"1d7c7f92\",\"elType\":\"widget\",\"settings\":{\"title\":\" \\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ea\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FB0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a80cf01\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_position\":\"middle\",\"background_color\":\"#54285B\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"12bf4bc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed8c323\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u0985\\u09a5\\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6641457c\",\"elType\":\"widget\",\"settings\":{\"text\":\"01838 40 40 44\",\"link\":{\"url\":\"tel:01838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b619a31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"checkout\",\"background_background\":\"classic\",\"background_color\":\"#E7AAF0\"},\"elements\":[{\"id\":\"29cc3b4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#1D5F4B\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"64f1d51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\"> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 <\\/span> \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"title_color\":\"#1D5F4B\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"166b94d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f4afc4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F3A1FF\"},\"elements\":[{\"id\":\"4e284e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#03DE91\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"45d5910\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4ded94d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#3F8A3A\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1d7d9558\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4a7a1d51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Develop by itgalaxy<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7806','2165','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7807','2165','_elementor_controls_usage','a:13:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:13;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:5:\"align\";i:11;s:21:\"typography_typography\";i:13;s:22:\"typography_font_family\";i:11;s:22:\"typography_font_weight\";i:12;s:20:\"typography_font_size\";i:11;s:23:\"text_stroke_text_stroke\";i:6;s:11:\"title_color\";i:13;s:22:\"typography_line_height\";i:5;s:28:\"text_stroke_text_stroke_type\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:9;}s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:7;s:7:\"_margin\";i:2;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:7;s:17:\"_background_color\";i:2;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:7;s:4:\"link\";i:7;s:4:\"size\";i:5;s:10:\"icon_align\";i:4;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:5:\"align\";i:7;s:21:\"typography_typography\";i:6;s:12:\"align_mobile\";i:1;s:16:\"background_color\";i:6;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:15:\"hover_animation\";i:5;s:11:\"hover_color\";i:5;s:29:\"button_background_hover_color\";i:5;s:13:\"border_border\";i:5;s:12:\"border_width\";i:5;s:12:\"border_color\";i:5;s:13:\"border_radius\";i:1;s:17:\"button_text_color\";i:4;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:7;}s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:14:\"_element_width\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:13:\"border_radius\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:6;s:36:\"background_motion_fx_motion_fx_mouse\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;}s:26:\"section_background_overlay\";a:3:{s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:2:{s:20:\"shape_divider_bottom\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:7;s:11:\"_element_id\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:4;s:3:\"gap\";i:11;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:16:\"content_position\";i:7;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:4:{s:11:\"youtube_url\";i:1;s:10:\"hosted_url\";i:1;s:8:\"autoplay\";i:1;s:6:\"poster\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:22:\"section_image_carousel\";a:1:{s:14:\"thumbnail_size\";i:1;}s:26:\"section_additional_options\";a:1:{s:14:\"autoplay_speed\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"style\";i:3;s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:3:{s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:4;s:9:\"icon_size\";i:4;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:4;s:27:\"icon_typography_font_family\";i:4;s:25:\"icon_typography_font_size\";i:4;s:27:\"icon_typography_font_weight\";i:4;s:10:\"text_color\";i:4;}s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:4;s:7:\"divider\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:2;s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:10:\"after_text\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:28:\"title_typography_font_weight\";i:2;s:27:\"words_typography_typography\";i:2;s:28:\"words_typography_font_family\";i:2;s:28:\"words_typography_font_weight\";i:2;s:11:\"words_color\";i:2;s:26:\"title_typography_font_size\";i:2;}s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:2;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:13:\"content_width\";i:1;s:14:\"flex_direction\";i:2;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7810','2166','_wp_attached_file','2026/06/placeholder-2.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7811','2166','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2026/06/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:3887;}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:18458;}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:2225;}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:12559;}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:4767;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:8382;}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:1478;}}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:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7812','2166','_elementor_source_image_hash','25aee061828ffe785a0a04953234f344b22367e9');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7813','2167','wcf-flow-id','2159');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7814','2167','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7815','2167','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7816','2167','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7817','2167','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7818','2167','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7819','2167','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7820','2167','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7821','2167','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7822','2167','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7823','2167','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7824','2167','wcf-pro-dynamic-css-version','1725883074');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7825','2167','wcf-dynamic-css-version','1725883074');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7826','2167','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7827','2167','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7828','2167','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7829','2167','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7830','2167','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7831','2167','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7832','2167','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:28:\"আপনার নামঃ\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:37:\"মোবাইল নম্বরঃ\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:20;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:46:\"ডেলিভারি ঠিকানাঃ\";s:11:\"placeholder\";s:0:\"\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:30;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:40;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:50;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:60;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:70;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:80;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:90;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:100;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7833','2167','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7834','2167','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7835','2167','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7836','2167','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7837','2167','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7838','2167','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7839','2167','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7840','2167','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7841','2167','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7842','2167','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7843','2167','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7844','2167','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7845','2167','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7846','2167','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7847','2167','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7848','2167','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7849','2167','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7850','2167','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7851','2167','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7852','2167','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7853','2167','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7854','2167','_edit_lock','1750306740:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7855','2167','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7856','2167','_elementor_data','[{\"id\":\"1965c1d2\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#9BFC8F\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"shape_divider_bottom\":\"zigzag\",\"shape_divider_bottom_negative\":\"yes\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"20\",\"bottom\":\"36\",\"left\":\"20\",\"isLinked\":false},\"shape_divider_bottom_width\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"size\":184,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c95a42e\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6be0e455\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\"},\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"63248444\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_animation\":\"fadeInDown\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#085400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"11f85201\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7 \\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 fishgrowth\\u0964 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964 \\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964\\n\\n\",\"align\":\"center\",\"title_color\":\"#22592C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"58b727d1\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"far fa-hand-point-down\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#F3DE2C\",\"hover_animation\":\"push\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"64e08cfe\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#C9FFA9\",\"shape_divider_top\":\"zigzag\",\"shape_divider_top_width\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"size\":139,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":101,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b71f38d\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"size\":97.045},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6972ce1f\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":712,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d02b5f9\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=mjr8CjmMFL0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"loop\":\"yes\",\"css_filters_css_filter\":\"custom\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":11,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.76)\"},\"image_overlay\":{\"id\":\"69\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/placeholder-1-2.png\"},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_border_color\":\"#2F9226\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"},{\"id\":\"a54a337\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008021\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#00360F\",\"button_background_hover_color\":\"#F5F2F1\",\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"24045da2\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#BEFFC3\",\"background_color_b\":\"#D5F4AE\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b269c13\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"240f69d\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n\",\"align\":\"center\",\"title_color\":\"#135E2C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"ee44033\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"size\":95.425},\"min_height\":{\"unit\":\"px\",\"size\":339,\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78dc954e\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"046bfd6\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"P H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"1eada04\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"6392abe\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"ec2a39c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"f6fc568\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"4fdeb75\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"01216bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"2a08443\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"7cd6d51\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"ca4fa22\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_color\":\"#1E5C24\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"3ee16b0a\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#7AE282\",\"background_color_b\":\"#DAFFA8\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"55726d7c\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#0A5115\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"771cd63b\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c7f5bb4\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ee1986e\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"size\":95.425},\"min_height\":{\"unit\":\"px\",\"size\":339,\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ed5d8fb\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1A6F30\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"40e60c24\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"67a32d69\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#106C3F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"10efc91f\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"5de5559a\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008013\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#003D06\",\"button_background_hover_color\":\"#FFFFFF\",\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"65b3891b\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":521,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFD1D1\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64fcdb68\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\"},\"align\":\"center\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":9,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.77)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"422c73c3\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"overflow\":\"hidden\",\"background_color\":\"#C9FFA9\",\"width_mobile\":{\"unit\":\"px\",\"size\":307},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b16432c\",\"settings\":{\"content_width\":\"full\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4adda39c\",\"settings\":{\"content_width\":\"full\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#008024\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"566b5d51\",\"settings\":{\"title\":\"\\ud83d\\udca5\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\ud83d\\udca5\",\"header_size\":\"span\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"align_mobile\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"531950b5\",\"settings\":{\"flex_direction\":\"row\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4dd017e9\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"10306a7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"9fd5518\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"d66b4f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"6d5bd08\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"c986e5e\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"3acd941\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"text_color\":\"#166D08\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"1b994605\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"df2d8b0\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008021\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#00500C\",\"button_background_hover_color\":\"#FFFFFF\",\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"38a84c86\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#045304\",\"shape_divider_top_color\":\"#56FF07\",\"shape_divider_top_flip\":\"yes\",\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"px\",\"size\":1528,\"sizes\":[]},\"css_classes\":\"order\",\"margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_id\":\"checkout\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2205f14d\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#C9FFA9\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#045304\",\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3485003d\",\"settings\":{\"title\":\"<span style=\\\"color:#00FF48\\\"> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  <\\/span>\\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#045304\",\"title_color\":\"#FFFFFF\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1626b5c0\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#0E371C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"5f4afc4\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e284e0\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#03DE91\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"26aaf0b8\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72b53444\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F20055\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"49772d91\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"flex_justify_content_mobile\":\"center\",\"flex_align_items_mobile\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_flex_align_self_mobile\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#B3FD99\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#777777\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49368123\",\"settings\":{\"title\":\"\\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 - 01838 40 40 44\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7857','2167','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7858','2167','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7859','2167','_oembed_d1ba36e57cf99aabd5db8f13b2e7604c','<iframe title=\"৪০{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} ব্যয় কমিয়ে গড়ে তুলুন লাভজনক ব্যবসা মাছ চাষীদের জন্য সর্বোচ্চ কার্যকরী\" width=\"800\" height=\"600\" src=\"https://www.youtube.com/embed/mjr8CjmMFL0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7860','2167','_oembed_time_d1ba36e57cf99aabd5db8f13b2e7604c','1725890253');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7861','2167','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7862','2167','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7863','2167','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7864','2167','_elementor_controls_usage','a:8:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:6:{s:14:\"_border_radius\";i:1;s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:11;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:5:\"align\";i:8;s:21:\"typography_typography\";i:10;s:22:\"typography_font_family\";i:9;s:22:\"typography_font_weight\";i:9;s:20:\"typography_font_size\";i:9;s:23:\"text_stroke_text_stroke\";i:1;s:11:\"title_color\";i:11;s:22:\"typography_line_height\";i:5;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:2;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:4;s:4:\"link\";i:4;s:4:\"size\";i:4;s:13:\"selected_icon\";i:4;s:10:\"icon_align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:5:\"align\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:16:\"background_color\";i:4;s:11:\"hover_color\";i:4;s:29:\"button_background_hover_color\";i:4;s:15:\"hover_animation\";i:4;s:13:\"border_border\";i:4;s:12:\"border_width\";i:4;s:12:\"border_color\";i:4;s:13:\"border_radius\";i:1;s:21:\"typography_font_style\";i:3;s:17:\"button_text_color\";i:3;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:36:\"background_motion_fx_motion_fx_mouse\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:21:\"section_shape_divider\";a:4:{s:20:\"shape_divider_bottom\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:4:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_video\";a:4:{s:11:\"youtube_url\";i:1;s:8:\"autoplay\";i:1;s:14:\"play_on_mobile\";i:1;s:4:\"loop\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_video_style\";a:1:{s:22:\"css_filters_css_filter\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:6:{s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:22;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:24:\"section_layout_container\";a:7:{s:11:\"boxed_width\";i:4;s:14:\"flex_direction\";i:5;s:13:\"content_width\";i:10;s:5:\"width\";i:3;s:10:\"min_height\";i:2;s:20:\"flex_justify_content\";i:1;s:16:\"flex_align_items\";i:1;}s:33:\"section_layout_additional_options\";a:1:{s:8:\"overflow\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:5:{s:10:\"_flex_size\";i:4;s:6:\"margin\";i:2;s:11:\"css_classes\";i:1;s:11:\"_element_id\";i:1;s:7:\"padding\";i:1;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:8;s:18:\"background_color_b\";i:2;}s:26:\"section_background_overlay\";a:4:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;s:26:\"background_overlay_color_b\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_radius\";i:4;s:12:\"border_width\";i:3;s:13:\"border_border\";i:2;s:12:\"border_color\";i:2;}s:21:\"section_shape_divider\";a:5:{s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:23:\"shape_divider_top_color\";i:1;s:22:\"shape_divider_top_flip\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:2:{s:18:\"section_text_style\";a:7:{s:26:\"icon_typography_typography\";i:4;s:25:\"icon_typography_font_size\";i:4;s:27:\"icon_typography_font_weight\";i:4;s:27:\"icon_typography_font_family\";i:4;s:27:\"icon_typography_line_height\";i:2;s:28:\"text_shadow_text_shadow_type\";i:1;s:10:\"text_color\";i:2;}s:18:\"section_icon_style\";a:4:{s:10:\"icon_color\";i:4;s:9:\"icon_size\";i:4;s:24:\"icon_self_vertical_align\";i:4;s:20:\"icon_vertical_offset\";i:4;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7867','2168','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7868','2168','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7869','2168','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7870','2168','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7871','2168','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7872','2168','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7873','2168','_elementor_data','[{\"id\":\"1965c1d2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#9BFC8F\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5300000000000000266453525910037569701671600341796875,\"sizes\":[]},\"shape_divider_bottom\":\"zigzag\",\"shape_divider_bottom_negative\":\"yes\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"20\",\"bottom\":\"36\",\"left\":\"20\",\"isLinked\":false},\"shape_divider_bottom_width\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"size\":184,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":106,\"sizes\":[]}},\"elements\":[{\"id\":\"4c95a42e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6be0e455\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\"},\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63248444\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_animation\":\"fadeInDown\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#085400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11f85201\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7 \\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 fishgrowth\\u0964 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964 \\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964\\n\\n\",\"align\":\"center\",\"title_color\":\"#22592C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b727d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"far fa-hand-point-down\",\"library\":\"fa-regular\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#F3DE2C\",\"hover_animation\":\"push\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64e08cfe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#C9FFA9\",\"shape_divider_top\":\"zigzag\",\"shape_divider_top_width\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"size\":139,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":101,\"sizes\":[]}},\"elements\":[{\"id\":\"2b71f38d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"size\":97.0450000000000017053025658242404460906982421875},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"6972ce1f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":712,\"sizes\":[]}},\"elements\":[{\"id\":\"7d02b5f9\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=mjr8CjmMFL0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"loop\":\"yes\",\"css_filters_css_filter\":\"custom\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":11,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.76)\"},\"image_overlay\":{\"id\":26,\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/placeholder-1-2.png\"},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_border_color\":\"#2F9226\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"a54a337\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008021\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#00360F\",\"button_background_hover_color\":\"#F5F2F1\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"24045da2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#BEFFC3\",\"background_color_b\":\"#D5F4AE\"},\"elements\":[{\"id\":\"1b269c13\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"240f69d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n\",\"align\":\"center\",\"title_color\":\"#135E2C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ee44033\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"size\":95.4249999999999971578290569595992565155029296875},\"min_height\":{\"unit\":\"px\",\"size\":339,\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"78dc954e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"046bfd6\"},{\"text\":\"P H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"1eada04\"},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"6392abe\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"ec2a39c\"},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"f6fc568\"},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"4fdeb75\"},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"01216bf\"},{\"text\":\"* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"2a08443\"},{\"text\":\"* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"7cd6d51\"},{\"text\":\"\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"ca4fa22\"}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_color\":\"#1E5C24\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ee16b0a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#7AE282\",\"background_color_b\":\"#DAFFA8\"},\"elements\":[{\"id\":\"55726d7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#0A5115\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"771cd63b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"4c7f5bb4\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"1ee1986e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"size\":95.4249999999999971578290569595992565155029296875},\"min_height\":{\"unit\":\"px\",\"size\":339,\"sizes\":[]},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"7ed5d8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1A6F30\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40e60c24\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"67a32d69\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#106C3F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10efc91f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5de5559a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008013\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#003D06\",\"button_background_hover_color\":\"#FFFFFF\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"65b3891b\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":521,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFD1D1\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"64fcdb68\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\"},\"align\":\"center\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":9,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.77)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"422c73c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"overflow\":\"hidden\",\"background_color\":\"#C9FFA9\",\"width_mobile\":{\"unit\":\"px\",\"size\":307},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"b16432c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\"},\"elements\":[{\"id\":\"4adda39c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#008024\"},\"elements\":[{\"id\":\"566b5d51\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ud83d\\udca5\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\ud83d\\udca5\",\"header_size\":\"span\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_weight\":\"700\",\"align_mobile\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"531950b5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"4dd017e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"5743646\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"}},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"10306a7\"},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"9fd5518\"},{\"text\":\"4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"d66b4f0\"},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"6d5bd08\"},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"c986e5e\"},{\"text\":\"7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-square\",\"library\":\"fa-solid\"},\"_id\":\"3acd941\"}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_color\":\"#045304\",\"icon_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_font_family\":\"kohinoor\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"text_color\":\"#166D08\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1b994605\",\"elType\":\"container\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"df2d8b0\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_style\":\"italic\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#008021\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#000000\",\"size\":\"md\",\"hover_color\":\"#00500C\",\"button_background_hover_color\":\"#FFFFFF\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"38a84c86\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#045304\",\"shape_divider_top_color\":\"#56FF07\",\"shape_divider_top_flip\":\"yes\",\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"px\",\"size\":1528,\"sizes\":[]},\"css_classes\":\"order\",\"margin\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_id\":\"checkout\"},\"elements\":[{\"id\":\"2205f14d\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#C9FFA9\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#045304\",\"border_radius\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"3485003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color:#00FF48\\\"> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  <\\/span>\\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"kohinoor\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#045304\",\"title_color\":\"#FFFFFF\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1626b5c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#0E371C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f4afc4\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"4e284e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#03DE91\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"26aaf0b8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"72b53444\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F20055\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"49772d91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"flex_justify_content_mobile\":\"center\",\"flex_align_items_mobile\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_flex_align_self_mobile\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#B3FD99\",\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#777777\"},\"elements\":[{\"id\":\"49368123\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 - 01838 40 40 44\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7874','2168','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7875','2168','_elementor_controls_usage','a:8:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:6:{s:14:\"_border_radius\";i:1;s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:11;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:5:\"align\";i:8;s:21:\"typography_typography\";i:10;s:22:\"typography_font_family\";i:9;s:22:\"typography_font_weight\";i:9;s:20:\"typography_font_size\";i:9;s:23:\"text_stroke_text_stroke\";i:1;s:11:\"title_color\";i:11;s:22:\"typography_line_height\";i:5;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:2;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:4;s:4:\"link\";i:4;s:4:\"size\";i:4;s:13:\"selected_icon\";i:4;s:10:\"icon_align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:5:\"align\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:16:\"background_color\";i:4;s:11:\"hover_color\";i:4;s:29:\"button_background_hover_color\";i:4;s:15:\"hover_animation\";i:4;s:13:\"border_border\";i:4;s:12:\"border_width\";i:4;s:12:\"border_color\";i:4;s:13:\"border_radius\";i:1;s:21:\"typography_font_style\";i:3;s:17:\"button_text_color\";i:3;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:36:\"background_motion_fx_motion_fx_mouse\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:21:\"section_shape_divider\";a:4:{s:20:\"shape_divider_bottom\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:4:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"section_video\";a:4:{s:11:\"youtube_url\";i:1;s:8:\"autoplay\";i:1;s:14:\"play_on_mobile\";i:1;s:4:\"loop\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_video_style\";a:1:{s:22:\"css_filters_css_filter\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:6:{s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:22;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:24:\"section_layout_container\";a:7:{s:11:\"boxed_width\";i:4;s:14:\"flex_direction\";i:5;s:13:\"content_width\";i:10;s:5:\"width\";i:3;s:10:\"min_height\";i:2;s:20:\"flex_justify_content\";i:1;s:16:\"flex_align_items\";i:1;}s:33:\"section_layout_additional_options\";a:1:{s:8:\"overflow\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:5:{s:10:\"_flex_size\";i:4;s:6:\"margin\";i:2;s:11:\"css_classes\";i:1;s:11:\"_element_id\";i:1;s:7:\"padding\";i:1;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:8;s:18:\"background_color_b\";i:2;}s:26:\"section_background_overlay\";a:4:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;s:26:\"background_overlay_color_b\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_radius\";i:4;s:12:\"border_width\";i:3;s:13:\"border_border\";i:2;s:12:\"border_color\";i:2;}s:21:\"section_shape_divider\";a:5:{s:17:\"shape_divider_top\";i:1;s:23:\"shape_divider_top_width\";i:1;s:24:\"shape_divider_top_height\";i:1;s:23:\"shape_divider_top_color\";i:1;s:22:\"shape_divider_top_flip\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:2:{s:18:\"section_text_style\";a:7:{s:26:\"icon_typography_typography\";i:4;s:25:\"icon_typography_font_size\";i:4;s:27:\"icon_typography_font_weight\";i:4;s:27:\"icon_typography_font_family\";i:4;s:27:\"icon_typography_line_height\";i:2;s:28:\"text_shadow_text_shadow_type\";i:1;s:10:\"text_color\";i:2;}s:18:\"section_icon_style\";a:4:{s:10:\"icon_color\";i:4;s:9:\"icon_size\";i:4;s:24:\"icon_self_vertical_align\";i:4;s:20:\"icon_vertical_offset\";i:4;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7878','2169','wcf-flow-id','2159');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7879','2169','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7880','2169','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7881','2169','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7882','2169','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7883','2169','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7884','2169','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7885','2169','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7886','2169','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7887','2169','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7888','2169','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7889','2169','wcf-pro-dynamic-css-version','1725883074');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7890','2169','wcf-dynamic-css-version','1725883074');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7891','2169','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7892','2169','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7893','2169','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7894','2169','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7895','2169','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7896','2169','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7897','2169','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:28:\"আপনার নামঃ\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:37:\"মোবাইল নম্বরঃ\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:20;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:46:\"ডেলিভারি ঠিকানাঃ\";s:11:\"placeholder\";s:0:\"\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:30;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:40;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:50;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:60;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:70;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:80;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:90;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:100;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7898','2169','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7899','2169','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7900','2169','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7901','2169','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7902','2169','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7903','2169','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7904','2169','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7905','2169','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7906','2169','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7907','2169','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7908','2169','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7909','2169','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7910','2169','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7911','2169','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7912','2169','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7913','2169','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7914','2169','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7915','2169','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7916','2169','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7917','2169','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7918','2169','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7919','2169','_edit_lock','1750306588:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7920','2169','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7921','2169','_elementor_data','[{\"id\":\"731f89b4\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"280939d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f2dd970\",\"settings\":{\"title\":\"\\u09b8\\u09c0\\u09ae\\u09bf\\u09a4 \\u09b8\\u09ae\\u09df\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09ab\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u099c\\n\",\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#00921E\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"37fb909b\",\"settings\":{\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"digits_typography_typography\":\"custom\",\"digits_typography_font_family\":\"Roboto\",\"digits_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":false},\"box_background_color\":\"#00921E\",\"digits_color\":\"#FFFFFF\",\"digits_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"digits_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"label_color\":\"#FFFFFF\",\"container_width_mobile\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"size\":0,\"sizes\":[]},\"box_spacing_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"box_padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"digits_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto Slab\",\"label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInDown\",\"due_date\":\"2024-08-29 19:22\",\"countdown_type\":\"evergreen\",\"evergreen_counter_hours\":1,\"evergreen_counter_minutes\":5,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"countdown\",\"elType\":\"widget\"},{\"id\":\"48248c8b\",\"settings\":{\"background_background\":\"gradient\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#BAF8C7\",\"background_overlay_opacity_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33530621\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ef9cb5f\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"16a82c23\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#00921E\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"4bbed449\",\"settings\":{\"before_text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09ed\\u09eb \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"marker_color\":\"#FF0000\",\"title_color\":\"#00921E\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"words_color\":\"#000000\",\"stroke_width\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"above_content\":\"yes\",\"rounded_edges\":\"yes\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"title_typography_font_family\":\"Hind Siliguri\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"marker\":\"x\",\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_element_width\":\"inherit\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"6c94bfcb\",\"settings\":{\"before_text\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09eb\\u09e6 \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"marker_color\":\"#FF001E\",\"title_color\":\"#00921E\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"words_color\":\"#000000\",\"stroke_width\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"above_content\":\"yes\",\"rounded_edges\":\"yes\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"title_typography_font_family\":\"Hind Siliguri\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"marker\":\"x\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\",\"words_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"4157db97\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"\",\"highlighted_text\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#EF0505\",\"stroke_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"rounded_edges\":\"yes\",\"title_color\":\"#672F2F\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"words_color\":\"#FF022D\",\"words_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"title_typography_font_family\":\"Allison\",\"_background_background\":\"classic\",\"words_typography_typography\":\"custom\",\"words_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"10bffc22\",\"settings\":{\"before_text\":\"\\u0995\\u09ae\\u09cd\\u09ac\\u09cb \\u0985\\u09ab\\u09be\\u09b0 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 & \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \",\"highlighted_text\":\"\\u09e7\\u09e6\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"marker_color\":\"#FF0000\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"words_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"stroke_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"above_content\":\"yes\",\"title_color\":\"#39911D\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"marker\":\"underline_zigzag\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"63ed4c2e\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"button_box_shadow_box_shadow_type\":\"yes\",\"_animation\":\"fadeInDown\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=edcb9c8\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"15fbf269\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3530c1b2\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"background_color\":\"#C6FFCA\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78c5ee61\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=Lrdqc3AwV9I\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_overlay\":{\"id\":\"72\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/placeholder-1.png\"},\"insert_url\":\"yes\",\"external_url\":{\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=9D6P0jDMTJo\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"hosted_url\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"play_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"video\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"78f885d7\",\"settings\":{\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#C6FFCA\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45dd859d\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38714fbd\",\"settings\":{\"title\":\"\\n\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n<span style=\\\"color:#00FF48\\\">\\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8   <\\/span>?\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#045916\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"66\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2cafa942\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7&nbsp;\\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 <strong>fishgrowth<\\/strong>\\u0964&nbsp;<b>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8<\\/b>&nbsp;\\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964&nbsp;\\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"size\":100.175},\"_flex_align_self\":\"flex-start\",\"typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_element_width\":\"initial\",\"_flex_size\":\"none\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"15a46097\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0  \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"cf2251b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b7264ab\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"P H  \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7fc5b22\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b76666d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"8cdceeb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"51179e9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"64b4248\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"89f6948\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"53766b0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"565c8b9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"1f70568\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"6e78d97\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"left\",\"icon_color\":\"#00921E\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_self_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"445a913d\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C6FFCA\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5833de3b\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1226764\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#045916\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5594c2fa\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54f11e84\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a631c2\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983 \\n\",\"align\":\"center\",\"title_color\":\"#0B6517\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"3c710941\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"typography_line_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"1c6e5ab7\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#0B6517\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"text_stroke_text_stroke_type\":\"yes\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"69353b9c\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"},{\"id\":\"59874d85\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"button_box_shadow_box_shadow_type\":\"yes\",\"_animation\":\"fadeInDown\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=edcb9c8\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"},{\"id\":\"2d2ca21e\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u099c\\u09cd\\u099e\\u09a4\\u09be, \\u09b6\\u09bf\\u0995\\u09cd\\u09b7\\u09be \\u0993 \\u09aa\\u09b0\\u09c0\\u0995\\u09cd\\u09b7\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ac\\u09a8\\u09df\\u09c7 fishgrowth \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09ac\\u09cd\\u09af\\u09be\\u09aa\\u09c0 \\u09ae\\u09be\\u099b \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u09b8\\u09c7\\u09ac\\u09be, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6 \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09aa\\u09a3\\u09cd\\u09af \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09c7 \\u0986\\u09b8\\u099b\\u09c7\\u0964 \\u09ae\\u09be\\u099b \\u099b\\u09be\\u09dc\\u09be \\u09b9\\u09a4\\u09c7 \\u09ac\\u09be\\u099c\\u09be\\u09b0\\u099c\\u09be\\u09a4 \\u0995\\u09b0\\u09be \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09c1\\u09a8\\u09bf\\u09aa\\u09c1\\u09a8 \\u09ae\\u09a8\\u09bf\\u099f\\u09b0\\u09bf\\u0982 \\u098f\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09aa\\u09a5\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u0997\\u09a3 \\u09b9\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8\\u0964\\n\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"8e950d3\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#045916\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"48ff8e4d\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"75d92a9\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"789341b\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"_id\":\"d11504e\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\",\"_id\":\"9de7d2f\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"c81d964\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"_id\":\"e523b92\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\",\"_id\":\"5d725c6\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#045916\",\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2.2,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"011\",\"bottom\":\"0\",\"left\":\"0111\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"1b70727a\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\",\"background_background\":\"classic\",\"background_color\":\"#C6FFCA\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"150ddfda\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#4AAC3F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40a2cb10\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\"> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  <\\/span> \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_css_classes\":\"order\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"563e8658\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964    \\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"31955583\",\"settings\":{\"marker\":\"curly\",\"before_text\":\"\",\"highlighted_text\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"highlight_animation_duration\":1827,\"highlight_iteration_delay\":95,\"marker_color\":\"#C60000\",\"above_content\":\"yes\",\"rounded_edges\":\"yes\",\"title_color\":\"#562222\",\"words_color\":\"#DC0909\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"569c4df4\",\"settings\":{\"title\":\"\",\"align\":\"center\",\"title_color\":\"#FD3535\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5f4afc4\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e284e0\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#03DE91\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"7289cd30\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c87e62a\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F20055\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"2a9e407c\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"707ad36c\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ecafdda\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 fishgrowth| This website made with \\u2764\\ufe0f by <a style=\\\"color: red;\\\" href=\\\"https:\\/\\/itgalaxi.com\\/\\\"><b> itgalaxi<\\/b><\\/a><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7922','2169','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7923','2169','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7924','2169','_oembed_d1ba36e57cf99aabd5db8f13b2e7604c','<iframe title=\"৪০{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} ব্যয় কমিয়ে গড়ে তুলুন লাভজনক ব্যবসা মাছ চাষীদের জন্য সর্বোচ্চ কার্যকরী\" width=\"800\" height=\"600\" src=\"https://www.youtube.com/embed/mjr8CjmMFL0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7925','2169','_oembed_time_d1ba36e57cf99aabd5db8f13b2e7604c','1725890253');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7926','2169','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7927','2169','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7928','2169','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7929','2169','_oembed_82377f9b7d52306141edf595d15f2297','<iframe title=\"ব্যয় কমিয়ে, উতপাদন বাড়ানোই হচ্ছে লাভবান হবার চাবিকাঠি\" width=\"800\" height=\"600\" src=\"https://www.youtube.com/embed/Lrdqc3AwV9I?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7930','2169','_oembed_time_82377f9b7d52306141edf595d15f2297','1725891134');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7931','2169','_elementor_controls_usage','a:11:{s:7:\"heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:14;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:14;s:21:\"typography_typography\";i:14;s:22:\"typography_font_family\";i:12;s:5:\"align\";i:14;s:20:\"typography_font_size\";i:13;s:22:\"typography_font_weight\";i:11;s:22:\"typography_line_height\";i:7;s:28:\"text_stroke_text_stroke_type\";i:2;}}s:8:\"advanced\";a:4:{s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:9;s:7:\"_margin\";i:6;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:2:{s:14:\"_border_radius\";i:9;s:27:\"_box_shadow_box_shadow_type\";i:4;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:4;}}}}s:9:\"countdown\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:17:\"section_countdown\";a:5:{s:13:\"custom_labels\";i:1;s:8:\"due_date\";i:1;s:14:\"countdown_type\";i:1;s:23:\"evergreen_counter_hours\";i:1;s:25:\"evergreen_counter_minutes\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_box_style\";a:3:{s:17:\"box_border_radius\";i:1;s:11:\"box_spacing\";i:1;s:20:\"box_background_color\";i:1;}s:21:\"section_content_style\";a:10:{s:28:\"digits_typography_typography\";i:1;s:29:\"digits_typography_font_family\";i:1;s:29:\"digits_typography_font_weight\";i:1;s:12:\"digits_color\";i:1;s:27:\"digits_typography_font_size\";i:1;s:29:\"digits_typography_line_height\";i:1;s:11:\"label_color\";i:1;s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_family\";i:1;s:28:\"label_typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:6:{s:11:\"before_text\";i:5;s:16:\"highlighted_text\";i:5;s:10:\"after_text\";i:3;s:6:\"marker\";i:5;s:28:\"highlight_animation_duration\";i:1;s:25:\"highlight_iteration_delay\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_style_text\";a:11:{s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:4;s:11:\"title_color\";i:5;s:28:\"title_typography_line_height\";i:4;s:11:\"words_color\";i:5;s:28:\"title_typography_font_family\";i:4;s:27:\"words_typography_typography\";i:4;s:28:\"words_typography_font_family\";i:2;s:28:\"words_typography_font_weight\";i:2;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"title_typography_font_weight\";i:1;}s:20:\"section_style_marker\";a:4:{s:12:\"marker_color\";i:5;s:12:\"stroke_width\";i:4;s:13:\"above_content\";i:4;s:13:\"rounded_edges\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:3;s:14:\"_element_width\";i:1;s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:2;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:2;s:4:\"size\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:13:\"border_border\";i:2;s:13:\"border_radius\";i:2;s:33:\"button_box_shadow_box_shadow_type\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:8;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:4;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:6;s:18:\"background_color_b\";i:1;s:16:\"background_color\";i:5;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_radius\";i:2;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:2;s:7:\"padding\";i:3;s:11:\"_element_id\";i:1;s:11:\"css_classes\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:3:\"gap\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:3:{s:11:\"youtube_url\";i:1;s:10:\"insert_url\";i:1;s:12:\"external_url\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"_section_border\";a:2:{s:14:\"_border_radius\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:2;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;s:14:\"_element_width\";i:1;s:10:\"_flex_size\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:10:\"icon_align\";i:1;s:17:\"icon_align_mobile\";i:1;}s:18:\"section_icon_style\";a:4:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;s:11:\"text_indent\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:7:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:27:\"icon_typography_line_height\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:13:\"content_width\";i:1;s:14:\"flex_direction\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7934','2170','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7935','2170','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7936','2170','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7937','2170','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7938','2170','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7939','2170','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7940','2170','_elementor_data','[{\"id\":\"731f89b4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"280939d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f2dd970\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09b8\\u09c0\\u09ae\\u09bf\\u09a4 \\u09b8\\u09ae\\u09df\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09ab\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u099c\\n\",\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#00921E\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37fb909b\",\"elType\":\"widget\",\"settings\":{\"custom_labels\":\"yes\",\"label_days\":\"Days\",\"label_hours\":\"Hours\",\"label_minutes\":\"Minutes\",\"label_seconds\":\"Seconds\",\"box_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"box_spacing\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"digits_typography_typography\":\"custom\",\"digits_typography_font_family\":\"Roboto\",\"digits_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":false},\"box_background_color\":\"#00921E\",\"digits_color\":\"#FFFFFF\",\"digits_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"digits_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"label_color\":\"#FFFFFF\",\"container_width_mobile\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"size\":0,\"sizes\":[]},\"box_spacing_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"box_padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"digits_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto Slab\",\"label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInDown\",\"due_date\":\"2024-08-29 19:22\",\"countdown_type\":\"evergreen\",\"evergreen_counter_hours\":1,\"evergreen_counter_minutes\":5},\"elements\":[],\"widgetType\":\"countdown\"},{\"id\":\"48248c8b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#BAF8C7\",\"background_overlay_opacity_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[{\"id\":\"33530621\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"3ef9cb5f\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"16a82c23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#00921E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bbed449\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09ed\\u09eb \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"marker_color\":\"#FF0000\",\"title_color\":\"#00921E\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"words_color\":\"#000000\",\"stroke_width\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"above_content\":\"yes\",\"rounded_edges\":\"yes\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"title_typography_font_family\":\"Hind Siliguri\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"marker\":\"x\",\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"6c94bfcb\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09eb\\u09e6 \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"marker_color\":\"#FF001E\",\"title_color\":\"#00921E\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"words_color\":\"#000000\",\"stroke_width\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"above_content\":\"yes\",\"rounded_edges\":\"yes\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"title_typography_font_family\":\"Hind Siliguri\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"marker\":\"x\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\",\"words_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"4157db97\",\"elType\":\"widget\",\"settings\":{\"marker\":\"underline_zigzag\",\"before_text\":\"\",\"highlighted_text\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"marker_color\":\"#EF0505\",\"stroke_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"rounded_edges\":\"yes\",\"title_color\":\"#672F2F\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"words_color\":\"#FF022D\",\"words_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":0.5,\"sizes\":[]},\"title_typography_font_family\":\"Allison\",\"_background_background\":\"classic\",\"words_typography_typography\":\"custom\",\"words_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"10bffc22\",\"elType\":\"widget\",\"settings\":{\"before_text\":\"\\u0995\\u09ae\\u09cd\\u09ac\\u09cb \\u0985\\u09ab\\u09be\\u09b0 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 & \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \",\"highlighted_text\":\"\\u09e7\\u09e6\\u09e6\\u09e6\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"marker_color\":\"#FF0000\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"words_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"stroke_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"above_content\":\"yes\",\"title_color\":\"#39911D\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"marker\":\"underline_zigzag\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"63ed4c2e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"button_box_shadow_box_shadow_type\":\"yes\",\"_animation\":\"fadeInDown\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=edcb9c8\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15fbf269\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3530c1b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"background_color\":\"#C6FFCA\"},\"elements\":[{\"id\":\"78c5ee61\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=Lrdqc3AwV9I\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"_margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_overlay\":{\"id\":30,\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/placeholder.png\"},\"insert_url\":\"yes\",\"external_url\":{\"url\":\"https:\\/\\/www.youtube.com\\/watch?v=9D6P0jDMTJo\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78f885d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":-10,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#C6FFCA\"},\"elements\":[{\"id\":\"45dd859d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38714fbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n<span style=\\\"color:#00FF48\\\">\\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8   <\\/span>?\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#045916\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"66\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cafa942\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7&nbsp;\\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 <strong>fishgrowth<\\/strong>\\u0964&nbsp;<b>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8<\\/b>&nbsp;\\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964&nbsp;\\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"size\":100.1749999999999971578290569595992565155029296875},\"_flex_align_self\":\"flex-start\",\"typography_font_weight\":\"700\",\"text_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_element_width\":\"initial\",\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15a46097\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0  \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"cf2251b\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b7264ab\"},{\"text\":\"P H  \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7fc5b22\"},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"b76666d\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"8cdceeb\"},{\"text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"51179e9\"},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"64b4248\"},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"89f6948\"},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"53766b0\"},{\"text\":\"* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"565c8b9\"},{\"text\":\"* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"1f70568\"},{\"text\":\"\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"6e78d97\"}],\"icon_align\":\"left\",\"icon_color\":\"#00921E\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_self_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_margin\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"icon_align_mobile\":\"left\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_self_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"445a913d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C6FFCA\"},\"elements\":[{\"id\":\"5833de3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"1226764\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#045916\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5594c2fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f11e84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a631c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983 \\n\",\"align\":\"center\",\"title_color\":\"#0B6517\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"typography_line_height\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c710941\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"typography_line_height\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c6e5ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#0B6517\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"text_stroke_text_stroke_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69353b9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"_animation\":\"fadeInLeft\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59874d85\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_border\":\"none\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"button_box_shadow_box_shadow_type\":\"yes\",\"_animation\":\"fadeInDown\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=edcb9c8\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2d2ca21e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09ad\\u09bf\\u099c\\u09cd\\u099e\\u09a4\\u09be, \\u09b6\\u09bf\\u0995\\u09cd\\u09b7\\u09be \\u0993 \\u09aa\\u09b0\\u09c0\\u0995\\u09cd\\u09b7\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ac\\u09a8\\u09df\\u09c7 fishgrowth \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09ac\\u09cd\\u09af\\u09be\\u09aa\\u09c0 \\u09ae\\u09be\\u099b \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u09b8\\u09c7\\u09ac\\u09be, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6 \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09aa\\u09a3\\u09cd\\u09af \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09c7 \\u0986\\u09b8\\u099b\\u09c7\\u0964 \\u09ae\\u09be\\u099b \\u099b\\u09be\\u09dc\\u09be \\u09b9\\u09a4\\u09c7 \\u09ac\\u09be\\u099c\\u09be\\u09b0\\u099c\\u09be\\u09a4 \\u0995\\u09b0\\u09be \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09c1\\u09a8\\u09bf\\u09aa\\u09c1\\u09a8 \\u09ae\\u09a8\\u09bf\\u099f\\u09b0\\u09bf\\u0982 \\u098f\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09aa\\u09a5\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u0997\\u09a3 \\u09b9\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8\\u0964\\n\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8e950d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#045916\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ha_advanced_tooltip_content\":\"I am a tooltip\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"066\",\"right\":\"0\",\"bottom\":\"066\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48ff8e4d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"75d92a9\"},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"789341b\"},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"_id\":\"d11504e\"},{\"text\":\"4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\",\"_id\":\"9de7d2f\"},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"_id\":\"c81d964\"},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"_id\":\"e523b92\"},{\"text\":\"7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\",\"_id\":\"5d725c6\"}],\"icon_color\":\"#045916\",\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"011\",\"bottom\":\"0\",\"left\":\"0111\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b70727a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_border\":\"none\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"order\",\"css_classes\":\"order\",\"custom_css\":\".order .checkout-bar {\\r\\n    display: none;\\r\\n}\",\"background_background\":\"classic\",\"background_color\":\"#C6FFCA\"},\"elements\":[{\"id\":\"150ddfda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#4AAC3F\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"40a2cb10\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\"> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  <\\/span> \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"_css_classes\":\"order\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"563e8658\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964    \\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31955583\",\"elType\":\"widget\",\"settings\":{\"marker\":\"curly\",\"before_text\":\"\",\"highlighted_text\":\"\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"highlight_animation_duration\":1827,\"highlight_iteration_delay\":95,\"marker_color\":\"#C60000\",\"above_content\":\"yes\",\"rounded_edges\":\"yes\",\"title_color\":\"#562222\",\"words_color\":\"#DC0909\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"words_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"569c4df4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"align\":\"center\",\"title_color\":\"#FD3535\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f4afc4\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"4e284e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#03DE91\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7289cd30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"c87e62a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F20055\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2a9e407c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#54595F0F\",\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"12\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"707ad36c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ecafdda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2024 fishgrowth| This website made with \\u2764\\ufe0f by <a style=\\\"color: red;\\\" href=\\\"https:\\/\\/itgalaxi.com\\/\\\"><b> itgalaxi<\\/b><\\/a><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"600\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7941','2170','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7942','2170','_elementor_controls_usage','a:11:{s:7:\"heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:14;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:14;s:21:\"typography_typography\";i:14;s:22:\"typography_font_family\";i:12;s:5:\"align\";i:14;s:20:\"typography_font_size\";i:13;s:22:\"typography_font_weight\";i:11;s:22:\"typography_line_height\";i:7;s:28:\"text_stroke_text_stroke_type\";i:2;}}s:8:\"advanced\";a:4:{s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:9;s:7:\"_margin\";i:6;s:12:\"_css_classes\";i:1;}s:15:\"_section_border\";a:2:{s:14:\"_border_radius\";i:9;s:27:\"_box_shadow_box_shadow_type\";i:4;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:4;}}}}s:9:\"countdown\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:17:\"section_countdown\";a:5:{s:13:\"custom_labels\";i:1;s:8:\"due_date\";i:1;s:14:\"countdown_type\";i:1;s:23:\"evergreen_counter_hours\";i:1;s:25:\"evergreen_counter_minutes\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_box_style\";a:3:{s:17:\"box_border_radius\";i:1;s:11:\"box_spacing\";i:1;s:20:\"box_background_color\";i:1;}s:21:\"section_content_style\";a:10:{s:28:\"digits_typography_typography\";i:1;s:29:\"digits_typography_font_family\";i:1;s:29:\"digits_typography_font_weight\";i:1;s:12:\"digits_color\";i:1;s:27:\"digits_typography_font_size\";i:1;s:29:\"digits_typography_line_height\";i:1;s:11:\"label_color\";i:1;s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_family\";i:1;s:28:\"label_typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:6:{s:11:\"before_text\";i:5;s:16:\"highlighted_text\";i:5;s:10:\"after_text\";i:3;s:6:\"marker\";i:5;s:28:\"highlight_animation_duration\";i:1;s:25:\"highlight_iteration_delay\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_style_text\";a:11:{s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:4;s:11:\"title_color\";i:5;s:28:\"title_typography_line_height\";i:4;s:11:\"words_color\";i:5;s:28:\"title_typography_font_family\";i:4;s:27:\"words_typography_typography\";i:4;s:28:\"words_typography_font_family\";i:2;s:28:\"words_typography_font_weight\";i:2;s:28:\"text_stroke_text_stroke_type\";i:1;s:28:\"title_typography_font_weight\";i:1;}s:20:\"section_style_marker\";a:4:{s:12:\"marker_color\";i:5;s:12:\"stroke_width\";i:4;s:13:\"above_content\";i:4;s:13:\"rounded_edges\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:3;s:14:\"_element_width\";i:1;s:7:\"_margin\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:2;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:2;s:4:\"size\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:13:\"border_border\";i:2;s:13:\"border_radius\";i:2;s:33:\"button_box_shadow_box_shadow_type\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:8;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:4;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:6;s:18:\"background_color_b\";i:1;s:16:\"background_color\";i:5;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_radius\";i:2;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:2;s:7:\"padding\";i:3;s:11:\"_element_id\";i:1;s:11:\"css_classes\";i:1;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:3:\"gap\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:3:{s:11:\"youtube_url\";i:1;s:10:\"insert_url\";i:1;s:12:\"external_url\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"_section_border\";a:2:{s:14:\"_border_radius\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:2;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;s:14:\"_element_width\";i:1;s:10:\"_flex_size\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:10:\"icon_align\";i:1;s:17:\"icon_align_mobile\";i:1;}s:18:\"section_icon_style\";a:4:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;s:11:\"text_indent\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:7:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:27:\"icon_typography_line_height\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:13:\"content_width\";i:1;s:14:\"flex_direction\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7945','2171','wcf-flow-id','2159');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7946','2171','wcf-step-type','checkout');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7947','2171','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7948','2171','wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7949','2171','wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:9:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"country\";s:2:\"BD\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7950','2171','wcf-remove-product-field','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7951','2171','wcf-order-review-show-product-images','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7952','2171','wcf-custom-script','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7953','2171','wcf-step-note','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7954','2171','wcf-animate-browser-tab','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7955','2171','wcf-animate-browser-tab-title','___Don\'t miss out the offer___');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7956','2171','wcf-pro-dynamic-css-version','1725883074');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7957','2171','wcf-dynamic-css-version','1725883074');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7958','2171','wcf-checkout-place-order-button-text','Place Order');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7959','2171','wcf-checkout-place-order-button-lock','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7960','2171','wcf-checkout-place-order-button-price-display','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7961','2171','wcf-custom-checkout-fields','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7962','2171','wcf-show-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7963','2171','wcf-optimize-coupon-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7964','2171','wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:11:{s:5:\"label\";s:28:\"আপনার নামঃ\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:13:\"billing_phone\";a:13:{s:5:\"label\";s:37:\"মোবাইল নম্বরঃ\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:20;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_1\";a:11:{s:5:\"label\";s:46:\"ডেলিভারি ঠিকানাঃ\";s:11:\"placeholder\";s:0:\"\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:30;s:5:\"width\";i:100;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:1;s:7:\"options\";s:0:\"\";}s:17:\"billing_last_name\";a:11:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:0;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:40;s:5:\"width\";i:50;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_company\";a:11:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:50;s:8:\"required\";b:0;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:15:\"billing_country\";a:12:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:16:\"Country / Region\";s:8:\"required\";b:0;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:60;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:17:\"billing_address_2\";a:12:{s:5:\"label\";s:28:\"Apartment, suite, unit, etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:39:\"Apartment, suite, unit, etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:70;s:8:\"required\";b:0;s:5:\"width\";i:50;s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:12:\"billing_city\";a:11:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:80;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_state\";a:15:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:8:\"District\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:90;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"country\";s:2:\"BD\";s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:16:\"billing_postcode\";a:12:{s:5:\"label\";s:14:\"Postcode / ZIP\";s:8:\"required\";b:0;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:100;s:5:\"width\";i:33;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}s:13:\"billing_email\";a:13:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:0;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:5:\"width\";i:100;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:9:\"optimized\";b:0;s:7:\"enabled\";b:0;s:7:\"options\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7965','2171','wcf-google-autoaddress','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7966','2171','wcf-checkout-additional-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7967','2171','wcf-optimize-order-note-field','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7968','2171','wcf-shipto-diff-addr-fields','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7969','2171','wcf-checkout-customer-info-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7970','2171','wcf-checkout-billing-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7971','2171','wcf-checkout-shipping-details-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7972','2171','wcf-checkout-your-order-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7973','2171','wcf-checkout-payment-text','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7974','2171','wcf-enable-checkout-field-validation-text','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7975','2171','wcf-checkout-field-validation-text','is required');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7976','2171','wcf-enable-product-options','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7977','2171','wcf-product-options','force-all');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7978','2171','wcf-enable-product-variation','no');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7979','2171','wcf-product-variation-options','inline');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7980','2171','wcf-enable-product-quantity','yes');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7981','2171','wcf-checkout-discount-coupon','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7982','2171','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7983','2171','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7984','2171','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7985','2171','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7986','2171','_edit_lock','1725891272:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7987','2171','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7988','2171','_elementor_data','[{\"id\":\"426fe5a3\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#E7F0E1\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_b\":\"#CF9C9C\",\"background_gradient_type\":\"radial\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"55a46da5\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3194a5a4\",\"settings\":{\"image\":{\"id\":\"77\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FC7F01\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"},{\"id\":\"7f9fff5f\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67371df5\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45f87c79\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n\",\"align_mobile\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"416d7360\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7 \\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 fishgrowth\\u0964 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964 \\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"text-editor\",\"elType\":\"widget\"},{\"id\":\"25035dc7\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"},{\"id\":\"17c205f6\",\"settings\":{\"_column_size\":50,\"_inline_size\":37,\"animation\":\"fadeInRight\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3305e0fa\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"dots_position\":\"inside\",\"image_border_border\":\"groove\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"#FC7F01\",\"navigation\":\"dots\",\"carousel\":[],\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image-carousel\",\"elType\":\"widget\"},{\"id\":\"283e2358\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"column\"}],\"isInner\":true,\"elType\":\"section\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"73f4a8e9\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFF1F1\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29ded283\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77e611e1\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"spacer\",\"elType\":\"widget\"},{\"id\":\"3e0b6e57\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09eb\\u09e6 \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"marker_color\":\"#F00000\",\"above_content\":\"yes\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_color\":\"#FF0000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"-46\",\"bottom\":\"-46\",\"left\":\"-46\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"2bcd95b7\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09ed\\u09eb \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"marker_color\":\"#F00000\",\"above_content\":\"yes\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_color\":\"#FF0000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"animated-headline\",\"elType\":\"widget\"},{\"id\":\"403bce3a\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 \\u09ac\\u09be \\u0995\\u09b2 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#E57500\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"36cfb15d\",\"settings\":{\"text\":\"01838 40 40 44\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Gotu\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"1d656a1c\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFEEEE\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3dca2454\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#F8D9D9\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a5381b0\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#DC7676\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"7935856d\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"9e8f154\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"0fd14a4\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"P H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"d86358c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"0b64308\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"d9486c3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"6b7bbe0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"66b3e27\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"d4560d8\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"20e9bf3\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"1b95955\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"c2cfbc0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"91b4ba6\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"5bdb4de6\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"button\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5161ca1a\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFF3F3\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10123850\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60bb0de6\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#DC7676\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"2db8e9f9\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2d5ffa7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"21dd5e5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"a338827\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"62b8564\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"736c459\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"6ddeb71\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"0eae4fc\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\\u0995\\u09cb\\u09a8 \\u09b0\\u0995\\u09ae \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u099b\\u09be\\u09a1\\u09bc\\u09be \\u0998\\u09b0\\u09cb\\u09df\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09b8\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"3f8188b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"space_between_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"6319b594\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FFCECE\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"690fc4d\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#FF5E07\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"2a87f13e\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFECEC\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75a61f63\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"size\":\"50\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3925bb6c\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Screenshot-2024-07-01-134806.webp\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"image\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"},{\"id\":\"4fa48cf7\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"size\":\"50\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10157ec0\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#FF8902\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"5a54a1e\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"_id\":\"8988ccc\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E98C21\",\"icon_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"},{\"id\":\"17cde51e\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#FF8902\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"},{\"id\":\"6e58fa71\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"_id\":\"8988ccc\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E99604\",\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"icon-list\",\"elType\":\"widget\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"69a1e688\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFF3F3\",\"_element_id\":\"order\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5cfd06f0\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3DA300\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26271876\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8-\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#DC7676\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"},{\"id\":\"5f4afc4\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e284e0\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#03DE91\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true,\"elType\":\"container\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"7289cd30\",\"settings\":{\"flex_direction\":\"column\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c87e62a\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F20055\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"},{\"id\":\"28c29389\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"713cda3f\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d1091c1\",\"settings\":{\"title\":\"Copyright \\u00a9 2024  Fish Growth | This website made with <img draggable=\\\"false\\\" role=\\\"img\\\" class=\\\"emoji\\\" alt=\\\"\\u2764\\ufe0f\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/15.0.3\\/svg\\/2764.svg\\\"> by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"heading\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"column\"}],\"isInner\":false,\"elType\":\"section\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7989','2171','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7990','2171','wcf-checkout-layout','two-column');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7991','2171','_oembed_d1ba36e57cf99aabd5db8f13b2e7604c','<iframe title=\"৪০{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} ব্যয় কমিয়ে গড়ে তুলুন লাভজনক ব্যবসা মাছ চাষীদের জন্য সর্বোচ্চ কার্যকরী\" width=\"800\" height=\"600\" src=\"https://www.youtube.com/embed/mjr8CjmMFL0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7992','2171','_oembed_time_d1ba36e57cf99aabd5db8f13b2e7604c','1725890253');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7993','2171','_oembed_82377f9b7d52306141edf595d15f2297','<iframe title=\"ব্যয় কমিয়ে, উতপাদন বাড়ানোই হচ্ছে লাভবান হবার চাবিকাঠি\" width=\"800\" height=\"600\" src=\"https://www.youtube.com/embed/Lrdqc3AwV9I?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7994','2171','_oembed_time_82377f9b7d52306141edf595d15f2297','1725890507');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7995','2171','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7996','2171','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7997','2171','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('7998','2171','_elementor_controls_usage','a:11:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:10;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:10;s:21:\"typography_typography\";i:9;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:9;s:22:\"typography_font_weight\";i:8;s:22:\"typography_line_height\";i:2;s:5:\"align\";i:9;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:6:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;s:28:\"_background_hover_background\";i:3;s:19:\"_background_color_b\";i:3;s:25:\"_background_gradient_type\";i:3;s:26:\"_background_gradient_angle\";i:3;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:3;s:4:\"link\";i:3;s:4:\"size\";i:3;s:13:\"selected_icon\";i:3;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:12:\"align_mobile\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:16:\"background_color\";i:3;s:15:\"hover_animation\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:13:\"border_radius\";i:3;s:5:\"align\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:8;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;s:10:\"navigation\";i:1;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:1:{s:13:\"dots_position\";i:1;}s:19:\"section_style_image\";a:3:{s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:7;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;s:18:\"background_color_b\";i:1;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:5;s:6:\"margin\";i:2;s:11:\"_element_id\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:2;s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:10:\"after_text\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:2:{s:12:\"marker_color\";i:2;s:13:\"above_content\";i:2;}s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_font_weight\";i:2;s:11:\"words_color\";i:2;s:27:\"words_typography_typography\";i:2;s:28:\"words_typography_font_family\";i:2;s:28:\"words_typography_font_weight\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:4;s:9:\"icon_size\";i:4;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:4;s:27:\"icon_typography_font_family\";i:4;s:25:\"icon_typography_font_size\";i:4;s:27:\"icon_typography_font_weight\";i:4;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:14:\"flex_direction\";i:5;s:13:\"content_width\";i:3;s:5:\"width\";i:2;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8001','2172','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8002','2172','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8003','2172','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8004','2172','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8005','2172','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8006','2172','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8007','2172','_elementor_data','[{\"id\":\"426fe5a3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"gradient\",\"background_color\":\"#E7F0E1\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_b\":\"#CF9C9C\",\"background_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"55a46da5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3194a5a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_color\":\"#FC7F01\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f9fff5f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"67371df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"45f87c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n\",\"align_mobile\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"416d7360\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7 \\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 fishgrowth\\u0964 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964 \\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"25035dc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"17c205f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37,\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"3305e0fa\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"1\",\"dots_position\":\"inside\",\"image_border_border\":\"groove\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"#FC7F01\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"283e2358\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73f4a8e9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFF1F1\"},\"elements\":[{\"id\":\"29ded283\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"77e611e1\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3e0b6e57\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09eb\\u09e6 \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"marker_color\":\"#F00000\",\"above_content\":\"yes\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_color\":\"#FF0000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-46\",\"right\":\"-46\",\"bottom\":\"-46\",\"left\":\"-46\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"2bcd95b7\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09ed\\u09eb \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"marker_color\":\"#F00000\",\"above_content\":\"yes\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_color\":\"#FF0000\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Roboto\",\"words_typography_font_weight\":\"600\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"403bce3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 \\u09ac\\u09be \\u0995\\u09b2 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#E57500\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36cfb15d\",\"elType\":\"widget\",\"settings\":{\"text\":\"01838 40 40 44\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Gotu\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d656a1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFEEEE\"},\"elements\":[{\"id\":\"3dca2454\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#F8D9D9\"},\"elements\":[{\"id\":\"6a5381b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#DC7676\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7935856d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"9e8f154\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"0fd14a4\"},{\"text\":\"P H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"d86358c\"},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"0b64308\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"d9486c3\"},{\"text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"6b7bbe0\"},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"66b3e27\"},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"d4560d8\"},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"20e9bf3\"},{\"text\":\"* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"1b95955\"},{\"text\":\"* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"c2cfbc0\"},{\"text\":\"\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-hand-point-right\",\"library\":\"fa-solid\"},\"_id\":\"91b4ba6\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"space_between_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5bdb4de6\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\",\"link\":{\"url\":\"#order\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"justify\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-cart-arrow-down\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"background_color\":\"#FC7F01\",\"hover_animation\":\"pop\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#FC7F01\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5161ca1a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFF3F3\"},\"elements\":[{\"id\":\"10123850\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60bb0de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#DC7676\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2db8e9f9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"2d5ffa7\"},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"21dd5e5\"},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"a338827\"},{\"text\":\"4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"62b8564\"},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"736c459\"},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"6ddeb71\"},{\"text\":\"7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"0eae4fc\"},{\"text\":\"\\u0995\\u09cb\\u09a8 \\u09b0\\u0995\\u09ae \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u099b\\u09be\\u09a1\\u09bc\\u09be \\u0998\\u09b0\\u09cb\\u09df\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09b8\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"_id\":\"3f8188b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"space_between_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6319b594\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FFCECE\"},\"elements\":[{\"id\":\"690fc4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#FF5E07\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2a87f13e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFECEC\"},\"elements\":[{\"id\":\"75a61f63\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"size\":\"50\"}},\"elements\":[{\"id\":\"3925bb6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4fa48cf7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}\",\"size\":\"50\"}},\"elements\":[{\"id\":\"10157ec0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#FF8902\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a54a1e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"_id\":\"8988ccc\"}],\"icon_color\":\"#E98C21\",\"icon_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"17cde51e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#FF8902\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e58fa71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"_id\":\"8988ccc\"}],\"icon_color\":\"#E99604\",\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"69a1e688\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFF3F3\",\"_element_id\":\"order\"},\"elements\":[{\"id\":\"5cfd06f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#3DA300\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"26271876\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8-\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"gradient\",\"_background_color\":\"#E7F0E1\",\"_background_hover_background\":\"classic\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_background_color_b\":\"#DC7676\",\"_background_gradient_type\":\"radial\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f4afc4\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"4e284e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#03DE91\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7289cd30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"c87e62a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F20055\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"28c29389\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"713cda3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1d1091c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024  Fish Growth | This website made with <img draggable=\\\"false\\\" role=\\\"img\\\" class=\\\"emoji\\\" alt=\\\"\\u2764\\ufe0f\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/15.0.3\\/svg\\/2764.svg\\\"> by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8008','2172','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8009','2172','_elementor_controls_usage','a:11:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:5:\"width\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:10;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:10;s:21:\"typography_typography\";i:9;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:9;s:22:\"typography_font_weight\";i:8;s:22:\"typography_line_height\";i:2;s:5:\"align\";i:9;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:6:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;s:28:\"_background_hover_background\";i:3;s:19:\"_background_color_b\";i:3;s:25:\"_background_gradient_type\";i:3;s:26:\"_background_gradient_angle\";i:3;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:3;s:4:\"link\";i:3;s:4:\"size\";i:3;s:13:\"selected_icon\";i:3;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:12:\"align_mobile\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:16:\"background_color\";i:3;s:15:\"hover_animation\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:13:\"border_radius\";i:3;s:5:\"align\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:8;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:3:{s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;s:10:\"navigation\";i:1;}}s:5:\"style\";a:2:{s:24:\"section_style_navigation\";a:1:{s:13:\"dots_position\";i:1;}s:19:\"section_style_image\";a:3:{s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:7;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;s:18:\"background_color_b\";i:1;s:24:\"background_gradient_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:5;s:6:\"margin\";i:2;s:11:\"_element_id\";i:1;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:2;s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:10:\"after_text\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_style_marker\";a:2:{s:12:\"marker_color\";i:2;s:13:\"above_content\";i:2;}s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_font_weight\";i:2;s:11:\"words_color\";i:2;s:27:\"words_typography_typography\";i:2;s:28:\"words_typography_font_family\";i:2;s:28:\"words_typography_font_weight\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:4;s:9:\"icon_size\";i:4;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:4;s:27:\"icon_typography_font_family\";i:4;s:25:\"icon_typography_font_size\";i:4;s:27:\"icon_typography_font_weight\";i:4;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:14:\"flex_direction\";i:5;s:13:\"content_width\";i:3;s:5:\"width\";i:2;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8012','2173','wcf-flow-id','2159');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8013','2173','wcf-step-type','thankyou');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8014','2173','_wp_page_template','cartflows-default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8015','2173','wcf-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8016','2173','wcf-dynamic-css-version','1762748325');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8017','2173','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8018','2173','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8019','2173','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8020','2173','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8021','2173','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8022','2173','_edit_lock','1725887005:1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8023','2173','_elementor_data','[{\"id\":\"516a438\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c757090\",\"settings\":{\"content_width\":\"full\",\"confirmation_message_text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u09b8\\u09ab\\u09b2 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6\",\"confirmation_message_alignment\":\"center\",\"payment_details_number\":\"Order Number:\",\"payment_details_date\":\"Order Date:\",\"payment_details_email\":\"Order Email:\",\"payment_details_total\":\"Order Total:\",\"payment_details_payment\":\"Payment Method:\",\"bank_details_text\":\"Our Bank Details\",\"downloads_text\":\"Downloads\",\"order_summary_text\":\"Order Details\",\"billing_details_text\":\"Billing Details\",\"shipping_details_text\":\"Shipping Details\",\"confirmation_message_color\":\"#010101\",\"confirmation_message_typography_typography\":\"custom\",\"confirmation_message_typography_font_family\":\"Hind Siliguri\",\"confirmation_message_typography_font_size\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"order_details_button_normal_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"order_details_button_normal_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"order_details_button_normal_background_slideshow_gallery\":[],\"order_details_button_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"order_details_button_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"order_details_button_hover_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"isInner\":false,\"widgetType\":\"woocommerce-purchase-summary\",\"elType\":\"widget\"}],\"isInner\":false,\"elType\":\"container\"}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8024','2173','_elementor_page_assets','a:0:{}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8025','2173','_elementor_controls_usage','a:2:{s:28:\"woocommerce-purchase-summary\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:20:\"confirmation_message\";a:2:{s:25:\"confirmation_message_text\";i:1;s:30:\"confirmation_message_alignment\";i:1;}}s:5:\"style\";a:1:{s:16:\"typography_title\";a:4:{s:26:\"confirmation_message_color\";i:1;s:42:\"confirmation_message_typography_typography\";i:1;s:43:\"confirmation_message_typography_font_family\";i:1;s:41:\"confirmation_message_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8031','2174','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8032','2174','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8033','2174','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8034','2174','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8035','2174','_elementor_data','[{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elegance \\nRedefined\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"exclusive-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"man-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Men\'s Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"stylish \",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"New Arrivals\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Best Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Top Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2C093B\"},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our style\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"title_color\":\"#9C05EC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick &amp; Fashion\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#720091\"},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#27052A\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"id\":1715,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own <span style=\\\"background-color: rgb(47, 5, 54);\\\">Style<\\/span><br>\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#2F0536\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\",\"id\":1714,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Style\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Style\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8036','2174','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8037','2174','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8038','2174','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8039','2175','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8040','2175','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8041','2175','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8042','2175','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8043','2175','_elementor_data','[{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elegance \\nRedefined\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"exclusive-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"man-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Men\'s Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"stylish \",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"New Arrivals\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Best Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Top Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2C093B\"},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our style\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"title_color\":\"#9C05EC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick &amp; Fashion\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#720091\"},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#27052A\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"id\":1715,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own <span style=\\\"background-color: rgb(47, 5, 54);\\\">Style<\\/span><br>\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#2F0536\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\",\"id\":1714,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Style\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Style\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8044','2175','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8045','2175','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8046','2175','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8047','2176','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8048','2176','_elementor_template_type','wp-page');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8049','2176','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8050','2176','_wp_page_template','default');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8051','2176','_elementor_data','[{\"id\":\"1aaa916\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\",\"id\":1718,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000B3\",\"background_overlay_color_b\":\"#00000000\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"animation\":\"fadeIn\",\"custom_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=kadence4\"}},\"elements\":[{\"id\":\"24a9e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7c2b6c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you hungry?\",\"header_size\":\"h6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_offset_x\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_color\":\"#3B0056\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1df24a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elegance \\nRedefined\",\"header_size\":\"h1\",\"title_color\":\"#6A278D\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bfc0e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go to Menu\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"button_text_color\":\"#A81DC3\",\"background_color\":\"#2B0842\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"bfbd2dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"511008b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"80\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#260130\"},\"elements\":[{\"id\":\"736be0af\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"2bcb7de5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1717,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"exclusive-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7a475ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7baea491\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1715,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"795838eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"7b23ffd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1710,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"man-fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"648f12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"770a800f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1743,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Men\'s Fashion\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4ae7ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"5b81771e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1742,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"stylish \",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15a86d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"296f9244\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1733,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"New Arrivals\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1a0c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"37fafb0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1739,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Best Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"dd9cef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":12,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_hover_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFC84D00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\"}},\"elements\":[{\"id\":\"f0c71c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1735,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"thumbnail_size\":\"medium\",\"title_text\":\"Top Collections\",\"description_text\":\"\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":80,\"sizes\":[]},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_animation\":\"grow\",\"title_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"512c2542\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/4-2346237347834.jpg\",\"id\":1112},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#2C093B\"},\"elements\":[{\"id\":\"5e964160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f1b61f5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center right\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/2wIeE.jpg\",\"id\":1734,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"713b4952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.519,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"170c55b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.481,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"7c3f2939\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"@\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac37907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f2098c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$14.45<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence1\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a1b705\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"button_hover_border_color\":\"#a5141a\",\"border_color\":\"#a5141a\",\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2b812845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"30caee78\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_05-PM-1.jpg\",\"id\":1730,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7d677b18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"5d2617b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.749,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3bd38a1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discovery <br>New Menu\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ca502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aaed22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2b09b5\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":230,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\",\"id\":1710,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"b6feff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.704,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"8840439\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.206,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe14c18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy one <br>get two\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d35d90d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"text_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8d1d61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>$145.00<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=kadence2\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Bebas Neue\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65da27d5\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":209,\"sizes\":[]},\"shape_divider_top_flip\":\"yes\",\"shape_divider_top_negative\":\"yes\",\"background_color\":\"#17051A\"},\"elements\":[{\"id\":\"41c35d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"background_background\":\"classic\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d61665\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\",\"id\":1732,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6f0a7fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"545ec2a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height_inner\":\"min-height\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0de355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[{\"id\":\"17bb4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Our style\\n\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"title_color\":\"#9C05EC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"607f8dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion\",\"align_tablet\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535a0191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\",\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6aabf9b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7db9f196\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png\",\"id\":1719,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"size\":156,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":67,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4389a7da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17ad3f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Deliver Your Masterpiece!\",\"align_tablet\":\"center\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#B030F3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45b74056\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick &amp; Fashion\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":5,\"sizes\":[]},\"title_color\":\"#25052C\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a8cf73\",\"elType\":\"widget\",\"settings\":{\"text\":\"full menu\",\"icon_align\":\"right\",\"align\":\"center\",\"button_text_color\":\"#ED57FB\",\"background_color\":\"#33093B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8aeb351\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#320B40\"},\"elements\":[{\"id\":\"db650e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a5d713e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":230,\"title\":\"Ingredients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2b2102a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"e8a9dac\",\"elType\":\"widget\",\"settings\":{\"ending_number\":500,\"suffix\":\"+\",\"title\":\"Clients Daily\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"bc6888f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b20ecbc\",\"elType\":\"widget\",\"settings\":{\"ending_number\":12,\"suffix\":\"+\",\"title\":\"Years of Experience\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"702014f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6845d15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fresh & Tasty\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Pacifico\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_weight\":\"400\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_title_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"number_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9de819\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#720091\"},\"elements\":[{\"id\":\"7187a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"700aed7\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#27052A\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"3c7dce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4944d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\",\"id\":1715,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d20a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e0053c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own <span style=\\\"background-color: rgb(47, 5, 54);\\\">Style<\\/span><br>\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47b751d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"959ad35\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccd4943\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d03df71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e97ab0\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":20,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.06)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFB91A00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"\",\"border_hover_color\":\"globals\\/colors?id=kadence2\",\"background_color\":\"\"},\"background_color\":\"#2F0536\",\"border_hover_color\":\"#003174\"},\"elements\":[{\"id\":\"98f6cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.143,\"background_background\":\"classic\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"8b0ba31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\",\"id\":1714,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"800\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e2fbb9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.808,\"content_position\":\"center\",\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f3d74f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Build Your Own Style\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"align_mobile\":\"center\",\"typography_text_transform\":\"capitalize\",\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8729372\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99.00\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=kadence1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ded09d5\",\"elType\":\"widget\",\"settings\":{\"typography_font_family\":\"Source Sans Pro\",\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"901e6f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"order now\",\"icon_align\":\"right\",\"align_mobile\":\"center\",\"align\":\"left\",\"align_tablet\":\"left\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"button_background_hover_color\":\"rgba(238, 3, 43, 0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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)\"},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=kadence3\",\"border_color\":\"globals\\/colors?id=kadence1\",\"hover_color\":\"globals\\/colors?id=kadence1\",\"button_hover_border_color\":\"globals\\/colors?id=kadence1\"},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db18a60\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"40\",\"left\":\"15\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"background_color\":\"#FFFFFF\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\",\"id\":1717,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.62,\"sizes\":[]}},\"elements\":[{\"id\":\"66a99f7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76646b91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Dishes\",\"typography_font_family\":\"Oswald\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_text_transform\":\"uppercase\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#9017BC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3229abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\" Your Style\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"align\":\"center\",\"title_color\":\"#571190\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1995a4d1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"241d9f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ce3ec19\",\"elType\":\"widget\",\"settings\":{\"title\":\"$9.50\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"align_tablet\":\"right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"header_size\":\"h5\",\"title_color\":\"#AF2BC0\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"787370be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2603e9b3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicken Caesar\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"5af9d0e\"},{\"text\":\"Super Supreme\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"238d1a4\"},{\"text\":\"Cheese Lover\'s\",\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_id\":\"4dbd306\"}],\"space_between\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"__globals__\":{\"icon_typography_typography\":\"\",\"icon_color\":\"\"},\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\",\"icon_color\":\"#B51BC3\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b8fabcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Order now\",\"align\":\"center\",\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"button_text_color\":\"#D318F7\",\"background_color\":\"#2A053B\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8052','2176','_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8053','2176','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8054','2176','_elementor_pro_version','3.12.1');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8055','15','_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:16;s:11:\"header_size\";i:13;s:4:\"link\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:10;s:11:\"title_color\";i:11;s:25:\"typography_letter_spacing\";i:4;s:5:\"align\";i:5;s:22:\"typography_line_height\";i:2;s:22:\"typography_font_family\";i:3;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:11;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:7;s:10:\"icon_align\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:12:\"align_tablet\";i:5;s:21:\"typography_typography\";i:2;s:17:\"button_text_color\";i:3;s:16:\"background_color\";i:5;s:25:\"button_hover_border_color\";i:1;s:12:\"border_color\";i:1;s:5:\"align\";i:4;s:12:\"align_mobile\";i:2;s:29:\"button_background_hover_color\";i:2;s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:13:\"border_radius\";i:2;s:12:\"text_padding\";i:2;s:33:\"button_box_shadow_box_shadow_type\";i:2;s:28:\"button_box_shadow_box_shadow\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:35;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:35;s:16:\"content_position\";i:9;s:21:\"space_between_widgets\";i:6;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:7;s:7:\"padding\";i:11;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:5:{s:27:\"background_hover_background\";i:8;s:21:\"background_background\";i:9;s:19:\"background_position\";i:3;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:3;}s:14:\"section_border\";a:6:{s:13:\"border_border\";i:8;s:12:\"border_width\";i:8;s:12:\"border_color\";i:8;s:13:\"border_radius\";i:8;s:19:\"border_hover_border\";i:8;s:18:\"border_hover_width\";i:8;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:6:\"height\";i:6;s:13:\"custom_height\";i:7;s:12:\"height_inner\";i:6;s:19:\"custom_height_inner\";i:5;s:13:\"content_width\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:13;s:16:\"background_image\";i:6;s:19:\"background_position\";i:10;s:15:\"background_size\";i:10;s:17:\"background_repeat\";i:1;s:16:\"background_color\";i:11;}s:26:\"section_background_overlay\";a:11:{s:29:\"background_overlay_background\";i:5;s:24:\"background_overlay_color\";i:3;s:26:\"background_overlay_color_b\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;s:26:\"background_overlay_opacity\";i:8;s:27:\"background_overlay_position\";i:6;s:23:\"background_overlay_size\";i:5;s:35:\"background_overlay_hover_transition\";i:1;s:24:\"background_overlay_image\";i:1;s:29:\"background_overlay_attachment\";i:1;s:25:\"background_overlay_repeat\";i:1;}s:14:\"section_border\";a:8:{s:13:\"border_radius\";i:5;s:21:\"box_shadow_box_shadow\";i:2;s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:19:\"border_hover_border\";i:2;s:18:\"border_hover_width\";i:2;s:18:\"border_hover_color\";i:2;}s:21:\"section_shape_divider\";a:4:{s:24:\"shape_divider_top_height\";i:2;s:22:\"shape_divider_top_flip\";i:1;s:26:\"shape_divider_top_negative\";i:1;s:23:\"shape_divider_top_width\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:8;s:7:\"padding\";i:11;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:8;s:14:\"thumbnail_size\";i:8;s:10:\"title_text\";i:8;s:16:\"description_text\";i:8;s:10:\"title_size\";i:8;s:4:\"link\";i:8;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:1:{s:11:\"image_space\";i:8;}s:19:\"section_style_image\";a:2:{s:10:\"image_size\";i:8;s:15:\"hover_animation\";i:8;}s:21:\"section_style_content\";a:2:{s:26:\"title_typography_font_size\";i:8;s:27:\"title_typography_typography\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:9;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:3;s:20:\"typography_font_size\";i:5;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:5;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:3;s:10:\"image_size\";i:2;s:22:\"image_custom_dimension\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:3:{s:13:\"ending_number\";i:3;s:5:\"title\";i:4;s:6:\"suffix\";i:2;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:29:\"typography_number_line_height\";i:4;}s:13:\"section_title\";a:5:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_line_height\";i:4;s:31:\"typography_title_letter_spacing\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:17:\"icon_align_mobile\";i:1;}s:18:\"section_icon_style\";a:3:{s:9:\"icon_size\";i:1;s:11:\"text_indent\";i:1;s:10:\"icon_color\";i:1;}s:18:\"section_text_style\";a:3:{s:27:\"icon_typography_font_family\";i:1;s:27:\"icon_typography_font_weight\";i:1;s:10:\"text_color\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8069','2178','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8070','2178','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8071','2178','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8072','2178','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8073','2178','_elementor_pro_version','3.23.3');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8074','2178','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8075','2178','_elementor_data','[{\"id\":\"56af9bdc\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#863C91\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_negative\":\"yes\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"20\",\"bottom\":\"36\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6354fe87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6ca4d84f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\"},\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2817b6e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n<strong style=\\\"background: linear-gradient(90deg, #ff0000, #ff7f00);\\n      color: #ffffff;\\n      font-size: 18px;\\n      font-weight: 900;\\n      padding: 2px;\\n      text-align: center;\\n      border-radius: 12px;\\n      box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);\\n      font-family: \'Arial\', sans-serif;\\n      margin: 20px;\\n      animation: pulse 2s infinite;\\\">\\u099a\\u09b2\\u099b\\u09c7 \\u09b8\\u09b0\\u09cd\\u09ac\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09b8\\u09c7\\u09b0\\u09be \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f<\\/strong> \\u2013 \\n    <span>\\ud83c\\udfaf \\\"\\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c7 \\u09b2\\u09be\\u09ad\\u09c7\\u09b0 \\u09a8\\u09a4\\u09c1\\u09a8 \\u09a6\\u09bf\\u0997\\u09a8\\u09cd\\u09a4 \\u2013 \\u0985\\u09b2\\u09cd\\u09aa \\u0996\\u09b0\\u099a\\u09c7 \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a \\u09ab\\u09b2\\u09be\\u09ab\\u09b2!\\\" <br\\/>\\n \\ud83c\\udfaf \\\"\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09b9\\u09ac\\u09c7 \\u09a6\\u09cd\\u09ac\\u09bf\\u0997\\u09c1\\u09a3 \\u0986\\u09b0 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b9\\u09be\\u09b8\\u09bf\\u0993!\\\"\\\" <br\\/><br\\/>\\n\\n\\u26d4 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09b2\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_animation\":\"fadeInDown\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_background_color\":\"#621167\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570c0eb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"<br\\/>\\ud83d\\udea8 \\u098f\\u099f\\u09be\\u0987 \\u09ac\\u099b\\u09b0\\u099c\\u09c1\\u09dc\\u09c7 \\u09b8\\u09ac\\u099a\\u09c7\\u09df\\u09c7 \\u09ac\\u09dc \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f \\n<br\\/><br\\/>\\n\\u09a4\\u09be\\u0987 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u09a8\\u09be \\u0995\\u09b0\\u09c7 \\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09c1\\u09a8 \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35cf3d3b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"78895acb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"\\u09b9\\u09cb\\u09af\\u09bc\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"720c8da1\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"danger\",\"text\":\"  \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"link\":{\"url\":\" tel:01838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"background_color\":\"#F70944\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8366e1a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"237445d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f71532a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=YtRdBQF8cVM\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"hosted_url\":{\"id\":\"64\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/sorkoar-agro-dicche.mp4\"},\"autoplay\":\"yes\",\"poster\":{\"id\":\"65\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Screenshot-2024-07-01-134806.webp\"},\"image_overlay\":{\"id\":2166,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/placeholder-2.png\"}},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"21652aea\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\"},\"background_color\":\"#2C0935\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31c87f7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#6B3074\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2d2923e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5d5d5f54\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17632185\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"24cf03d5\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"6c582a9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6355a4f5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5006653\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"6d18c6a\"},{\"text\":\"P H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4bed90a\"},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0d295c0\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7059cbe\"},{\"text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c6a56c8\"},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"17fafae\"},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ea0db2\"},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0acdf06\"},{\"text\":\"* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"e119be2\"},{\"text\":\"* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3a98024\"},{\"text\":\"\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"f925d64\"}],\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#FFFFFF\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3e9980a3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#3F0541\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"59c5b7af\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ae7a46a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b9db319\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56f4c721\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#54A41F\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3a31b225\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"7ef7714e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d81fdf9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Screenshot-2024-07-01-134806.webp\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"513395d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"33a94c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"396e5194\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7995c68\"}],\"icon_color\":\"#54A41F\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"232a7d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"196d5788\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7995c68\"}],\"icon_color\":\"#54A41F\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46d52cd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#490D55\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7557cce3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#56215E\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"205e1a79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"22ff8f09\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6755c86b\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"656f7e53\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"71d861ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7e3f3b4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5006653\"},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"95b3d64\"},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4763cdd\"},{\"text\":\"4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"e10efcb\"},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5c62940\"},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3f89b83\"},{\"text\":\"7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"67f92da\"}],\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#FFFFFF\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4167eca5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#41023F\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35637d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.74,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"structure\":\"20\"},\"elements\":[{\"id\":\"3bec52f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#431053\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2422081d\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09ed\\u09eb \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"title_color\":\"#54A41F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"__globals__\":{\"marker_color\":\"\",\"words_color\":\"\"},\"marker_color\":\"#48116B\",\"words_color\":\"#FB6107\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"921a419\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 500  \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FB0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"32deff59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#351057\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2748054\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"\\u09ee\\u09eb\\u09e6 \",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\" \\u099f\\u09be\\u0995\\u09be\",\"title_color\":\"#54A41F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"__globals__\":{\"marker_color\":\"\",\"words_color\":\"\"},\"marker_color\":\"#4A1566\",\"words_color\":\"#FB6107\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"1d7c7f92\",\"elType\":\"widget\",\"settings\":{\"title\":\" \\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 500  \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FB0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a80cf01\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_position\":\"middle\",\"background_color\":\"#54285B\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"12bf4bc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed8c323\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u0985\\u09a5\\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6641457c\",\"elType\":\"widget\",\"settings\":{\"text\":\"01838 40 40 44\",\"link\":{\"url\":\"tel:01838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b619a31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"checkout\",\"background_background\":\"classic\",\"background_color\":\"#FAD7FF\"},\"elements\":[{\"id\":\"29cc3b4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#250C30\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"64f1d51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\"> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 <\\/span> \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"title_color\":\"#481D5F\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"166b94d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#1D0824\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f4afc4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F9CEFF\"},\"elements\":[{\"id\":\"4e284e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#361253\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"45d5910\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4ded94d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#380D3D\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1d7d9558\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4a7a1d51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Develop by itgalaxy<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8076','2178','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8079','2179','_wp_page_template','cartflows-canvas');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8080','2179','_elementor_edit_mode','builder');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8081','2179','_elementor_template_type','wp-post');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8082','2179','_elementor_version','3.23.4');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8083','2179','_elementor_pro_version','3.18.2');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8084','2179','_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F8F6F8\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8085','2179','_elementor_data','[{\"id\":\"56af9bdc\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#863C91\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_negative\":\"yes\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"20\",\"bottom\":\"36\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6354fe87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6ca4d84f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\"},\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2817b6e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n<strong style=\\\"background: linear-gradient(90deg, #ff0000, #ff7f00);\\n      color: #ffffff;\\n      font-size: 18px;\\n      font-weight: 900;\\n      padding: 2px;\\n      text-align: center;\\n      border-radius: 12px;\\n      box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);\\n      font-family: \'Arial\', sans-serif;\\n      margin: 20px;\\n      animation: pulse 2s infinite;\\\">\\u099a\\u09b2\\u099b\\u09c7 \\u09b8\\u09b0\\u09cd\\u09ac\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09b8\\u09c7\\u09b0\\u09be \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f<\\/strong> \\u2013 \\n    <span>\\ud83c\\udfaf \\\"\\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c7 \\u09b2\\u09be\\u09ad\\u09c7\\u09b0 \\u09a8\\u09a4\\u09c1\\u09a8 \\u09a6\\u09bf\\u0997\\u09a8\\u09cd\\u09a4 \\u2013 \\u0985\\u09b2\\u09cd\\u09aa \\u0996\\u09b0\\u099a\\u09c7 \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a \\u09ab\\u09b2\\u09be\\u09ab\\u09b2!\\\" <br\\/>\\n \\ud83c\\udfaf \\\"\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09b9\\u09ac\\u09c7 \\u09a6\\u09cd\\u09ac\\u09bf\\u0997\\u09c1\\u09a3 \\u0986\\u09b0 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b9\\u09be\\u09b8\\u09bf\\u0993!\\\"\\\" <br\\/><br\\/>\\n\\n\\u26d4 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09b2\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"600\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_animation\":\"fadeInDown\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"_background_color\":\"#621167\",\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570c0eb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"<br\\/>\\ud83d\\udea8 \\u098f\\u099f\\u09be\\u0987 \\u09ac\\u099b\\u09b0\\u099c\\u09c1\\u09dc\\u09c7 \\u09b8\\u09ac\\u099a\\u09c7\\u09df\\u09c7 \\u09ac\\u09dc \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f \\n<br\\/><br\\/>\\n\\u09a4\\u09be\\u0987 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u09a8\\u09be \\u0995\\u09b0\\u09c7 \\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09c1\\u09a8 \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_animation\":\"fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35cf3d3b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"78895acb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"\\u09b9\\u09cb\\u09af\\u09bc\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/+8801838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"720c8da1\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"danger\",\"text\":\"  \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"link\":{\"url\":\" tel:01838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_element_width\":\"auto\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"background_color\":\"#F70944\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8366e1a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"237445d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f71532a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=YtRdBQF8cVM\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"videopress_url\":\"https:\\/\\/videopress.com\\/v\\/ZCAOzTNk\",\"hosted_url\":{\"id\":\"64\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/sorkoar-agro-dicche.mp4\"},\"autoplay\":\"yes\",\"poster\":{\"id\":\"65\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Screenshot-2024-07-01-134806.webp\"},\"image_overlay\":{\"id\":2166,\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/placeholder-2.png\"}},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"21652aea\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\"},\"background_color\":\"#2C0935\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31c87f7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#6B3074\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"2d2923e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5d5d5f54\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17632185\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"24cf03d5\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"6c582a9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6355a4f5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5006653\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"6d18c6a\"},{\"text\":\"P H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4bed90a\"},{\"text\":\"-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0d295c0\"},{\"text\":\"-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7059cbe\"},{\"text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"c6a56c8\"},{\"text\":\"-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"17fafae\"},{\"text\":\"-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7ea0db2\"},{\"text\":\"-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"0acdf06\"},{\"text\":\"* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"e119be2\"},{\"text\":\"* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3a98024\"},{\"text\":\"\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"f925d64\"}],\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#FFFFFF\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3e9980a3\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#3F0541\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"59c5b7af\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ae7a46a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b9db319\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"align\":\"center\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56f4c721\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#54A41F\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3a31b225\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"gap\":\"no\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"7ef7714e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d81fdf9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Screenshot-2024-07-01-134806.webp\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"513395d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"33a94c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"396e5194\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7995c68\"}],\"icon_color\":\"#54A41F\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"232a7d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n\",\"title_color\":\"#1D5F4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"196d5788\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"7995c68\"}],\"icon_color\":\"#54A41F\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#000000\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"46d52cd7\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#490D55\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7557cce3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#56215E\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"205e1a79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"22ff8f09\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\n\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6755c86b\",\"elType\":\"widget\",\"settings\":{\"style\":\"zigzag\",\"width\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.5,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"656f7e53\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[{\"id\":\"71d861ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7e3f3b4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5006653\"},{\"text\":\"2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"95b3d64\"},{\"text\":\"3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"4763cdd\"},{\"text\":\"4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"e10efcb\"},{\"text\":\"5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5c62940\"},{\"text\":\"6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3f89b83\"},{\"text\":\"7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"67f92da\"}],\"icon_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Hind Siliguri\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"text_color\":\"#FFFFFF\",\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"divider\":\"yes\",\"divider_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4167eca5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\",\"link\":{\"url\":\"#checkout\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"xl\",\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#41023F\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35637d4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.74,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"structure\":\"20\"},\"elements\":[{\"id\":\"3bec52f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#431053\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2422081d\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"650\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\"\\u099f\\u09be\\u0995\\u09be\",\"title_color\":\"#54A41F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"__globals__\":{\"marker_color\":\"\",\"words_color\":\"\"},\"marker_color\":\"#48116B\",\"words_color\":\"#FB6107\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"921a419\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 500  \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FB0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"32deff59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#351057\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2748054\",\"elType\":\"widget\",\"settings\":{\"marker\":\"x\",\"before_text\":\"\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \",\"highlighted_text\":\"650\",\"rotating_text\":\"Better\\nBigger\\nFaster\",\"after_text\":\" \\u099f\\u09be\\u0995\\u09be\",\"title_color\":\"#54A41F\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Hind Siliguri\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"words_typography_typography\":\"custom\",\"words_typography_font_family\":\"Hind Siliguri\",\"words_typography_font_weight\":\"700\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"__globals__\":{\"marker_color\":\"\",\"words_color\":\"\"},\"marker_color\":\"#4A1566\",\"words_color\":\"#FB6107\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"1d7c7f92\",\"elType\":\"widget\",\"settings\":{\"title\":\" \\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 500  \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#FB0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"bounceIn\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a80cf01\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"content_position\":\"middle\",\"background_color\":\"#54285B\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"12bf4bc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed8c323\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u0985\\u09a5\\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6641457c\",\"elType\":\"widget\",\"settings\":{\"text\":\"01838 40 40 44\",\"link\":{\"url\":\"tel:01838404044\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"background_color\":\"#FB6107\",\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FBB02D\",\"hover_animation\":\"push\",\"_animation\":\"bounceIn\",\"__globals__\":{\"background_color\":\"\",\"button_background_hover_color\":\"\",\"button_text_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#CCFF33\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b619a31\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_element_id\":\"checkout\",\"background_background\":\"classic\",\"background_color\":\"#FAD7FF\"},\"elements\":[{\"id\":\"29cc3b4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#250C30\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"64f1d51c\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"color:red\\\"> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 <\\/span> \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Hind Siliguri\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"600\",\"title_color\":\"#481D5F\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_background_background\":\"classic\",\"__globals__\":{\"title_color\":\"\"},\"typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"166b94d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964\\n\",\"align\":\"center\",\"title_color\":\"#1D0824\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f4afc4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F9CEFF\"},\"elements\":[{\"id\":\"4e284e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#361253\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"e83e3ed\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"layout\":\"two-column\",\"note_text\":\"Get Your FREE copy of CartFlows in just few steps.\",\"step_one_title_text\":\"Shipping\",\"step_one_sub_title_text\":\"Where to ship it?\",\"step_two_title_text\":\"Payment\",\"step_two_sub_title_text\":\"Of your order\",\"offer_button_title_text\":\"For Special Offer Click Here\",\"offer_button_subtitle_text\":\"Yes! I want this offer!\",\"product_options_position\":\"before-customer\",\"product_options_skin\":\"cards\",\"product_options_images\":\"yes\",\"product_option_section_title_text\":\"\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983\"},\"elements\":[],\"widgetType\":\"checkout-form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"45d5910\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4ded94d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#380D3D\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1d7d9558\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"4a7a1d51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Develop by itgalaxy<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8086','2179','_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8087','2161','_elementor_controls_usage','a:13:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:19:\"image_border_radius\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:13;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:5:\"align\";i:11;s:21:\"typography_typography\";i:13;s:22:\"typography_font_family\";i:11;s:22:\"typography_font_weight\";i:12;s:20:\"typography_font_size\";i:11;s:23:\"text_stroke_text_stroke\";i:6;s:11:\"title_color\";i:13;s:22:\"typography_line_height\";i:5;s:28:\"text_stroke_text_stroke_type\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:9;}s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:7;s:7:\"_margin\";i:2;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:7;s:17:\"_background_color\";i:2;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:7;s:4:\"link\";i:7;s:4:\"size\";i:5;s:10:\"icon_align\";i:4;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:5:\"align\";i:7;s:21:\"typography_typography\";i:6;s:12:\"align_mobile\";i:1;s:16:\"background_color\";i:6;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:15:\"hover_animation\";i:5;s:11:\"hover_color\";i:5;s:29:\"button_background_hover_color\";i:5;s:13:\"border_border\";i:5;s:12:\"border_width\";i:5;s:12:\"border_color\";i:5;s:13:\"border_radius\";i:1;s:17:\"button_text_color\";i:4;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:7;}s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:14:\"_element_width\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:13:\"border_radius\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:6;s:36:\"background_motion_fx_motion_fx_mouse\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;}s:26:\"section_background_overlay\";a:3:{s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;s:29:\"background_overlay_background\";i:1;}s:21:\"section_shape_divider\";a:2:{s:20:\"shape_divider_bottom\";i:1;s:29:\"shape_divider_bottom_negative\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:7;s:11:\"_element_id\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:4;s:3:\"gap\";i:11;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:16:\"content_position\";i:7;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"section_video\";a:4:{s:11:\"youtube_url\";i:1;s:10:\"hosted_url\";i:1;s:8:\"autoplay\";i:1;s:6:\"poster\";i:1;}s:21:\"section_image_overlay\";a:1:{s:13:\"image_overlay\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"style\";i:3;s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:3:{s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:4;s:9:\"icon_size\";i:4;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:4;s:27:\"icon_typography_font_family\";i:4;s:25:\"icon_typography_font_size\";i:4;s:27:\"icon_typography_font_weight\";i:4;s:10:\"text_color\";i:4;}s:17:\"section_icon_list\";a:3:{s:13:\"space_between\";i:4;s:7:\"divider\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:4:{s:6:\"marker\";i:2;s:11:\"before_text\";i:2;s:16:\"highlighted_text\";i:2;s:10:\"after_text\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_style_text\";a:9:{s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:28:\"title_typography_font_weight\";i:2;s:27:\"words_typography_typography\";i:2;s:28:\"words_typography_font_family\";i:2;s:28:\"words_typography_font_weight\";i:2;s:11:\"words_color\";i:2;s:26:\"title_typography_font_size\";i:2;}s:20:\"section_style_marker\";a:1:{s:12:\"marker_color\";i:2;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:13:\"checkout-form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:22:\"section_general_fields\";a:1:{s:6:\"layout\";i:1;}s:37:\"section_product_option_section_fields\";a:4:{s:24:\"product_options_position\";i:1;s:20:\"product_options_skin\";i:1;s:22:\"product_options_images\";i:1;s:33:\"product_option_section_title_text\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:13:\"content_width\";i:1;s:14:\"flex_direction\";i:2;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8089','2161','_oembed_b0b0377675823f81082c2dab22967bc3','<iframe title=\"সরকার এগ্রো কেয়ার-এর পণ্য &quot;ওয়াটার প্ল্যাংকটন প্লাস&quot; এবং &quot;ডাবল গ্রোথ প্লাস&quot;\" width=\"720\" height=\"405\" src=\"https://www.youtube.com/embed/YtRdBQF8cVM?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8090','2161','_oembed_time_b0b0377675823f81082c2dab22967bc3','1781107271');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8092','2161','wcf-checkout-products','a:1:{i:0;a:5:{s:8:\"quantity\";s:1:\"1\";s:13:\"discount_type\";s:0:\"\";s:14:\"discount_value\";s:0:\"\";s:7:\"product\";s:4:\"2123\";s:9:\"unique_id\";s:8:\"fvz8wvao\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8093','2161','wcf-product-options-data','a:1:{s:8:\"fvz8wvao\";a:5:{s:11:\"add_to_cart\";s:3:\"yes\";s:16:\"enable_highlight\";s:2:\"no\";s:14:\"highlight_text\";s:0:\"\";s:12:\"product_name\";s:0:\"\";s:15:\"product_subtext\";s:0:\"\";}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8094','2161','wcf-pro-dynamic-css','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8095','2161','wcf-dynamic-css','\n			.wcf-embed-checkout-form .woocommerce #payment #place_order:before{\n				content: \"\\e902\";\n				font-family: \"cartflows-icon\" !important;\n				margin-right: 10px;\n				font-size: 16px;\n				font-weight: 500;\n				top: 0px;\n    			position: relative;\n				opacity: 1;\n				display: block;\n			}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8096','2161','wcf-field-google-font-url','');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8097','2180','_wcf_flow_id','2159');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8100','2123','_wp_old_slug','test-product');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8101','2182','_wp_attached_file','2026/06/ai-image-20260610-161648-a07b0081b95128c11e129ffc.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8102','2182','_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:61:\"2026/06/ai-image-20260610-161648-a07b0081b95128c11e129ffc.png\";s:8:\"filesize\";i:1304707;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"ai-image-20260610-161648-a07b0081b95128c11e129ffc-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118625;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"ai-image-20260610-161648-a07b0081b95128c11e129ffc-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33939;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"ai-image-20260610-161648-a07b0081b95128c11e129ffc-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:740811;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:61:\"ai-image-20260610-161648-a07b0081b95128c11e129ffc-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118625;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:61:\"ai-image-20260610-161648-a07b0081b95128c11e129ffc-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:449077;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:61:\"ai-image-20260610-161648-a07b0081b95128c11e129ffc-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16726;}}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:{}}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8103','2182','_source_url','https://jeepno.com/uploads/ai-images/ai-image-20260610-161648-a07b0081b95128c11e129ffc.png');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8104','2123','_product_image_gallery','2182');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8105','3','_elementor_css','a:6:{s:4:\"time\";i:1781133791;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:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8106','2161','_elementor_css','a:6:{s:4:\"time\";i:1781133791;s:5:\"fonts\";a:2:{i:0;s:13:\"Hind Siliguri\";i:6;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8107','2161','_elementor_element_cache','{\"timeout\":1781330592,\"value\":{\"content\":\"\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-56af9bdc elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle\\\" data-id=\\\"56af9bdc\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;background_motion_fx_motion_fx_mouse&quot;:&quot;yes&quot;,&quot;shape_divider_bottom&quot;:&quot;curve&quot;,&quot;shape_divider_bottom_negative&quot;:&quot;yes&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-shape elementor-shape-bottom\\\" data-negative=\\\"true\\\">\\n\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" viewBox=\\\"0 0 1000 100\\\" preserveAspectRatio=\\\"none\\\">\\n\\t<path class=\\\"elementor-shape-fill\\\" d=\\\"M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V1C1000,19.4,873.3,97.8,500,97z\\\"\\/>\\n<\\/svg>\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-no\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-6354fe87\\\" data-id=\\\"6354fe87\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6ca4d84f elementor-widget elementor-widget-image\\\" data-id=\\\"6ca4d84f\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"945\\\" height=\\\"945\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\\\" class=\\\"attachment-large size-large wp-image-63\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-2817b6e6 elementor-invisible elementor-widget elementor-widget-heading\\\" data-id=\\\"2817b6e6\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeInDown&quot;}\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2 class=\\\"elementor-heading-title elementor-size-default\\\">\\n<strong style=\\\"background: linear-gradient(90deg, #ff0000, #ff7f00);\\n      color: #ffffff;\\n      font-size: 18px;\\n      font-weight: 900;\\n      padding: 2px;\\n      text-align: center;\\n      border-radius: 12px;\\n      box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);\\n      font-family: \'Arial\', sans-serif;\\n      margin: 20px;\\n      animation: pulse 2s infinite;\\\">\\u099a\\u09b2\\u099b\\u09c7 \\u09b8\\u09b0\\u09cd\\u09ac\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09b8\\u09c7\\u09b0\\u09be \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f<\\/strong> \\u2013 \\n    <span>\\ud83c\\udfaf \\\"\\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c7 \\u09b2\\u09be\\u09ad\\u09c7\\u09b0 \\u09a8\\u09a4\\u09c1\\u09a8 \\u09a6\\u09bf\\u0997\\u09a8\\u09cd\\u09a4 \\u2013 \\u0985\\u09b2\\u09cd\\u09aa \\u0996\\u09b0\\u099a\\u09c7 \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a \\u09ab\\u09b2\\u09be\\u09ab\\u09b2!\\\" <br\\/>\\n \\ud83c\\udfaf \\\"\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09b9\\u09ac\\u09c7 \\u09a6\\u09cd\\u09ac\\u09bf\\u0997\\u09c1\\u09a3 \\u0986\\u09b0 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b9\\u09be\\u09b8\\u09bf\\u0993!\\\"\\\" <br\\/><br\\/>\\n\\n\\u26d4 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09b2\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\n<\\/h2>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-570c0eb4 elementor-invisible elementor-widget elementor-widget-heading\\\" data-id=\\\"570c0eb4\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\"><br\\/>\\ud83d\\udea8 \\u098f\\u099f\\u09be\\u0987 \\u09ac\\u099b\\u09b0\\u099c\\u09c1\\u09dc\\u09c7 \\u09b8\\u09ac\\u099a\\u09c7\\u09df\\u09c7 \\u09ac\\u09dc \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f \\n<br\\/><br\\/>\\n\\u09a4\\u09be\\u0987 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u09a8\\u09be \\u0995\\u09b0\\u09c7 \\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09c1\\u09a8 <\\/h2>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-35cf3d3b elementor-widget elementor-widget-spacer\\\" data-id=\\\"35cf3d3b\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"spacer.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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>\\t\\t<div class=\\\"elementor-spacer\\\">\\n\\t\\t\\t<div class=\\\"elementor-spacer-inner\\\"><\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-78895acb elementor-button-success elementor-align-center elementor-widget__width-auto elementor-invisible elementor-widget elementor-widget-button\\\" data-id=\\\"78895acb\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-button-wrapper\\\">\\n\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/wa.me\\/+8801838404044\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">\\u09b9\\u09cb\\u09af\\u09bc\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-720c8da1 elementor-button-danger elementor-align-center elementor-widget__width-auto elementor-mobile-align-center elementor-invisible elementor-widget elementor-widget-button\\\" data-id=\\\"720c8da1\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-button-wrapper\\\">\\n\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"tel:01838404044\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">  \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-8366e1a elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"8366e1a\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;background_motion_fx_motion_fx_mouse&quot;:&quot;yes&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-no\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-237445d4\\\" data-id=\\\"237445d4\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-f71532a elementor-widget elementor-widget-video\\\" data-id=\\\"f71532a\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;youtube_url&quot;:&quot;https:\\\\\\/\\\\\\/www.youtube.com\\\\\\/watch?v=YtRdBQF8cVM&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;video_type&quot;:&quot;youtube&quot;,&quot;controls&quot;:&quot;yes&quot;}\\\" data-widget_type=\\\"video.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-video .elementor-widget-container{overflow:hidden;transform:translateZ(0)}.elementor-widget-video .elementor-wrapper{aspect-ratio:var(--video-aspect-ratio)}.elementor-widget-video .elementor-wrapper iframe,.elementor-widget-video .elementor-wrapper video{height:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};display:flex;border:none;background-color:#000}@supports not (aspect-ratio:1\\/1){.elementor-widget-video .elementor-wrapper{position:relative;overflow:hidden;height:0;padding-bottom:calc(100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} \\/ var(--video-aspect-ratio))}.elementor-widget-video .elementor-wrapper iframe,.elementor-widget-video .elementor-wrapper video{position:absolute;top:0;right:0;bottom:0;left:0}}.elementor-widget-video .elementor-open-inline .elementor-custom-embed-image-overlay{position:absolute;top:0;right:0;bottom:0;left:0;background-size:cover;background-position:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-widget-video .elementor-custom-embed-image-overlay{cursor:pointer;text-align:center}.elementor-widget-video .elementor-custom-embed-image-overlay:hover .elementor-custom-embed-play i{opacity:1}.elementor-widget-video .elementor-custom-embed-image-overlay img{display:block;width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};aspect-ratio:var(--video-aspect-ratio);-o-object-fit:cover;object-fit:cover;-o-object-position:center center;object-position:center center}@supports not (aspect-ratio:1\\/1){.elementor-widget-video .elementor-custom-embed-image-overlay{position:relative;overflow:hidden;height:0;padding-bottom:calc(100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced} \\/ var(--video-aspect-ratio))}.elementor-widget-video .elementor-custom-embed-image-overlay img{position:absolute;top:0;right:0;bottom:0;left:0}}.elementor-widget-video .e-hosted-video .elementor-video{-o-object-fit:cover;object-fit:cover}.e-con-inner>.elementor-widget-video,.e-con>.elementor-widget-video{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t<div class=\\\"elementor-wrapper elementor-open-inline\\\">\\n\\t\\t\\t<div class=\\\"elementor-video\\\"><\\/div>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-21652aea elementor-align-justify elementor-invisible elementor-widget elementor-widget-button\\\" data-id=\\\"21652aea\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;bounceIn&quot;}\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-button-wrapper\\\">\\n\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-lg elementor-animation-push\\\" href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-31c87f7 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"31c87f7\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-no\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2d2923e5\\\" data-id=\\\"2d2923e5\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-5d5d5f54 elementor-invisible elementor-widget elementor-widget-heading\\\" data-id=\\\"5d5d5f54\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeInDown&quot;}\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n<\\/h2>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-17632185 elementor-widget-divider--separator-type-pattern elementor-widget-divider--view-line elementor-widget elementor-widget-divider\\\" data-id=\\\"17632185\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"divider.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};mask-size:var(--divider-pattern-size) 100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};-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{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t<div class=\\\"elementor-divider\\\" style=\\\"--divider-pattern-url: url(&quot;data:image\\/svg+xml,{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3Csvg xmlns=&#039;http:\\/\\/www.w3.org\\/2000\\/svg&#039; preserveAspectRatio=&#039;none&#039; overflow=&#039;visible&#039; height=&#039;100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}&#039; viewBox=&#039;0 0 24 24&#039; fill=&#039;none&#039; stroke=&#039;black&#039; stroke-width=&#039;2.5&#039; stroke-linecap=&#039;square&#039; stroke-miterlimit=&#039;10&#039;{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3E{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3Cpolyline points=&#039;0,18 12,6 24,18 &#039;\\/{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3E{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3C\\/svg{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3E&quot;);\\\">\\n\\t\\t\\t<span class=\\\"elementor-divider-separator\\\">\\n\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-24cf03d5 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"24cf03d5\\\" data-element_type=\\\"section\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-no\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-6c582a9b\\\" data-id=\\\"6c582a9b\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6355a4f5 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"6355a4f5\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">P H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-3e9980a3 elementor-align-justify elementor-invisible elementor-widget elementor-widget-button\\\" data-id=\\\"3e9980a3\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;bounceIn&quot;}\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-button-wrapper\\\">\\n\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-xl elementor-animation-push\\\" href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-59c5b7af elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"59c5b7af\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-no\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3ae7a46a\\\" data-id=\\\"3ae7a46a\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-4b9db319 elementor-invisible elementor-widget elementor-widget-heading\\\" data-id=\\\"4b9db319\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeInDown&quot;}\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-56f4c721 elementor-widget-divider--separator-type-pattern elementor-widget-divider--view-line elementor-widget elementor-widget-divider\\\" data-id=\\\"56f4c721\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"divider.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-divider\\\" style=\\\"--divider-pattern-url: url(&quot;data:image\\/svg+xml,{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3Csvg xmlns=&#039;http:\\/\\/www.w3.org\\/2000\\/svg&#039; preserveAspectRatio=&#039;none&#039; overflow=&#039;visible&#039; height=&#039;100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}&#039; viewBox=&#039;0 0 24 24&#039; fill=&#039;none&#039; stroke=&#039;black&#039; stroke-width=&#039;2.5&#039; stroke-linecap=&#039;square&#039; stroke-miterlimit=&#039;10&#039;{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3E{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3Cpolyline points=&#039;0,18 12,6 24,18 &#039;\\/{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3E{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3C\\/svg{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3E&quot;);\\\">\\n\\t\\t\\t<span class=\\\"elementor-divider-separator\\\">\\n\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-3a31b225 elementor-section-content-middle elementor-reverse-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"3a31b225\\\" data-element_type=\\\"section\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-no\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7ef7714e\\\" data-id=\\\"7ef7714e\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-1d81fdf9 elementor-invisible elementor-widget elementor-widget-image\\\" data-id=\\\"1d81fdf9\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"912\\\" height=\\\"516\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Screenshot-2024-07-01-134806.webp\\\" class=\\\"attachment-large size-large wp-image-65\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-513395d9\\\" data-id=\\\"513395d9\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-33a94c14 elementor-widget elementor-widget-heading\\\" data-id=\\\"33a94c14\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-396e5194 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"396e5194\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-232a7d13 elementor-widget elementor-widget-heading\\\" data-id=\\\"232a7d13\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-196d5788 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"196d5788\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-46d52cd7 elementor-align-justify elementor-invisible elementor-widget elementor-widget-button\\\" data-id=\\\"46d52cd7\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;bounceIn&quot;}\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-button-wrapper\\\">\\n\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-xl elementor-animation-push\\\" href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7557cce3 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7557cce3\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-no\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-205e1a79\\\" data-id=\\\"205e1a79\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-22ff8f09 elementor-invisible elementor-widget elementor-widget-heading\\\" data-id=\\\"22ff8f09\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeInDown&quot;}\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\n<\\/h2>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6755c86b elementor-widget-divider--separator-type-pattern elementor-widget-divider--view-line elementor-widget elementor-widget-divider\\\" data-id=\\\"6755c86b\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"divider.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-divider\\\" style=\\\"--divider-pattern-url: url(&quot;data:image\\/svg+xml,{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3Csvg xmlns=&#039;http:\\/\\/www.w3.org\\/2000\\/svg&#039; preserveAspectRatio=&#039;none&#039; overflow=&#039;visible&#039; height=&#039;100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}&#039; viewBox=&#039;0 0 24 24&#039; fill=&#039;none&#039; stroke=&#039;black&#039; stroke-width=&#039;2.5&#039; stroke-linecap=&#039;square&#039; stroke-miterlimit=&#039;10&#039;{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3E{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3Cpolyline points=&#039;0,18 12,6 24,18 &#039;\\/{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3E{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3C\\/svg{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3E&quot;);\\\">\\n\\t\\t\\t<span class=\\\"elementor-divider-separator\\\">\\n\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-656f7e53 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"656f7e53\\\" data-element_type=\\\"section\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-no\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-71d861ed\\\" data-id=\\\"71d861ed\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7e3f3b4 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"7e3f3b4\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-check-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-4167eca5 elementor-align-justify elementor-invisible elementor-widget elementor-widget-button\\\" data-id=\\\"4167eca5\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;bounceIn&quot;}\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-button-wrapper\\\">\\n\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-xl elementor-animation-push\\\" href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-35637d4e elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle\\\" data-id=\\\"35637d4e\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-background-overlay\\\"><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-no\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3bec52f0\\\" data-id=\\\"3bec52f0\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t[elementor-element data=\\\"eyJpZCI6IjI0MjIwODFkIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsibWFya2VyIjoieCIsImJlZm9yZV90ZXh0IjoiXHUwOWExXHUwOWJlXHUwOWFjXHUwOWIyIFx1MDk5N1x1MDljZFx1MDliMFx1MDljYlx1MDlhNSBcdTA5YWFcdTA5Y2RcdTA5YjJcdTA5YmVcdTA5YjggIiwiaGlnaGxpZ2h0ZWRfdGV4dCI6IjY1MCIsInJvdGF0aW5nX3RleHQiOiJCZXR0ZXJcbkJpZ2dlclxuRmFzdGVyIiwiYWZ0ZXJfdGV4dCI6Ilx1MDk5Zlx1MDliZVx1MDk5NVx1MDliZSIsInRpdGxlX2NvbG9yIjoiIzU0QTQxRiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9mYW1pbHkiOiJIaW5kIFNpbGlndXJpIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjIzLCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfd2VpZ2h0IjoiNjAwIiwid29yZHNfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwid29yZHNfdHlwb2dyYXBoeV9mb250X2ZhbWlseSI6IkhpbmQgU2lsaWd1cmkiLCJ3b3Jkc190eXBvZ3JhcGh5X2ZvbnRfd2VpZ2h0IjoiNzAwIiwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiLTIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6ImZhZGVJbkRvd24iLCJfX2dsb2JhbHNfXyI6eyJtYXJrZXJfY29sb3IiOiIiLCJ3b3Jkc19jb2xvciI6IiJ9LCJtYXJrZXJfY29sb3IiOiIjNDgxMTZCIiwid29yZHNfY29sb3IiOiIjRkI2MTA3IiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiLTExIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImFuaW1hdGVkLWhlYWRsaW5lIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-921a419 elementor-invisible elementor-widget elementor-widget-heading\\\" data-id=\\\"921a419\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;bounceIn&quot;}\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h4 class=\\\"elementor-heading-title elementor-size-default\\\">\\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 500  \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc<\\/h4>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-32deff59\\\" data-id=\\\"32deff59\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t[elementor-element data=\\\"eyJpZCI6IjI3NDgwNTQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJtYXJrZXIiOiJ4IiwiYmVmb3JlX3RleHQiOiJcdTA5OTNcdTA5YWZcdTA5YmNcdTA5YmVcdTA5OWZcdTA5YmVcdTA5YjAgXHUwOWFhXHUwOWNkXHUwOWIyXHUwOWJlXHUwOTgyXHUwOTk1XHUwOTlmXHUwOWE4IFx1MDlhYVx1MDljZFx1MDliMlx1MDliZVx1MDliOCAiLCJoaWdobGlnaHRlZF90ZXh0IjoiNjUwIiwicm90YXRpbmdfdGV4dCI6IkJldHRlclxuQmlnZ2VyXG5GYXN0ZXIiLCJhZnRlcl90ZXh0IjoiIFx1MDk5Zlx1MDliZVx1MDk5NVx1MDliZSIsInRpdGxlX2NvbG9yIjoiIzU0QTQxRiIsInRpdGxlX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInRpdGxlX3R5cG9ncmFwaHlfZm9udF9mYW1pbHkiOiJIaW5kIFNpbGlndXJpIiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemVfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjE5LCJzaXplcyI6W119LCJ0aXRsZV90eXBvZ3JhcGh5X2ZvbnRfd2VpZ2h0IjoiNjAwIiwid29yZHNfdHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwid29yZHNfdHlwb2dyYXBoeV9mb250X2ZhbWlseSI6IkhpbmQgU2lsaWd1cmkiLCJ3b3Jkc190eXBvZ3JhcGh5X2ZvbnRfd2VpZ2h0IjoiNzAwIiwiX21hcmdpbl9tb2JpbGUiOnsidW5pdCI6InB4IiwidG9wIjoiLTIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX2FuaW1hdGlvbiI6ImZhZGVJbkRvd24iLCJfX2dsb2JhbHNfXyI6eyJtYXJrZXJfY29sb3IiOiIiLCJ3b3Jkc19jb2xvciI6IiJ9LCJtYXJrZXJfY29sb3IiOiIjNEExNTY2Iiwid29yZHNfY29sb3IiOiIjRkI2MTA3IiwidGl0bGVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzAsInNpemVzIjpbXX0sIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiLTExIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImFuaW1hdGVkLWhlYWRsaW5lIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1d7c7f92 elementor-invisible elementor-widget elementor-widget-heading\\\" data-id=\\\"1d7c7f92\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;bounceIn&quot;}\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h4 class=\\\"elementor-heading-title elementor-size-default\\\"> \\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 500  \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc<\\/h4>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-a80cf01 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"a80cf01\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-no\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-12bf4bc4\\\" data-id=\\\"12bf4bc4\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7ed8c323 elementor-invisible elementor-widget elementor-widget-heading\\\" data-id=\\\"7ed8c323\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeInDown&quot;}\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u0985\\u09a5\\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6641457c elementor-align-center elementor-invisible elementor-widget elementor-widget-button\\\" data-id=\\\"6641457c\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;bounceIn&quot;}\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-button-wrapper\\\">\\n\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-lg elementor-animation-push\\\" href=\\\"tel:01838404044\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-icon\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-phone-alt\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">01838 40 40 44<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-6b619a31 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"6b619a31\\\" data-element_type=\\\"section\\\" id=\\\"checkout\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-no\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-29cc3b4a\\\" data-id=\\\"29cc3b4a\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-64f1d51c elementor-invisible elementor-widget elementor-widget-heading\\\" data-id=\\\"64f1d51c\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeInDown&quot;}\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\"><span style=\\\"color:red\\\"> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 <\\/span> \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n<\\/h2>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-166b94d4 elementor-widget elementor-widget-heading\\\" data-id=\\\"166b94d4\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964\\n<\\/h2>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t<div class=\\\"elementor-element elementor-element-5f4afc4 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"5f4afc4\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-4e284e0 e-con-full e-flex e-con e-child\\\" data-id=\\\"4e284e0\\\" data-element_type=\\\"container\\\">\\n\\t\\t[elementor-element data=\\\"eyJpZCI6ImU4M2UzZWQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJjb250ZW50X3dpZHRoIjoiZnVsbCIsImxheW91dCI6InR3by1jb2x1bW4iLCJub3RlX3RleHQiOiJHZXQgWW91ciBGUkVFIGNvcHkgb2YgQ2FydEZsb3dzIGluIGp1c3QgZmV3IHN0ZXBzLiIsInN0ZXBfb25lX3RpdGxlX3RleHQiOiJTaGlwcGluZyIsInN0ZXBfb25lX3N1Yl90aXRsZV90ZXh0IjoiV2hlcmUgdG8gc2hpcCBpdD8iLCJzdGVwX3R3b190aXRsZV90ZXh0IjoiUGF5bWVudCIsInN0ZXBfdHdvX3N1Yl90aXRsZV90ZXh0IjoiT2YgeW91ciBvcmRlciIsIm9mZmVyX2J1dHRvbl90aXRsZV90ZXh0IjoiRm9yIFNwZWNpYWwgT2ZmZXIgQ2xpY2sgSGVyZSIsIm9mZmVyX2J1dHRvbl9zdWJ0aXRsZV90ZXh0IjoiWWVzISBJIHdhbnQgdGhpcyBvZmZlciEiLCJwcm9kdWN0X29wdGlvbnNfcG9zaXRpb24iOiJiZWZvcmUtY3VzdG9tZXIiLCJwcm9kdWN0X29wdGlvbnNfc2tpbiI6ImNhcmRzIiwicHJvZHVjdF9vcHRpb25zX2ltYWdlcyI6InllcyIsInByb2R1Y3Rfb3B0aW9uX3NlY3Rpb25fdGl0bGVfdGV4dCI6Ilx1MDlhYVx1MDljZFx1MDliMFx1MDljYlx1MDlhMVx1MDliZVx1MDk5NVx1MDljZFx1MDk5ZiBcdTA5YjhcdTA5YmZcdTA5YjJcdTA5YzdcdTA5OTVcdTA5Y2RcdTA5OWYgXHUwOTk1XHUwOWIwXHUwOWMxXHUwOWE4XHUwOTgzIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImNoZWNrb3V0LWZvcm0ifQ==\\\"]\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-45d5910 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"45d5910\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-4ded94d3 elementor-widget elementor-widget-heading\\\" data-id=\\\"4ded94d3\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-1d7d9558 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"1d7d9558\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-4a7a1d51 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"4a7a1d51\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}<\\/style>\\t\\t\\t\\t<p>Develop by itgalaxy<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[\"fluentform-elementor\"],\"styles\":[\"e-animations\",\"fluentform-elementor-widget\",\"cartflows-elementor-style\",\"cartflows-pro-elementor-style\"]}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8108','15','_elementor_css','a:6:{s:4:\"time\";i:1781137547;s:5:\"fonts\";a:2:{i:0;s:10:\"Bebas Neue\";i:3;s:8:\"Pacifico\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:6;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8109','15','_elementor_element_cache','{\"timeout\":1781332113,\"value\":{\"content\":\"\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-1aaa916 elementor-section-height-full elementor-section-boxed elementor-section-height-default elementor-section-items-middle elementor-invisible\\\" data-id=\\\"1aaa916\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-background-overlay\\\"><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-24a9e3e\\\" data-id=\\\"24a9e3e\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7c2b6c8 elementor-widget elementor-widget-heading\\\" data-id=\\\"7c2b6c8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h6 class=\\\"elementor-heading-title elementor-size-default\\\">Are you hungry?<\\/h6>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-1df24a8 elementor-widget elementor-widget-heading\\\" data-id=\\\"1df24a8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h1 class=\\\"elementor-heading-title elementor-size-default\\\">Elegance \\nRedefined<\\/h1>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-4bfc0e5 elementor-tablet-align-center elementor-widget elementor-widget-button\\\" data-id=\\\"4bfc0e5\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-button-wrapper\\\">\\n\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"#\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Go to Menu<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-bfbd2dd\\\" data-id=\\\"bfbd2dd\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-511008b6 elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle\\\" data-id=\\\"511008b6\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-12 elementor-top-column elementor-element elementor-element-736be0af\\\" data-id=\\\"736be0af\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-2bcb7de5 elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"2bcb7de5\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-image-box .elementor-image-box-content{width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}<\\/style><div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><a href=\\\"#\\\" tabindex=\\\"-1\\\"><img width=\\\"300\\\" height=\\\"240\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\\\" class=\\\"elementor-animation-grow attachment-medium size-medium wp-image-1717\\\" alt=\\\"\\\" \\/><\\/a><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\"><a href=\\\"#\\\">exclusive-fashion<\\/a><\\/h5><\\/div><\\/div>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-12 elementor-top-column elementor-element elementor-element-7a475ba7\\\" data-id=\\\"7a475ba7\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7baea491 elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"7baea491\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><a href=\\\"#\\\" tabindex=\\\"-1\\\"><img width=\\\"300\\\" height=\\\"272\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\\\" class=\\\"elementor-animation-grow attachment-medium size-medium wp-image-1715\\\" alt=\\\"\\\" \\/><\\/a><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\"><a href=\\\"#\\\">Fashion<\\/a><\\/h5><\\/div><\\/div>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-12 elementor-top-column elementor-element elementor-element-795838eb\\\" data-id=\\\"795838eb\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7b23ffd3 elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"7b23ffd3\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><a href=\\\"#\\\" tabindex=\\\"-1\\\"><img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\\\" class=\\\"elementor-animation-grow attachment-medium size-medium wp-image-1710\\\" alt=\\\"\\\" \\/><\\/a><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\"><a href=\\\"#\\\">man-fashion<\\/a><\\/h5><\\/div><\\/div>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-12 elementor-top-column elementor-element elementor-element-648f12f\\\" data-id=\\\"648f12f\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-770a800f elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"770a800f\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><a href=\\\"#\\\" tabindex=\\\"-1\\\"><img width=\\\"267\\\" height=\\\"300\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\\\" class=\\\"elementor-animation-grow attachment-medium size-medium wp-image-1743\\\" alt=\\\"\\\" \\/><\\/a><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\"><a href=\\\"#\\\">Men\'s Fashion<\\/a><\\/h5><\\/div><\\/div>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-12 elementor-top-column elementor-element elementor-element-2f4ae7ce\\\" data-id=\\\"2f4ae7ce\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-5b81771e elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"5b81771e\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><a href=\\\"#\\\" tabindex=\\\"-1\\\"><img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\\\" class=\\\"elementor-animation-grow attachment-medium size-medium wp-image-1742\\\" alt=\\\"\\\" \\/><\\/a><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\"><a href=\\\"#\\\">stylish <\\/a><\\/h5><\\/div><\\/div>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-12 elementor-top-column elementor-element elementor-element-15a86d89\\\" data-id=\\\"15a86d89\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-296f9244 elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"296f9244\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><a href=\\\"#\\\" tabindex=\\\"-1\\\"><img width=\\\"300\\\" height=\\\"240\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\\\" class=\\\"elementor-animation-grow attachment-medium size-medium wp-image-1733\\\" alt=\\\"\\\" \\/><\\/a><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\"><a href=\\\"#\\\">New Arrivals<\\/a><\\/h5><\\/div><\\/div>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-12 elementor-top-column elementor-element elementor-element-a1a0c61\\\" data-id=\\\"a1a0c61\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-37fafb0 elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"37fafb0\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><a href=\\\"#\\\" tabindex=\\\"-1\\\"><img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\\\" class=\\\"elementor-animation-grow attachment-medium size-medium wp-image-1739\\\" alt=\\\"\\\" \\/><\\/a><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\"><a href=\\\"#\\\">Best Collections<\\/a><\\/h5><\\/div><\\/div>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-12 elementor-top-column elementor-element elementor-element-dd9cef9\\\" data-id=\\\"dd9cef9\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-f0c71c1 elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"f0c71c1\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><a href=\\\"#\\\" tabindex=\\\"-1\\\"><img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\\\" class=\\\"elementor-animation-grow attachment-medium size-medium wp-image-1735\\\" alt=\\\"\\\" \\/><\\/a><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\"><a href=\\\"#\\\">Top Collections<\\/a><\\/h5><\\/div><\\/div>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-512c2542 elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle\\\" data-id=\\\"512c2542\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-background-overlay\\\"><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5e964160\\\" data-id=\\\"5e964160\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-5f1b61f5 elementor-section-height-min-height elementor-section-boxed elementor-section-height-default\\\" data-id=\\\"5f1b61f5\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-713b4952\\\" data-id=\\\"713b4952\\\" data-element_type=\\\"column\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-170c55b7\\\" data-id=\\\"170c55b7\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-ac37907 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"ac37907\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}<\\/style>\\t\\t\\t\\t<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7f2098c elementor-widget elementor-widget-text-editor\\\" data-id=\\\"7f2098c\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>$14.45<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-71a1b705 elementor-tablet-align-center elementor-widget elementor-widget-button\\\" data-id=\\\"71a1b705\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-button-wrapper\\\">\\n\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"#\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">order now<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2b812845\\\" data-id=\\\"2b812845\\\" data-element_type=\\\"column\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-30caee78 elementor-section-height-min-height elementor-section-boxed elementor-section-height-default\\\" data-id=\\\"30caee78\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7d677b18\\\" data-id=\\\"7d677b18\\\" data-element_type=\\\"column\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-5d2617b9\\\" data-id=\\\"5d2617b9\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-3bd38a1b elementor-widget elementor-widget-heading\\\" data-id=\\\"3bd38a1b\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h4 class=\\\"elementor-heading-title elementor-size-default\\\"><a href=\\\"#\\\">Discovery <br>New Menu<\\/a><\\/h4>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-19ca502 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"19ca502\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-8aaed22 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"8aaed22\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>$145.00<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-f2b09b5 elementor-section-height-min-height elementor-section-boxed elementor-section-height-default\\\" data-id=\\\"f2b09b5\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-background-overlay\\\"><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-b6feff9\\\" data-id=\\\"b6feff9\\\" data-element_type=\\\"column\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap\\\">\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-8840439\\\" data-id=\\\"8840439\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-fe14c18 elementor-widget elementor-widget-heading\\\" data-id=\\\"fe14c18\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h4 class=\\\"elementor-heading-title elementor-size-default\\\"><a href=\\\"#\\\">Buy one <br>get two<\\/a><\\/h4>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-d35d90d elementor-widget elementor-widget-text-editor\\\" data-id=\\\"d35d90d\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Lorem ipsum dolor adipiscing elit.\\u00a0<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-e8d1d61 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"e8d1d61\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>$145.00<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-65da27d5 elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle\\\" data-id=\\\"65da27d5\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-41c35d20\\\" data-id=\\\"41c35d20\\\" data-element_type=\\\"column\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7d61665 elementor-widget elementor-widget-image\\\" data-id=\\\"7d61665\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\\\" class=\\\"attachment-large size-large wp-image-1732\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6f0a7fb6\\\" data-id=\\\"6f0a7fb6\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-545ec2a2 elementor-section-height-min-height elementor-section-content-middle elementor-section-boxed elementor-section-height-default\\\" data-id=\\\"545ec2a2\\\" data-element_type=\\\"section\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-f0de355\\\" data-id=\\\"f0de355\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-17bb4aa elementor-widget elementor-widget-heading\\\" data-id=\\\"17bb4aa\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">About Our style\\n<\\/h6>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-607f8dec elementor-widget elementor-widget-heading\\\" data-id=\\\"607f8dec\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Fashion<\\/h2>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-535a0191 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"535a0191\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6aabf9b8 elementor-tablet-align-center elementor-widget elementor-widget-button\\\" data-id=\\\"6aabf9b8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-button-wrapper\\\">\\n\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"#\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">order now<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7db9f196 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7db9f196\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-background-overlay\\\"><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4389a7da\\\" data-id=\\\"4389a7da\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-17ad3f9 elementor-widget elementor-widget-heading\\\" data-id=\\\"17ad3f9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">We Deliver Your Masterpiece!<\\/h6>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-45b74056 elementor-widget elementor-widget-heading\\\" data-id=\\\"45b74056\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Quick &amp; Fashion<\\/h2>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-4a8cf73 elementor-align-center elementor-widget elementor-widget-button\\\" data-id=\\\"4a8cf73\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-button-wrapper\\\">\\n\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"#\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">full menu<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-8aeb351 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"8aeb351\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-db650e8\\\" data-id=\\\"db650e8\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-a5d713e elementor-widget elementor-widget-counter\\\" data-id=\\\"a5d713e\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"counter.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}<\\/style>\\t\\t<div class=\\\"elementor-counter\\\">\\n\\t\\t\\t<div class=\\\"elementor-counter-title\\\">Ingredients<\\/div>\\t\\t\\t<div class=\\\"elementor-counter-number-wrapper\\\">\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number-prefix\\\"><\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number\\\" data-duration=\\\"2000\\\" data-to-value=\\\"230\\\" data-from-value=\\\"0\\\" data-delimiter=\\\",\\\">0<\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number-suffix\\\"><\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-2b2102a\\\" data-id=\\\"2b2102a\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-e8a9dac elementor-widget elementor-widget-counter\\\" data-id=\\\"e8a9dac\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"counter.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-counter\\\">\\n\\t\\t\\t<div class=\\\"elementor-counter-title\\\">Clients Daily<\\/div>\\t\\t\\t<div class=\\\"elementor-counter-number-wrapper\\\">\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number-prefix\\\"><\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number\\\" data-duration=\\\"2000\\\" data-to-value=\\\"500\\\" data-from-value=\\\"0\\\" data-delimiter=\\\",\\\">0<\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number-suffix\\\">+<\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-bc6888f\\\" data-id=\\\"bc6888f\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-b20ecbc elementor-widget elementor-widget-counter\\\" data-id=\\\"b20ecbc\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"counter.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-counter\\\">\\n\\t\\t\\t<div class=\\\"elementor-counter-title\\\">Years of Experience<\\/div>\\t\\t\\t<div class=\\\"elementor-counter-number-wrapper\\\">\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number-prefix\\\"><\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number\\\" data-duration=\\\"2000\\\" data-to-value=\\\"12\\\" data-from-value=\\\"0\\\" data-delimiter=\\\",\\\">0<\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number-suffix\\\">+<\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-702014f\\\" data-id=\\\"702014f\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6845d15 elementor-widget elementor-widget-counter\\\" data-id=\\\"6845d15\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"counter.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-counter\\\">\\n\\t\\t\\t<div class=\\\"elementor-counter-title\\\">Fresh & Tasty<\\/div>\\t\\t\\t<div class=\\\"elementor-counter-number-wrapper\\\">\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number-prefix\\\"><\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number\\\" data-duration=\\\"2000\\\" data-to-value=\\\"100\\\" data-from-value=\\\"0\\\" data-delimiter=\\\",\\\">0<\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number-suffix\\\"><\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-b9de819 elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle\\\" data-id=\\\"b9de819\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-7187a58\\\" data-id=\\\"7187a58\\\" data-element_type=\\\"column\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-700aed7 elementor-section-height-min-height elementor-section-boxed elementor-section-height-default\\\" data-id=\\\"700aed7\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3c7dce7\\\" data-id=\\\"3c7dce7\\\" data-element_type=\\\"column\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-4944d80 elementor-widget elementor-widget-image\\\" data-id=\\\"4944d80\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/elementor\\/thumbs\\/ChatGPT-Image-Jun-3-2026-02_27_24-PM-rora3pbas24q2ab1jidw4h7s4w8vsrbyl9i62ckaps.jpg\\\" title=\\\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\\\" alt=\\\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\\\" loading=\\\"lazy\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-d20a134\\\" data-id=\\\"d20a134\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7e0053c elementor-widget elementor-widget-heading\\\" data-id=\\\"7e0053c\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">Build Your Own <span style=\\\"background-color: rgb(47, 5, 54);\\\">Style<\\/span><br><\\/h5>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-47b751d elementor-widget elementor-widget-heading\\\" data-id=\\\"47b751d\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">$99.00<\\/h5>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-959ad35 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"959ad35\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-ccd4943 elementor-mobile-align-center elementor-align-left elementor-tablet-align-left elementor-widget elementor-widget-button\\\" data-id=\\\"ccd4943\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-button-wrapper\\\">\\n\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"#\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">order now<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-d03df71\\\" data-id=\\\"d03df71\\\" data-element_type=\\\"column\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-9e97ab0 elementor-section-height-min-height elementor-section-boxed elementor-section-height-default\\\" data-id=\\\"9e97ab0\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-98f6cda\\\" data-id=\\\"98f6cda\\\" data-element_type=\\\"column\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-8b0ba31 elementor-widget elementor-widget-image\\\" data-id=\\\"8b0ba31\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/elementor\\/thumbs\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM-rora3pbas24q2ab1jidw4h7s4w8vsrbyl9i62ckaps.jpg\\\" title=\\\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\\\" alt=\\\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\\\" loading=\\\"lazy\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e2fbb9e\\\" data-id=\\\"e2fbb9e\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-f3d74f3 elementor-widget elementor-widget-heading\\\" data-id=\\\"f3d74f3\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">Build Your Own Style<\\/h5>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-8729372 elementor-widget elementor-widget-heading\\\" data-id=\\\"8729372\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">$99.00<\\/h5>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-ded09d5 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"ded09d5\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-901e6f9 elementor-mobile-align-center elementor-align-left elementor-tablet-align-left elementor-widget elementor-widget-button\\\" data-id=\\\"901e6f9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-button-wrapper\\\">\\n\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"#\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">order now<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-db18a60 elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle\\\" data-id=\\\"db18a60\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-background-overlay\\\"><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-66a99f7d\\\" data-id=\\\"66a99f7d\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-76646b91 elementor-widget elementor-widget-heading\\\" data-id=\\\"76646b91\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">Popular Dishes<\\/h6>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-3229abe8 elementor-widget elementor-widget-heading\\\" data-id=\\\"3229abe8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\"> Your Style<\\/h2>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-1995a4d1 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"1995a4d1\\\" data-element_type=\\\"section\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-241d9f52\\\" data-id=\\\"241d9f52\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7ce3ec19 elementor-widget elementor-widget-heading\\\" data-id=\\\"7ce3ec19\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">$9.50<\\/h5>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-787370be\\\" data-id=\\\"787370be\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-2603e9b3 elementor-mobile-align-center elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"2603e9b3\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Chicken Caesar<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Super Supreme<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-circle\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Cheese Lover\'s<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-5b8fabcc elementor-align-center elementor-widget elementor-widget-button\\\" data-id=\\\"5b8fabcc\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-button-wrapper\\\">\\n\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"#\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Order now<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\",\"scripts\":[\"fluentform-elementor\",\"jquery-numerator\"],\"styles\":[\"e-animations\",\"fluentform-elementor-widget\"]}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8110','14','_elementor_css','a:6:{s:4:\"time\";i:1781150685;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:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8111','14','_elementor_element_cache','{\"timeout\":1781258686,\"value\":{\"content\":\"\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-66f1540e elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"66f1540e\\\" data-element_type=\\\"section\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-background-overlay\\\"><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-63929849\\\" data-id=\\\"63929849\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-284d0ee0 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"284d0ee0\\\" data-element_type=\\\"section\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-238c0187\\\" data-id=\\\"238c0187\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-39421a6 elementor-widget elementor-widget-heading\\\" data-id=\\\"39421a6\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h6 class=\\\"elementor-heading-title elementor-size-default\\\">get in touch<\\/h6>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-288fa2bd elementor-widget elementor-widget-heading\\\" data-id=\\\"288fa2bd\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h4 class=\\\"elementor-heading-title elementor-size-default\\\">To make requests for further information, contact us via our social channels.<\\/h4>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-62f5a990 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"62f5a990\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}<\\/style>\\t\\t\\t\\t<p>We just need a couple of hours!<br \\/>No more than 2 working days since receiving your issue ticket.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7e89608c\\\" data-id=\\\"7e89608c\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t[elementor-element data=\\\"eyJpZCI6IjdkMmM2NDIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJmb3JtX2xpc3QiOiIxIiwibGFiZWxzX3N3aXRjaCI6IiIsImZvcm1fc3VibWl0X2J1dHRvbl9ib3JkZXJfcmFkaXVzIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJmb3JtX3N1Ym1pdF9idXR0b25fcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMyIsInJpZ2h0IjoiNDAiLCJib3R0b20iOiIxMyIsImxlZnQiOiI0MCIsImlzTGlua2VkIjpmYWxzZX0sIl9fZ2xvYmFsc19fIjp7ImZvcm1fc3VibWl0X2J1dHRvbl9iZ19jb2xvcl9ub3JtYWwiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9a2FkZW5jZTEifSwiZm9ybV9maWVsZF9yYWRpdXMiOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjp0cnVlfSwiZm9ybV9maWVsZF90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjoxNCwic2l6ZXMiOltdfSwiZm9ybV9maWVsZF90eXBvZ3JhcGh5X2xpbmVfaGVpZ2h0Ijp7InVuaXQiOiJlbSIsInNpemUiOjEuMywic2l6ZXMiOltdfSwiZm9ybV9zdWJtaXRfYnV0dG9uX2FsaWduIjoibGVmdCIsImZvcm1fc3VibWl0X2J1dHRvbl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJmb3JtX3N1Ym1pdF9idXR0b25fdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MTksInNpemVzIjpbXX0sImZvcm1fc3VibWl0X2J1dHRvbl93aWR0aF90YWJsZXQiOnsidW5pdCI6InszN2Q0OTA4MGEyMzU4NzFkZGY2NDFmMzQ4NmIyYjdlZWZiYzIyZjdlYTM5NTlkMDQ0NGJlNWM1MzQ3MzUwNTE2fSIsInNpemUiOjEwMCwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImZsdWVudC1mb3JtLXdpZGdldCJ9\\\"]\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-7a794c18 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7a794c18\\\" data-element_type=\\\"section\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-18bcd94c\\\" data-id=\\\"18bcd94c\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-2d426ac1 elementor-widget elementor-widget-heading\\\" data-id=\\\"2d426ac1\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">San Francisco<\\/h6>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-1336dcfd elementor-widget elementor-widget-heading\\\" data-id=\\\"1336dcfd\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">5 Street #2 San Francisco<\\/h5>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-3c886929 elementor-widget elementor-widget-heading\\\" data-id=\\\"3c886929\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">+7 (928)-123-45-45\\n<\\/h5>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7304489 elementor-widget elementor-widget-heading\\\" data-id=\\\"7304489\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\"><a href=\\\"#\\\">hello@yourdomain.co<\\/a><\\/h5>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-fef51\\\" data-id=\\\"fef51\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-437cbecc elementor-widget elementor-widget-heading\\\" data-id=\\\"437cbecc\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">New York\\n<\\/h6>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-2d388f01 elementor-widget elementor-widget-heading\\\" data-id=\\\"2d388f01\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">58 Howard Street #2 New York<\\/h5>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-2338ebbb elementor-widget elementor-widget-heading\\\" data-id=\\\"2338ebbb\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">+7 (928)-123-45-45\\n<\\/h5>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-36c58b7 elementor-widget elementor-widget-heading\\\" data-id=\\\"36c58b7\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\"><a href=\\\"#\\\">hello@yourdomain.co<\\/a><\\/h5>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4d7634f1\\\" data-id=\\\"4d7634f1\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-36c53499 elementor-widget elementor-widget-heading\\\" data-id=\\\"36c53499\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">London<\\/h6>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-21b43806 elementor-widget elementor-widget-heading\\\" data-id=\\\"21b43806\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">58 Howard Street #2 London\\n<\\/h5>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-38ea9407 elementor-widget elementor-widget-heading\\\" data-id=\\\"38ea9407\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">+7 (928)-123-45-45\\n<\\/h5>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-56128b7 elementor-widget elementor-widget-heading\\\" data-id=\\\"56128b7\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\"><a href=\\\"#\\\">hello@yourdomain.co<\\/a><\\/h5>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-73ce153 elementor-section-full_width elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"73ce153\\\" data-element_type=\\\"section\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c7f1197\\\" data-id=\\\"c7f1197\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-b402ec0 elementor-widget elementor-widget-google_maps\\\" data-id=\\\"b402ec0\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"google_maps.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}<\\/style>\\t\\t<div class=\\\"elementor-custom-embed\\\">\\n\\t\\t\\t<iframe loading=\\\"lazy\\\"\\n\\t\\t\\t\\t\\tsrc=\\\"https:\\/\\/maps.google.com\\/maps?q=London{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}20Eye{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2C{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}20London{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}2C{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}20United{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\\\"\\n\\t\\t\\t\\t\\ttitle=\\\"London Eye, London, United Kingdom\\\"\\n\\t\\t\\t\\t\\taria-label=\\\"London Eye, London, United Kingdom\\\"\\n\\t\\t\\t><\\/iframe>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8112','511','_elementor_css','a:6:{s:4:\"time\";i:1781150699;s:5:\"fonts\";a:1:{i:0;s:8:\"Pacifico\";}s:5:\"icons\";a:1:{i:0;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
INSERT INTO `wpst_postmeta` (`meta_id`,`post_id`,`meta_key`,`meta_value`) VALUES ('8113','511','_elementor_element_cache','{\"timeout\":1781258699,\"value\":{\"content\":\"\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-5f186bc elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle\\\" data-id=\\\"5f186bc\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-a78a2b5\\\" data-id=\\\"a78a2b5\\\" data-element_type=\\\"column\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-51ff9b1 elementor-widget elementor-widget-heading\\\" data-id=\\\"51ff9b1\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h6 class=\\\"elementor-heading-title elementor-size-default\\\">Our Story<\\/h6>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-f0b8e95 elementor-widget elementor-widget-heading\\\" data-id=\\\"f0b8e95\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">The story about <br>our SHOP<\\/h2>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-744ebba elementor-widget elementor-widget-text-editor\\\" data-id=\\\"744ebba\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}<\\/style>\\t\\t\\t\\t<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.<\\/p>\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-c32e1d0\\\" data-id=\\\"c32e1d0\\\" data-element_type=\\\"column\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-0742b0a elementor-widget elementor-widget-image\\\" data-id=\\\"0742b0a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/\\u2014Pngtree\\u2014letter-t-shopping-logo-alphabet_6953022.png\\\" title=\\\"\\u2014Pngtree\\u2014letter t shopping logo alphabet_6953022\\\" alt=\\\"\\u2014Pngtree\\u2014letter t shopping logo alphabet_6953022\\\" loading=\\\"lazy\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-993ddb0 elementor-section-full_width elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"993ddb0\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-8ca7559\\\" data-id=\\\"8ca7559\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-8951d5b elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"8951d5b\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-background-overlay\\\"><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-118e70f\\\" data-id=\\\"118e70f\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-e06349e elementor-widget elementor-widget-counter\\\" data-id=\\\"e06349e\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"counter.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}<\\/style>\\t\\t<div class=\\\"elementor-counter\\\">\\n\\t\\t\\t<div class=\\\"elementor-counter-title\\\">Ingredients<\\/div>\\t\\t\\t<div class=\\\"elementor-counter-number-wrapper\\\">\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number-prefix\\\"><\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number\\\" data-duration=\\\"2000\\\" data-to-value=\\\"230\\\" data-from-value=\\\"0\\\" data-delimiter=\\\",\\\">0<\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number-suffix\\\"><\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-e5a85e1\\\" data-id=\\\"e5a85e1\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-e4cd2d1 elementor-widget elementor-widget-counter\\\" data-id=\\\"e4cd2d1\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"counter.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-counter\\\">\\n\\t\\t\\t<div class=\\\"elementor-counter-title\\\">Clients Daily<\\/div>\\t\\t\\t<div class=\\\"elementor-counter-number-wrapper\\\">\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number-prefix\\\"><\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number\\\" data-duration=\\\"2000\\\" data-to-value=\\\"500\\\" data-from-value=\\\"0\\\" data-delimiter=\\\",\\\">0<\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number-suffix\\\">+<\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-86c7aa2\\\" data-id=\\\"86c7aa2\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-5d68b61 elementor-widget elementor-widget-counter\\\" data-id=\\\"5d68b61\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"counter.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-counter\\\">\\n\\t\\t\\t<div class=\\\"elementor-counter-title\\\">Years of Experience<\\/div>\\t\\t\\t<div class=\\\"elementor-counter-number-wrapper\\\">\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number-prefix\\\"><\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number\\\" data-duration=\\\"2000\\\" data-to-value=\\\"12\\\" data-from-value=\\\"0\\\" data-delimiter=\\\",\\\">0<\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number-suffix\\\">+<\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-0433fc7\\\" data-id=\\\"0433fc7\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-2741301 elementor-widget elementor-widget-counter\\\" data-id=\\\"2741301\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"counter.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-counter\\\">\\n\\t\\t\\t<div class=\\\"elementor-counter-title\\\">Fresh & Tasty<\\/div>\\t\\t\\t<div class=\\\"elementor-counter-number-wrapper\\\">\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number-prefix\\\"><\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number\\\" data-duration=\\\"2000\\\" data-to-value=\\\"100\\\" data-from-value=\\\"0\\\" data-delimiter=\\\",\\\">0<\\/span>\\n\\t\\t\\t\\t<span class=\\\"elementor-counter-number-suffix\\\"><\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-7e280ef3 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"7e280ef3\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-4978b809\\\" data-id=\\\"4978b809\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-78d5fab1 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"78d5fab1\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5f900540\\\" data-id=\\\"5f900540\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-da32baa elementor-widget elementor-widget-image\\\" data-id=\\\"da32baa\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"600\\\" height=\\\"736\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-1.jpg\\\" class=\\\"attachment-large size-large wp-image-1472\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-434abb3 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons\\\" data-id=\\\"434abb3\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"social-icons.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}<\\/style>\\t\\t<div class=\\\"elementor-social-icons-wrapper elementor-grid\\\">\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-ff22a73\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Facebook<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"e-font-icon-svg e-fab-facebook\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-409ef6a\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Twitter<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"e-font-icon-svg e-fab-twitter\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-b8a65e0\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Youtube<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"e-font-icon-svg e-fab-youtube\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-78bf26d4 elementor-widget elementor-widget-heading\\\" data-id=\\\"78bf26d4\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">William Smith\\n<\\/h5>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-52d0d2a9\\\" data-id=\\\"52d0d2a9\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-61452188 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"61452188\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-2786e6c0\\\" data-id=\\\"2786e6c0\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-3b55d091 elementor-widget elementor-widget-image\\\" data-id=\\\"3b55d091\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-3.jpg\\\" title=\\\"\\\" alt=\\\"\\\" loading=\\\"lazy\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-317fef3f elementor-widget elementor-widget-image\\\" data-id=\\\"317fef3f\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"600\\\" height=\\\"736\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-1.jpg\\\" class=\\\"attachment-large size-large wp-image-1472\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-73cb0b42 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons\\\" data-id=\\\"73cb0b42\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"social-icons.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-social-icons-wrapper elementor-grid\\\">\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-ff22a73\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Facebook<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"e-font-icon-svg e-fab-facebook\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-409ef6a\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Twitter<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"e-font-icon-svg e-fab-twitter\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-b8a65e0\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Youtube<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"e-font-icon-svg e-fab-youtube\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-63a68d6e elementor-widget elementor-widget-heading\\\" data-id=\\\"63a68d6e\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">Karen Goldsmith<\\/h5>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-4819b772\\\" data-id=\\\"4819b772\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-20650ee7 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"20650ee7\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-26c02b88\\\" data-id=\\\"26c02b88\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7fd05b7c elementor-widget elementor-widget-image\\\" data-id=\\\"7fd05b7c\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"600\\\" height=\\\"736\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-4.jpg\\\" class=\\\"attachment-large size-large wp-image-1475\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-5d9a434c elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons\\\" data-id=\\\"5d9a434c\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"social-icons.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-social-icons-wrapper elementor-grid\\\">\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-ff22a73\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Facebook<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"e-font-icon-svg e-fab-facebook\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-409ef6a\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Twitter<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"e-font-icon-svg e-fab-twitter\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-b8a65e0\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Youtube<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"e-font-icon-svg e-fab-youtube\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7b844484 elementor-widget elementor-widget-heading\\\" data-id=\\\"7b844484\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">Andrew Martinez\\n<\\/h5>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-17bbd378\\\" data-id=\\\"17bbd378\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<section class=\\\"elementor-section elementor-inner-section elementor-element elementor-element-399e39c9 elementor-section-boxed elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"399e39c9\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-293e41fe\\\" data-id=\\\"293e41fe\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-28a4b189 elementor-widget elementor-widget-image\\\" data-id=\\\"28a4b189\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"600\\\" height=\\\"736\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2020\\/12\\/team-2.jpg\\\" class=\\\"attachment-large size-large wp-image-1473\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-18c98f34 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons\\\" data-id=\\\"18c98f34\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"social-icons.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-social-icons-wrapper elementor-grid\\\">\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-ff22a73\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Facebook<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"e-font-icon-svg e-fab-facebook\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-409ef6a\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Twitter<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"e-font-icon-svg e-fab-twitter\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-b8a65e0\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Youtube<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg class=\\\"e-font-icon-svg e-fab-youtube\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-566ebc6 elementor-widget elementor-widget-heading\\\" data-id=\\\"566ebc6\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">Matthew Anderson\\n<\\/h5>\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\\t\\t<section class=\\\"elementor-section elementor-top-section elementor-element elementor-element-a9881ad elementor-section-full_width elementor-section-height-default elementor-section-height-default\\\" data-id=\\\"a9881ad\\\" data-element_type=\\\"section\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-container elementor-column-gap-default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c7a4721\\\" data-id=\\\"c7a4721\\\" data-element_type=\\\"column\\\">\\n\\t\\t\\t<div class=\\\"elementor-widget-wrap elementor-element-populated\\\">\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-9e8d18b gallery-spacing-custom elementor-widget elementor-widget-image-gallery\\\" data-id=\\\"9e8d18b\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image-gallery.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};max-width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};margin:0 auto}.elementor-image-gallery .gallery-item img{margin:0 auto}.elementor-image-gallery .gallery-item .gallery-caption{margin:0}.elementor-image-gallery figure img{display:block}.elementor-image-gallery figure figcaption{width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.gallery-spacing-custom .elementor-image-gallery .gallery-icon{padding:0}@media (min-width:768px){.elementor-image-gallery .gallery-columns-2 .gallery-item{max-width:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-image-gallery .gallery-columns-4 .gallery-item{max-width:25{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-image-gallery .gallery-columns-5 .gallery-item{max-width:20{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-image-gallery .gallery-columns-10 .gallery-item{max-width:10{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}}@media (min-width:480px) and (max-width:767px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:50{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}}@media (max-width:479px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}}<\\/style>\\t\\t<div class=\\\"elementor-image-gallery\\\">\\n\\t\\t\\t<div id=\'gallery-1\' class=\'gallery galleryid-511 gallery-columns-4 gallery-size-full\'><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"9e8d18b\\\" data-elementor-lightbox-title=\\\"ChatGPT-Image-Jun-3-2026-02_28_33-PM\\\" data-e-action-hash=\\\"#elementor-action{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3Aaction{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3Dlightbox{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}26settings{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3DeyJpZCI6MTc0MiwidXJsIjoiaHR0cHM6XC9cL2h5cGVyZ3Jvd3RoLmZpc2hncm93dGgueHl6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wNlwvQ2hhdEdQVC1JbWFnZS1KdW4tMy0yMDI2LTAyXzI4XzMzLVBNLmpwZyIsInNsaWRlc2hvdyI6IjllOGQxOGIifQ{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3D{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3D\\\" href=\'https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\'><img width=\\\"1254\\\" height=\\\"1254\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\\\" class=\\\"attachment-full size-full\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"9e8d18b\\\" data-elementor-lightbox-title=\\\"ChatGPT-Image-Jun-3-2026-02_30_52-PM\\\" data-e-action-hash=\\\"#elementor-action{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3Aaction{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3Dlightbox{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}26settings{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3DeyJpZCI6MTczOSwidXJsIjoiaHR0cHM6XC9cL2h5cGVyZ3Jvd3RoLmZpc2hncm93dGgueHl6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wNlwvQ2hhdEdQVC1JbWFnZS1KdW4tMy0yMDI2LTAyXzMwXzUyLVBNLmpwZyIsInNsaWRlc2hvdyI6IjllOGQxOGIifQ{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3D{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3D\\\" href=\'https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\'><img width=\\\"1254\\\" height=\\\"1254\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\\\" class=\\\"attachment-full size-full\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"9e8d18b\\\" data-elementor-lightbox-title=\\\"ChatGPT-Image-Jun-3-2026-02_27_34-PM-1\\\" data-e-action-hash=\\\"#elementor-action{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3Aaction{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3Dlightbox{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}26settings{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3DeyJpZCI6MTczMSwidXJsIjoiaHR0cHM6XC9cL2h5cGVyZ3Jvd3RoLmZpc2hncm93dGgueHl6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wNlwvQ2hhdEdQVC1JbWFnZS1KdW4tMy0yMDI2LTAyXzI3XzM0LVBNLTEuanBnIiwic2xpZGVzaG93IjoiOWU4ZDE4YiJ9\\\" href=\'https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM-1.jpg\'><img width=\\\"1254\\\" height=\\\"1254\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_27_34-PM-1.jpg\\\" class=\\\"attachment-full size-full\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure><figure class=\'gallery-item\'>\\n\\t\\t\\t<div class=\'gallery-icon landscape\'>\\n\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"9e8d18b\\\" data-elementor-lightbox-title=\\\"ChatGPT-Image-Jun-3-2026-02_30_59-PM\\\" data-e-action-hash=\\\"#elementor-action{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3Aaction{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3Dlightbox{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}26settings{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3DeyJpZCI6MTczNSwidXJsIjoiaHR0cHM6XC9cL2h5cGVyZ3Jvd3RoLmZpc2hncm93dGgueHl6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wNlwvQ2hhdEdQVC1JbWFnZS1KdW4tMy0yMDI2LTAyXzMwXzU5LVBNLmpwZyIsInNsaWRlc2hvdyI6IjllOGQxOGIifQ{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3D{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}3D\\\" href=\'https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\'><img width=\\\"1254\\\" height=\\\"1254\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\\\" class=\\\"attachment-full size-full\\\" alt=\\\"\\\" \\/><\\/a>\\n\\t\\t\\t<\\/div><\\/figure>\\n\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/section>\\n\\t\\t\",\"scripts\":[\"jquery-numerator\"],\"styles\":[]}}');

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

INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('3','17','2026-06-05 08:26:02','2026-06-05 02:26:02','','Default Kit','','publish','closed','closed','','default-kit','','','2026-06-10 21:42:57','2026-06-10 15:42:57','','0','https://hypergrowth.fishgrowth.xyz/?elementor_library=default-kit','0','elementor_library','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('4','17','2021-03-01 04:30:59','2021-03-01 04:30:59','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder-2','','','2021-03-01 04:30:59','2021-03-01 04:30:59','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2021/03/woocommerce-placeholder.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('5','17','2026-06-05 08:26:02','2026-06-05 02:26:02','<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":1} -->\n<h1>itgalaxy</h1>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p>Your clean project is ready for a fresh build.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->','Home','','publish','closed','closed','','home','','','2026-06-05 08:40:16','2026-06-05 02:40:16','','0','https://hypergrowth.fishgrowth.xyz/home/','0','page','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('6','17','2021-03-01 04:31:00','2021-03-01 04:31:00','<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->','Cart','','publish','closed','closed','','cart','','','2021-03-01 04:31:00','2021-03-01 04:31:00','','0','https://startertemplatecloud.com/e09/cart/','0','page','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('7','17','2021-03-01 04:31:00','2021-03-01 04:31:00','<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->','Checkout','','publish','closed','closed','','checkout','','','2021-03-01 04:31:00','2021-03-01 04:31:00','','0','https://startertemplatecloud.com/e09/checkout/','0','page','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('8','17','2021-03-01 04:31:00','2021-03-01 04:31:00','<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->','My account','','publish','closed','closed','','my-account','','','2021-03-01 04:31:00','2021-03-01 04:31:00','','0','https://startertemplatecloud.com/e09/my-account/','0','page','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('14','17','2020-11-28 12:06:38','2020-11-28 12:06:38','<h6>get in touch</h6>\n<h4>To make requests for further information, contact us via our social channels.</h4>\nWe just need a couple of hours!\nNo more than 2 working days since receiving your issue ticket.\n\n<form data-form_id=\"1\" id=\"fluentform_1\" data-form_instance=\"ff_form_instance_1_1\"><input type=\"hidden\" name=\"__fluent_form_embded_post_id\" value=\"14\"><input type=\"hidden\" id=\"_fluentform_1_fluentformnonce\" name=\"_fluentform_1_fluentformnonce\" value=\"40dcd93601\"><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/e09/wp-admin/admin-ajax.php\"><label for=\"ff_1_names_first_name_\">First Name</label> <input type=\"text\" name=\"names[first_name]\" id=\"ff_1_names_first_name_\" placeholder=\"First Name\"><label for=\"ff_1_names_last_name_\">Last Name</label> <input type=\"text\" name=\"names[last_name]\" id=\"ff_1_names_last_name_\" placeholder=\"Last Name\"><label for=\"ff_1_email\">Email</label> <input type=\"email\" name=\"email\" id=\"ff_1_email\" placeholder=\"Email Address\" data-name=\"email\"><label for=\"ff_1_subject\">Subject</label> <input type=\"text\" name=\"subject\" placeholder=\"Subject\" data-name=\"subject\" id=\"ff_1_subject\"><label for=\"ff_1_message\">Your Message</label> <textarea name=\"message\" id=\"ff_1_message\" placeholder=\"Your Message\" rows=\"4\" cols=\"2\" data-name=\"message\"></textarea><button type=\"submit\">Submit Form</button></form>\n<h6>San Francisco</h6>\n<h5>5 Street #2 San Francisco</h5>\n<h5>+7 (928)-123-45-45</h5>\n<h5><a href=\"#\">hello@yourdomain.co</a></h5>\n<h6>New York</h6>\n<h5>58 Howard Street #2 New York</h5>\n<h5>+7 (928)-123-45-45</h5>\n<h5><a href=\"#\">hello@yourdomain.co</a></h5>\n<h6>London</h6>\n<h5>58 Howard Street #2 London</h5>\n<h5>+7 (928)-123-45-45</h5>\n<h5><a href=\"#\">hello@yourdomain.co</a></h5>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}20Eye{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}2C{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}20London{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}2C{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}20United{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}20Kingdom&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" title=\"London Eye, London, United Kingdom\" aria-label=\"London Eye, London, United Kingdom\"></iframe>','Contact','','publish','closed','closed','','contact','','','2020-11-28 12:06:38','2020-11-28 12:06:38','','0','http://kits.themecy.com/food/?page_id=14','0','page','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('15','17','2020-11-28 12:06:23','2020-11-28 12:06:23','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>Elegance \nRedefined</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">exclusive-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">man-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Men\'s Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">stylish </a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">New Arrivals</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Best Collections</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Top Collections</a></h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our style\n</h6>		\n			<h2>Fashion</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick &amp; Fashion</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/elementor/thumbs/ChatGPT-Image-Jun-3-2026-02_27_24-PM-rora3pbas24q2ab1jidw4h7s4w8vsrbyl9i62ckaps.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style<br></h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/elementor/thumbs/ChatGPT-Image-Jun-3-2026-02_27_34-PM-rora3pbas24q2ab1jidw4h7s4w8vsrbyl9i62ckaps.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2> Your Style</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','publish','closed','closed','','home-2','','','2026-06-10 21:41:09','2026-06-10 15:41:09','','0','http://kits.themecy.com/food/?page_id=15','0','page','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('43','17','2026-06-05 08:40:16','2026-06-05 02:40:16','','Default Kit','','inherit','closed','closed','','3-revision-v1','','','2026-06-05 08:40:16','2026-06-05 02:40:16','','3','https://hypergrowth.fishgrowth.xyz/?p=43','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('44','17','2026-06-05 08:40:16','2026-06-05 02:40:16','<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"level\":1} -->\n<h1>itgalaxy</h1>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p>Your clean project is ready for a fresh build.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->','Home','','inherit','closed','closed','','5-revision-v1','','','2026-06-05 08:40:16','2026-06-05 02:40:16','','5','https://hypergrowth.fishgrowth.xyz/?p=44','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('49','17','2026-06-09 12:42:17','2026-06-09 06:42:17','','Auto Draft','','trash','closed','closed','','__trashed','','','2026-06-09 12:42:17','2026-06-09 06:42:17','','0','https://hypergrowth.fishgrowth.xyz/?p=49','0','post','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('50','17','2026-06-05 08:47:34','2026-06-05 02:47:34','','01','','trash','closed','closed','','01__trashed','','','2026-06-09 12:53:26','2026-06-09 06:53:26','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/01.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('52','17','2026-06-05 08:50:00','2026-06-05 02:50:00','','440470036_459782033107096_6852173422467720754_n','','trash','closed','closed','','440470036_459782033107096_6852173422467720754_n__trashed','','','2026-06-09 12:36:54','2026-06-09 06:36:54','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/440470036_459782033107096_6852173422467720754_n.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('53','17','2026-06-05 08:50:01','2026-06-05 02:50:01','','double-growth-min-300x300','','trash','closed','closed','','double-growth-min-300x300__trashed','','','2026-06-09 12:36:46','2026-06-09 06:36:46','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/double-growth-min-300x300-1.jpeg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('54','17','2026-06-05 08:50:02','2026-06-05 02:50:02','','water-pluncton-min-300x300','','trash','closed','closed','','water-pluncton-min-300x300__trashed','','','2026-06-09 12:36:39','2026-06-09 06:36:39','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/water-pluncton-min-300x300-1.jpeg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('55','17','2026-06-05 08:50:03','2026-06-05 02:50:03','','Green-Natural-Hello-Spring-Season-Instagram-Post','','trash','closed','closed','','green-natural-hello-spring-season-instagram-post__trashed','','','2026-06-09 12:37:04','2026-06-09 06:37:04','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('56','17','2026-06-05 09:04:57','2026-06-05 03:04:57','','FishGrowth 02','','trash','closed','closed','','fishgrowth-02__trashed','','','2026-06-09 12:42:04','2026-06-09 06:42:04','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=fishgrowth-02','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('57','17','2026-06-05 09:04:57','2026-06-05 03:04:57','\"\"','Sales Landing','','trash','closed','closed','','sales-landing__trashed','','','2026-06-09 12:49:06','2026-06-09 06:49:06','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('58','17','2026-06-05 09:04:57','2026-06-05 03:04:57','\"<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg 945w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-300x300.jpg 300w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg 100w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-1.jpg 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-150x150.jpg 150w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-1.jpg 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2><strong style=\\\"background: linear-gradient(90deg, #ff0000, #ff7f00);\\n      color: #ffffff;\\n      font-size: 14px;\\n      font-weight: 900;\\n      padding: 4px;\\n      text-align: center;\\n      border-radius: 12px;\\n      box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);\\n      font-family: \'Arial\', sans-serif;\\n      margin: 20px;\\n      animation: pulse 2s infinite;\\\">\\u099a\\u09b2\\u099b\\u09c7 \\u09b8\\u09b0\\u09cd\\u09ac\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09b8\\u09c7\\u09b0\\u09be \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f<\\/strong> \\n     \\u098f\\u0996\\u09a8 \\u09eb\\u09e6{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f !  <br><br>\\n\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09be\\u0987 \\u09b8\\u09bf\\u09a6\\u09cd\\u09a7\\u09be\\u09a8\\u09cd\\u09a4 \\u2013 \\u0996\\u09b0\\u099a \\u0995\\u09ae\\u09be\\u09ac\\u09c7 \\u09eb\\u09e6{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4!\\n <br><br>\\n\\u26d4 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09b2\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2><br\\/> \\u09e7\\u09e6\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09df \\u0986\\u09aa\\u09a8\\u09bf \\u09ac\\u09be\\u0981\\u099a\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09a4\\u09c7\\u09a8 \\u09e7\\u09eb\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0?\\n<br\\/><br\\/>\\n\\u09a4\\u09be\\u0987 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u09a8\\u09be \\u0995\\u09b0\\u09c7 \\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09c1\\u09a8 <\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.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{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.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>\\t\\t\\n\\t\\t\\t<a href=\\\"https:\\/\\/wa.me\\/+8801838404044\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b9\\u09cb\\u09af\\u09bc\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<a href=\\\"tel:01838404044\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t  \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/sorkoar-agro-dicche.mp4\\t\\t\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};mask-size:var(--divider-pattern-size) 100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};-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{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tP H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"453\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp 912w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-600x339.webp 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-300x170.webp 300w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-768x435.webp 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css?ver=1725884340\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09ed\\u09eb \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h4>\\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e9\\u09ed\\u09eb\\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc<\\/h4>\\t\\t\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09eb\\u09e6 \\n\\t\\t\\t\\t\\t \\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h4>\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e9\\u09ed\\u09eb \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc<\\/h4>\\t\\t\\n\\t\\t\\t<h2>\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u0985\\u09a5\\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01838404044\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01838 40 40 44\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/fishgrowth.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983 <\\/h3>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/double-growth-min-300x300.jpeg\\\" alt=\\\"double growth\\\" \\/>\\n\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t375.00&#2547;&nbsp;\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/water-pluncton-min-300x300.jpeg\\\" alt=\\\"\\\" \\/>\\n\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t375.00&#2547;&nbsp;\\n\\t\\t\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Humayoun\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"01727787392\\\" pattern=\\\"d{11}\\\" title=\\\"Phone number must be exactly 11 digits long and contain only numbers.\\\" maxlength=\\\"11\\\" minlength=\\\"11\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"Dattapara\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"36\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"38\\\">\\n\\t\\t<h3>Shipping<\\/h3>\\n\\t\\t\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"wcf_shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"wcf_shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1773548781\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>375.00&#2547;&nbsp;<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>375.00&#2547;&nbsp;<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>750.00&#2547;&nbsp;<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t<th>Shipping<\\/th>\\n\\t<td data-title=\\\"Shipping\\\">\\n\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<\\/td>\\n<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>750.00&#2547;&nbsp;<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/fishgrowth.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;750.00&#2547;&nbsp;\\\" data-value=\\\"Place Order&nbsp;&nbsp;750.00&#2547;&nbsp;\\\">Place Order&nbsp;&nbsp;750.00&#2547;&nbsp;<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"d98c114cea\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t<p>Develop by itgalaxy<\\/p>\"','fishgrowth-02','','trash','closed','closed','','fishgrowth-02__trashed','','','2026-06-09 12:41:44','2026-06-09 06:41:44','','0','https://hypergrowth.fishgrowth.xyz/step/fishgrowth-02/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('59','17','2026-06-05 09:04:57','2026-06-05 03:04:57','','Green-Natural-Hello-Spring-Season-Instagram-Post-100x100.jpg','','trash','closed','closed','','green-natural-hello-spring-season-instagram-post-100x100-jpg__trashed','','','2026-06-09 12:41:28','2026-06-09 06:41:28','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('60','17','2026-06-05 09:04:57','2026-06-05 03:04:57','','Green-Natural-Hello-Spring-Season-Instagram-Post-600x600.jpg','','inherit','closed','closed','','green-natural-hello-spring-season-instagram-post-600x600-jpg','','','2026-06-05 09:04:57','2026-06-05 03:04:57','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-1.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('61','17','2026-06-05 09:04:57','2026-06-05 03:04:57','','Green-Natural-Hello-Spring-Season-Instagram-Post-768x768.jpg','','trash','closed','closed','','green-natural-hello-spring-season-instagram-post-768x768-jpg__trashed','','','2026-06-09 12:39:24','2026-06-09 06:39:24','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-1.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('62','17','2026-06-05 09:04:57','2026-06-05 03:04:57','\"<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg 945w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-300x300.jpg 300w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg 100w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-1.jpg 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-150x150.jpg 150w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-1.jpg 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2><strong style=\\\"background: linear-gradient(90deg, #ff0000, #ff7f00);\\n      color: #ffffff;\\n      font-size: 14px;\\n      font-weight: 900;\\n      padding: 4px;\\n      text-align: center;\\n      border-radius: 12px;\\n      box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);\\n      font-family: \'Arial\', sans-serif;\\n      margin: 20px;\\n      animation: pulse 2s infinite;\\\">\\u099a\\u09b2\\u099b\\u09c7 \\u09b8\\u09b0\\u09cd\\u09ac\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09b8\\u09c7\\u09b0\\u09be \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f<\\/strong> \\n     \\u098f\\u0996\\u09a8 \\u09eb\\u09e6{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f !  <br><br>\\n\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09be\\u0987 \\u09b8\\u09bf\\u09a6\\u09cd\\u09a7\\u09be\\u09a8\\u09cd\\u09a4 \\u2013 \\u0996\\u09b0\\u099a \\u0995\\u09ae\\u09be\\u09ac\\u09c7 \\u09eb\\u09e6{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4!\\n <br><br>\\n\\u26d4 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09b2\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2><br\\/> \\u09e7\\u09e6\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09df \\u0986\\u09aa\\u09a8\\u09bf \\u09ac\\u09be\\u0981\\u099a\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09a4\\u09c7\\u09a8 \\u09e7\\u09eb\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0?\\n<br\\/><br\\/>\\n\\u09a4\\u09be\\u0987 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u09a8\\u09be \\u0995\\u09b0\\u09c7 \\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09c1\\u09a8 <\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.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{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.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>\\t\\t\\n\\t\\t\\t<a href=\\\"https:\\/\\/wa.me\\/+8801838404044\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b9\\u09cb\\u09af\\u09bc\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<a href=\\\"tel:01838404044\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t  \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/sorkoar-agro-dicche.mp4\\t\\t\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};mask-size:var(--divider-pattern-size) 100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};-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{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tP H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"453\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp 912w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-600x339.webp 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-300x170.webp 300w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-768x435.webp 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css?ver=1725884340\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09ed\\u09eb \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h4>\\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e9\\u09ed\\u09eb\\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc<\\/h4>\\t\\t\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09eb\\u09e6 \\n\\t\\t\\t\\t\\t \\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h4>\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e9\\u09ed\\u09eb \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc<\\/h4>\\t\\t\\n\\t\\t\\t<h2>\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u0985\\u09a5\\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01838404044\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01838 40 40 44\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/fishgrowth.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983 <\\/h3>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/double-growth-min-300x300.jpeg\\\" alt=\\\"double growth\\\" \\/>\\n\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t375.00&#2547;&nbsp;\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/water-pluncton-min-300x300.jpeg\\\" alt=\\\"\\\" \\/>\\n\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t375.00&#2547;&nbsp;\\n\\t\\t\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Humayoun\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"01727787392\\\" pattern=\\\"d{11}\\\" title=\\\"Phone number must be exactly 11 digits long and contain only numbers.\\\" maxlength=\\\"11\\\" minlength=\\\"11\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"Dattapara\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"36\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"38\\\">\\n\\t\\t<h3>Shipping<\\/h3>\\n\\t\\t\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"wcf_shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"wcf_shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1773548781\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>375.00&#2547;&nbsp;<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>375.00&#2547;&nbsp;<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>750.00&#2547;&nbsp;<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t<th>Shipping<\\/th>\\n\\t<td data-title=\\\"Shipping\\\">\\n\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<\\/td>\\n<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>750.00&#2547;&nbsp;<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/fishgrowth.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;750.00&#2547;&nbsp;\\\" data-value=\\\"Place Order&nbsp;&nbsp;750.00&#2547;&nbsp;\\\">Place Order&nbsp;&nbsp;750.00&#2547;&nbsp;<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"d98c114cea\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t<p>Develop by itgalaxy<\\/p>\"','fishgrowth-02','','trash','closed','closed','','58-revision-v1__trashed','','','2026-06-09 12:40:59','2026-06-09 06:40:59','','58','https://hypergrowth.fishgrowth.xyz/?p=62','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('63','17','2026-06-05 09:04:58','2026-06-05 03:04:58','','Green-Natural-Hello-Spring-Season-Instagram-Post.jpg','','trash','closed','closed','','green-natural-hello-spring-season-instagram-post-jpg__trashed','','','2026-06-09 12:40:52','2026-06-09 06:40:52','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('64','17','2026-06-05 09:05:01','2026-06-05 03:05:01','','sorkoar-agro-dicche.mp4','','trash','closed','closed','','sorkoar-agro-dicche-mp4__trashed','','','2026-06-09 12:47:55','2026-06-09 06:47:55','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/sorkoar-agro-dicche.mp4','0','attachment','video/mp4','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('65','17','2026-06-05 09:05:01','2026-06-05 03:05:01','','Screenshot-2024-07-01-134806.webp','','trash','closed','closed','','screenshot-2024-07-01-134806-webp__trashed','','','2026-06-09 12:41:18','2026-06-09 06:41:18','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/Screenshot-2024-07-01-134806.webp','0','attachment','image/webp','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('66','17','2026-06-05 09:05:01','2026-06-05 03:05:01','','placeholder.png','','trash','closed','closed','','placeholder-png__trashed','','','2026-06-09 12:47:28','2026-06-09 06:47:28','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/placeholder.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('67','17','2026-06-05 09:05:01','2026-06-05 03:05:01','\"<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg 945w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-300x300.jpg 300w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg 100w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-1.jpg 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-150x150.jpg 150w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-1.jpg 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7 \\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 fishgrowth\\u0964 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964 \\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=mjr8CjmMFL0\\t\\t\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tP H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg 945w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-300x300.jpg 300w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg 100w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-1.jpg 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-150x150.jpg 150w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-1.jpg 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\ud83d\\udca5\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\ud83d\\udca5\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964\\n<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/fishgrowth.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983 <\\/h3>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/double-growth-min-300x300.jpeg\\\" alt=\\\"double growth\\\" \\/>\\n\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/water-pluncton-min-300x300.jpeg\\\" alt=\\\"\\\" \\/>\\n\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t\\t\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<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_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" pattern=\\\"d{11}\\\" title=\\\"Phone number must be exactly 11 digits long and contain only numbers.\\\" maxlength=\\\"11\\\" minlength=\\\"11\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"36\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"54\\\">\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1725891214\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t\\t<tr>\\n\\t<th>Shipping<\\/th>\\n\\t<td data-title=\\\"Shipping\\\">\\n\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<\\/td>\\n<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/fishgrowth.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"3f06707584\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t\\t\\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 - 01838 40 40 44\"','checkout-woo','','trash','closed','closed','','checkout-woo__trashed','','','2026-06-09 12:47:05','2026-06-09 06:47:05','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('68','17','2026-06-05 09:05:01','2026-06-05 03:05:01','\"<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg 945w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-300x300.jpg 300w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg 100w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-1.jpg 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-150x150.jpg 150w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-1.jpg 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7 \\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 fishgrowth\\u0964 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964 \\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=mjr8CjmMFL0\\t\\t\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tP H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg 945w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-300x300.jpg 300w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg 100w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-1.jpg 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-150x150.jpg 150w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-1.jpg 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\ud83d\\udca5\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\ud83d\\udca5\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964\\n<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/fishgrowth.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983 <\\/h3>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/double-growth-min-300x300.jpeg\\\" alt=\\\"double growth\\\" \\/>\\n\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/water-pluncton-min-300x300.jpeg\\\" alt=\\\"\\\" \\/>\\n\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t\\t\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<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_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" pattern=\\\"d{11}\\\" title=\\\"Phone number must be exactly 11 digits long and contain only numbers.\\\" maxlength=\\\"11\\\" minlength=\\\"11\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"36\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"54\\\">\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1725891214\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t\\t<tr>\\n\\t<th>Shipping<\\/th>\\n\\t<td data-title=\\\"Shipping\\\">\\n\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<\\/td>\\n<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/fishgrowth.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"3f06707584\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t\\t\\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 - 01838 40 40 44\"','checkout-woo','','trash','closed','closed','','67-revision-v1__trashed','','','2026-06-09 12:46:32','2026-06-09 06:46:32','','67','https://hypergrowth.fishgrowth.xyz/?p=68','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('69','17','2026-06-05 09:05:01','2026-06-05 03:05:01','','placeholder-1-2.png','','trash','closed','closed','','placeholder-1-2-png__trashed','','','2026-06-09 12:41:08','2026-06-09 06:41:08','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/placeholder-1-2.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('70','17','2026-06-05 09:05:01','2026-06-05 03:05:01','\"<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09b8\\u09c0\\u09ae\\u09bf\\u09a4 \\u09b8\\u09ae\\u09df\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09ab\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u099c\\n<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor-pro - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-countdown .elementor-countdown-expire--message{display:none;padding:20px;text-align:center}.elementor-widget-countdown .elementor-countdown-wrapper{flex-direction:row}.elementor-widget-countdown .elementor-countdown-item{padding:20px 0;text-align:center;color:#fff}.elementor-widget-countdown .elementor-countdown-digits,.elementor-widget-countdown .elementor-countdown-label{line-height:1}.elementor-widget-countdown .elementor-countdown-digits{font-size:69px}.elementor-widget-countdown .elementor-countdown-label{font-size:19px}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-wrapper{display:flex;justify-content:center;margin-right:auto;margin-left:auto}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-digits,.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-label{display:block}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-item{flex-basis:0;flex-grow:1}.elementor-widget-countdown.elementor-countdown--label-inline{text-align:center}.elementor-widget-countdown.elementor-countdown--label-inline .elementor-countdown-item{display:inline-block;padding-left:5px;padding-right:5px}<\\/style>\\t\\t\\n\\t\\t\\t Days Hours Minutes Seconds\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.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{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.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>\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css?ver=1725884340\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09ed\\u09eb \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09eb\\u09e6 \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0995\\u09ae\\u09cd\\u09ac\\u09cb \\u0985\\u09ab\\u09be\\u09b0 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 & \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\n\\t\\t\\t\\t\\t\\u09e7\\u09e6\\u09e6\\u09e6\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=Lrdqc3AwV9I\\t\\t\\n\\t\\t\\t<h2>\\n\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8   ?\\n<\\/h2>\\t\\t\\n\\t\\t<p>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7&nbsp;\\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 <strong>fishgrowth<\\/strong>\\u0964&nbsp;<b>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8<\\/b>&nbsp;\\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964&nbsp;\\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0  \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tP H  \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983 \\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09ad\\u09bf\\u099c\\u09cd\\u099e\\u09a4\\u09be, \\u09b6\\u09bf\\u0995\\u09cd\\u09b7\\u09be \\u0993 \\u09aa\\u09b0\\u09c0\\u0995\\u09cd\\u09b7\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ac\\u09a8\\u09df\\u09c7 fishgrowth \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09ac\\u09cd\\u09af\\u09be\\u09aa\\u09c0 \\u09ae\\u09be\\u099b \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u09b8\\u09c7\\u09ac\\u09be, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6 \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09aa\\u09a3\\u09cd\\u09af \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09c7 \\u0986\\u09b8\\u099b\\u09c7\\u0964 \\u09ae\\u09be\\u099b \\u099b\\u09be\\u09dc\\u09be \\u09b9\\u09a4\\u09c7 \\u09ac\\u09be\\u099c\\u09be\\u09b0\\u099c\\u09be\\u09a4 \\u0995\\u09b0\\u09be \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09c1\\u09a8\\u09bf\\u09aa\\u09c1\\u09a8 \\u09ae\\u09a8\\u09bf\\u099f\\u09b0\\u09bf\\u0982 \\u098f\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09aa\\u09a5\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u0997\\u09a3 \\u09b9\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993   \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964    \\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\\t\\t\\t\\t<\\/h3>\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/fishgrowth.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983 <\\/h3>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/double-growth-min-300x300.jpeg\\\" alt=\\\"double growth\\\" \\/>\\n\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/water-pluncton-min-300x300.jpeg\\\" alt=\\\"\\\" \\/>\\n\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t\\t\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<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_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" pattern=\\\"d{11}\\\" title=\\\"Phone number must be exactly 11 digits long and contain only numbers.\\\" maxlength=\\\"11\\\" minlength=\\\"11\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"36\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"59\\\">\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1725892596\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t\\t<tr>\\n\\t<th>Shipping<\\/th>\\n\\t<td data-title=\\\"Shipping\\\">\\n\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<\\/td>\\n<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/fishgrowth.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"3f06707584\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t<p>Copyright \\u00a9 2024 fishgrowth| This website made with \\u2764\\ufe0f by <a style=\\\"color: red;\\\" href=\\\"https:\\/\\/itgalaxi.com\\/\\\"><b> itgalaxi<\\/b><\\/a><\\/p>\"','checkout-woo 2','','trash','closed','closed','','checkout-woo-2__trashed','','','2026-06-09 12:46:09','2026-06-09 06:46:09','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-2/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('71','17','2026-06-05 09:05:01','2026-06-05 03:05:01','\"<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09b8\\u09c0\\u09ae\\u09bf\\u09a4 \\u09b8\\u09ae\\u09df\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09ab\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u099c\\n<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor-pro - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-countdown .elementor-countdown-expire--message{display:none;padding:20px;text-align:center}.elementor-widget-countdown .elementor-countdown-wrapper{flex-direction:row}.elementor-widget-countdown .elementor-countdown-item{padding:20px 0;text-align:center;color:#fff}.elementor-widget-countdown .elementor-countdown-digits,.elementor-widget-countdown .elementor-countdown-label{line-height:1}.elementor-widget-countdown .elementor-countdown-digits{font-size:69px}.elementor-widget-countdown .elementor-countdown-label{font-size:19px}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-wrapper{display:flex;justify-content:center;margin-right:auto;margin-left:auto}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-digits,.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-label{display:block}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-item{flex-basis:0;flex-grow:1}.elementor-widget-countdown.elementor-countdown--label-inline{text-align:center}.elementor-widget-countdown.elementor-countdown--label-inline .elementor-countdown-item{display:inline-block;padding-left:5px;padding-right:5px}<\\/style>\\t\\t\\n\\t\\t\\t Days Hours Minutes Seconds\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.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{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.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>\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css?ver=1725884340\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09ed\\u09eb \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09eb\\u09e6 \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0995\\u09ae\\u09cd\\u09ac\\u09cb \\u0985\\u09ab\\u09be\\u09b0 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 & \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\n\\t\\t\\t\\t\\t\\u09e7\\u09e6\\u09e6\\u09e6\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=Lrdqc3AwV9I\\t\\t\\n\\t\\t\\t<h2>\\n\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8   ?\\n<\\/h2>\\t\\t\\n\\t\\t<p>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7&nbsp;\\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 <strong>fishgrowth<\\/strong>\\u0964&nbsp;<b>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8<\\/b>&nbsp;\\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964&nbsp;\\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0  \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tP H  \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983 \\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09ad\\u09bf\\u099c\\u09cd\\u099e\\u09a4\\u09be, \\u09b6\\u09bf\\u0995\\u09cd\\u09b7\\u09be \\u0993 \\u09aa\\u09b0\\u09c0\\u0995\\u09cd\\u09b7\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ac\\u09a8\\u09df\\u09c7 fishgrowth \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09ac\\u09cd\\u09af\\u09be\\u09aa\\u09c0 \\u09ae\\u09be\\u099b \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u09b8\\u09c7\\u09ac\\u09be, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6 \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09aa\\u09a3\\u09cd\\u09af \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09c7 \\u0986\\u09b8\\u099b\\u09c7\\u0964 \\u09ae\\u09be\\u099b \\u099b\\u09be\\u09dc\\u09be \\u09b9\\u09a4\\u09c7 \\u09ac\\u09be\\u099c\\u09be\\u09b0\\u099c\\u09be\\u09a4 \\u0995\\u09b0\\u09be \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09c1\\u09a8\\u09bf\\u09aa\\u09c1\\u09a8 \\u09ae\\u09a8\\u09bf\\u099f\\u09b0\\u09bf\\u0982 \\u098f\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09aa\\u09a5\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u0997\\u09a3 \\u09b9\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993   \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964    \\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\\t\\t\\t\\t<\\/h3>\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/fishgrowth.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983 <\\/h3>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/double-growth-min-300x300.jpeg\\\" alt=\\\"double growth\\\" \\/>\\n\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/water-pluncton-min-300x300.jpeg\\\" alt=\\\"\\\" \\/>\\n\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t\\t\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<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_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" pattern=\\\"d{11}\\\" title=\\\"Phone number must be exactly 11 digits long and contain only numbers.\\\" maxlength=\\\"11\\\" minlength=\\\"11\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"36\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"59\\\">\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1725892596\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t\\t<tr>\\n\\t<th>Shipping<\\/th>\\n\\t<td data-title=\\\"Shipping\\\">\\n\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<\\/td>\\n<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/fishgrowth.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"3f06707584\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t<p>Copyright \\u00a9 2024 fishgrowth| This website made with \\u2764\\ufe0f by <a style=\\\"color: red;\\\" href=\\\"https:\\/\\/itgalaxi.com\\/\\\"><b> itgalaxi<\\/b><\\/a><\\/p>\"','checkout-woo 2','','trash','closed','closed','','70-revision-v1__trashed','','','2026-06-09 12:45:37','2026-06-09 06:45:37','','70','https://hypergrowth.fishgrowth.xyz/?p=71','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('72','17','2026-06-05 09:05:02','2026-06-05 03:05:02','','placeholder.png','','trash','closed','closed','','placeholder-png-2__trashed','','','2026-06-09 12:45:12','2026-06-09 06:45:12','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/placeholder-1.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('73','17','2026-06-05 09:05:02','2026-06-05 03:05:02','\"<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"512\\\" height=\\\"512\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post.jpg 512w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-300x300.jpg 300w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg 100w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-150x150.jpg 150w\\\" sizes=\\\"(max-width: 512px) 100vw, 512px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n<\\/h2>\\t\\t\\n\\t\\t<p>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7 \\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 fishgrowth\\u0964 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964 \\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.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{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.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>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css?ver=1725884340\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09eb\\u09e6 \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09ed\\u09eb \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 \\u09ac\\u09be \\u0995\\u09b2 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"https:\\/\\/wa.me\\/+8801838404044\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01838 40 40 44\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tP H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09cb\\u09a8 \\u09b0\\u0995\\u09ae \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u099b\\u09be\\u09a1\\u09bc\\u09be \\u0998\\u09b0\\u09cb\\u09df\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09b8\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"453\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp 912w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-600x339.webp 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-300x170.webp 300w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-768x435.webp 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8-<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/fishgrowth.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983 <\\/h3>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/double-growth-min-300x300.jpeg\\\" alt=\\\"double growth\\\" \\/>\\n\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/water-pluncton-min-300x300.jpeg\\\" alt=\\\"\\\" \\/>\\n\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t\\t\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<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_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" pattern=\\\"d{11}\\\" title=\\\"Phone number must be exactly 11 digits long and contain only numbers.\\\" maxlength=\\\"11\\\" minlength=\\\"11\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"36\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"64\\\">\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1725891195\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t\\t<tr>\\n\\t<th>Shipping<\\/th>\\n\\t<td data-title=\\\"Shipping\\\">\\n\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<\\/td>\\n<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/fishgrowth.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"3f06707584\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t\\t<h2>Copyright \\u00a9 2024  Fish Growth | This website made with <img draggable=\\\"false\\\" role=\\\"img\\\" alt=\\\"\\u2764\\ufe0f\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/15.0.3\\/svg\\/2764.svg\\\"> by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','checkout-woo 3','','publish','closed','closed','','checkout-woo-3','','','2026-06-05 09:05:02','2026-06-05 03:05:02','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-3/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('74','17','2026-06-05 09:05:02','2026-06-05 03:05:02','','cropped-Green-Natural-Hello-Spring-Season-Instagram-Post.jpg','','inherit','closed','closed','','cropped-green-natural-hello-spring-season-instagram-post-jpg','','','2026-06-05 09:05:02','2026-06-05 03:05:02','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('75','17','2026-06-05 09:05:02','2026-06-05 03:05:02','','cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-100x100.jpg','','inherit','closed','closed','','cropped-green-natural-hello-spring-season-instagram-post-100x100-jpg','','','2026-06-05 09:05:02','2026-06-05 03:05:02','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('76','17','2026-06-05 09:05:02','2026-06-05 03:05:02','\"<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"512\\\" height=\\\"512\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post.jpg 512w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-300x300.jpg 300w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg 100w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-150x150.jpg 150w\\\" sizes=\\\"(max-width: 512px) 100vw, 512px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n<\\/h2>\\t\\t\\n\\t\\t<p>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7 \\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 fishgrowth\\u0964 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964 \\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.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{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.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>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css?ver=1725884340\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09eb\\u09e6 \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09ed\\u09eb \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 \\u09ac\\u09be \\u0995\\u09b2 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"https:\\/\\/wa.me\\/+8801838404044\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01838 40 40 44\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tP H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09cb\\u09a8 \\u09b0\\u0995\\u09ae \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u099b\\u09be\\u09a1\\u09bc\\u09be \\u0998\\u09b0\\u09cb\\u09df\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09b8\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"453\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp 912w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-600x339.webp 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-300x170.webp 300w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-768x435.webp 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8-<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/fishgrowth.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983 <\\/h3>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/double-growth-min-300x300.jpeg\\\" alt=\\\"double growth\\\" \\/>\\n\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/water-pluncton-min-300x300.jpeg\\\" alt=\\\"\\\" \\/>\\n\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t\\t\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<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_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" pattern=\\\"d{11}\\\" title=\\\"Phone number must be exactly 11 digits long and contain only numbers.\\\" maxlength=\\\"11\\\" minlength=\\\"11\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"36\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"64\\\">\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1725891195\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t\\t<tr>\\n\\t<th>Shipping<\\/th>\\n\\t<td data-title=\\\"Shipping\\\">\\n\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<\\/td>\\n<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/fishgrowth.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"3f06707584\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t\\t<h2>Copyright \\u00a9 2024  Fish Growth | This website made with <img draggable=\\\"false\\\" role=\\\"img\\\" alt=\\\"\\u2764\\ufe0f\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/15.0.3\\/svg\\/2764.svg\\\"> by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','checkout-woo 3','','inherit','closed','closed','','73-revision-v1','','','2026-06-05 09:05:02','2026-06-05 03:05:02','','73','https://hypergrowth.fishgrowth.xyz/?p=76','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('77','17','2026-06-05 09:05:02','2026-06-05 03:05:02','','cropped-Green-Natural-Hello-Spring-Season-Instagram-Post.jpg','','inherit','closed','closed','','cropped-green-natural-hello-spring-season-instagram-post-jpg-2','','','2026-06-05 09:05:02','2026-06-05 03:05:02','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('78','17','2026-06-05 09:05:02','2026-06-05 03:05:02','\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo__trashed','','','2026-06-09 12:06:57','2026-06-09 06:06:57','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('79','17','2026-06-05 09:20:20','2026-06-05 03:20:20','','','','trash','closed','closed','','__trashed-3','','','2026-06-09 12:06:21','2026-06-09 06:06:21','','0','https://hypergrowth.fishgrowth.xyz/?post_type=shop_order_placehold&#038;p=79','0','shop_order_placehold','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('84','0','2026-06-05 09:44:05','2026-06-05 03:44:05','','','','trash','closed','closed','','__trashed-2','','','2026-06-09 11:26:24','2026-06-09 05:26:24','','0','https://hypergrowth.fishgrowth.xyz/?post_type=shop_order_placehold&#038;p=84','0','shop_order_placehold','','3');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('89','17','2026-06-05 09:55:40','2026-06-05 03:55:40','','','','trash','closed','closed','','__trashed','','','2026-06-09 10:26:03','2026-06-09 04:26:03','','0','https://hypergrowth.fishgrowth.xyz/?post_type=shop_order_placehold&#038;p=89','0','shop_order_placehold','','1');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('92','0','2026-06-05 09:57:22','2026-06-05 03:57:22','','','','draft','closed','closed','','','','','2026-06-05 09:57:22','2026-06-05 03:57:22','','0','https://hypergrowth.fishgrowth.xyz/?post_type=shop_order_placehold&p=92','0','shop_order_placehold','','3');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('129','17','2020-12-01 15:19:31','2020-12-01 15:19:31','','img-11-min.png','','inherit','open','closed','','img-11-min-png','','','2020-12-01 15:19:31','2020-12-01 15:19:31','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/img-11-min.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('132','0','2026-06-05 10:47:53','2026-06-05 04:47:53','','','','draft','closed','closed','','','','','2026-06-05 10:47:53','2026-06-05 04:47:53','','0','https://hypergrowth.fishgrowth.xyz/?post_type=shop_order_placehold&p=132','0','shop_order_placehold','','1');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('137','0','2026-06-05 16:50:38','2026-06-05 10:50:38','','','','draft','closed','closed','','','','','2026-06-05 16:50:38','2026-06-05 10:50:38','','0','https://hypergrowth.fishgrowth.xyz/?post_type=shop_order_placehold&p=137','0','shop_order_placehold','','1');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('138','17','2026-06-05 17:40:00','0000-00-00 00:00:00','','AUTO-DRAFT','','auto-draft','closed','closed','','','','','2026-06-05 17:40:00','0000-00-00 00:00:00','','0','https://hypergrowth.fishgrowth.xyz/?post_type=product&p=138','0','product','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('144','17','2026-06-05 18:37:53','2026-06-05 12:37:53','','gorwth booster for cow','','inherit','closed','closed','','gorwth-booster-for-cow','','','2026-06-05 18:37:53','2026-06-05 12:37:53','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260605-123751-a9e804e2ec1e284627804334.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('145','17','2026-06-05 18:38:29','2026-06-05 12:38:29','','gorwth booster for cow','','inherit','closed','closed','','gorwth-booster-for-cow-2','','','2026-06-05 18:38:29','2026-06-05 12:38:29','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260605-123828-064e19bb6c7d8d4e6865e5c3.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('148','17','2026-06-05 18:45:46','2026-06-05 12:45:46','','gorwth booster for cow','','inherit','closed','closed','','gorwth-booster-for-cow-3','','','2026-06-05 18:45:46','2026-06-05 12:45:46','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260605-124545-be3b0ad69c5007b7b588b281.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('149','17','2026-06-05 18:46:30','2026-06-05 12:46:30','','gorwth booster for cow','','inherit','closed','closed','','gorwth-booster-for-cow-4','','','2026-06-05 18:46:30','2026-06-05 12:46:30','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260605-124629-83d24b3dcef7f5d430228354.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('150','17','2026-06-05 18:46:59','2026-06-05 12:46:59','','gorwth booster for cow','','inherit','closed','closed','','gorwth-booster-for-cow-5','','','2026-06-05 18:46:59','2026-06-05 12:46:59','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260605-124657-dd6f339d70b5a70172bfd3ee.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('152','17','2026-06-05 19:02:42','2026-06-05 13:02:42','','','','inherit','closed','closed','','152','','','2026-06-05 19:02:42','2026-06-05 13:02:42','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260605-130240-34feb85d89b88159126f4be5.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('153','17','2026-06-05 19:03:16','2026-06-05 13:03:16','','','','inherit','closed','closed','','153','','','2026-06-05 19:03:16','2026-06-05 13:03:16','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260605-130315-1c7a0a64bd76d3b14b3cd60a.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('156','17','2026-06-05 19:25:16','2026-06-05 13:25:16','','growth booster cow','','inherit','closed','closed','','growth-booster-cow','','','2026-06-05 19:25:16','2026-06-05 13:25:16','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260605-132515-e9adec9732b830f2a628d004.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('157','17','2026-06-05 19:25:43','2026-06-05 13:25:43','','growth booster cow','','inherit','closed','closed','','growth-booster-cow-2','','','2026-06-05 19:25:43','2026-06-05 13:25:43','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260605-132541-7828a2269fadb8578ed0973a.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('158','17','2026-06-05 19:26:18','2026-06-05 13:26:18','','growth booster cow','','inherit','closed','closed','','growth-booster-cow-3','','','2026-06-05 19:26:18','2026-06-05 13:26:18','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260605-132616-11da28055c0f5348e902f99c.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('159','17','2026-06-05 20:37:10','2026-06-05 14:37:10','','AI Product Category Image','','inherit','closed','closed','','ai-product-category-image','','','2026-06-05 20:37:10','2026-06-05 14:37:10','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260605-143708-1e45d29ddde4218d1655bee7.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('160','17','2026-06-05 20:38:16','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2026-06-05 20:38:16','0000-00-00 00:00:00','','0','https://hypergrowth.fishgrowth.xyz/?p=160','0','post','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('161','17','2026-06-05 20:44:59','0000-00-00 00:00:00','অফিসে সময় পরিচালনার সেরা কৌশলসমূহ: কাজের দক্ষতা বৃদ্ধির জন্য একটি নির্দেশিকা\n\nপরিচিতি  \nবর্তমান কর্মজীবনের নানা চাপে অফিসে সময় পরিচালনা একটি গুরুত্বপূর্ণ দক্ষতা হয়ে উঠেছে। সঠিকভাবে সময় ব্যবস্থাপনা না করলে কাজের মান ও উৎপাদনশীলতা দুটোই ক্ষতিগ্রস্ত হয়। এই ব্লগ পোস্টে আমরা অফিসে সময় পরিচালনার কার্যকর কৌশলসমূহ আলোচনা করব, যা আপনাকে আপনার কাজের চাপ কমাতে ও দক্ষতার সঙ্গে কাজ সম্পন্ন করতে সাহায্য করবে।\n\n১. সময় ব্যবস্থাপনা কেন গুরুত্বপূর্ণ?  \nসঠিক সময় ব্যবস্থাপনা কর্মজীবনে সময়ের অপচয় কমিয়ে কাজের মান উন্নত করে। এটি চাপ কমাতে এবং কাজের অগ্রাধিকার ঠিক রাখতে সহায়ক। ফলে, অফিসে সুস্থ ও পেশাদার পরিবেশ বজায় থাকে।\n\n২. কাজের পরিকল্পনা তৈরি করুন  \nপ্রতিদিন কিংবা প্রতি সপ্তাহের শুরুতে আপনার কাজের তালিকা তৈরি করুন। গুরুত্বপূর্ণ কাজগুলোকে অগ্রাধিকার ভিত্তিতে সাজান ও সময় নির্ধারণ করুন। এটি আপনাকে উৎসাহিত করবে এবং টাস্কগুলো সহজে সম্পন্ন করতে সাহায্য করবে।\n\n৩. সময় সীমা নির্ধারণ করুন  \nপ্রতিটি কাজের জন্য একটি সময়সীমা নির্ধারণ করুন। নিজেকে নির্দিষ্ট সময়ের মধ্যে কাজ শেষ করার চ্যালেঞ্জ দিন। সময়সীমা থাকলে ফোকাস বাড়ে ও কাজ দ্রুত শেষ হয়।\n\n৪. বিরতি নিন  \nদীর্ঘ সময় ধরে কাজ করা আপনার মনোযোগ কমিয়ে দেয়। প্রতি ৫০-৬০ মিনিট পর অন্তত ৫-১০ মিনিট বিরতি নিন। এতে মন স্থির থাকবে এবং ক্লান্তি কমবে।\n\n৫. প্রযুক্তির সহায়তা নিন  \nঅফিসে অনেক টাস্ক স্বয়ংক্রিয়ভাবে করার জন্য বিভিন্ন অ্য়াপ ও সফটওয়্যার রয়েছে। যেমন, ক্যালেন্ডার, টাস্ক ম্যানেজমেন্ট টুলস (Asana, Trello), টাইম ট্র্যাকিং সফটওয়্যার ইত্যাদি। এগুলো আপনার কাজ আরও সংগঠিত করতে সাহায্য করবে।\n\n৬. বিকশিত \'না\' বলার দক্ষতা  \nঅনাকাঙ্ক্ষিত ব্যস্ততা ও অতিরিক্ত কাজ পরিচালনার জন্য \'না\'','AI Generated Blog Post','','auto-draft','closed','closed','','','','','2026-06-05 20:44:59','2026-06-05 14:44:59','','0','https://hypergrowth.fishgrowth.xyz/?p=161','0','post','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('163','17','2026-06-05 20:46:03','2026-06-05 14:46:03','','AI Blog Image','','inherit','closed','closed','','ai-blog-image','','','2026-06-05 20:46:03','2026-06-05 14:46:03','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260605-144601-d32f4c4003ac5fd9e3967f3a.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('169','17','2026-06-05 20:54:19','2026-06-05 14:54:19','','সফলতার পথে সমকালীন পেশাদারদের জন্য প্রয়োজনীয় দক্ষতা ও কৌশলসমূহ','','inherit','closed','closed','','{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}e0{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}a6{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c534735051','','','2026-06-05 20:54:19','2026-06-05 14:54:19','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260605-145418-b2ecaf45578073409a16a1f1.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('172','17','2026-06-05 20:57:23','2026-06-05 14:57:23','','সফল ব্যবসা শুরু করার কার্যকর কৌশলসমূহ','','inherit','closed','closed','','{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}e0{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}a6{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c534735051','','','2026-06-05 20:57:23','2026-06-05 14:57:23','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260605-145721-c28724a49eb50fabfaeb513f.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('174','17','2026-06-05 21:02:26','2026-06-05 15:02:26','','test','','inherit','closed','closed','','test-2','','','2026-06-05 21:02:26','2026-06-05 15:02:26','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260605-150225-0481cc1f38827d63941b2104.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('175','17','2026-06-05 21:07:08','2026-06-05 15:07:08','','fashion','','inherit','closed','closed','','fashion','','','2026-06-05 21:07:34','2026-06-05 15:07:34','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260605-150706-117729d31be7cc770c848ac4.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('176','17','2026-06-06 06:08:56','2026-06-06 00:08:56','','fashion iamge make koro red color','','inherit','closed','closed','','fashion-iamge-make-koro-red-color','','','2026-06-06 06:08:56','2026-06-06 00:08:56','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260606-000853-c514dc0f34257359c0c008f7.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('177','17','2026-06-06 06:12:41','2026-06-06 00:12:41','','make food image','','inherit','closed','closed','','make-food-image','','','2026-06-06 06:12:41','2026-06-06 00:12:41','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260606-001240-0956846276db06481b8c029e.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('178','17','2026-06-06 06:14:32','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2026-06-06 06:14:32','0000-00-00 00:00:00','','0','https://hypergrowth.fishgrowth.xyz/?p=178','0','post','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('179','17','2026-06-06 06:14:49','0000-00-00 00:00:00','','AUTO-DRAFT','','auto-draft','closed','closed','','','','','2026-06-06 06:14:49','0000-00-00 00:00:00','','0','https://hypergrowth.fishgrowth.xyz/?post_type=product&p=179','0','product','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('181','17','2026-06-06 06:34:57','2026-06-06 00:34:57','','','','inherit','closed','closed','','181','','','2026-06-06 06:34:57','2026-06-06 00:34:57','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260606-003457-3a19948607f02d3da3579acd.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('182','17','2026-06-06 06:41:23','2026-06-06 00:41:23','','growth booster cow','','inherit','closed','closed','','growth-booster-cow-4','','','2026-06-06 06:41:23','2026-06-06 00:41:23','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260606-004123-7fe6b894e4f1fba2593241c4.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('183','17','2026-06-06 06:41:39','2026-06-06 00:41:39','','food','','inherit','closed','closed','','food','','','2026-06-06 06:41:39','2026-06-06 00:41:39','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260606-004138-4f8e733e113c9f167c059530.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('186','0','2026-06-06 08:41:41','2026-06-06 02:41:41','','','','draft','closed','closed','','','','','2026-06-06 08:41:41','2026-06-06 02:41:41','','0','https://hypergrowth.fishgrowth.xyz/?post_type=shop_order_placehold&p=186','0','shop_order_placehold','','1');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('187','0','2026-06-06 08:45:04','2026-06-06 02:45:04','','','','draft','closed','closed','','','','','2026-06-06 08:45:04','2026-06-06 02:45:04','','0','https://hypergrowth.fishgrowth.xyz/?post_type=shop_order_placehold&p=187','0','shop_order_placehold','','3');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('188','17','2026-06-06 11:49:43','2026-06-06 05:49:43','','woocommerce-placeholder','','inherit','closed','closed','','woocommerce-placeholder','','','2026-06-06 11:49:43','2026-06-06 05:49:43','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/woocommerce-placeholder.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('332','17','2020-12-04 17:20:19','2020-12-04 17:20:19','','homemade-tasty-beef-burger-FRT5PYB','','inherit','open','closed','','homemade-tasty-beef-burger-frt5pyb','','','2020-12-04 17:20:19','2020-12-04 17:20:19','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/homemade-tasty-beef-burger-FRT5PYB.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('360','17','2020-12-05 13:03:02','2020-12-05 13:03:02','.site-main-header-wrap {\n    background: var(--global-palette1);\n}','kadence','','publish','closed','closed','','kadence','','','2026-06-06 11:51:17','2026-06-06 05:51:17','','0','http://kits.themecy.com/food/2020/12/05/kadence/','0','custom_css','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('463','17','2020-12-06 20:39:17','2020-12-06 20:39:17','','top-view-of-burger-with-french-fries-on-copy-space-PEYG7F6','','inherit','open','closed','','top-view-of-burger-with-french-fries-on-copy-space-peyg7f6','','','2020-12-06 20:39:17','2020-12-06 20:39:17','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/top-view-of-burger-with-french-fries-on-copy-space-PEYG7F6.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('509','17','2020-11-28 12:07:26','2020-11-28 12:07:26','','Blog','','publish','closed','closed','','blog','','','2020-11-28 12:07:26','2020-11-28 12:07:26','','0','http://kits.themecy.com/food/?page_id=11','0','page','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('511','17','2020-11-28 12:06:46','2020-11-28 12:06:46','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Our Story</h6>		\n			<h2>The story about <br>our SHOP</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/—Pngtree—letter-t-shopping-logo-alphabet_6953022.png\" title=\"—Pngtree—letter t shopping logo alphabet_6953022\" alt=\"—Pngtree—letter t shopping logo alphabet_6953022\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n													<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-1.jpg\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<h5>William Smith\n</h5>		\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-3.jpg\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-1.jpg\" alt=\"\" />													\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<h5>Karen Goldsmith</h5>		\n													<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-4.jpg\" alt=\"\" />													\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<h5>Andrew Martinez\n</h5>		\n													<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-2.jpg\" alt=\"\" />													\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<h5>Matthew Anderson\n</h5>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};max-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};margin:0 auto}.elementor-image-gallery .gallery-item img{margin:0 auto}.elementor-image-gallery .gallery-item .gallery-caption{margin:0}.elementor-image-gallery figure img{display:block}.elementor-image-gallery figure figcaption{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.gallery-spacing-custom .elementor-image-gallery .gallery-icon{padding:0}@media (min-width:768px){.elementor-image-gallery .gallery-columns-2 .gallery-item{max-width:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-image-gallery .gallery-columns-4 .gallery-item{max-width:25{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-image-gallery .gallery-columns-5 .gallery-item{max-width:20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-image-gallery .gallery-columns-10 .gallery-item{max-width:10{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}}@media (min-width:480px) and (max-width:767px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}}@media (max-width:479px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}}</style>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"ChatGPT-Image-Jun-3-2026-02_28_33-PM\" data-e-action-hash=\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6MTc0MiwidXJsIjoiaHR0cDpcL1wvbG9jYWxob3N0XC9jdXN0b21fd29yZHByZXNzXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wNlwvQ2hhdEdQVC1JbWFnZS1KdW4tMy0yMDI2LTAyXzI4XzMzLVBNLmpwZyIsInNsaWRlc2hvdyI6IjllOGQxOGIifQ{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\'><img width=\"1254\" height=\"1254\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"ChatGPT-Image-Jun-3-2026-02_30_52-PM\" data-e-action-hash=\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6MTczOSwidXJsIjoiaHR0cDpcL1wvbG9jYWxob3N0XC9jdXN0b21fd29yZHByZXNzXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wNlwvQ2hhdEdQVC1JbWFnZS1KdW4tMy0yMDI2LTAyXzMwXzUyLVBNLmpwZyIsInNsaWRlc2hvdyI6IjllOGQxOGIifQ{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\'><img width=\"1254\" height=\"1254\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM-1\" data-e-action-hash=\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6MTczMSwidXJsIjoiaHR0cDpcL1wvbG9jYWxob3N0XC9jdXN0b21fd29yZHByZXNzXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wNlwvQ2hhdEdQVC1JbWFnZS1KdW4tMy0yMDI2LTAyXzI3XzM0LVBNLTEuanBnIiwic2xpZGVzaG93IjoiOWU4ZDE4YiJ9\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM-1.jpg\'><img width=\"1254\" height=\"1254\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"ChatGPT-Image-Jun-3-2026-02_30_59-PM\" data-e-action-hash=\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6MTczNSwidXJsIjoiaHR0cDpcL1wvbG9jYWxob3N0XC9jdXN0b21fd29yZHByZXNzXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wNlwvQ2hhdEdQVC1JbWFnZS1KdW4tMy0yMDI2LTAyXzMwXzU5LVBNLmpwZyIsInNsaWRlc2hvdyI6IjllOGQxOGIifQ{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\'><img width=\"1254\" height=\"1254\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','About Us','','publish','closed','closed','','about-us','','','2026-06-07 13:52:19','2026-06-07 07:52:19','','0','http://kits.themecy.com/food/?page_id=13','0','page','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('525','17','2020-12-08 13:44:06','2020-12-08 13:44:06','','logo_burg','','inherit','open','closed','','logo_burg','','','2020-12-08 13:44:06','2020-12-08 13:44:06','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/logo_burg.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('533','17','2020-12-08 13:51:31','2020-12-08 13:51:31','.site-main-header-wrap {\n    background: var(--global-palette1);\n}','kadence','','publish','closed','closed','','kadence-2','','','2020-12-08 13:51:31','2020-12-08 13:51:31','','0','https://startertemplatecloud.com/e09/2020/12/08/kadence-2/','0','custom_css','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('556','17','2020-12-08 15:09:50','2020-12-08 15:09:50','','paula-vermeulen-URjZkhqsuBk-unsplash','','inherit','open','closed','','paula-vermeulen-urjzkhqsubk-unsplash','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('557','17','2020-12-08 15:09:54','2020-12-08 15:09:54','','kelvin-theseira-AcA8moIiD3g-unsplash','','inherit','open','closed','','kelvin-theseira-aca8moiid3g-unsplash','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/kelvin-theseira-AcA8moIiD3g-unsplash.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('558','17','2020-12-08 15:09:59','2020-12-08 15:09:59','','louis-hansel-shotsoflouis-4FY6xU05qaQ-unsplash (1)','','inherit','open','closed','','louis-hansel-shotsoflouis-4fy6xu05qaq-unsplash-1','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/louis-hansel-shotsoflouis-4FY6xU05qaQ-unsplash-1.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('559','17','2020-12-08 15:10:04','2020-12-08 15:10:04','','terry-jaskiw-HSQdIUL3o1s-unsplash','','inherit','open','closed','','terry-jaskiw-hsqdiul3o1s-unsplash','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('560','17','2020-12-08 15:10:12','2020-12-08 15:10:12','','jakub-kapusnak-4f4YZfDMLeU-unsplash','','inherit','open','closed','','jakub-kapusnak-4f4yzfdmleu-unsplash','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('561','17','2020-12-08 15:10:14','2020-12-08 15:10:14','','nathan-dumlao-D4GjwNpXtV0-unsplash','','inherit','open','closed','','nathan-dumlao-d4gjwnpxtv0-unsplash','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/nathan-dumlao-D4GjwNpXtV0-unsplash.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('562','17','2020-12-08 15:10:17','2020-12-08 15:10:17','','pablo-merchan-montes-Orz90t6o0e4-unsplash','','inherit','open','closed','','pablo-merchan-montes-orz90t6o0e4-unsplash','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/pablo-merchan-montes-Orz90t6o0e4-unsplash.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('563','17','2020-12-08 15:10:20','2020-12-08 15:10:20','','wesual-click-y7s_Wby3woo-unsplash','','inherit','open','closed','','wesual-click-y7s_wby3woo-unsplash','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/wesual-click-y7s_Wby3woo-unsplash.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('634','17','2020-12-09 17:21:41','2020-12-09 17:21:41','','melissa-walker-horn-wcDru6t-aCg-unsplash','','inherit','open','closed','','melissa-walker-horn-wcdru6t-acg-unsplash','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/melissa-walker-horn-wcDru6t-aCg-unsplash.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('642','17','2020-12-09 17:27:32','2020-12-09 17:27:32','','joseph-gonzalez-H1Bd992dIpbI-unsplash copy','','inherit','open','closed','','joseph-gonzalez-h1bd992dipbi-unsplash-copy','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/joseph-gonzalez-H1Bd992dIpbI-unsplash-copy.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('677','17','2020-12-09 21:26:12','2020-12-09 21:26:12','','slice of pizza','slice of pizza isolated on white background, top view','inherit','open','closed','','slice-of-pizza','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/category-8.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('678','17','2020-12-09 21:26:13','2020-12-09 21:26:13','','slice of pizza','slice of pizza isolated on white background, top view','inherit','open','closed','','slice-of-pizza-2','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/category-7.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('679','17','2020-12-09 21:26:14','2020-12-09 21:26:14','','slice of pizza','slice of pizza isolated on white background, top view','inherit','open','closed','','slice-of-pizza-3','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/category-6.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('681','17','2020-12-09 21:26:15','2020-12-09 21:26:15','','slice of pizza','slice of pizza isolated on white background, top view','inherit','open','closed','','slice-of-pizza-5','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/category-4.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('682','17','2020-12-09 21:26:16','2020-12-09 21:26:16','','slice of pizza','slice of pizza isolated on white background, top view','inherit','open','closed','','slice-of-pizza-6','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/category-1.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('683','17','2020-12-09 21:26:17','2020-12-09 21:26:17','','slice of pizza','slice of pizza isolated on white background, top view','inherit','open','closed','','slice-of-pizza-7','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/category-2.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('684','17','2020-12-09 21:26:18','2020-12-09 21:26:18','','slice of pizza','slice of pizza isolated on white background, top view','inherit','open','closed','','slice-of-pizza-8','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/category-3.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('718','17','2020-12-09 23:06:08','2020-12-09 23:06:08','','pizza-2341377_1920','','inherit','open','closed','','pizza-2341377_1920','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','511','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/pizza-2341377_1920.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('721','17','2020-12-09 23:09:54','2020-12-09 23:09:54','','restaurant-690569_1920','','inherit','open','closed','','restaurant-690569_1920','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','511','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/restaurant-690569_1920.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('725','17','2020-12-09 23:15:13','2020-12-09 23:15:13','','cafe-789635_1920','','inherit','open','closed','','cafe-789635_1920','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','511','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/cafe-789635_1920.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('733','17','2020-12-09 23:21:58','2020-12-09 23:21:58','','bar-1869656_1920','','inherit','open','closed','','bar-1869656_1920','','','2026-06-06 11:51:11','2026-06-06 05:51:11','','14','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/bar-1869656_1920.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('735','17','2020-12-09 23:27:53','2020-12-09 23:27:53','','restaurant-691397_1920','','inherit','open','closed','','restaurant-691397_1920','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/restaurant-691397_1920.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('739','17','2020-12-09 23:30:53','2020-12-09 23:30:53','','pizza-3007395_1920','','inherit','open','closed','','pizza-3007395_1920','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/pizza-3007395_1920.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('849','17','2020-12-10 12:29:03','2020-12-10 12:29:03','','salad-2068220_1920','','inherit','open','closed','','salad-2068220_1920','','','2020-12-10 12:29:03','2020-12-10 12:29:03','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/salad-2068220_1920.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('851','17','2020-12-10 12:30:02','2020-12-10 12:30:02','','hamburger-2856548_1920','','inherit','open','closed','','hamburger-2856548_1920','','','2020-12-10 12:30:02','2020-12-10 12:30:02','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/hamburger-2856548_1920.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('852','17','2020-12-10 12:31:55','2020-12-10 12:31:55','','breakfast-690128_1920','','inherit','open','closed','','breakfast-690128_1920','','','2020-12-10 12:31:55','2020-12-10 12:31:55','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/breakfast-690128_1920.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('865','17','2020-12-10 14:03:15','2020-12-10 14:03:15','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"687\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/2wIeE.jpg\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Best Offer Today</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\" alt=\"\" />													\n			<h4>EVERY DAY<br> SPECIALS\n</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n													<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_09-PM.png\" alt=\"\" />													\n			<h4>PIZZERIA <br>RESERVATIONS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n													<img width=\"687\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/2wIeE.jpg\" alt=\"\" />													\n			<h4>WE DELIVER <br>AT YOUR DOOR</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n			<h6>Best style</h6>		\n			<h2>WE’VE GOT YOU COVERED!\n</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Services','','publish','closed','closed','','services','','','2026-06-07 13:53:52','2026-06-07 07:53:52','','0','https://startertemplatecloud.com/e09/?page_id=865','0','page','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('870','17','2020-12-10 14:23:30','2020-12-10 14:23:30','','food-1081707_1920','','inherit','open','closed','','food-1081707_1920','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','865','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/food-1081707_1920.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('875','17','2020-12-10 14:41:17','2020-12-10 14:41:17','','FoodIcons-[Converted]_03','','inherit','open','closed','','foodicons-converted_03','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','865','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/FoodIcons-Converted_03.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('876','17','2020-12-10 14:41:18','2020-12-10 14:41:18','','FoodIcons-[Converted]_05','','inherit','open','closed','','foodicons-converted_05','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','865','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/FoodIcons-Converted_05.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('877','17','2020-12-10 14:41:19','2020-12-10 14:41:19','','FoodIcons-[Converted]_10','','inherit','open','closed','','foodicons-converted_10','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','865','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/FoodIcons-Converted_10.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('878','17','2020-12-10 14:41:19','2020-12-10 14:41:19','','FoodIcons-[Converted]_13','','inherit','open','closed','','foodicons-converted_13','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','865','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/FoodIcons-Converted_13.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('907','17','2020-12-10 16:56:22','2020-12-10 16:56:22','','fast-background','','inherit','open','closed','','fast-background','','','2020-12-10 16:56:22','2020-12-10 16:56:22','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/fast-background.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('955','17','2020-12-10 19:14:41','2020-12-10 19:14:41','','product-13','','inherit','open','closed','','product-13','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/product-13.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('958','17','2020-12-10 19:21:59','2020-12-10 19:21:59','','product_9','','inherit','open','closed','','product_9','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/product_9.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('959','17','2020-12-10 19:22:03','2020-12-10 19:22:03','','product_10','','inherit','open','closed','','product_10','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/product_10.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('960','17','2020-12-10 19:22:10','2020-12-10 19:22:10','','product_11','','inherit','open','closed','','product_11','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/product_11.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('961','17','2020-12-10 19:22:13','2020-12-10 19:22:13','','product_12','','inherit','open','closed','','product_12','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/product_12.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('963','17','2020-12-10 19:25:29','2020-12-10 19:25:29','','product_1','','inherit','open','closed','','product_1','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/product_1.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('964','17','2020-12-10 19:25:33','2020-12-10 19:25:33','','product_3','','inherit','open','closed','','product_3','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/product_3.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('965','17','2020-12-10 19:25:39','2020-12-10 19:25:39','','product_4','','inherit','open','closed','','product_4','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/product_4.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('966','17','2020-12-10 19:25:42','2020-12-10 19:25:42','','product_5','','inherit','open','closed','','product_5','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/product_5.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('967','17','2020-12-10 19:25:45','2020-12-10 19:25:45','','product_6','','inherit','open','closed','','product_6','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/product_6.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('968','17','2020-12-10 19:25:50','2020-12-10 19:25:50','','product_7','','inherit','open','closed','','product_7','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/product_7.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1037','17','2020-12-10 23:26:37','2020-12-10 23:26:37','','fried-chicken-4977369_1920','','inherit','open','closed','','fried-chicken-4977369_1920','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/fried-chicken-4977369_1920.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1066','17','2020-12-11 12:50:24','2020-12-11 12:50:24','','pizza-in-take-out-box-isolated-T2DQ9YN','','inherit','open','closed','','pizza-in-take-out-box-isolated-t2dq9yn','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/pizza-in-take-out-box-isolated-T2DQ9YN.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1072','17','2020-12-11 13:49:06','2020-12-11 13:49:06','','app-store-black','','inherit','open','closed','','app-store-black','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/app-store-black.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1073','17','2020-12-11 13:49:08','2020-12-11 13:49:08','','google-play-black','','inherit','open','closed','','google-play-black','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/google-play-black.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1085','17','2020-12-11 14:41:06','2020-12-11 14:41:06','','pizzabox1','','inherit','open','closed','','pizzabox1','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/pizzabox1.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1112','17','2020-12-11 14:52:35','2020-12-11 14:52:35','','4-2346237347834','','inherit','open','closed','','4-2346237347834','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/4-2346237347834.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1125','17','2020-12-11 15:06:00','2020-12-11 15:06:00','','2','','inherit','open','closed','','2','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/2.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1134','17','2020-12-11 15:17:33','2020-12-11 15:17:33','','4','','inherit','open','closed','','4','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/4.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1136','17','2020-12-11 15:23:54','2020-12-11 15:23:54','','6','','inherit','open','closed','','6','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/6-e1607700582104.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1171','17','2020-12-11 15:58:55','2020-12-11 15:58:55','','555','','inherit','open','closed','','555','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/555.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1236','17','2020-12-11 17:55:14','2020-12-11 17:55:14','','transparent-img','','inherit','open','closed','','transparent-img','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','865','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/transparent-img.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1240','17','2020-12-11 18:13:58','2020-12-11 18:13:58','','olga-team-DijH3cxId6w-unsplash','','inherit','open','closed','','olga-team-dijh3cxid6w-unsplash','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','865','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/olga-team-DijH3cxId6w-unsplash.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1251','17','2020-12-11 19:21:08','2020-12-11 19:21:08','','about-us-img-1','','inherit','open','closed','','about-us-img-1','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','511','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/about-us-img-1.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1266','17','2020-12-12 12:46:43','2020-12-12 12:46:43','','tomato-2','','inherit','open','closed','','tomato-2','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/tomato-2.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1287','17','2020-12-12 13:12:08','2020-12-12 13:12:08','','4-2346237347834','','inherit','open','closed','','4-2346237347834-2','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/4-2346237347834.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1293','17','2020-12-12 13:19:01','2020-12-12 13:19:01','','food-2879395_1920','','inherit','open','closed','','food-2879395_1920','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/food-2879395_1920.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1303','17','2020-12-12 13:28:02','2020-12-12 13:28:02','','5-2346237347834','','inherit','open','closed','','5-2346237347834','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/5-2346237347834.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1401','17','2020-12-12 16:39:24','2020-12-12 16:39:24','','3563','','inherit','open','closed','','3563','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/3563.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1402','17','2020-12-12 16:39:25','2020-12-12 16:39:25','','6426','','inherit','open','closed','','6426','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/6426.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1403','17','2020-12-12 16:39:26','2020-12-12 16:39:26','','23525','','inherit','open','closed','','23525','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/23525.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1404','17','2020-12-12 16:39:27','2020-12-12 16:39:27','','3246264','','inherit','open','closed','','3246264','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/3246264.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1416','17','2020-12-12 16:56:00','2020-12-12 16:56:00','','signature5fd4f610696d4','','inherit','open','closed','','signature5fd4f610696d4','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','511','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/signature5fd4f610696d4-e1607792199782.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1419','17','2020-12-12 17:00:36','2020-12-12 17:00:36','','stefan-c-asafti-9p6pFEwq-wI-unsplash','','inherit','open','closed','','stefan-c-asafti-9p6pfewq-wi-unsplash','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','511','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/stefan-c-asafti-9p6pFEwq-wI-unsplash.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1420','17','2020-12-12 17:03:34','2020-12-12 17:03:34','','florencia-viadana-Uz1ZeMJ2lsI-unsplash','','inherit','open','closed','','florencia-viadana-uz1zemj2lsi-unsplash','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','511','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/florencia-viadana-Uz1ZeMJ2lsI-unsplash.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1429','17','2020-12-12 17:44:02','2020-12-12 17:44:02','','6956','','inherit','open','closed','','6956','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','511','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/6956.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1430','17','2020-12-12 17:44:05','2020-12-12 17:44:05','','8978','','inherit','open','closed','','8978','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','511','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/8978.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1431','17','2020-12-12 17:44:07','2020-12-12 17:44:07','','12341','','inherit','open','closed','','12341','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','511','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/12341.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1432','17','2020-12-12 17:44:09','2020-12-12 17:44:09','','36737','','inherit','open','closed','','36737','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','511','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/36737.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1433','17','2020-12-12 17:44:12','2020-12-12 17:44:12','','77525','','inherit','open','closed','','77525','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','511','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/77525.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1434','17','2020-12-12 17:44:14','2020-12-12 17:44:14','','234565','','inherit','open','closed','','234565','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','511','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/234565.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1435','17','2020-12-12 17:44:17','2020-12-12 17:44:17','','5975954','','inherit','open','closed','','5975954','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','511','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/5975954.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1437','17','2020-12-12 17:44:19','2020-12-12 17:44:19','','23511455','','inherit','open','closed','','23511455','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','511','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/23511455.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1439','17','2021-03-01 04:34:40','2021-03-01 04:34:40','','Pages','','publish','closed','closed','','pages','','','2021-03-01 04:34:40','2021-03-01 04:34:40','','0','https://startertemplatecloud.com/e09/2021/03/01/pages/','1','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1440','17','2021-03-01 04:34:40','2021-03-01 04:34:40','','Returns & Exchanges','','publish','closed','closed','','returns-exchanges','','','2021-03-01 04:34:40','2021-03-01 04:34:40','','0','https://startertemplatecloud.com/e09/2021/03/01/returns-exchanges/','1','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1472','17','2020-12-12 17:58:24','2020-12-12 17:58:24','','team-1','','inherit','open','closed','','team-1','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','511','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/team-1.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1473','17','2020-12-12 17:58:26','2020-12-12 17:58:26','','team-2','','inherit','open','closed','','team-2','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','511','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/team-2.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1475','17','2020-12-12 17:58:28','2020-12-12 17:58:28','','team-4','','inherit','open','closed','','team-4','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','511','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/team-4.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1515','17','2020-12-12 18:36:26','2020-12-12 18:36:26','','hamburger-5630646_e1920 copy','','inherit','open','closed','','hamburger-5630646_e1920-copy','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/hamburger-5630646_e1920-copy.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1531','17','2020-12-12 19:02:54','2020-12-12 19:02:54','','burger-2559087_192e0','','inherit','open','closed','','burger-2559087_192e0','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2020/12/burger-2559087_192e0.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1546','17','2021-01-04 12:46:20','2021-01-04 12:46:20','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder-2-2','','','2021-01-04 12:46:20','2021-01-04 12:46:20','','0','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2021/01/woocommerce-placeholder.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1547','17','2020-12-08 10:55:39','2020-12-08 10:55:39','','Menu','','publish','closed','closed','','menu','','','2020-12-08 10:55:39','2020-12-08 10:55:39','','0','https://startertemplatecloud.com/e09/shop/','0','page','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1548','17','2021-03-01 04:34:45','2021-03-01 04:34:45','','Customer Service','','publish','closed','closed','','customer-service','','','2021-03-01 04:34:45','2021-03-01 04:34:45','','0','https://startertemplatecloud.com/e09/2021/03/01/customer-service/','2','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1549','17','2021-03-01 04:34:45','2021-03-01 04:34:45','','FAQ','','publish','closed','closed','','faq','','','2021-03-01 04:34:45','2021-03-01 04:34:45','','0','https://startertemplatecloud.com/e09/2021/03/01/faq/','6','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1550','17','2021-03-01 04:34:45','2021-03-01 04:34:45','','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2021-03-01 04:34:45','2021-03-01 04:34:45','','0','https://startertemplatecloud.com/e09/2021/03/01/privacy-policy/','3','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1551','17','2021-03-01 04:34:45','2021-03-01 04:34:45','','Terms of Use','','publish','closed','closed','','terms-of-use','','','2021-03-01 04:34:45','2021-03-01 04:34:45','','0','https://startertemplatecloud.com/e09/2021/03/01/terms-of-use/','4','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1562','17','2021-03-01 04:34:46','2021-03-01 04:34:46',' ','','','publish','closed','closed','','1562','','','2021-03-01 04:34:46','2021-03-01 04:34:46','','0','https://startertemplatecloud.com/e09/2021/03/01/1562/','1','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1563','17','2021-03-01 04:34:46','2021-03-01 04:34:46',' ','','','publish','closed','closed','','1563','','','2021-03-01 04:34:46','2021-03-01 04:34:46','','0','https://startertemplatecloud.com/e09/2021/03/01/1563/','7','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1564','17','2021-03-01 04:34:46','2021-03-01 04:34:46',' ','','','publish','closed','closed','','1564','','','2021-03-01 04:34:46','2021-03-01 04:34:46','','0','https://startertemplatecloud.com/e09/2021/03/01/1564/','3','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1567','17','2021-03-01 04:35:29','2021-03-01 04:35:29','','Default Kit','','publish','closed','closed','','default-kit-3','','','2021-03-01 04:35:29','2021-03-01 04:35:29','','0','https://startertemplatecloud.com/e09/?elementor_library=default-kit-3','0','elementor_library','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1654','17','2021-03-03 18:34:09','2021-03-03 18:34:09','','slice of pizza','slice of pizza isolated on white background, top view','inherit','open','closed','','slice-of-pizza-4','','','2026-06-06 11:51:12','2026-06-06 05:51:12','','15','https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/2021/03/category-5.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1679','17','2021-03-03 18:48:11','2021-03-03 18:48:11',' ','','','publish','closed','closed','','1679','','','2021-03-03 18:48:11','2021-03-03 18:48:11','','0','https://startertemplatecloud.com/e09/?p=1679','1','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1680','17','2021-03-03 18:48:11','2021-03-03 18:48:11',' ','','','publish','closed','closed','','1680','','','2021-03-03 18:48:11','2021-03-03 18:48:11','','0','https://startertemplatecloud.com/e09/?p=1680','10','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1681','17','2021-03-03 18:48:11','2021-03-03 18:48:11',' ','','','publish','closed','closed','','1681','','','2021-03-03 18:48:11','2021-03-03 18:48:11','','0','https://startertemplatecloud.com/e09/?p=1681','8','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1682','17','2021-03-03 18:48:11','2021-03-03 18:48:11',' ','','','publish','closed','closed','','1682','','','2021-03-03 18:48:11','2021-03-03 18:48:11','','0','https://startertemplatecloud.com/e09/?p=1682','11','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1684','17','2021-03-03 18:48:11','2021-03-03 18:48:11',' ','','','publish','closed','closed','','1684','','','2021-03-03 18:48:11','2021-03-03 18:48:11','','0','https://startertemplatecloud.com/e09/?p=1684','2','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1687','17','2021-03-03 18:48:11','2021-03-03 18:48:11',' ','','','publish','closed','closed','','1687','','','2021-03-03 18:48:11','2021-03-03 18:48:11','','0','https://startertemplatecloud.com/e09/?p=1687','7','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1689','17','2021-03-03 18:48:11','2021-03-03 18:48:11','','Pages','','publish','closed','closed','','pages-2','','','2021-03-03 18:48:11','2021-03-03 18:48:11','','0','https://startertemplatecloud.com/e09/?p=1689','5','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1690','17','2020-11-28 12:06:23','2020-11-28 12:06:23','<h6>Are you hungry?</h6>		\n			<h1>DELIVERY \nDRIVE-THRU \nPICKUP</h1>		\n			<a href=\"#\" role=\"button\">\n						Go to Menu\n					</a>\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-4-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-4.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-4-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-4-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Burger</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-7-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-7.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-7-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-7-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Pizza​</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-1-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-1.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-1-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-1-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Combo</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-6-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-6.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-6-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-6-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Chicken</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2021/03/category-5-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2021/03/category-5.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2021/03/category-5-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2021/03/category-5-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Kids Menu</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-8-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-8.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-8-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-8-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Dessert</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-2-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-2.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-2-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-2-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Sauce</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-3-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-3.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-3-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-3-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Drinks</a></h5>		\n			<h4><a href=\"http://@\">Meet, Eat & Enjoy the <br>true Taste</a></h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n										<img width=\"1024\" height=\"771\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2-1024x771.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2-1024x771.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2-300x226.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2-768x578.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2-600x452.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2.jpg 1394w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h6>About Our Food\n</h6>		\n			<h2>From Texas with American Love</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick & Healthy<br> Dinner</h2>		\n			<a href=\"#\" role=\"button\">\n						full menu\n					</a>\n				0\n							Ingredients\n				0\n				+\n							Clients Daily\n				0\n				+\n							Years of Experience\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n							Fresh & Tasty\n			<h6>Tasty & fresh</h6>		\n			<h2>Main Dishes</h2>		\n			<h5>Breakfast Mood ..... $29.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>Drinking Prospect  ..... $9.45</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>Pizza Time  ..... $12.45</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>Grilled Chicken ..... $19.45</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n										<img width=\"1000\" height=\"586\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/burger-2559087_192e0.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/burger-2559087_192e0.png 1000w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/burger-2559087_192e0-300x176.png 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/burger-2559087_192e0-768x450.png 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/burger-2559087_192e0-600x352.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n			<h6>Tasty & crunchy</h6>		\n			<h2>Recommended today</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/product_9-p3k7pnbpx8llvu3qcb7f2jbgija0cchuxgnw8bpsg0.jpg\" title=\"product_9\" alt=\"product_9\" />											\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/product_1-p3k7pq58hqpgunzmvufas0luaow3zft1xumco5llxc.jpg\" title=\"product_1\" alt=\"product_1\" />											\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/product_4-p3k7ps0wves1hvwwkv8jx04rhgmueu0im3xbmpitkw.jpg\" title=\"product_4\" alt=\"product_4\" />											\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/product-13-p3k7pmdvqekbk853hsssi1jzx5en4ne4lc0er1r6m8.jpg\" title=\"product-13\" alt=\"product-13\" />											\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/product_6-p3k7ptwl92um53u69w1t1znoo8dku87zad8al9g18g.jpg\" title=\"product_6\" alt=\"product_6\" />											\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/product_12-p3k7pp7eawo6j2101c0o7iudpb0qrqpblpyv6vn03k.jpg\" title=\"product_12\" alt=\"product_12\" />											\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2>Order Your <br>Favorite Food</h2>		\n			<h5>$9.50</h5>		\n			<h2>Each</h2>		\n					<ul>\n							<li>\n										Chicken Caesar\n									</li>\n								<li>\n										Super Supreme\n									</li>\n								<li>\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Order now\n					</a>\n			<h6>Testimonials</h6>		\n			<h2>Customer Reviews</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3246264.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3246264.jpg 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3246264-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3246264-100x100.jpg 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" />						\n														Randall McKnight\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6426.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6426.jpg 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6426-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6426-100x100.jpg 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" />						\n														Pamela Stover\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23525.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23525.jpg 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23525-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23525-100x100.jpg 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" />						\n														Regina Good\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3563.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3563.jpg 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3563-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3563-100x100.jpg 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" />						\n														Roberta Taylor\n			<h6>Free Delivery</h6>		\n			<h2>Download Our App &<br> Order Online To Get <br>Free Delivery</h2>		\n		<p>We are the country\'s no.1 Fast food retailer with 10+ years of reputation. Country\'s best burger and pizza are delivered by us.</p>		\n											<a href=\"#\">\n							<img width=\"194\" height=\"58\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/google-play-black.png\" alt=\"\" loading=\"lazy\" />								</a>\n											<a href=\"#\">\n							<img width=\"172\" height=\"57\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/app-store-black.png\" alt=\"\" loading=\"lazy\" />								</a>\n										<img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/img-11-min.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/img-11-min.png 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/img-11-min-150x150.png 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/img-11-min-100x100.png 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n			<h5>BOOK YOUR TABLE NOW FOR THE BEST CHOW\n</h5>		\n			<a href=\"#\" role=\"button\">\n						Download App\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2020-11-28 12:06:23','2020-11-28 12:06:23','','15','https://hypergrowth.fishgrowth.xyz/?p=1690','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1692','17','2020-11-28 12:06:46','2020-11-28 12:06:46','<h6>Our Story</h6>		\n			<h2>The story about <br>our pizzeria</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.</p>		\n			<h5>Welcome To Our Restaurant\n</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.</p>		\n										<img width=\"800\" height=\"533\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/stefan-c-asafti-9p6pFEwq-wI-unsplash.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/stefan-c-asafti-9p6pFEwq-wI-unsplash.jpg 800w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/stefan-c-asafti-9p6pFEwq-wI-unsplash-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/stefan-c-asafti-9p6pFEwq-wI-unsplash-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/stefan-c-asafti-9p6pFEwq-wI-unsplash-600x400.jpg 600w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h5>Our family history</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum.</p>		\n			<h5>Founded in 1973</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum.</p>		\n										<img width=\"228\" height=\"71\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/signature5fd4f610696d4-e1607792199782.png\" alt=\"\" loading=\"lazy\" />											\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/florencia-viadana-Uz1ZeMJ2lsI-unsplash-p3k7qekwk0j09lux4xasf9qetnqkzdyzh6td17ke8w.jpg\" title=\"florencia-viadana-Uz1ZeMJ2lsI-unsplash\" alt=\"florencia-viadana-Uz1ZeMJ2lsI-unsplash\" />											\n				0\n							Ingredients\n				0\n				+\n							Clients Daily\n				0\n				+\n							Years of Experience\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n							Fresh & Tasty\n			<h6>learn More</h6>		\n			<h2>Our Great Crew\n</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.		\n										<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-1.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-1-245x300.jpg 245w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h5>William Smith\n</h5>		\n			<h6>Chef</h6>		\n										<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-3.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-3.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-3-245x300.jpg 245w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h5>Karen Goldsmith</h5>		\n			<h6>Cook</h6>		\n										<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-4.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-4-245x300.jpg 245w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h5>Andrew Martinez\n</h5>		\n			<h6>Cook</h6>		\n										<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-2.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-2-245x300.jpg 245w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h5>Matthew Anderson\n</h5>		\n			<h6>Cook</h6>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"77525\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"234565\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"23511455\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"5975954\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"114896d\" data-elementor-lightbox-title=\"6956\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"114896d\" data-elementor-lightbox-title=\"8978\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"114896d\" data-elementor-lightbox-title=\"12341\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"114896d\" data-elementor-lightbox-title=\"36737\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure>','About Us','','inherit','closed','closed','','511-revision-v1','','','2020-11-28 12:06:46','2020-11-28 12:06:46','','511','https://hypergrowth.fishgrowth.xyz/?p=1692','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1698','17','2020-12-10 14:03:15','2020-12-10 14:03:15','<img width=\"1024\" height=\"785\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/olga-team-DijH3cxId6w-unsplash-1024x785.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/olga-team-DijH3cxId6w-unsplash-1024x785.png 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/olga-team-DijH3cxId6w-unsplash-300x230.png 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/olga-team-DijH3cxId6w-unsplash-768x589.png 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/olga-team-DijH3cxId6w-unsplash-600x460.png 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/olga-team-DijH3cxId6w-unsplash.png 1335w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Best Offer Today</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n					<ul>\n							<li>\n										Fresh 100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} meat\n									</li>\n								<li>\n										Fresh 100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} meat\n									</li>\n								<li>\n										Organic vegetables\n									</li>\n								<li>\n										Organic vegetables\n									</li>\n								<li>\n										Brand new taste!\n									</li>\n								<li>\n										Brand new taste!\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n										<img width=\"1024\" height=\"682\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash-1024x682.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash-600x400.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash.jpg 1400w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>EVERY DAY<br> SPECIALS\n</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n										<img width=\"1024\" height=\"682\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash-1024x682.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash-768x511.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash-600x399.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash.jpg 1400w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>PIZZERIA <br>RESERVATIONS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n										<img width=\"1024\" height=\"682\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash-1024x682.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash-600x400.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash.jpg 1400w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>WE DELIVER <br>AT YOUR DOOR</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n			<h2>The best burgers you will ever find !\n</h2>		\n			<a href=\"#\" role=\"button\">\n						Go to Menu\n					</a>\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\n			<h6>Best Menu</h6>		\n			<h2>WE’VE GOT YOU COVERED!\n</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<figure><img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_05.png 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_05-150x150.png 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_05-100x100.png 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" /></figure><h5>FAST DELIVERY</h5><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_10.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_10.png 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_10-150x150.png 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_10-100x100.png 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" /></figure><h5>PICKUP IN STORE</h5><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_03.png 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_03-150x150.png 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_03-100x100.png 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" /></figure><h5>SEAT RESERVATION</h5><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_13.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_13.png 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_13-150x150.png 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_13-100x100.png 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" /></figure><h5>CATERING IS AN OPTION</h5><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>BOOK YOUR TABLE NOW FOR THE BEST CHOW\n</h5>		\n			<a href=\"#\" role=\"button\">\n						Download App\n					</a>','Services','','inherit','closed','closed','','865-revision-v1','','','2020-12-10 14:03:15','2020-12-10 14:03:15','','865','https://hypergrowth.fishgrowth.xyz/?p=1698','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1703','17','2026-06-06 11:51:17','2026-06-06 05:51:17','.site-main-header-wrap {\n    background: var(--global-palette1);\n}','kadence','','inherit','closed','closed','','360-revision-v1','','','2026-06-06 11:51:17','2026-06-06 05:51:17','','360','https://hypergrowth.fishgrowth.xyz/?p=1703','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1704','17','2026-06-06 13:16:09','0000-00-00 00:00:00','{\"kadence::header_mobile_switch\":{\"value\":{\"size\":1634,\"unit\":\"px\"},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-06 07:16:09\"},\"kadence::content_width\":{\"value\":{\"size\":1223,\"unit\":\"px\"},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-06 07:16:09\"}}','','','auto-draft','closed','closed','','bf3f2984-627a-4b3a-8900-f93209b84fc2','','','2026-06-06 13:16:09','0000-00-00 00:00:00','','0','https://hypergrowth.fishgrowth.xyz/?p=1704','0','customize_changeset','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1705','17','2026-06-06 13:17:36','0000-00-00 00:00:00','{\"kadence::logo_layout\":{\"value\":{\"include\":{\"mobile\":\"\",\"tablet\":\"\",\"desktop\":\"logo_only\"},\"layout\":{\"mobile\":\"\",\"tablet\":\"\",\"desktop\":\"standard\"},\"flag\":false},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-06 07:17:36\"},\"kadence::header_mobile_switch\":{\"value\":{\"size\":3384,\"unit\":\"px\"},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-06 07:17:36\"},\"kadence::buttons_outline_border_radius\":{\"value\":{\"size\":{\"mobile\":\"\",\"tablet\":\"\",\"desktop\":54},\"unit\":{\"mobile\":\"px\",\"tablet\":\"px\",\"desktop\":\"px\"},\"flag\":true},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-06 07:17:36\"},\"kadence_global_palette\":{\"value\":\"{\\\"palette\\\":[{\\\"color\\\":\\\"#0c467d\\\",\\\"slug\\\":\\\"palette1\\\",\\\"name\\\":\\\"Palette Color 1\\\"},{\\\"color\\\":\\\"#003174\\\",\\\"slug\\\":\\\"palette2\\\",\\\"name\\\":\\\"Palette Color 2\\\"},{\\\"color\\\":\\\"#ffffff\\\",\\\"slug\\\":\\\"palette3\\\",\\\"name\\\":\\\"Palette Color 3\\\"},{\\\"color\\\":\\\"#f7fafc\\\",\\\"slug\\\":\\\"palette4\\\",\\\"name\\\":\\\"Palette Color 4\\\"},{\\\"color\\\":\\\"#edf2f7\\\",\\\"slug\\\":\\\"palette5\\\",\\\"name\\\":\\\"Palette Color 5\\\"},{\\\"color\\\":\\\"#cbd2d9\\\",\\\"slug\\\":\\\"palette6\\\",\\\"name\\\":\\\"Palette Color 6\\\"},{\\\"color\\\":\\\"#2d3748\\\",\\\"slug\\\":\\\"palette7\\\",\\\"name\\\":\\\"Palette Color 7\\\"},{\\\"color\\\":\\\"#252c39\\\",\\\"slug\\\":\\\"palette8\\\",\\\"name\\\":\\\"Palette Color 8\\\"},{\\\"color\\\":\\\"#1a202c\\\",\\\"slug\\\":\\\"palette9\\\",\\\"name\\\":\\\"Palette Color 9\\\"},{\\\"color\\\":\\\"#FfFfFf\\\",\\\"slug\\\":\\\"palette10\\\",\\\"name\\\":\\\"Palette Color Complement\\\"},{\\\"color\\\":\\\"#13612e\\\",\\\"slug\\\":\\\"palette11\\\",\\\"name\\\":\\\"Palette Color Success\\\"},{\\\"color\\\":\\\"#1159af\\\",\\\"slug\\\":\\\"palette12\\\",\\\"name\\\":\\\"Palette Color Info\\\"},{\\\"color\\\":\\\"#b82105\\\",\\\"slug\\\":\\\"palette13\\\",\\\"name\\\":\\\"Palette Color Alert\\\"},{\\\"color\\\":\\\"#f7630c\\\",\\\"slug\\\":\\\"palette14\\\",\\\"name\\\":\\\"Palette Color Warning\\\"},{\\\"color\\\":\\\"#f5a524\\\",\\\"slug\\\":\\\"palette15\\\",\\\"name\\\":\\\"Palette Color Rating\\\"}],\\\"second-palette\\\":[{\\\"color\\\":\\\"#3182CE\\\",\\\"slug\\\":\\\"palette1\\\",\\\"name\\\":\\\"Palette Color 1\\\"},{\\\"color\\\":\\\"#2B6CB0\\\",\\\"slug\\\":\\\"palette2\\\",\\\"name\\\":\\\"Palette Color 2\\\"},{\\\"color\\\":\\\"#1A202C\\\",\\\"slug\\\":\\\"palette3\\\",\\\"name\\\":\\\"Palette Color 3\\\"},{\\\"color\\\":\\\"#2D3748\\\",\\\"slug\\\":\\\"palette4\\\",\\\"name\\\":\\\"Palette Color 4\\\"},{\\\"color\\\":\\\"#4A5568\\\",\\\"slug\\\":\\\"palette5\\\",\\\"name\\\":\\\"Palette Color 5\\\"},{\\\"color\\\":\\\"#718096\\\",\\\"slug\\\":\\\"palette6\\\",\\\"name\\\":\\\"Palette Color 6\\\"},{\\\"color\\\":\\\"#EDF2F7\\\",\\\"slug\\\":\\\"palette7\\\",\\\"name\\\":\\\"Palette Color 7\\\"},{\\\"color\\\":\\\"#F7FAFC\\\",\\\"slug\\\":\\\"palette8\\\",\\\"name\\\":\\\"Palette Color 8\\\"},{\\\"color\\\":\\\"#ffffff\\\",\\\"slug\\\":\\\"palette9\\\",\\\"name\\\":\\\"Palette Color 9\\\"},{\\\"color\\\":\\\"#FfFfFf\\\",\\\"slug\\\":\\\"palette10\\\",\\\"name\\\":\\\"Palette Color Complement\\\"},{\\\"color\\\":\\\"#13612e\\\",\\\"slug\\\":\\\"palette11\\\",\\\"name\\\":\\\"Palette Color Success\\\"},{\\\"color\\\":\\\"#1159af\\\",\\\"slug\\\":\\\"palette12\\\",\\\"name\\\":\\\"Palette Color Info\\\"},{\\\"color\\\":\\\"#b82105\\\",\\\"slug\\\":\\\"palette13\\\",\\\"name\\\":\\\"Palette Color Alert\\\"},{\\\"color\\\":\\\"#f7630c\\\",\\\"slug\\\":\\\"palette14\\\",\\\"name\\\":\\\"Palette Color Warning\\\"},{\\\"color\\\":\\\"#f5a524\\\",\\\"slug\\\":\\\"palette15\\\",\\\"name\\\":\\\"Palette Color Rating\\\"}],\\\"third-palette\\\":[{\\\"color\\\":\\\"#3182CE\\\",\\\"slug\\\":\\\"palette1\\\",\\\"name\\\":\\\"Palette Color 1\\\"},{\\\"color\\\":\\\"#2B6CB0\\\",\\\"slug\\\":\\\"palette2\\\",\\\"name\\\":\\\"Palette Color 2\\\"},{\\\"color\\\":\\\"#1A202C\\\",\\\"slug\\\":\\\"palette3\\\",\\\"name\\\":\\\"Palette Color 3\\\"},{\\\"color\\\":\\\"#2D3748\\\",\\\"slug\\\":\\\"palette4\\\",\\\"name\\\":\\\"Palette Color 4\\\"},{\\\"color\\\":\\\"#4A5568\\\",\\\"slug\\\":\\\"palette5\\\",\\\"name\\\":\\\"Palette Color 5\\\"},{\\\"color\\\":\\\"#718096\\\",\\\"slug\\\":\\\"palette6\\\",\\\"name\\\":\\\"Palette Color 6\\\"},{\\\"color\\\":\\\"#EDF2F7\\\",\\\"slug\\\":\\\"palette7\\\",\\\"name\\\":\\\"Palette Color 7\\\"},{\\\"color\\\":\\\"#F7FAFC\\\",\\\"slug\\\":\\\"palette8\\\",\\\"name\\\":\\\"Palette Color 8\\\"},{\\\"color\\\":\\\"#ffffff\\\",\\\"slug\\\":\\\"palette9\\\",\\\"name\\\":\\\"Palette Color 9\\\"},{\\\"color\\\":\\\"#FfFfFf\\\",\\\"slug\\\":\\\"palette10\\\",\\\"name\\\":\\\"Palette Color Complement\\\"},{\\\"color\\\":\\\"#13612e\\\",\\\"slug\\\":\\\"palette11\\\",\\\"name\\\":\\\"Palette Color Success\\\"},{\\\"color\\\":\\\"#1159af\\\",\\\"slug\\\":\\\"palette12\\\",\\\"name\\\":\\\"Palette Color Info\\\"},{\\\"color\\\":\\\"#b82105\\\",\\\"slug\\\":\\\"palette13\\\",\\\"name\\\":\\\"Palette Color Alert\\\"},{\\\"color\\\":\\\"#f7630c\\\",\\\"slug\\\":\\\"palette14\\\",\\\"name\\\":\\\"Palette Color Warning\\\"},{\\\"color\\\":\\\"#f5a524\\\",\\\"slug\\\":\\\"palette15\\\",\\\"name\\\":\\\"Palette Color Rating\\\"}],\\\"active\\\":\\\"palette\\\"}\",\"type\":\"option\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-06 07:17:36\"}}','','','auto-draft','closed','closed','','bf280593-967b-42f7-bd5c-80cd0ebc90d7','','','2026-06-06 13:17:36','0000-00-00 00:00:00','','0','https://hypergrowth.fishgrowth.xyz/?p=1705','0','customize_changeset','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1706','17','2026-06-06 13:19:49','2026-06-06 07:19:49','{\"kadence::content_width\":{\"value\":{\"size\":2000,\"unit\":\"px\"},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-06 07:19:37\"},\"kadence_global_palette\":{\"value\":\"{\\\"palette\\\":[{\\\"color\\\":\\\"#0d3f78\\\",\\\"slug\\\":\\\"palette1\\\",\\\"name\\\":\\\"Palette Color 1\\\"},{\\\"color\\\":\\\"#003174\\\",\\\"slug\\\":\\\"palette2\\\",\\\"name\\\":\\\"Palette Color 2\\\"},{\\\"color\\\":\\\"#ffffff\\\",\\\"slug\\\":\\\"palette3\\\",\\\"name\\\":\\\"Palette Color 3\\\"},{\\\"color\\\":\\\"#f7fafc\\\",\\\"slug\\\":\\\"palette4\\\",\\\"name\\\":\\\"Palette Color 4\\\"},{\\\"color\\\":\\\"#edf2f7\\\",\\\"slug\\\":\\\"palette5\\\",\\\"name\\\":\\\"Palette Color 5\\\"},{\\\"color\\\":\\\"#cbd2d9\\\",\\\"slug\\\":\\\"palette6\\\",\\\"name\\\":\\\"Palette Color 6\\\"},{\\\"color\\\":\\\"#2d3748\\\",\\\"slug\\\":\\\"palette7\\\",\\\"name\\\":\\\"Palette Color 7\\\"},{\\\"color\\\":\\\"#252c39\\\",\\\"slug\\\":\\\"palette8\\\",\\\"name\\\":\\\"Palette Color 8\\\"},{\\\"color\\\":\\\"#1a202c\\\",\\\"slug\\\":\\\"palette9\\\",\\\"name\\\":\\\"Palette Color 9\\\"},{\\\"color\\\":\\\"#FfFfFf\\\",\\\"slug\\\":\\\"palette10\\\",\\\"name\\\":\\\"Palette Color Complement\\\"},{\\\"color\\\":\\\"#13612e\\\",\\\"slug\\\":\\\"palette11\\\",\\\"name\\\":\\\"Palette Color Success\\\"},{\\\"color\\\":\\\"#1159af\\\",\\\"slug\\\":\\\"palette12\\\",\\\"name\\\":\\\"Palette Color Info\\\"},{\\\"color\\\":\\\"#b82105\\\",\\\"slug\\\":\\\"palette13\\\",\\\"name\\\":\\\"Palette Color Alert\\\"},{\\\"color\\\":\\\"#f7630c\\\",\\\"slug\\\":\\\"palette14\\\",\\\"name\\\":\\\"Palette Color Warning\\\"},{\\\"color\\\":\\\"#f5a524\\\",\\\"slug\\\":\\\"palette15\\\",\\\"name\\\":\\\"Palette Color Rating\\\"}],\\\"second-palette\\\":[{\\\"color\\\":\\\"#3182CE\\\",\\\"slug\\\":\\\"palette1\\\",\\\"name\\\":\\\"Palette Color 1\\\"},{\\\"color\\\":\\\"#2B6CB0\\\",\\\"slug\\\":\\\"palette2\\\",\\\"name\\\":\\\"Palette Color 2\\\"},{\\\"color\\\":\\\"#1A202C\\\",\\\"slug\\\":\\\"palette3\\\",\\\"name\\\":\\\"Palette Color 3\\\"},{\\\"color\\\":\\\"#2D3748\\\",\\\"slug\\\":\\\"palette4\\\",\\\"name\\\":\\\"Palette Color 4\\\"},{\\\"color\\\":\\\"#4A5568\\\",\\\"slug\\\":\\\"palette5\\\",\\\"name\\\":\\\"Palette Color 5\\\"},{\\\"color\\\":\\\"#718096\\\",\\\"slug\\\":\\\"palette6\\\",\\\"name\\\":\\\"Palette Color 6\\\"},{\\\"color\\\":\\\"#EDF2F7\\\",\\\"slug\\\":\\\"palette7\\\",\\\"name\\\":\\\"Palette Color 7\\\"},{\\\"color\\\":\\\"#F7FAFC\\\",\\\"slug\\\":\\\"palette8\\\",\\\"name\\\":\\\"Palette Color 8\\\"},{\\\"color\\\":\\\"#ffffff\\\",\\\"slug\\\":\\\"palette9\\\",\\\"name\\\":\\\"Palette Color 9\\\"},{\\\"color\\\":\\\"#FfFfFf\\\",\\\"slug\\\":\\\"palette10\\\",\\\"name\\\":\\\"Palette Color Complement\\\"},{\\\"color\\\":\\\"#13612e\\\",\\\"slug\\\":\\\"palette11\\\",\\\"name\\\":\\\"Palette Color Success\\\"},{\\\"color\\\":\\\"#1159af\\\",\\\"slug\\\":\\\"palette12\\\",\\\"name\\\":\\\"Palette Color Info\\\"},{\\\"color\\\":\\\"#b82105\\\",\\\"slug\\\":\\\"palette13\\\",\\\"name\\\":\\\"Palette Color Alert\\\"},{\\\"color\\\":\\\"#f7630c\\\",\\\"slug\\\":\\\"palette14\\\",\\\"name\\\":\\\"Palette Color Warning\\\"},{\\\"color\\\":\\\"#f5a524\\\",\\\"slug\\\":\\\"palette15\\\",\\\"name\\\":\\\"Palette Color Rating\\\"}],\\\"third-palette\\\":[{\\\"color\\\":\\\"#3182CE\\\",\\\"slug\\\":\\\"palette1\\\",\\\"name\\\":\\\"Palette Color 1\\\"},{\\\"color\\\":\\\"#2B6CB0\\\",\\\"slug\\\":\\\"palette2\\\",\\\"name\\\":\\\"Palette Color 2\\\"},{\\\"color\\\":\\\"#1A202C\\\",\\\"slug\\\":\\\"palette3\\\",\\\"name\\\":\\\"Palette Color 3\\\"},{\\\"color\\\":\\\"#2D3748\\\",\\\"slug\\\":\\\"palette4\\\",\\\"name\\\":\\\"Palette Color 4\\\"},{\\\"color\\\":\\\"#4A5568\\\",\\\"slug\\\":\\\"palette5\\\",\\\"name\\\":\\\"Palette Color 5\\\"},{\\\"color\\\":\\\"#718096\\\",\\\"slug\\\":\\\"palette6\\\",\\\"name\\\":\\\"Palette Color 6\\\"},{\\\"color\\\":\\\"#EDF2F7\\\",\\\"slug\\\":\\\"palette7\\\",\\\"name\\\":\\\"Palette Color 7\\\"},{\\\"color\\\":\\\"#F7FAFC\\\",\\\"slug\\\":\\\"palette8\\\",\\\"name\\\":\\\"Palette Color 8\\\"},{\\\"color\\\":\\\"#ffffff\\\",\\\"slug\\\":\\\"palette9\\\",\\\"name\\\":\\\"Palette Color 9\\\"},{\\\"color\\\":\\\"#FfFfFf\\\",\\\"slug\\\":\\\"palette10\\\",\\\"name\\\":\\\"Palette Color Complement\\\"},{\\\"color\\\":\\\"#13612e\\\",\\\"slug\\\":\\\"palette11\\\",\\\"name\\\":\\\"Palette Color Success\\\"},{\\\"color\\\":\\\"#1159af\\\",\\\"slug\\\":\\\"palette12\\\",\\\"name\\\":\\\"Palette Color Info\\\"},{\\\"color\\\":\\\"#b82105\\\",\\\"slug\\\":\\\"palette13\\\",\\\"name\\\":\\\"Palette Color Alert\\\"},{\\\"color\\\":\\\"#f7630c\\\",\\\"slug\\\":\\\"palette14\\\",\\\"name\\\":\\\"Palette Color Warning\\\"},{\\\"color\\\":\\\"#f5a524\\\",\\\"slug\\\":\\\"palette15\\\",\\\"name\\\":\\\"Palette Color Rating\\\"}],\\\"active\\\":\\\"palette\\\"}\",\"type\":\"option\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-06 07:19:49\"}}','','','trash','closed','closed','','98364eb3-6e0f-448d-8f25-e65c300e3e39','','','2026-06-06 13:19:49','2026-06-06 07:19:49','','0','https://hypergrowth.fishgrowth.xyz/?p=1706','0','customize_changeset','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1710','17','2026-06-07 07:49:38','2026-06-07 01:49:38','','ChatGPT Image Jun 3, 2026, 02_30_26 PM','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_30_26-pm','','','2026-06-07 07:49:38','2026-06-07 01:49:38','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1712','17','2026-06-07 08:03:33','2026-06-07 02:03:33','','kwCPm','','inherit','closed','closed','','kwcpm','','','2026-06-07 08:03:33','2026-06-07 02:03:33','','0','https://hypergrowth.fishgrowth.xyz/kwcpm/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1713','17','2026-06-07 08:04:17','2026-06-07 02:04:17','','ChatGPT-Image-Jun-3-2026-02_26_48-PM','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_26_48-pm','','','2026-06-07 08:04:17','2026-06-07 02:04:17','','0','https://hypergrowth.fishgrowth.xyz/chatgpt-image-jun-3-2026-02_26_48-pm/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1714','17','2026-06-07 08:04:17','2026-06-07 02:04:17','','ChatGPT-Image-Jun-3-2026-02_27_34-PM','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_27_34-pm','','','2026-06-07 08:04:17','2026-06-07 02:04:17','','0','https://hypergrowth.fishgrowth.xyz/chatgpt-image-jun-3-2026-02_27_34-pm/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1715','17','2026-06-07 08:04:17','2026-06-07 02:04:17','','ChatGPT-Image-Jun-3-2026-02_27_24-PM','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_27_24-pm','','','2026-06-07 08:04:17','2026-06-07 02:04:17','','0','https://hypergrowth.fishgrowth.xyz/chatgpt-image-jun-3-2026-02_27_24-pm/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1716','17','2026-06-07 08:04:17','2026-06-07 02:04:17','','ChatGPT-Image-Jun-3-2026-02_27_05-PM','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_27_05-pm','','','2026-06-07 08:04:17','2026-06-07 02:04:17','','0','https://hypergrowth.fishgrowth.xyz/chatgpt-image-jun-3-2026-02_27_05-pm/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1717','17','2026-06-07 08:05:05','2026-06-07 02:05:05','','ChatGPT Image Jun 3, 2026, 02_30_47 PM','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_30_47-pm','','','2026-06-07 08:05:05','2026-06-07 02:05:05','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1718','17','2026-06-07 08:05:17','2026-06-07 02:05:17','','ChatGPT Image Jun 3, 2026, 02_27_05 PM','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_27_05-pm-2','','','2026-06-07 08:05:17','2026-06-07 02:05:17','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1719','17','2026-06-07 08:05:28','2026-06-07 02:05:28','','ChatGPT Image Jun 3, 2026, 02_26_48 PM','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_26_48-pm-2','','','2026-06-07 08:05:28','2026-06-07 02:05:28','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_48-PM.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1720','17','2026-06-07 08:09:13','2026-06-07 02:09:13','<h6>Are you hungry?</h6>		\n			<h1>DELIVERY \nDRIVE-THRU \nPICKUP</h1>		\n			<a href=\"#\" role=\"button\">\n						Go to Menu\n					</a>\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-4-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-4.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-4-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-4-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Burger</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-7-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-7.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-7-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-7-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Pizza​</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-1-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-1.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-1-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-1-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Combo</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-6-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-6.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-6-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-6-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Chicken</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2021/03/category-5-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2021/03/category-5.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2021/03/category-5-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2021/03/category-5-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Kids Menu</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-8-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-8.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-8-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-8-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Dessert</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-2-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-2.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-2-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-2-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Sauce</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-3-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-3.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-3-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-3-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Drinks</a></h5>		\n			<h4><a href=\"http://@\">Meet, Eat & Enjoy the <br>true Taste</a></h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n										<img width=\"1024\" height=\"771\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2-1024x771.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2-1024x771.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2-300x226.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2-768x578.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2-600x452.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2.jpg 1394w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h6>About Our Food\n</h6>		\n			<h2>From Texas with American Love</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick & Healthy<br> Dinner</h2>		\n			<a href=\"#\" role=\"button\">\n						full menu\n					</a>\n				0\n							Ingredients\n				0\n				+\n							Clients Daily\n				0\n				+\n							Years of Experience\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n							Fresh & Tasty\n			<h6>Tasty & fresh</h6>		\n			<h2>Main Dishes</h2>		\n			<h5>Breakfast Mood ..... $29.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>Drinking Prospect  ..... $9.45</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>Pizza Time  ..... $12.45</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>Grilled Chicken ..... $19.45</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n										<img width=\"1000\" height=\"586\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/burger-2559087_192e0.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/burger-2559087_192e0.png 1000w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/burger-2559087_192e0-300x176.png 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/burger-2559087_192e0-768x450.png 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/burger-2559087_192e0-600x352.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n			<h6>Tasty & crunchy</h6>		\n			<h2>Recommended today</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/product_9-p3k7pnbpx8llvu3qcb7f2jbgija0cchuxgnw8bpsg0.jpg\" title=\"product_9\" alt=\"product_9\" />											\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/product_1-p3k7pq58hqpgunzmvufas0luaow3zft1xumco5llxc.jpg\" title=\"product_1\" alt=\"product_1\" />											\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/product_4-p3k7ps0wves1hvwwkv8jx04rhgmueu0im3xbmpitkw.jpg\" title=\"product_4\" alt=\"product_4\" />											\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/product-13-p3k7pmdvqekbk853hsssi1jzx5en4ne4lc0er1r6m8.jpg\" title=\"product-13\" alt=\"product-13\" />											\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/product_6-p3k7ptwl92um53u69w1t1znoo8dku87zad8al9g18g.jpg\" title=\"product_6\" alt=\"product_6\" />											\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/product_12-p3k7pp7eawo6j2101c0o7iudpb0qrqpblpyv6vn03k.jpg\" title=\"product_12\" alt=\"product_12\" />											\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2>Order Your <br>Favorite Food</h2>		\n			<h5>$9.50</h5>		\n			<h2>Each</h2>		\n					<ul>\n							<li>\n										Chicken Caesar\n									</li>\n								<li>\n										Super Supreme\n									</li>\n								<li>\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Order now\n					</a>\n			<h6>Testimonials</h6>		\n			<h2>Customer Reviews</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3246264.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3246264.jpg 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3246264-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3246264-100x100.jpg 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" />						\n														Randall McKnight\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6426.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6426.jpg 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6426-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6426-100x100.jpg 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" />						\n														Pamela Stover\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23525.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23525.jpg 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23525-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23525-100x100.jpg 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" />						\n														Regina Good\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3563.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3563.jpg 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3563-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3563-100x100.jpg 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" />						\n														Roberta Taylor\n			<h6>Free Delivery</h6>		\n			<h2>Download Our App &<br> Order Online To Get <br>Free Delivery</h2>		\n		<p>We are the country\'s no.1 Fast food retailer with 10+ years of reputation. Country\'s best burger and pizza are delivered by us.</p>		\n											<a href=\"#\">\n							<img width=\"194\" height=\"58\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/google-play-black.png\" alt=\"\" loading=\"lazy\" />								</a>\n											<a href=\"#\">\n							<img width=\"172\" height=\"57\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/app-store-black.png\" alt=\"\" loading=\"lazy\" />								</a>\n										<img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/img-11-min.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/img-11-min.png 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/img-11-min-150x150.png 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/img-11-min-100x100.png 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n			<h5>BOOK YOUR TABLE NOW FOR THE BEST CHOW\n</h5>		\n			<a href=\"#\" role=\"button\">\n						Download App\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 08:09:13','2026-06-07 02:09:13','','15','https://hypergrowth.fishgrowth.xyz/?p=1720','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1721','17','2026-06-07 08:09:13','2026-06-07 02:09:13','<h6>Are you hungry?</h6>		\n			<h1>DELIVERY \nDRIVE-THRU \nPICKUP</h1>		\n			<a href=\"#\" role=\"button\">\n						Go to Menu\n					</a>\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-4-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-4.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-4-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-4-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Burger</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-7-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-7.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-7-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-7-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Pizza​</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-1-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-1.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-1-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-1-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Combo</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-6-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-6.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-6-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-6-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Chicken</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2021/03/category-5-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2021/03/category-5.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2021/03/category-5-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2021/03/category-5-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Kids Menu</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-8-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-8.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-8-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-8-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Dessert</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-2-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-2.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-2-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-2-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Sauce</a></h5>		\n			<figure><a href=\"#\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-3-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-3.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-3-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-3-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></figure><h5><a href=\"#\">Drinks</a></h5>		\n			<h4><a href=\"http://@\">Meet, Eat & Enjoy the <br>true Taste</a></h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n										<img width=\"1024\" height=\"771\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2-1024x771.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2-1024x771.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2-300x226.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2-768x578.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2-600x452.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2.jpg 1394w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h6>About Our Food\n</h6>		\n			<h2>From Texas with American Love</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick & Healthy<br> Dinner</h2>		\n			<a href=\"#\" role=\"button\">\n						full menu\n					</a>\n				0\n							Ingredients\n				0\n				+\n							Clients Daily\n				0\n				+\n							Years of Experience\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n							Fresh & Tasty\n			<h6>Tasty & fresh</h6>		\n			<h2>Main Dishes</h2>		\n			<h5>Breakfast Mood ..... $29.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>Drinking Prospect  ..... $9.45</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>Pizza Time  ..... $12.45</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>Grilled Chicken ..... $19.45</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n										<img width=\"1000\" height=\"586\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/burger-2559087_192e0.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/burger-2559087_192e0.png 1000w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/burger-2559087_192e0-300x176.png 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/burger-2559087_192e0-768x450.png 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/burger-2559087_192e0-600x352.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n			<h6>Tasty & crunchy</h6>		\n			<h2>Recommended today</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/product_9-p3k7pnbpx8llvu3qcb7f2jbgija0cchuxgnw8bpsg0.jpg\" title=\"product_9\" alt=\"product_9\" />											\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/product_1-p3k7pq58hqpgunzmvufas0luaow3zft1xumco5llxc.jpg\" title=\"product_1\" alt=\"product_1\" />											\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/product_4-p3k7ps0wves1hvwwkv8jx04rhgmueu0im3xbmpitkw.jpg\" title=\"product_4\" alt=\"product_4\" />											\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/product-13-p3k7pmdvqekbk853hsssi1jzx5en4ne4lc0er1r6m8.jpg\" title=\"product-13\" alt=\"product-13\" />											\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/product_6-p3k7ptwl92um53u69w1t1znoo8dku87zad8al9g18g.jpg\" title=\"product_6\" alt=\"product_6\" />											\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/product_12-p3k7pp7eawo6j2101c0o7iudpb0qrqpblpyv6vn03k.jpg\" title=\"product_12\" alt=\"product_12\" />											\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2>Order Your <br>Favorite Food</h2>		\n			<h5>$9.50</h5>		\n			<h2>Each</h2>		\n					<ul>\n							<li>\n										Chicken Caesar\n									</li>\n								<li>\n										Super Supreme\n									</li>\n								<li>\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Order now\n					</a>\n			<h6>Testimonials</h6>		\n			<h2>Customer Reviews</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3246264.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3246264.jpg 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3246264-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3246264-100x100.jpg 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" />						\n														Randall McKnight\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6426.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6426.jpg 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6426-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6426-100x100.jpg 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" />						\n														Pamela Stover\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23525.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23525.jpg 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23525-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23525-100x100.jpg 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" />						\n														Regina Good\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3563.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3563.jpg 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3563-150x150.jpg 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3563-100x100.jpg 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" />						\n														Roberta Taylor\n			<h6>Free Delivery</h6>		\n			<h2>Download Our App &<br> Order Online To Get <br>Free Delivery</h2>		\n		<p>We are the country\'s no.1 Fast food retailer with 10+ years of reputation. Country\'s best burger and pizza are delivered by us.</p>		\n											<a href=\"#\">\n							<img width=\"194\" height=\"58\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/google-play-black.png\" alt=\"\" loading=\"lazy\" />								</a>\n											<a href=\"#\">\n							<img width=\"172\" height=\"57\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/app-store-black.png\" alt=\"\" loading=\"lazy\" />								</a>\n										<img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/img-11-min.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/img-11-min.png 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/img-11-min-150x150.png 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/img-11-min-100x100.png 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n			<h5>BOOK YOUR TABLE NOW FOR THE BEST CHOW\n</h5>		\n			<a href=\"#\" role=\"button\">\n						Download App\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 08:09:13','2026-06-07 02:09:13','','15','https://hypergrowth.fishgrowth.xyz/?p=1721','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1722','17','2026-06-07 08:09:13','2026-06-07 02:09:13','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>DELIVERY \nDRIVE-THRU \nPICKUP</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">Burger</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Pizza​</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">Combo</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-6.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Chicken</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2021/03/category-5.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Kids Menu</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-8.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Dessert</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-2.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Sauce</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-3.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Drinks</a></h5>		\n			<h4><a href=\"http://@\">Meet, Eat & Enjoy the <br>true Taste</a></h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"771\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2.jpg\" alt=\"\" />													\n			<h6>About Our Food\n</h6>		\n			<h2>From Texas with American Love</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick & Healthy<br> Dinner</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n			<h6>Tasty & fresh</h6>		\n			<h2>Main Dishes</h2>		\n			<h5>Breakfast Mood ..... $29.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>Drinking Prospect  ..... $9.45</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>Pizza Time  ..... $12.45</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>Grilled Chicken ..... $19.45</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n													<img width=\"1000\" height=\"586\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/burger-2559087_192e0.png\" alt=\"\" />													\n			<h6>Tasty & crunchy</h6>		\n			<h2>Recommended today</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_9.jpg\" title=\"product_9\" alt=\"product_9\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_1.jpg\" title=\"product_1\" alt=\"product_1\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_4.jpg\" title=\"product_4\" alt=\"product_4\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product-13.jpg\" title=\"product-13\" alt=\"product-13\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_6.jpg\" title=\"product_6\" alt=\"product_6\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_12.jpg\" title=\"product_12\" alt=\"product_12\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2>Order Your <br>Favorite Food</h2>		\n			<h5>$9.50</h5>		\n			<h2>Each</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>\n			<h6>Testimonials</h6>		\n			<h2>Customer Reviews</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-inline-end:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:start}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3246264.jpg\" alt=\"\" />						\n														Randall McKnight\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6426.jpg\" alt=\"\" />						\n														Pamela Stover\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23525.jpg\" alt=\"\" />						\n														Regina Good\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3563.jpg\" alt=\"\" />						\n														Roberta Taylor\n			<h6>Free Delivery</h6>		\n			<h2>Download Our App &<br> Order Online To Get <br>Free Delivery</h2>		\n		<p>We are the country\'s no.1 Fast food retailer with 10+ years of reputation. Country\'s best burger and pizza are delivered by us.</p>		\n														<a href=\"#\">\n							<img width=\"194\" height=\"58\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/google-play-black.png\" alt=\"\" />								</a>\n														<a href=\"#\">\n							<img width=\"172\" height=\"57\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/app-store-black.png\" alt=\"\" />								</a>\n													<img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/img-11-min.png\" alt=\"\" />													\n			<h5>BOOK YOUR TABLE NOW FOR THE BEST CHOW\n</h5>		\n			<a href=\"#\">\n									Download App\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 08:09:13','2026-06-07 02:09:13','','15','https://hypergrowth.fishgrowth.xyz/?p=1722','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1723','17','2026-06-07 08:09:37','2026-06-07 02:09:37','','—Pngtree—letter t shopping logo alphabet_6953022','','inherit','closed','closed','','pngtree-letter-t-shopping-logo-alphabet_6953022','','','2026-06-07 08:09:37','2026-06-07 02:09:37','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/—Pngtree—letter-t-shopping-logo-alphabet_6953022.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1724','17','2026-06-07 08:11:23','2026-06-07 02:11:23','{\"kadence::custom_logo\":{\"value\":1723,\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 02:10:49\"},\"kadence::header_wrap_background\":{\"value\":{\"desktop\":{\"color\":\"#5f19a1\",\"type\":\"color\"},\"flag\":false},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 02:11:23\"}}','','','trash','closed','closed','','81a253b9-5c00-4789-b9d6-5a01eb4793ed','','','2026-06-07 08:11:23','2026-06-07 02:11:23','','0','https://hypergrowth.fishgrowth.xyz/?p=1724','0','customize_changeset','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1725','17','2026-06-07 08:12:37','0000-00-00 00:00:00','{\"kadence::header_mobile_switch\":{\"value\":{\"size\":1717,\"unit\":\"px\"},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 02:12:37\"}}','','','auto-draft','closed','closed','','629a5245-d403-462a-83ca-11a55d93b67c','','','2026-06-07 08:12:37','0000-00-00 00:00:00','','0','https://hypergrowth.fishgrowth.xyz/?p=1725','0','customize_changeset','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1726','17','2026-06-07 08:16:25','2026-06-07 02:16:25','','ChatGPT-Image-Jun-3-2026-02_27_09-PM','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_27_09-pm','','','2026-06-07 08:16:25','2026-06-07 02:16:25','','0','https://hypergrowth.fishgrowth.xyz/chatgpt-image-jun-3-2026-02_27_09-pm/','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1727','17','2026-06-07 08:16:26','2026-06-07 02:16:26','','kwCPm-1','','inherit','closed','closed','','kwcpm-1','','','2026-06-07 08:16:26','2026-06-07 02:16:26','','0','https://hypergrowth.fishgrowth.xyz/kwcpm-1/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1728','17','2026-06-07 08:16:26','2026-06-07 02:16:26','','p5xa7','','inherit','closed','closed','','p5xa7','','','2026-06-07 08:16:26','2026-06-07 02:16:26','','0','https://hypergrowth.fishgrowth.xyz/p5xa7/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1729','17','2026-06-07 08:16:26','2026-06-07 02:16:26','','2a17e542-1c39-42c9-9553-55e59acbf196','','inherit','closed','closed','','2a17e542-1c39-42c9-9553-55e59acbf196','','','2026-06-07 08:16:26','2026-06-07 02:16:26','','0','https://hypergrowth.fishgrowth.xyz/2a17e542-1c39-42c9-9553-55e59acbf196/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1730','17','2026-06-07 08:16:26','2026-06-07 02:16:26','','ChatGPT-Image-Jun-3-2026-02_27_05-PM-1','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_27_05-pm-1','','','2026-06-07 08:16:26','2026-06-07 02:16:26','','0','https://hypergrowth.fishgrowth.xyz/chatgpt-image-jun-3-2026-02_27_05-pm-1/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1731','17','2026-06-07 08:16:26','2026-06-07 02:16:26','','ChatGPT-Image-Jun-3-2026-02_27_34-PM-1','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_27_34-pm-1','','','2026-06-07 08:16:26','2026-06-07 02:16:26','','0','https://hypergrowth.fishgrowth.xyz/chatgpt-image-jun-3-2026-02_27_34-pm-1/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1732','17','2026-06-07 08:16:27','2026-06-07 02:16:27','','ChatGPT-Image-Jun-3-2026-02_27_30-PM','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_27_30-pm','','','2026-06-07 08:16:27','2026-06-07 02:16:27','','0','https://hypergrowth.fishgrowth.xyz/chatgpt-image-jun-3-2026-02_27_30-pm/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1733','17','2026-06-07 08:16:28','2026-06-07 02:16:28','','ChatGPT-Image-Jun-3-2026-02_26_42-PM','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_26_42-pm','','','2026-06-07 08:16:28','2026-06-07 02:16:28','','0','https://hypergrowth.fishgrowth.xyz/chatgpt-image-jun-3-2026-02_26_42-pm/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1734','17','2026-06-07 08:16:28','2026-06-07 02:16:28','','2wIeE','','inherit','closed','closed','','2wiee','','','2026-06-07 08:16:28','2026-06-07 02:16:28','','0','https://hypergrowth.fishgrowth.xyz/2wiee/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1735','17','2026-06-07 08:16:28','2026-06-07 02:16:28','','ChatGPT-Image-Jun-3-2026-02_30_59-PM','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_30_59-pm','','','2026-06-07 08:16:28','2026-06-07 02:16:28','','0','https://hypergrowth.fishgrowth.xyz/chatgpt-image-jun-3-2026-02_30_59-pm/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1736','17','2026-06-07 08:16:28','2026-06-07 02:16:28','','ChatGPT-Image-Jun-3-2026-02_30_47-PM','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_30_47-pm-2','','','2026-06-07 08:16:28','2026-06-07 02:16:28','','0','https://hypergrowth.fishgrowth.xyz/chatgpt-image-jun-3-2026-02_30_47-pm-2/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1737','17','2026-06-07 08:16:28','2026-06-07 02:16:28','','ge3rC','','inherit','closed','closed','','ge3rc','','','2026-06-07 08:16:28','2026-06-07 02:16:28','','0','https://hypergrowth.fishgrowth.xyz/ge3rc/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1738','17','2026-06-07 08:16:28','2026-06-07 02:16:28','','ChatGPT-Image-Jun-3-2026-02_30_38-PM','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_30_38-pm','','','2026-06-07 08:16:28','2026-06-07 02:16:28','','0','https://hypergrowth.fishgrowth.xyz/chatgpt-image-jun-3-2026-02_30_38-pm/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1739','17','2026-06-07 08:16:29','2026-06-07 02:16:29','','ChatGPT-Image-Jun-3-2026-02_30_52-PM','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_30_52-pm','','','2026-06-07 08:16:29','2026-06-07 02:16:29','','0','https://hypergrowth.fishgrowth.xyz/chatgpt-image-jun-3-2026-02_30_52-pm/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1740','17','2026-06-07 08:16:29','2026-06-07 02:16:29','','ChatGPT-Image-Jun-3-2026-02_30_26-PM','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_30_26-pm-2','','','2026-06-07 08:16:29','2026-06-07 02:16:29','','0','https://hypergrowth.fishgrowth.xyz/chatgpt-image-jun-3-2026-02_30_26-pm-2/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1741','17','2026-06-07 08:16:29','2026-06-07 02:16:29','','TTfyC','','inherit','closed','closed','','ttfyc','','','2026-06-07 08:16:29','2026-06-07 02:16:29','','0','https://hypergrowth.fishgrowth.xyz/ttfyc/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1742','17','2026-06-07 08:16:29','2026-06-07 02:16:29','','ChatGPT-Image-Jun-3-2026-02_28_33-PM','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_28_33-pm','','','2026-06-07 08:16:29','2026-06-07 02:16:29','','0','https://hypergrowth.fishgrowth.xyz/chatgpt-image-jun-3-2026-02_28_33-pm/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1743','17','2026-06-07 08:16:29','2026-06-07 02:16:29','','ChatGPT-Image-Jun-3-2026-02_27_38-PM','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_27_38-pm','','','2026-06-07 08:16:29','2026-06-07 02:16:29','','0','https://hypergrowth.fishgrowth.xyz/chatgpt-image-jun-3-2026-02_27_38-pm/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1744','17','2026-06-07 08:16:30','2026-06-07 02:16:30','','ChatGPT-Image-Jun-3-2026-02_27_24-PM-1','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_27_24-pm-1','','','2026-06-07 08:16:30','2026-06-07 02:16:30','','0','https://hypergrowth.fishgrowth.xyz/chatgpt-image-jun-3-2026-02_27_24-pm-1/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1745','17','2026-06-07 08:16:31','2026-06-07 02:16:31','','ChatGPT-Image-Jun-3-2026-02_26_48-PM-1','','inherit','closed','closed','','chatgpt-image-jun-3-2026-02_26_48-pm-1','','','2026-06-07 08:16:31','2026-06-07 02:16:31','','0','https://hypergrowth.fishgrowth.xyz/chatgpt-image-jun-3-2026-02_26_48-pm-1/','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1746','17','2026-06-07 08:28:00','2026-06-07 02:28:00','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>DELIVERY \nDRIVE-THRU \nPICKUP</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">Burger</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Pizza​</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">Combo</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-6.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Chicken</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2021/03/category-5.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Kids Menu</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-8.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Dessert</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-2.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Sauce</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-3.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Drinks</a></h5>		\n			<h4><a href=\"http://@\">Meet, Eat & Enjoy the <br>true Taste</a></h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"771\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2.jpg\" alt=\"\" />													\n			<h6>About Our Food\n</h6>		\n			<h2>From Texas with American Love</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick & Healthy<br> Dinner</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n			<h6>Tasty & fresh</h6>		\n			<h2>Main Dishes</h2>		\n			<h5>Breakfast Mood ..... $29.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>Drinking Prospect  ..... $9.45</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>Pizza Time  ..... $12.45</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>Grilled Chicken ..... $19.45</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n													<img width=\"1000\" height=\"586\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/burger-2559087_192e0.png\" alt=\"\" />													\n			<h6>Tasty & crunchy</h6>		\n			<h2>Recommended today</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_9.jpg\" title=\"product_9\" alt=\"product_9\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_1.jpg\" title=\"product_1\" alt=\"product_1\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_4.jpg\" title=\"product_4\" alt=\"product_4\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product-13.jpg\" title=\"product-13\" alt=\"product-13\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_6.jpg\" title=\"product_6\" alt=\"product_6\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_12.jpg\" title=\"product_12\" alt=\"product_12\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2>Order Your <br>Favorite Food</h2>		\n			<h5>$9.50</h5>		\n			<h2>Each</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>\n			<h6>Testimonials</h6>		\n			<h2>Customer Reviews</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-inline-end:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:start}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3246264.jpg\" alt=\"\" />						\n														Randall McKnight\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6426.jpg\" alt=\"\" />						\n														Pamela Stover\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23525.jpg\" alt=\"\" />						\n														Regina Good\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3563.jpg\" alt=\"\" />						\n														Roberta Taylor\n			<h6>Free Delivery</h6>		\n			<h2>Download Our App &<br> Order Online To Get <br>Free Delivery</h2>		\n		<p>We are the country\'s no.1 Fast food retailer with 10+ years of reputation. Country\'s best burger and pizza are delivered by us.</p>		\n														<a href=\"#\">\n							<img width=\"194\" height=\"58\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/google-play-black.png\" alt=\"\" />								</a>\n														<a href=\"#\">\n							<img width=\"172\" height=\"57\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/app-store-black.png\" alt=\"\" />								</a>\n													<img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/img-11-min.png\" alt=\"\" />													\n			<h5>BOOK YOUR TABLE NOW FOR THE BEST CHOW\n</h5>		\n			<a href=\"#\">\n									Download App\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 08:28:00','2026-06-07 02:28:00','','15','https://hypergrowth.fishgrowth.xyz/?p=1746','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1747','17','2026-06-07 08:28:01','2026-06-07 02:28:01','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>DELIVERY \nDRIVE-THRU \nPICKUP</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">Burger</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Pizza​</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">Combo</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-6.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Chicken</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2021/03/category-5.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Kids Menu</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-8.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Dessert</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-2.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Sauce</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/category-3.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Drinks</a></h5>		\n			<h4><a href=\"http://@\">Meet, Eat & Enjoy the <br>true Taste</a></h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"771\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/tomato-2.jpg\" alt=\"\" />													\n			<h6>About Our Food\n</h6>		\n			<h2>From Texas with American Love</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick & Healthy<br> Dinner</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n			<h6>Tasty & fresh</h6>		\n			<h2>Main Dishes</h2>		\n			<h5>Breakfast Mood ..... $29.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>Drinking Prospect  ..... $9.45</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>Pizza Time  ..... $12.45</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>Grilled Chicken ..... $19.45</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n													<img width=\"1000\" height=\"586\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/burger-2559087_192e0.png\" alt=\"\" />													\n			<h6>Tasty & crunchy</h6>		\n			<h2>Recommended today</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_9.jpg\" title=\"product_9\" alt=\"product_9\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_1.jpg\" title=\"product_1\" alt=\"product_1\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_4.jpg\" title=\"product_4\" alt=\"product_4\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product-13.jpg\" title=\"product-13\" alt=\"product-13\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_6.jpg\" title=\"product_6\" alt=\"product_6\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_12.jpg\" title=\"product_12\" alt=\"product_12\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2>Order Your <br>Favorite Food</h2>		\n			<h5>$9.50</h5>		\n			<h2>Each</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>\n			<h6>Testimonials</h6>		\n			<h2>Customer Reviews</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-inline-end:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:start}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3246264.jpg\" alt=\"\" />						\n														Randall McKnight\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6426.jpg\" alt=\"\" />						\n														Pamela Stover\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23525.jpg\" alt=\"\" />						\n														Regina Good\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n							<img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/3563.jpg\" alt=\"\" />						\n														Roberta Taylor\n			<h6>Free Delivery</h6>		\n			<h2>Download Our App &<br> Order Online To Get <br>Free Delivery</h2>		\n		<p>We are the country\'s no.1 Fast food retailer with 10+ years of reputation. Country\'s best burger and pizza are delivered by us.</p>		\n														<a href=\"#\">\n							<img width=\"194\" height=\"58\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/google-play-black.png\" alt=\"\" />								</a>\n														<a href=\"#\">\n							<img width=\"172\" height=\"57\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/app-store-black.png\" alt=\"\" />								</a>\n													<img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/img-11-min.png\" alt=\"\" />													\n			<h5>BOOK YOUR TABLE NOW FOR THE BEST CHOW\n</h5>		\n			<a href=\"#\">\n									Download App\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 08:28:01','2026-06-07 02:28:01','','15','https://hypergrowth.fishgrowth.xyz/?p=1747','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1748','17','2026-06-07 08:28:01','2026-06-07 02:28:01','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>DELIVERY \nDRIVE-THRU \nPICKUP</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">Burger</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Pizza​</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">Combo</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Chicken</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Kids Menu</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Dessert</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Sauce</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Drinks</a></h5>		\n			<h4><a href=\"http://@\">Meet, Eat & Enjoy the <br>true Taste</a></h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our Food\n</h6>		\n			<h2>From Texas with American Love</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick & Healthy<br> Dinner</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_9.jpg\" title=\"product_9\" alt=\"product_9\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_1.jpg\" title=\"product_1\" alt=\"product_1\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_4.jpg\" title=\"product_4\" alt=\"product_4\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product-13.jpg\" title=\"product-13\" alt=\"product-13\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_6.jpg\" title=\"product_6\" alt=\"product_6\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_12.jpg\" title=\"product_12\" alt=\"product_12\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2>Order Your <br>Favorite Food</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 08:28:01','2026-06-07 02:28:01','','15','https://hypergrowth.fishgrowth.xyz/?p=1748','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1749','17','2026-06-07 08:34:48','0000-00-00 00:00:00','{\"kadence_global_palette\":{\"value\":\"{\\\"palette\\\":[{\\\"color\\\":\\\"#900cc2\\\",\\\"slug\\\":\\\"palette1\\\",\\\"name\\\":\\\"Palette Color 1\\\"},{\\\"color\\\":\\\"#003174\\\",\\\"slug\\\":\\\"palette2\\\",\\\"name\\\":\\\"Palette Color 2\\\"},{\\\"color\\\":\\\"#c50fd2\\\",\\\"slug\\\":\\\"palette3\\\",\\\"name\\\":\\\"Palette Color 3\\\"},{\\\"color\\\":\\\"#f7fafc\\\",\\\"slug\\\":\\\"palette4\\\",\\\"name\\\":\\\"Palette Color 4\\\"},{\\\"color\\\":\\\"#edf2f7\\\",\\\"slug\\\":\\\"palette5\\\",\\\"name\\\":\\\"Palette Color 5\\\"},{\\\"color\\\":\\\"#cbd2d9\\\",\\\"slug\\\":\\\"palette6\\\",\\\"name\\\":\\\"Palette Color 6\\\"},{\\\"color\\\":\\\"#3b065b\\\",\\\"slug\\\":\\\"palette7\\\",\\\"name\\\":\\\"Palette Color 7\\\"},{\\\"color\\\":\\\"#252c39\\\",\\\"slug\\\":\\\"palette8\\\",\\\"name\\\":\\\"Palette Color 8\\\"},{\\\"color\\\":\\\"#1a202c\\\",\\\"slug\\\":\\\"palette9\\\",\\\"name\\\":\\\"Palette Color 9\\\"},{\\\"color\\\":\\\"#FfFfFf\\\",\\\"slug\\\":\\\"palette10\\\",\\\"name\\\":\\\"Palette Color Complement\\\"},{\\\"color\\\":\\\"#510a5e\\\",\\\"slug\\\":\\\"palette11\\\",\\\"name\\\":\\\"Palette Color Success\\\"},{\\\"color\\\":\\\"#1159af\\\",\\\"slug\\\":\\\"palette12\\\",\\\"name\\\":\\\"Palette Color Info\\\"},{\\\"color\\\":\\\"#b82105\\\",\\\"slug\\\":\\\"palette13\\\",\\\"name\\\":\\\"Palette Color Alert\\\"},{\\\"color\\\":\\\"#f7630c\\\",\\\"slug\\\":\\\"palette14\\\",\\\"name\\\":\\\"Palette Color Warning\\\"},{\\\"color\\\":\\\"#f5a524\\\",\\\"slug\\\":\\\"palette15\\\",\\\"name\\\":\\\"Palette Color Rating\\\"}],\\\"second-palette\\\":[{\\\"color\\\":\\\"#3182CE\\\",\\\"slug\\\":\\\"palette1\\\",\\\"name\\\":\\\"Palette Color 1\\\"},{\\\"color\\\":\\\"#2B6CB0\\\",\\\"slug\\\":\\\"palette2\\\",\\\"name\\\":\\\"Palette Color 2\\\"},{\\\"color\\\":\\\"#1A202C\\\",\\\"slug\\\":\\\"palette3\\\",\\\"name\\\":\\\"Palette Color 3\\\"},{\\\"color\\\":\\\"#2D3748\\\",\\\"slug\\\":\\\"palette4\\\",\\\"name\\\":\\\"Palette Color 4\\\"},{\\\"color\\\":\\\"#4A5568\\\",\\\"slug\\\":\\\"palette5\\\",\\\"name\\\":\\\"Palette Color 5\\\"},{\\\"color\\\":\\\"#718096\\\",\\\"slug\\\":\\\"palette6\\\",\\\"name\\\":\\\"Palette Color 6\\\"},{\\\"color\\\":\\\"#EDF2F7\\\",\\\"slug\\\":\\\"palette7\\\",\\\"name\\\":\\\"Palette Color 7\\\"},{\\\"color\\\":\\\"#F7FAFC\\\",\\\"slug\\\":\\\"palette8\\\",\\\"name\\\":\\\"Palette Color 8\\\"},{\\\"color\\\":\\\"#ffffff\\\",\\\"slug\\\":\\\"palette9\\\",\\\"name\\\":\\\"Palette Color 9\\\"},{\\\"color\\\":\\\"#FfFfFf\\\",\\\"slug\\\":\\\"palette10\\\",\\\"name\\\":\\\"Palette Color Complement\\\"},{\\\"color\\\":\\\"#13612e\\\",\\\"slug\\\":\\\"palette11\\\",\\\"name\\\":\\\"Palette Color Success\\\"},{\\\"color\\\":\\\"#1159af\\\",\\\"slug\\\":\\\"palette12\\\",\\\"name\\\":\\\"Palette Color Info\\\"},{\\\"color\\\":\\\"#b82105\\\",\\\"slug\\\":\\\"palette13\\\",\\\"name\\\":\\\"Palette Color Alert\\\"},{\\\"color\\\":\\\"#f7630c\\\",\\\"slug\\\":\\\"palette14\\\",\\\"name\\\":\\\"Palette Color Warning\\\"},{\\\"color\\\":\\\"#f5a524\\\",\\\"slug\\\":\\\"palette15\\\",\\\"name\\\":\\\"Palette Color Rating\\\"}],\\\"third-palette\\\":[{\\\"color\\\":\\\"#3182CE\\\",\\\"slug\\\":\\\"palette1\\\",\\\"name\\\":\\\"Palette Color 1\\\"},{\\\"color\\\":\\\"#2B6CB0\\\",\\\"slug\\\":\\\"palette2\\\",\\\"name\\\":\\\"Palette Color 2\\\"},{\\\"color\\\":\\\"#1A202C\\\",\\\"slug\\\":\\\"palette3\\\",\\\"name\\\":\\\"Palette Color 3\\\"},{\\\"color\\\":\\\"#2D3748\\\",\\\"slug\\\":\\\"palette4\\\",\\\"name\\\":\\\"Palette Color 4\\\"},{\\\"color\\\":\\\"#4A5568\\\",\\\"slug\\\":\\\"palette5\\\",\\\"name\\\":\\\"Palette Color 5\\\"},{\\\"color\\\":\\\"#718096\\\",\\\"slug\\\":\\\"palette6\\\",\\\"name\\\":\\\"Palette Color 6\\\"},{\\\"color\\\":\\\"#EDF2F7\\\",\\\"slug\\\":\\\"palette7\\\",\\\"name\\\":\\\"Palette Color 7\\\"},{\\\"color\\\":\\\"#F7FAFC\\\",\\\"slug\\\":\\\"palette8\\\",\\\"name\\\":\\\"Palette Color 8\\\"},{\\\"color\\\":\\\"#ffffff\\\",\\\"slug\\\":\\\"palette9\\\",\\\"name\\\":\\\"Palette Color 9\\\"},{\\\"color\\\":\\\"#FfFfFf\\\",\\\"slug\\\":\\\"palette10\\\",\\\"name\\\":\\\"Palette Color Complement\\\"},{\\\"color\\\":\\\"#13612e\\\",\\\"slug\\\":\\\"palette11\\\",\\\"name\\\":\\\"Palette Color Success\\\"},{\\\"color\\\":\\\"#1159af\\\",\\\"slug\\\":\\\"palette12\\\",\\\"name\\\":\\\"Palette Color Info\\\"},{\\\"color\\\":\\\"#b82105\\\",\\\"slug\\\":\\\"palette13\\\",\\\"name\\\":\\\"Palette Color Alert\\\"},{\\\"color\\\":\\\"#f7630c\\\",\\\"slug\\\":\\\"palette14\\\",\\\"name\\\":\\\"Palette Color Warning\\\"},{\\\"color\\\":\\\"#f5a524\\\",\\\"slug\\\":\\\"palette15\\\",\\\"name\\\":\\\"Palette Color Rating\\\"}],\\\"active\\\":\\\"palette\\\"}\",\"type\":\"option\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 02:31:28\"},\"kadence::site_background\":{\"value\":{\"desktop\":{\"color\":\"#2e062e\",\"type\":\"color\"},\"flag\":false},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 02:32:29\"},\"kadence::content_background\":{\"value\":{\"desktop\":{\"color\":\"#3e084d\",\"type\":\"color\"},\"flag\":true},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 02:32:29\"},\"kadence::link_color\":{\"value\":{\"highlight\":\"#b700ff\",\"highlight-alt\":\"palette2\",\"highlight-alt2\":\"palette9\",\"style\":\"standard\"},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 02:33:28\"},\"kadence::footer_bottom_contain\":{\"value\":{\"mobile\":\"\",\"tablet\":\"\",\"desktop\":\"fullwidth\",\"flag\":true},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 02:34:28\"},\"kadence::footer_bottom_background\":{\"value\":{\"desktop\":{\"color\":\"palette7\",\"type\":\"color\"},\"flag\":true},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 02:34:28\"},\"kadence::footer_middle_contain\":{\"value\":{\"mobile\":\"\",\"tablet\":\"\",\"desktop\":\"fullwidth\",\"flag\":false},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 02:34:28\"},\"kadence::footer_middle_background\":{\"value\":{\"desktop\":{\"color\":\"#1a0322\",\"type\":\"color\"},\"flag\":false},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 02:34:28\"},\"kadence::header_wrap_background\":{\"value\":{\"desktop\":{\"color\":\"#6b1cb7\",\"type\":\"color\"},\"flag\":false},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 02:34:48\"}}','','','auto-draft','closed','closed','','835dcb73-601e-4777-b499-55e1d7cf05e9','','','2026-06-07 08:34:48','2026-06-07 02:34:48','','0','https://hypergrowth.fishgrowth.xyz/?p=1749','0','customize_changeset','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1750','17','2026-06-07 08:36:35','2026-06-07 02:36:35','{\"kadence_global_palette\":{\"value\":\"{\\\"palette\\\":[{\\\"color\\\":\\\"#7a029d\\\",\\\"slug\\\":\\\"palette1\\\",\\\"name\\\":\\\"Palette Color 1\\\"},{\\\"color\\\":\\\"#003174\\\",\\\"slug\\\":\\\"palette2\\\",\\\"name\\\":\\\"Palette Color 2\\\"},{\\\"color\\\":\\\"#f0a0ff\\\",\\\"slug\\\":\\\"palette3\\\",\\\"name\\\":\\\"Palette Color 3\\\"},{\\\"color\\\":\\\"#f7fafc\\\",\\\"slug\\\":\\\"palette4\\\",\\\"name\\\":\\\"Palette Color 4\\\"},{\\\"color\\\":\\\"#edf2f7\\\",\\\"slug\\\":\\\"palette5\\\",\\\"name\\\":\\\"Palette Color 5\\\"},{\\\"color\\\":\\\"#cbd2d9\\\",\\\"slug\\\":\\\"palette6\\\",\\\"name\\\":\\\"Palette Color 6\\\"},{\\\"color\\\":\\\"#533656\\\",\\\"slug\\\":\\\"palette7\\\",\\\"name\\\":\\\"Palette Color 7\\\"},{\\\"color\\\":\\\"#252c39\\\",\\\"slug\\\":\\\"palette8\\\",\\\"name\\\":\\\"Palette Color 8\\\"},{\\\"color\\\":\\\"#1a202c\\\",\\\"slug\\\":\\\"palette9\\\",\\\"name\\\":\\\"Palette Color 9\\\"},{\\\"color\\\":\\\"#FfFfFf\\\",\\\"slug\\\":\\\"palette10\\\",\\\"name\\\":\\\"Palette Color Complement\\\"},{\\\"color\\\":\\\"#4e1361\\\",\\\"slug\\\":\\\"palette11\\\",\\\"name\\\":\\\"Palette Color Success\\\"},{\\\"color\\\":\\\"#1159af\\\",\\\"slug\\\":\\\"palette12\\\",\\\"name\\\":\\\"Palette Color Info\\\"},{\\\"color\\\":\\\"#b82105\\\",\\\"slug\\\":\\\"palette13\\\",\\\"name\\\":\\\"Palette Color Alert\\\"},{\\\"color\\\":\\\"#f7630c\\\",\\\"slug\\\":\\\"palette14\\\",\\\"name\\\":\\\"Palette Color Warning\\\"},{\\\"color\\\":\\\"#f5a524\\\",\\\"slug\\\":\\\"palette15\\\",\\\"name\\\":\\\"Palette Color Rating\\\"}],\\\"second-palette\\\":[{\\\"color\\\":\\\"#3182CE\\\",\\\"slug\\\":\\\"palette1\\\",\\\"name\\\":\\\"Palette Color 1\\\"},{\\\"color\\\":\\\"#2B6CB0\\\",\\\"slug\\\":\\\"palette2\\\",\\\"name\\\":\\\"Palette Color 2\\\"},{\\\"color\\\":\\\"#1A202C\\\",\\\"slug\\\":\\\"palette3\\\",\\\"name\\\":\\\"Palette Color 3\\\"},{\\\"color\\\":\\\"#2D3748\\\",\\\"slug\\\":\\\"palette4\\\",\\\"name\\\":\\\"Palette Color 4\\\"},{\\\"color\\\":\\\"#4A5568\\\",\\\"slug\\\":\\\"palette5\\\",\\\"name\\\":\\\"Palette Color 5\\\"},{\\\"color\\\":\\\"#718096\\\",\\\"slug\\\":\\\"palette6\\\",\\\"name\\\":\\\"Palette Color 6\\\"},{\\\"color\\\":\\\"#EDF2F7\\\",\\\"slug\\\":\\\"palette7\\\",\\\"name\\\":\\\"Palette Color 7\\\"},{\\\"color\\\":\\\"#F7FAFC\\\",\\\"slug\\\":\\\"palette8\\\",\\\"name\\\":\\\"Palette Color 8\\\"},{\\\"color\\\":\\\"#ffffff\\\",\\\"slug\\\":\\\"palette9\\\",\\\"name\\\":\\\"Palette Color 9\\\"},{\\\"color\\\":\\\"#FfFfFf\\\",\\\"slug\\\":\\\"palette10\\\",\\\"name\\\":\\\"Palette Color Complement\\\"},{\\\"color\\\":\\\"#13612e\\\",\\\"slug\\\":\\\"palette11\\\",\\\"name\\\":\\\"Palette Color Success\\\"},{\\\"color\\\":\\\"#1159af\\\",\\\"slug\\\":\\\"palette12\\\",\\\"name\\\":\\\"Palette Color Info\\\"},{\\\"color\\\":\\\"#b82105\\\",\\\"slug\\\":\\\"palette13\\\",\\\"name\\\":\\\"Palette Color Alert\\\"},{\\\"color\\\":\\\"#f7630c\\\",\\\"slug\\\":\\\"palette14\\\",\\\"name\\\":\\\"Palette Color Warning\\\"},{\\\"color\\\":\\\"#f5a524\\\",\\\"slug\\\":\\\"palette15\\\",\\\"name\\\":\\\"Palette Color Rating\\\"}],\\\"third-palette\\\":[{\\\"color\\\":\\\"#3182CE\\\",\\\"slug\\\":\\\"palette1\\\",\\\"name\\\":\\\"Palette Color 1\\\"},{\\\"color\\\":\\\"#2B6CB0\\\",\\\"slug\\\":\\\"palette2\\\",\\\"name\\\":\\\"Palette Color 2\\\"},{\\\"color\\\":\\\"#1A202C\\\",\\\"slug\\\":\\\"palette3\\\",\\\"name\\\":\\\"Palette Color 3\\\"},{\\\"color\\\":\\\"#2D3748\\\",\\\"slug\\\":\\\"palette4\\\",\\\"name\\\":\\\"Palette Color 4\\\"},{\\\"color\\\":\\\"#4A5568\\\",\\\"slug\\\":\\\"palette5\\\",\\\"name\\\":\\\"Palette Color 5\\\"},{\\\"color\\\":\\\"#718096\\\",\\\"slug\\\":\\\"palette6\\\",\\\"name\\\":\\\"Palette Color 6\\\"},{\\\"color\\\":\\\"#EDF2F7\\\",\\\"slug\\\":\\\"palette7\\\",\\\"name\\\":\\\"Palette Color 7\\\"},{\\\"color\\\":\\\"#F7FAFC\\\",\\\"slug\\\":\\\"palette8\\\",\\\"name\\\":\\\"Palette Color 8\\\"},{\\\"color\\\":\\\"#ffffff\\\",\\\"slug\\\":\\\"palette9\\\",\\\"name\\\":\\\"Palette Color 9\\\"},{\\\"color\\\":\\\"#FfFfFf\\\",\\\"slug\\\":\\\"palette10\\\",\\\"name\\\":\\\"Palette Color Complement\\\"},{\\\"color\\\":\\\"#13612e\\\",\\\"slug\\\":\\\"palette11\\\",\\\"name\\\":\\\"Palette Color Success\\\"},{\\\"color\\\":\\\"#1159af\\\",\\\"slug\\\":\\\"palette12\\\",\\\"name\\\":\\\"Palette Color Info\\\"},{\\\"color\\\":\\\"#b82105\\\",\\\"slug\\\":\\\"palette13\\\",\\\"name\\\":\\\"Palette Color Alert\\\"},{\\\"color\\\":\\\"#f7630c\\\",\\\"slug\\\":\\\"palette14\\\",\\\"name\\\":\\\"Palette Color Warning\\\"},{\\\"color\\\":\\\"#f5a524\\\",\\\"slug\\\":\\\"palette15\\\",\\\"name\\\":\\\"Palette Color Rating\\\"}],\\\"active\\\":\\\"palette\\\"}\",\"type\":\"option\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 02:36:35\"}}','','','trash','closed','closed','','25b706c0-a672-4863-8e49-5829c0e5c613','','','2026-06-07 08:36:35','2026-06-07 02:36:35','','0','https://hypergrowth.fishgrowth.xyz/?p=1750','0','customize_changeset','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1751','17','2026-06-07 08:36:59','2026-06-07 02:36:59','{\"kadence::site_background\":{\"value\":{\"desktop\":{\"color\":\"#352539\",\"type\":\"color\"},\"flag\":true},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 02:36:59\"},\"kadence::content_background\":{\"value\":{\"desktop\":{\"color\":\"#271a2c\",\"type\":\"color\"},\"flag\":true},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 02:36:59\"}}','','','trash','closed','closed','','7ae2a3a4-1bc8-4b33-9fb7-1840e3b20287','','','2026-06-07 08:36:59','2026-06-07 02:36:59','','0','https://hypergrowth.fishgrowth.xyz/7ae2a3a4-1bc8-4b33-9fb7-1840e3b20287/','0','customize_changeset','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1752','17','2026-06-07 08:37:40','2026-06-07 02:37:40','{\"kadence::footer_middle_contain\":{\"value\":{\"mobile\":\"\",\"tablet\":\"\",\"desktop\":\"fullwidth\",\"flag\":false},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 02:37:28\"},\"kadence::footer_middle_background\":{\"value\":{\"desktop\":{\"color\":\"#110212\",\"type\":\"color\"},\"flag\":true},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 02:37:40\"}}','','','trash','closed','closed','','011b78de-e261-4d3e-bd64-5c02d6dee411','','','2026-06-07 08:37:40','2026-06-07 02:37:40','','0','https://hypergrowth.fishgrowth.xyz/?p=1752','0','customize_changeset','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1753','17','2026-06-07 09:21:43','2026-06-07 03:21:43','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>DELIVERY \nDRIVE-THRU \nPICKUP</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">Burger</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Pizza​</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">Combo</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Chicken</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Kids Menu</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Dessert</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Sauce</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Drinks</a></h5>		\n			<h4><a href=\"http://@\">Meet, Eat & Enjoy the <br>true Taste</a></h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our Food\n</h6>		\n			<h2>From Texas with American Love</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick & Healthy<br> Dinner</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_9.jpg\" title=\"product_9\" alt=\"product_9\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_1.jpg\" title=\"product_1\" alt=\"product_1\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_4.jpg\" title=\"product_4\" alt=\"product_4\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product-13.jpg\" title=\"product-13\" alt=\"product-13\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_6.jpg\" title=\"product_6\" alt=\"product_6\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_12.jpg\" title=\"product_12\" alt=\"product_12\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2>Order Your <br>Favorite Food</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 09:21:43','2026-06-07 03:21:43','','15','https://hypergrowth.fishgrowth.xyz/?p=1753','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1754','17','2026-06-07 09:21:43','2026-06-07 03:21:43','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>DELIVERY \nDRIVE-THRU \nPICKUP</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">Burger</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Pizza​</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">Combo</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Chicken</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Kids Menu</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Dessert</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Sauce</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Drinks</a></h5>		\n			<h4><a href=\"http://@\">Meet, Eat & Enjoy the <br>true Taste</a></h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our Food\n</h6>		\n			<h2>From Texas with American Love</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick & Healthy<br> Dinner</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_9.jpg\" title=\"product_9\" alt=\"product_9\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_1.jpg\" title=\"product_1\" alt=\"product_1\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_4.jpg\" title=\"product_4\" alt=\"product_4\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product-13.jpg\" title=\"product-13\" alt=\"product-13\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_6.jpg\" title=\"product_6\" alt=\"product_6\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/product_12.jpg\" title=\"product_12\" alt=\"product_12\" loading=\"lazy\" />													\n			<h5>Build Your Own Burger</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2>Order Your <br>Favorite Food</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 09:21:43','2026-06-07 03:21:43','','15','https://hypergrowth.fishgrowth.xyz/?p=1754','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1755','17','2026-06-07 09:21:43','2026-06-07 03:21:43','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>Elegance \nRedefined</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">exclusive-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">man-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Men\'s Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">stylish </a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">New Arrivals</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Best Collections</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Top Collections</a></h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our Food\n</h6>		\n			<h2>Fashion</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick &amp; Fashion</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style<br></h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2> Your Style</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 09:21:43','2026-06-07 03:21:43','','15','https://hypergrowth.fishgrowth.xyz/?p=1755','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1756','17','2026-06-07 09:22:21','2026-06-07 03:22:21','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>Elegance \nRedefined</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">exclusive-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">man-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Men\'s Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">stylish </a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">New Arrivals</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Best Collections</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Top Collections</a></h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our Food\n</h6>		\n			<h2>Fashion</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick &amp; Fashion</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style<br></h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2> Your Style</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 09:22:21','2026-06-07 03:22:21','','15','https://hypergrowth.fishgrowth.xyz/?p=1756','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1757','17','2026-06-07 09:22:22','2026-06-07 03:22:22','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>Elegance \nRedefined</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">exclusive-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">man-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Men\'s Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">stylish </a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">New Arrivals</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Best Collections</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Top Collections</a></h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our Food\n</h6>		\n			<h2>Fashion</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick &amp; Fashion</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style<br></h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2> Your Style</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 09:22:22','2026-06-07 03:22:22','','15','https://hypergrowth.fishgrowth.xyz/?p=1757','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1758','17','2026-06-07 09:22:22','2026-06-07 03:22:22','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>Elegance \nRedefined</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">exclusive-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">man-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Men\'s Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">stylish </a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">New Arrivals</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Best Collections</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Top Collections</a></h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our style\n</h6>		\n			<h2>Fashion</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick &amp; Fashion</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style<br></h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2> Your Style</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 09:22:22','2026-06-07 03:22:22','','15','https://hypergrowth.fishgrowth.xyz/?p=1758','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1759','17','2026-06-07 09:22:51','2026-06-07 03:22:51','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>Elegance \nRedefined</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">exclusive-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">man-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Men\'s Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">stylish </a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">New Arrivals</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Best Collections</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Top Collections</a></h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our style\n</h6>		\n			<h2>Fashion</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick &amp; Fashion</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style<br></h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2> Your Style</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 09:22:51','2026-06-07 03:22:51','','15','https://hypergrowth.fishgrowth.xyz/?p=1759','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1760','17','2026-06-07 09:22:51','2026-06-07 03:22:51','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>Elegance \nRedefined</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">exclusive-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">man-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Men\'s Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">stylish </a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">New Arrivals</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Best Collections</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Top Collections</a></h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our style\n</h6>		\n			<h2>Fashion</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick &amp; Fashion</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style<br></h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2> Your Style</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 09:22:51','2026-06-07 03:22:51','','15','https://hypergrowth.fishgrowth.xyz/?p=1760','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1761','17','2026-06-07 09:22:51','2026-06-07 03:22:51','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>Elegance \nRedefined</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">exclusive-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">man-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Men\'s Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">stylish </a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">New Arrivals</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Best Collections</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Top Collections</a></h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our style\n</h6>		\n			<h2>Fashion</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick &amp; Fashion</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style<br></h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2> Your Style</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 09:22:51','2026-06-07 03:22:51','','15','https://hypergrowth.fishgrowth.xyz/?p=1761','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1762','17','2026-06-07 09:25:21','2026-06-07 03:25:21','{\"kadence::nav_menu_locations[primary]\":{\"value\":0,\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 03:25:21\"}}','','','trash','closed','closed','','a2dbd4fe-3ddc-4dcd-8c4c-fa620be881b2','','','2026-06-07 09:25:21','2026-06-07 03:25:21','','0','https://hypergrowth.fishgrowth.xyz/a2dbd4fe-3ddc-4dcd-8c4c-fa620be881b2/','0','customize_changeset','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1763','17','2026-06-07 09:25:53','0000-00-00 00:00:00','{\"kadence::logo_layout\":{\"value\":{\"include\":{\"mobile\":\"\",\"tablet\":\"\",\"desktop\":\"logo_only\"},\"layout\":{\"mobile\":\"\",\"tablet\":\"\",\"desktop\":\"standard\"},\"flag\":false},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 03:25:53\"}}','','','auto-draft','closed','closed','','9a7c069e-7359-461c-9d5a-64b10866f0af','','','2026-06-07 09:25:53','0000-00-00 00:00:00','','0','https://hypergrowth.fishgrowth.xyz/?p=1763','0','customize_changeset','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1765','17','2026-06-07 10:12:49','2026-06-07 03:29:42',' ','','','publish','closed','closed','','1765','','','2026-06-07 10:12:49','2026-06-07 04:12:49','','0','https://hypergrowth.fishgrowth.xyz/?p=1765','7','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1766','17','2026-06-07 10:12:49','2026-06-07 03:29:42',' ','','','publish','closed','closed','','1766','','','2026-06-07 10:12:49','2026-06-07 04:12:49','','0','https://hypergrowth.fishgrowth.xyz/?p=1766','2','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1768','17','2026-06-07 09:28:36','2026-06-07 03:28:36','','shop','','publish','closed','closed','','shop','','','2026-06-07 09:41:16','2026-06-07 03:41:16','','0','https://hypergrowth.fishgrowth.xyz/?page_id=1768','0','page','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1769','17','2026-06-07 09:28:32','2026-06-07 03:28:32','{\"version\":2,\"isGlobalStylesUserThemeJSON\":true}','Custom Styles','','publish','closed','closed','','wp-global-styles-kadence','','','2026-06-07 09:28:32','2026-06-07 03:28:32','','0','https://hypergrowth.fishgrowth.xyz/wp-global-styles-kadence/','0','wp_global_styles','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1770','17','2026-06-07 09:28:36','2026-06-07 03:28:36','','shop','','inherit','closed','closed','','1768-revision-v1','','','2026-06-07 09:28:36','2026-06-07 03:28:36','','1768','https://hypergrowth.fishgrowth.xyz/?p=1770','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1771','17','2026-06-07 09:31:17','2026-06-07 03:31:17','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>Elegance \nRedefined</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">exclusive-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">man-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Men\'s Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">stylish </a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">New Arrivals</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Best Collections</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Top Collections</a></h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our style\n</h6>		\n			<h2>Fashion</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick &amp; Fashion</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style<br></h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2> Your Style</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 09:31:17','2026-06-07 03:31:17','','15','https://hypergrowth.fishgrowth.xyz/?p=1771','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1772','17','2026-06-07 09:31:17','2026-06-07 03:31:17','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>Elegance \nRedefined</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">exclusive-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">man-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Men\'s Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">stylish </a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">New Arrivals</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Best Collections</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Top Collections</a></h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our style\n</h6>		\n			<h2>Fashion</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick &amp; Fashion</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style<br></h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2> Your Style</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 09:31:17','2026-06-07 03:31:17','','15','https://hypergrowth.fishgrowth.xyz/?p=1772','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1773','17','2026-06-07 09:31:17','2026-06-07 03:31:17','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>Elegance \nRedefined</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">exclusive-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">man-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Men\'s Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">stylish </a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">New Arrivals</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Best Collections</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Top Collections</a></h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our style\n</h6>		\n			<h2>Fashion</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick &amp; Fashion</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style<br></h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2> Your Style</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 09:31:17','2026-06-07 03:31:17','','15','https://hypergrowth.fishgrowth.xyz/?p=1773','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1775','17','2026-06-07 09:40:54','2026-06-07 03:40:54','','exclusive-fashion','','publish','closed','closed','','exclusive-fashion','','','2026-06-07 09:40:54','2026-06-07 03:40:54','','0','https://hypergrowth.fishgrowth.xyz/?post_type=product&#038;p=1775','0','product','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1776','17','2026-06-07 09:41:16','2026-06-07 03:41:16','','shop','','inherit','closed','closed','','1768-revision-v1','','','2026-06-07 09:41:16','2026-06-07 03:41:16','','1768','https://hypergrowth.fishgrowth.xyz/?p=1776','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1777','17','2026-06-07 09:41:16','2026-06-07 03:41:16','','shop','','inherit','closed','closed','','1768-revision-v1','','','2026-06-07 09:41:16','2026-06-07 03:41:16','','1768','https://hypergrowth.fishgrowth.xyz/?p=1777','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1778','17','2026-06-07 09:41:16','2026-06-07 03:41:16','','shop','','inherit','closed','closed','','1768-revision-v1','','','2026-06-07 09:41:16','2026-06-07 03:41:16','','1768','https://hypergrowth.fishgrowth.xyz/?p=1778','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1779','17','2026-06-07 10:12:49','2026-06-07 03:51:17',' ','','','publish','closed','closed','','1779','','','2026-06-07 10:12:49','2026-06-07 04:12:49','','0','https://hypergrowth.fishgrowth.xyz/?p=1779','5','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1780','17','2026-06-07 10:12:49','2026-06-07 03:51:17',' ','','','publish','closed','closed','','1780','','','2026-06-07 10:12:49','2026-06-07 04:12:49','','0','https://hypergrowth.fishgrowth.xyz/?p=1780','3','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1781','17','2026-06-07 10:12:49','2026-06-07 03:51:17',' ','','','publish','closed','closed','','1781','','','2026-06-07 10:12:49','2026-06-07 04:12:49','','0','https://hypergrowth.fishgrowth.xyz/?p=1781','4','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1782','17','2026-06-07 10:12:49','2026-06-07 03:51:17',' ','','','publish','closed','closed','','1782','','','2026-06-07 10:12:49','2026-06-07 04:12:49','','0','https://hypergrowth.fishgrowth.xyz/?p=1782','6','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1783','17','2026-06-07 09:52:19','2026-06-07 03:52:19','','Man Fashion','','publish','closed','closed','','man-fashion','','','2026-06-07 09:52:19','2026-06-07 03:52:19','','0','https://hypergrowth.fishgrowth.xyz/?post_type=product&#038;p=1783','0','product','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1784','17','2026-06-07 09:53:21','2026-06-07 03:53:21','','Top Collections','','publish','closed','closed','','top-collections','','','2026-06-07 09:53:21','2026-06-07 03:53:21','','0','https://hypergrowth.fishgrowth.xyz/?post_type=product&#038;p=1784','0','product','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1785','17','2026-06-07 09:54:00','2026-06-07 03:54:00','','t-shirt','','publish','closed','closed','','t-shirt','','','2026-06-07 09:54:00','2026-06-07 03:54:00','','0','https://hypergrowth.fishgrowth.xyz/?post_type=product&#038;p=1785','0','product','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1786','17','2026-06-07 09:59:07','2026-06-07 03:59:07','','','','draft','closed','closed','','','','','2026-06-07 09:59:07','2026-06-07 03:59:07','','0','https://hypergrowth.fishgrowth.xyz/?post_type=shop_order_placehold&p=1786','0','shop_order_placehold','','1');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1787','17','2026-06-07 10:03:05','2026-06-07 04:03:05','{\"kadence_global_palette\":{\"value\":\"{\\\"palette\\\":[{\\\"color\\\":\\\"#420a6e\\\",\\\"slug\\\":\\\"palette1\\\",\\\"name\\\":\\\"Palette Color 1\\\"},{\\\"color\\\":\\\"#003174\\\",\\\"slug\\\":\\\"palette2\\\",\\\"name\\\":\\\"Palette Color 2\\\"},{\\\"color\\\":\\\"#f0a0ff\\\",\\\"slug\\\":\\\"palette3\\\",\\\"name\\\":\\\"Palette Color 3\\\"},{\\\"color\\\":\\\"#f7fafc\\\",\\\"slug\\\":\\\"palette4\\\",\\\"name\\\":\\\"Palette Color 4\\\"},{\\\"color\\\":\\\"#edf2f7\\\",\\\"slug\\\":\\\"palette5\\\",\\\"name\\\":\\\"Palette Color 5\\\"},{\\\"color\\\":\\\"#cbd2d9\\\",\\\"slug\\\":\\\"palette6\\\",\\\"name\\\":\\\"Palette Color 6\\\"},{\\\"color\\\":\\\"#533656\\\",\\\"slug\\\":\\\"palette7\\\",\\\"name\\\":\\\"Palette Color 7\\\"},{\\\"color\\\":\\\"#252c39\\\",\\\"slug\\\":\\\"palette8\\\",\\\"name\\\":\\\"Palette Color 8\\\"},{\\\"color\\\":\\\"#1a202c\\\",\\\"slug\\\":\\\"palette9\\\",\\\"name\\\":\\\"Palette Color 9\\\"},{\\\"color\\\":\\\"#FfFfFf\\\",\\\"slug\\\":\\\"palette10\\\",\\\"name\\\":\\\"Palette Color Complement\\\"},{\\\"color\\\":\\\"#4e1361\\\",\\\"slug\\\":\\\"palette11\\\",\\\"name\\\":\\\"Palette Color Success\\\"},{\\\"color\\\":\\\"#1159af\\\",\\\"slug\\\":\\\"palette12\\\",\\\"name\\\":\\\"Palette Color Info\\\"},{\\\"color\\\":\\\"#b82105\\\",\\\"slug\\\":\\\"palette13\\\",\\\"name\\\":\\\"Palette Color Alert\\\"},{\\\"color\\\":\\\"#f7630c\\\",\\\"slug\\\":\\\"palette14\\\",\\\"name\\\":\\\"Palette Color Warning\\\"},{\\\"color\\\":\\\"#f5a524\\\",\\\"slug\\\":\\\"palette15\\\",\\\"name\\\":\\\"Palette Color Rating\\\"}],\\\"second-palette\\\":[{\\\"color\\\":\\\"#3182CE\\\",\\\"slug\\\":\\\"palette1\\\",\\\"name\\\":\\\"Palette Color 1\\\"},{\\\"color\\\":\\\"#2B6CB0\\\",\\\"slug\\\":\\\"palette2\\\",\\\"name\\\":\\\"Palette Color 2\\\"},{\\\"color\\\":\\\"#1A202C\\\",\\\"slug\\\":\\\"palette3\\\",\\\"name\\\":\\\"Palette Color 3\\\"},{\\\"color\\\":\\\"#2D3748\\\",\\\"slug\\\":\\\"palette4\\\",\\\"name\\\":\\\"Palette Color 4\\\"},{\\\"color\\\":\\\"#4A5568\\\",\\\"slug\\\":\\\"palette5\\\",\\\"name\\\":\\\"Palette Color 5\\\"},{\\\"color\\\":\\\"#718096\\\",\\\"slug\\\":\\\"palette6\\\",\\\"name\\\":\\\"Palette Color 6\\\"},{\\\"color\\\":\\\"#EDF2F7\\\",\\\"slug\\\":\\\"palette7\\\",\\\"name\\\":\\\"Palette Color 7\\\"},{\\\"color\\\":\\\"#F7FAFC\\\",\\\"slug\\\":\\\"palette8\\\",\\\"name\\\":\\\"Palette Color 8\\\"},{\\\"color\\\":\\\"#ffffff\\\",\\\"slug\\\":\\\"palette9\\\",\\\"name\\\":\\\"Palette Color 9\\\"},{\\\"color\\\":\\\"#FfFfFf\\\",\\\"slug\\\":\\\"palette10\\\",\\\"name\\\":\\\"Palette Color Complement\\\"},{\\\"color\\\":\\\"#13612e\\\",\\\"slug\\\":\\\"palette11\\\",\\\"name\\\":\\\"Palette Color Success\\\"},{\\\"color\\\":\\\"#1159af\\\",\\\"slug\\\":\\\"palette12\\\",\\\"name\\\":\\\"Palette Color Info\\\"},{\\\"color\\\":\\\"#b82105\\\",\\\"slug\\\":\\\"palette13\\\",\\\"name\\\":\\\"Palette Color Alert\\\"},{\\\"color\\\":\\\"#f7630c\\\",\\\"slug\\\":\\\"palette14\\\",\\\"name\\\":\\\"Palette Color Warning\\\"},{\\\"color\\\":\\\"#f5a524\\\",\\\"slug\\\":\\\"palette15\\\",\\\"name\\\":\\\"Palette Color Rating\\\"}],\\\"third-palette\\\":[{\\\"color\\\":\\\"#3182CE\\\",\\\"slug\\\":\\\"palette1\\\",\\\"name\\\":\\\"Palette Color 1\\\"},{\\\"color\\\":\\\"#2B6CB0\\\",\\\"slug\\\":\\\"palette2\\\",\\\"name\\\":\\\"Palette Color 2\\\"},{\\\"color\\\":\\\"#1A202C\\\",\\\"slug\\\":\\\"palette3\\\",\\\"name\\\":\\\"Palette Color 3\\\"},{\\\"color\\\":\\\"#2D3748\\\",\\\"slug\\\":\\\"palette4\\\",\\\"name\\\":\\\"Palette Color 4\\\"},{\\\"color\\\":\\\"#4A5568\\\",\\\"slug\\\":\\\"palette5\\\",\\\"name\\\":\\\"Palette Color 5\\\"},{\\\"color\\\":\\\"#718096\\\",\\\"slug\\\":\\\"palette6\\\",\\\"name\\\":\\\"Palette Color 6\\\"},{\\\"color\\\":\\\"#EDF2F7\\\",\\\"slug\\\":\\\"palette7\\\",\\\"name\\\":\\\"Palette Color 7\\\"},{\\\"color\\\":\\\"#F7FAFC\\\",\\\"slug\\\":\\\"palette8\\\",\\\"name\\\":\\\"Palette Color 8\\\"},{\\\"color\\\":\\\"#ffffff\\\",\\\"slug\\\":\\\"palette9\\\",\\\"name\\\":\\\"Palette Color 9\\\"},{\\\"color\\\":\\\"#FfFfFf\\\",\\\"slug\\\":\\\"palette10\\\",\\\"name\\\":\\\"Palette Color Complement\\\"},{\\\"color\\\":\\\"#13612e\\\",\\\"slug\\\":\\\"palette11\\\",\\\"name\\\":\\\"Palette Color Success\\\"},{\\\"color\\\":\\\"#1159af\\\",\\\"slug\\\":\\\"palette12\\\",\\\"name\\\":\\\"Palette Color Info\\\"},{\\\"color\\\":\\\"#b82105\\\",\\\"slug\\\":\\\"palette13\\\",\\\"name\\\":\\\"Palette Color Alert\\\"},{\\\"color\\\":\\\"#f7630c\\\",\\\"slug\\\":\\\"palette14\\\",\\\"name\\\":\\\"Palette Color Warning\\\"},{\\\"color\\\":\\\"#f5a524\\\",\\\"slug\\\":\\\"palette15\\\",\\\"name\\\":\\\"Palette Color Rating\\\"}],\\\"active\\\":\\\"palette\\\"}\",\"type\":\"option\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 04:03:05\"}}','','','trash','closed','closed','','f2f8f8a6-5299-4fa4-8234-75de2eea3ea1','','','2026-06-07 10:03:05','2026-06-07 04:03:05','','0','https://hypergrowth.fishgrowth.xyz/f2f8f8a6-5299-4fa4-8234-75de2eea3ea1/','0','customize_changeset','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1788','17','2026-06-07 10:06:59','2026-06-07 04:06:59','{\"kadence::footer_html_content\":{\"value\":\"{copyright} {year} {site-title}\",\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 04:06:59\"},\"kadence::footer_bottom_contain\":{\"value\":{\"mobile\":\"\",\"tablet\":\"\",\"desktop\":\"fullwidth\",\"flag\":true},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 04:06:59\"},\"kadence::footer_bottom_background\":{\"value\":{\"desktop\":{\"color\":\"#200536\",\"type\":\"color\"},\"flag\":false},\"type\":\"theme_mod\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 04:06:59\"}}','','','trash','closed','closed','','9e095ba3-c85b-4ca9-b8d9-1ac61f5a807f','','','2026-06-07 10:06:59','2026-06-07 04:06:59','','0','https://hypergrowth.fishgrowth.xyz/9e095ba3-c85b-4ca9-b8d9-1ac61f5a807f/','0','customize_changeset','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1790','17','2026-06-07 10:12:49','2026-06-07 04:12:49',' ','','','publish','closed','closed','','1790','','','2026-06-07 10:12:49','2026-06-07 04:12:49','','0','https://hypergrowth.fishgrowth.xyz/?p=1790','1','nav_menu_item','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1791','17','2026-06-07 10:13:56','2026-06-07 04:13:56','{\"kadence_global_palette\":{\"value\":\"{\\\"palette\\\":[{\\\"color\\\":\\\"#420a6e\\\",\\\"slug\\\":\\\"palette1\\\",\\\"name\\\":\\\"Palette Color 1\\\"},{\\\"color\\\":\\\"#b47fff\\\",\\\"slug\\\":\\\"palette2\\\",\\\"name\\\":\\\"Palette Color 2\\\"},{\\\"color\\\":\\\"#f0a0ff\\\",\\\"slug\\\":\\\"palette3\\\",\\\"name\\\":\\\"Palette Color 3\\\"},{\\\"color\\\":\\\"#f7fafc\\\",\\\"slug\\\":\\\"palette4\\\",\\\"name\\\":\\\"Palette Color 4\\\"},{\\\"color\\\":\\\"#edf2f7\\\",\\\"slug\\\":\\\"palette5\\\",\\\"name\\\":\\\"Palette Color 5\\\"},{\\\"color\\\":\\\"#cbd2d9\\\",\\\"slug\\\":\\\"palette6\\\",\\\"name\\\":\\\"Palette Color 6\\\"},{\\\"color\\\":\\\"#533656\\\",\\\"slug\\\":\\\"palette7\\\",\\\"name\\\":\\\"Palette Color 7\\\"},{\\\"color\\\":\\\"#252c39\\\",\\\"slug\\\":\\\"palette8\\\",\\\"name\\\":\\\"Palette Color 8\\\"},{\\\"color\\\":\\\"#1a202c\\\",\\\"slug\\\":\\\"palette9\\\",\\\"name\\\":\\\"Palette Color 9\\\"},{\\\"color\\\":\\\"#c249ff\\\",\\\"slug\\\":\\\"palette10\\\",\\\"name\\\":\\\"Palette Color Complement\\\"},{\\\"color\\\":\\\"#4e1361\\\",\\\"slug\\\":\\\"palette11\\\",\\\"name\\\":\\\"Palette Color Success\\\"},{\\\"color\\\":\\\"#1159af\\\",\\\"slug\\\":\\\"palette12\\\",\\\"name\\\":\\\"Palette Color Info\\\"},{\\\"color\\\":\\\"#b82105\\\",\\\"slug\\\":\\\"palette13\\\",\\\"name\\\":\\\"Palette Color Alert\\\"},{\\\"color\\\":\\\"#f7630c\\\",\\\"slug\\\":\\\"palette14\\\",\\\"name\\\":\\\"Palette Color Warning\\\"},{\\\"color\\\":\\\"#f5a524\\\",\\\"slug\\\":\\\"palette15\\\",\\\"name\\\":\\\"Palette Color Rating\\\"}],\\\"second-palette\\\":[{\\\"color\\\":\\\"#3182CE\\\",\\\"slug\\\":\\\"palette1\\\",\\\"name\\\":\\\"Palette Color 1\\\"},{\\\"color\\\":\\\"#2B6CB0\\\",\\\"slug\\\":\\\"palette2\\\",\\\"name\\\":\\\"Palette Color 2\\\"},{\\\"color\\\":\\\"#1A202C\\\",\\\"slug\\\":\\\"palette3\\\",\\\"name\\\":\\\"Palette Color 3\\\"},{\\\"color\\\":\\\"#2D3748\\\",\\\"slug\\\":\\\"palette4\\\",\\\"name\\\":\\\"Palette Color 4\\\"},{\\\"color\\\":\\\"#4A5568\\\",\\\"slug\\\":\\\"palette5\\\",\\\"name\\\":\\\"Palette Color 5\\\"},{\\\"color\\\":\\\"#718096\\\",\\\"slug\\\":\\\"palette6\\\",\\\"name\\\":\\\"Palette Color 6\\\"},{\\\"color\\\":\\\"#EDF2F7\\\",\\\"slug\\\":\\\"palette7\\\",\\\"name\\\":\\\"Palette Color 7\\\"},{\\\"color\\\":\\\"#F7FAFC\\\",\\\"slug\\\":\\\"palette8\\\",\\\"name\\\":\\\"Palette Color 8\\\"},{\\\"color\\\":\\\"#ffffff\\\",\\\"slug\\\":\\\"palette9\\\",\\\"name\\\":\\\"Palette Color 9\\\"},{\\\"color\\\":\\\"#FfFfFf\\\",\\\"slug\\\":\\\"palette10\\\",\\\"name\\\":\\\"Palette Color Complement\\\"},{\\\"color\\\":\\\"#13612e\\\",\\\"slug\\\":\\\"palette11\\\",\\\"name\\\":\\\"Palette Color Success\\\"},{\\\"color\\\":\\\"#1159af\\\",\\\"slug\\\":\\\"palette12\\\",\\\"name\\\":\\\"Palette Color Info\\\"},{\\\"color\\\":\\\"#b82105\\\",\\\"slug\\\":\\\"palette13\\\",\\\"name\\\":\\\"Palette Color Alert\\\"},{\\\"color\\\":\\\"#f7630c\\\",\\\"slug\\\":\\\"palette14\\\",\\\"name\\\":\\\"Palette Color Warning\\\"},{\\\"color\\\":\\\"#f5a524\\\",\\\"slug\\\":\\\"palette15\\\",\\\"name\\\":\\\"Palette Color Rating\\\"}],\\\"third-palette\\\":[{\\\"color\\\":\\\"#3182CE\\\",\\\"slug\\\":\\\"palette1\\\",\\\"name\\\":\\\"Palette Color 1\\\"},{\\\"color\\\":\\\"#2B6CB0\\\",\\\"slug\\\":\\\"palette2\\\",\\\"name\\\":\\\"Palette Color 2\\\"},{\\\"color\\\":\\\"#1A202C\\\",\\\"slug\\\":\\\"palette3\\\",\\\"name\\\":\\\"Palette Color 3\\\"},{\\\"color\\\":\\\"#2D3748\\\",\\\"slug\\\":\\\"palette4\\\",\\\"name\\\":\\\"Palette Color 4\\\"},{\\\"color\\\":\\\"#4A5568\\\",\\\"slug\\\":\\\"palette5\\\",\\\"name\\\":\\\"Palette Color 5\\\"},{\\\"color\\\":\\\"#718096\\\",\\\"slug\\\":\\\"palette6\\\",\\\"name\\\":\\\"Palette Color 6\\\"},{\\\"color\\\":\\\"#EDF2F7\\\",\\\"slug\\\":\\\"palette7\\\",\\\"name\\\":\\\"Palette Color 7\\\"},{\\\"color\\\":\\\"#F7FAFC\\\",\\\"slug\\\":\\\"palette8\\\",\\\"name\\\":\\\"Palette Color 8\\\"},{\\\"color\\\":\\\"#ffffff\\\",\\\"slug\\\":\\\"palette9\\\",\\\"name\\\":\\\"Palette Color 9\\\"},{\\\"color\\\":\\\"#FfFfFf\\\",\\\"slug\\\":\\\"palette10\\\",\\\"name\\\":\\\"Palette Color Complement\\\"},{\\\"color\\\":\\\"#13612e\\\",\\\"slug\\\":\\\"palette11\\\",\\\"name\\\":\\\"Palette Color Success\\\"},{\\\"color\\\":\\\"#1159af\\\",\\\"slug\\\":\\\"palette12\\\",\\\"name\\\":\\\"Palette Color Info\\\"},{\\\"color\\\":\\\"#b82105\\\",\\\"slug\\\":\\\"palette13\\\",\\\"name\\\":\\\"Palette Color Alert\\\"},{\\\"color\\\":\\\"#f7630c\\\",\\\"slug\\\":\\\"palette14\\\",\\\"name\\\":\\\"Palette Color Warning\\\"},{\\\"color\\\":\\\"#f5a524\\\",\\\"slug\\\":\\\"palette15\\\",\\\"name\\\":\\\"Palette Color Rating\\\"}],\\\"active\\\":\\\"palette\\\"}\",\"type\":\"option\",\"user_id\":17,\"date_modified_gmt\":\"2026-06-07 04:13:56\"}}','','','trash','closed','closed','','6bba59a9-ff09-4989-a1b0-36fb783e5c8c','','','2026-06-07 10:13:56','2026-06-07 04:13:56','','0','https://hypergrowth.fishgrowth.xyz/6bba59a9-ff09-4989-a1b0-36fb783e5c8c/','0','customize_changeset','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1793','17','2026-06-07 13:38:36','2026-06-07 07:38:36','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>Elegance \nRedefined</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">exclusive-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">man-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Men\'s Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">stylish </a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">New Arrivals</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Best Collections</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Top Collections</a></h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our style\n</h6>		\n			<h2>Fashion</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick &amp; Fashion</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style<br></h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2> Your Style</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 13:38:36','2026-06-07 07:38:36','','15','https://hypergrowth.fishgrowth.xyz/?p=1793','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1794','17','2026-06-07 13:38:36','2026-06-07 07:38:36','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>Elegance \nRedefined</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">exclusive-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">man-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Men\'s Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">stylish </a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">New Arrivals</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Best Collections</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Top Collections</a></h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our style\n</h6>		\n			<h2>Fashion</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick &amp; Fashion</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style<br></h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2> Your Style</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 13:38:36','2026-06-07 07:38:36','','15','https://hypergrowth.fishgrowth.xyz/?p=1794','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1795','17','2026-06-07 13:38:36','2026-06-07 07:38:36','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>Elegance \nRedefined</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">exclusive-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">man-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Men\'s Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">stylish </a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">New Arrivals</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Best Collections</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Top Collections</a></h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our style\n</h6>		\n			<h2>Fashion</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick &amp; Fashion</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style<br></h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2> Your Style</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-07 13:38:36','2026-06-07 07:38:36','','15','https://hypergrowth.fishgrowth.xyz/?p=1795','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1796','17','2026-06-07 13:52:19','2026-06-07 07:52:19','<h6>Our Story</h6>		\n			<h2>The story about <br>our pizzeria</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.</p>		\n			<h5>Welcome To Our Restaurant\n</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.</p>		\n										<img width=\"800\" height=\"533\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/stefan-c-asafti-9p6pFEwq-wI-unsplash.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/stefan-c-asafti-9p6pFEwq-wI-unsplash.jpg 800w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/stefan-c-asafti-9p6pFEwq-wI-unsplash-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/stefan-c-asafti-9p6pFEwq-wI-unsplash-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/stefan-c-asafti-9p6pFEwq-wI-unsplash-600x400.jpg 600w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h5>Our family history</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum.</p>		\n			<h5>Founded in 1973</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum.</p>		\n										<img width=\"228\" height=\"71\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/signature5fd4f610696d4-e1607792199782.png\" alt=\"\" loading=\"lazy\" />											\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/florencia-viadana-Uz1ZeMJ2lsI-unsplash-p3k7qekwk0j09lux4xasf9qetnqkzdyzh6td17ke8w.jpg\" title=\"florencia-viadana-Uz1ZeMJ2lsI-unsplash\" alt=\"florencia-viadana-Uz1ZeMJ2lsI-unsplash\" />											\n				0\n							Ingredients\n				0\n				+\n							Clients Daily\n				0\n				+\n							Years of Experience\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n							Fresh & Tasty\n			<h6>learn More</h6>		\n			<h2>Our Great Crew\n</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.		\n										<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-1.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-1-245x300.jpg 245w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h5>William Smith\n</h5>		\n			<h6>Chef</h6>		\n										<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-3.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-3.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-3-245x300.jpg 245w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h5>Karen Goldsmith</h5>		\n			<h6>Cook</h6>		\n										<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-4.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-4-245x300.jpg 245w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h5>Andrew Martinez\n</h5>		\n			<h6>Cook</h6>		\n										<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-2.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-2-245x300.jpg 245w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h5>Matthew Anderson\n</h5>		\n			<h6>Cook</h6>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"77525\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"234565\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"23511455\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"5975954\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"114896d\" data-elementor-lightbox-title=\"6956\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"114896d\" data-elementor-lightbox-title=\"8978\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"114896d\" data-elementor-lightbox-title=\"12341\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"114896d\" data-elementor-lightbox-title=\"36737\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure>','About Us','','inherit','closed','closed','','511-revision-v1','','','2026-06-07 13:52:19','2026-06-07 07:52:19','','511','https://hypergrowth.fishgrowth.xyz/?p=1796','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1797','17','2026-06-07 13:52:19','2026-06-07 07:52:19','<h6>Our Story</h6>		\n			<h2>The story about <br>our pizzeria</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.</p>		\n			<h5>Welcome To Our Restaurant\n</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.</p>		\n										<img width=\"800\" height=\"533\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/stefan-c-asafti-9p6pFEwq-wI-unsplash.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/stefan-c-asafti-9p6pFEwq-wI-unsplash.jpg 800w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/stefan-c-asafti-9p6pFEwq-wI-unsplash-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/stefan-c-asafti-9p6pFEwq-wI-unsplash-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/stefan-c-asafti-9p6pFEwq-wI-unsplash-600x400.jpg 600w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h5>Our family history</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum.</p>		\n			<h5>Founded in 1973</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum.</p>		\n										<img width=\"228\" height=\"71\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/signature5fd4f610696d4-e1607792199782.png\" alt=\"\" loading=\"lazy\" />											\n										<img src=\"https://startertemplatecloud.com/e09/wp-content/uploads/sites/21/elementor/thumbs/florencia-viadana-Uz1ZeMJ2lsI-unsplash-p3k7qekwk0j09lux4xasf9qetnqkzdyzh6td17ke8w.jpg\" title=\"florencia-viadana-Uz1ZeMJ2lsI-unsplash\" alt=\"florencia-viadana-Uz1ZeMJ2lsI-unsplash\" />											\n				0\n							Ingredients\n				0\n				+\n							Clients Daily\n				0\n				+\n							Years of Experience\n				0\n				{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}\n							Fresh & Tasty\n			<h6>learn More</h6>		\n			<h2>Our Great Crew\n</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.		\n										<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-1.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-1-245x300.jpg 245w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h5>William Smith\n</h5>		\n			<h6>Chef</h6>		\n										<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-3.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-3.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-3-245x300.jpg 245w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h5>Karen Goldsmith</h5>		\n			<h6>Cook</h6>		\n										<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-4.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-4-245x300.jpg 245w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h5>Andrew Martinez\n</h5>		\n			<h6>Cook</h6>		\n										<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-2.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-2-245x300.jpg 245w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h5>Matthew Anderson\n</h5>		\n			<h6>Cook</h6>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"77525\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/77525-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"234565\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/234565-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"23511455\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/23511455-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"5975954\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/5975954-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"114896d\" data-elementor-lightbox-title=\"6956\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/6956-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"114896d\" data-elementor-lightbox-title=\"8978\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/8978-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"114896d\" data-elementor-lightbox-title=\"12341\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/12341-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"114896d\" data-elementor-lightbox-title=\"36737\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737.jpg\'><img width=\"1200\" height=\"800\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737.jpg 1200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737-1024x683.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/36737-600x400.jpg 600w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /></a>\n			</figure>','About Us','','inherit','closed','closed','','511-revision-v1','','','2026-06-07 13:52:19','2026-06-07 07:52:19','','511','https://hypergrowth.fishgrowth.xyz/?p=1797','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1798','17','2026-06-07 13:52:19','2026-06-07 07:52:19','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Our Story</h6>		\n			<h2>The story about <br>our SHOP</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur venenatis, nisl in bib endum commodo, sapien justo cursus urna.</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/—Pngtree—letter-t-shopping-logo-alphabet_6953022.png\" title=\"—Pngtree—letter t shopping logo alphabet_6953022\" alt=\"—Pngtree—letter t shopping logo alphabet_6953022\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n													<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-1.jpg\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<h5>William Smith\n</h5>		\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-3.jpg\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-1.jpg\" alt=\"\" />													\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<h5>Karen Goldsmith</h5>		\n													<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-4.jpg\" alt=\"\" />													\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<h5>Andrew Martinez\n</h5>		\n													<img width=\"600\" height=\"736\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/team-2.jpg\" alt=\"\" />													\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<h5>Matthew Anderson\n</h5>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};max-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};margin:0 auto}.elementor-image-gallery .gallery-item img{margin:0 auto}.elementor-image-gallery .gallery-item .gallery-caption{margin:0}.elementor-image-gallery figure img{display:block}.elementor-image-gallery figure figcaption{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.gallery-spacing-custom .elementor-image-gallery .gallery-icon{padding:0}@media (min-width:768px){.elementor-image-gallery .gallery-columns-2 .gallery-item{max-width:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-image-gallery .gallery-columns-4 .gallery-item{max-width:25{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-image-gallery .gallery-columns-5 .gallery-item{max-width:20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-image-gallery .gallery-columns-10 .gallery-item{max-width:10{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}}@media (min-width:480px) and (max-width:767px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}}@media (max-width:479px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}}</style>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"ChatGPT-Image-Jun-3-2026-02_28_33-PM\" data-e-action-hash=\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6MTc0MiwidXJsIjoiaHR0cDpcL1wvbG9jYWxob3N0XC9jdXN0b21fd29yZHByZXNzXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wNlwvQ2hhdEdQVC1JbWFnZS1KdW4tMy0yMDI2LTAyXzI4XzMzLVBNLmpwZyIsInNsaWRlc2hvdyI6IjllOGQxOGIifQ{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\'><img width=\"1254\" height=\"1254\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"ChatGPT-Image-Jun-3-2026-02_30_52-PM\" data-e-action-hash=\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6MTczOSwidXJsIjoiaHR0cDpcL1wvbG9jYWxob3N0XC9jdXN0b21fd29yZHByZXNzXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wNlwvQ2hhdEdQVC1JbWFnZS1KdW4tMy0yMDI2LTAyXzMwXzUyLVBNLmpwZyIsInNsaWRlc2hvdyI6IjllOGQxOGIifQ{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\'><img width=\"1254\" height=\"1254\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM-1\" data-e-action-hash=\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6MTczMSwidXJsIjoiaHR0cDpcL1wvbG9jYWxob3N0XC9jdXN0b21fd29yZHByZXNzXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wNlwvQ2hhdEdQVC1JbWFnZS1KdW4tMy0yMDI2LTAyXzI3XzM0LVBNLTEuanBnIiwic2xpZGVzaG93IjoiOWU4ZDE4YiJ9\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM-1.jpg\'><img width=\"1254\" height=\"1254\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM-1.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"9e8d18b\" data-elementor-lightbox-title=\"ChatGPT-Image-Jun-3-2026-02_30_59-PM\" data-e-action-hash=\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6MTczNSwidXJsIjoiaHR0cDpcL1wvbG9jYWxob3N0XC9jdXN0b21fd29yZHByZXNzXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wNlwvQ2hhdEdQVC1JbWFnZS1KdW4tMy0yMDI2LTAyXzMwXzU5LVBNLmpwZyIsInNsaWRlc2hvdyI6IjllOGQxOGIifQ{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D\" href=\'https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\'><img width=\"1254\" height=\"1254\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" decoding=\"async\" /></a>\n			</figure>','About Us','','inherit','closed','closed','','511-revision-v1','','','2026-06-07 13:52:19','2026-06-07 07:52:19','','511','https://hypergrowth.fishgrowth.xyz/?p=1798','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1799','17','2026-06-07 13:53:52','2026-06-07 07:53:52','<img width=\"1024\" height=\"785\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/olga-team-DijH3cxId6w-unsplash-1024x785.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/olga-team-DijH3cxId6w-unsplash-1024x785.png 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/olga-team-DijH3cxId6w-unsplash-300x230.png 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/olga-team-DijH3cxId6w-unsplash-768x589.png 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/olga-team-DijH3cxId6w-unsplash-600x460.png 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/olga-team-DijH3cxId6w-unsplash.png 1335w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Best Offer Today</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n					<ul>\n							<li>\n										Fresh 100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} meat\n									</li>\n								<li>\n										Fresh 100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} meat\n									</li>\n								<li>\n										Organic vegetables\n									</li>\n								<li>\n										Organic vegetables\n									</li>\n								<li>\n										Brand new taste!\n									</li>\n								<li>\n										Brand new taste!\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n										<img width=\"1024\" height=\"682\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash-1024x682.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash-600x400.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash.jpg 1400w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>EVERY DAY<br> SPECIALS\n</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n										<img width=\"1024\" height=\"682\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash-1024x682.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash-768x511.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash-600x399.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash.jpg 1400w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>PIZZERIA <br>RESERVATIONS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n										<img width=\"1024\" height=\"682\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash-1024x682.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash-600x400.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash.jpg 1400w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>WE DELIVER <br>AT YOUR DOOR</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n			<h2>The best burgers you will ever find !\n</h2>		\n			<a href=\"#\" role=\"button\">\n						Go to Menu\n					</a>\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\n			<h6>Best Menu</h6>		\n			<h2>WE’VE GOT YOU COVERED!\n</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<figure><img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_05.png 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_05-150x150.png 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_05-100x100.png 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" /></figure><h5>FAST DELIVERY</h5><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_10.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_10.png 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_10-150x150.png 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_10-100x100.png 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" /></figure><h5>PICKUP IN STORE</h5><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_03.png 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_03-150x150.png 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_03-100x100.png 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" /></figure><h5>SEAT RESERVATION</h5><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_13.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_13.png 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_13-150x150.png 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_13-100x100.png 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" /></figure><h5>CATERING IS AN OPTION</h5><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>BOOK YOUR TABLE NOW FOR THE BEST CHOW\n</h5>		\n			<a href=\"#\" role=\"button\">\n						Download App\n					</a>','Services','','inherit','closed','closed','','865-revision-v1','','','2026-06-07 13:53:52','2026-06-07 07:53:52','','865','https://hypergrowth.fishgrowth.xyz/?p=1799','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1800','17','2026-06-07 13:53:52','2026-06-07 07:53:52','<img width=\"1024\" height=\"785\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/olga-team-DijH3cxId6w-unsplash-1024x785.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/olga-team-DijH3cxId6w-unsplash-1024x785.png 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/olga-team-DijH3cxId6w-unsplash-300x230.png 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/olga-team-DijH3cxId6w-unsplash-768x589.png 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/olga-team-DijH3cxId6w-unsplash-600x460.png 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/olga-team-DijH3cxId6w-unsplash.png 1335w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Best Offer Today</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n					<ul>\n							<li>\n										Fresh 100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} meat\n									</li>\n								<li>\n										Fresh 100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} meat\n									</li>\n								<li>\n										Organic vegetables\n									</li>\n								<li>\n										Organic vegetables\n									</li>\n								<li>\n										Brand new taste!\n									</li>\n								<li>\n										Brand new taste!\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						order now\n					</a>\n										<img width=\"1024\" height=\"682\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash-1024x682.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash-600x400.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/jakub-kapusnak-4f4YZfDMLeU-unsplash.jpg 1400w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>EVERY DAY<br> SPECIALS\n</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n										<img width=\"1024\" height=\"682\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash-1024x682.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash-768x511.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash-600x399.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/paula-vermeulen-URjZkhqsuBk-unsplash.jpg 1400w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>PIZZERIA <br>RESERVATIONS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n										<img width=\"1024\" height=\"682\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash-1024x682.jpg 1024w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash-300x200.jpg 300w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash-768x512.jpg 768w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash-600x400.jpg 600w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/terry-jaskiw-HSQdIUL3o1s-unsplash.jpg 1400w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h4>WE DELIVER <br>AT YOUR DOOR</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n			<h2>The best burgers you will ever find !\n</h2>		\n			<a href=\"#\" role=\"button\">\n						Go to Menu\n					</a>\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\n			<h6>Best Menu</h6>		\n			<h2>WE’VE GOT YOU COVERED!\n</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<figure><img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_05.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_05.png 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_05-150x150.png 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_05-100x100.png 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" /></figure><h5>FAST DELIVERY</h5><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_10.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_10.png 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_10-150x150.png 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_10-100x100.png 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" /></figure><h5>PICKUP IN STORE</h5><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_03.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_03.png 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_03-150x150.png 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_03-100x100.png 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" /></figure><h5>SEAT RESERVATION</h5><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"200\" height=\"200\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_13.png\" alt=\"\" loading=\"lazy\" srcset=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_13.png 200w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_13-150x150.png 150w, https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2020/12/FoodIcons-Converted_13-100x100.png 100w\" sizes=\"(max-width: 200px) 100vw, 200px\" /></figure><h5>CATERING IS AN OPTION</h5><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<h5>BOOK YOUR TABLE NOW FOR THE BEST CHOW\n</h5>		\n			<a href=\"#\" role=\"button\">\n						Download App\n					</a>','Services','','inherit','closed','closed','','865-revision-v1','','','2026-06-07 13:53:52','2026-06-07 07:53:52','','865','https://hypergrowth.fishgrowth.xyz/?p=1800','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1801','17','2026-06-07 13:53:52','2026-06-07 07:53:52','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"687\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/2wIeE.jpg\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Best Offer Today</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_05-PM.png\" alt=\"\" />													\n			<h4>EVERY DAY<br> SPECIALS\n</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n													<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_09-PM.png\" alt=\"\" />													\n			<h4>PIZZERIA <br>RESERVATIONS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n													<img width=\"687\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/2wIeE.jpg\" alt=\"\" />													\n			<h4>WE DELIVER <br>AT YOUR DOOR</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.</p>		\n			<h6>Best style</h6>		\n			<h2>WE’VE GOT YOU COVERED!\n</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Services','','inherit','closed','closed','','865-revision-v1','','','2026-06-07 13:53:52','2026-06-07 07:53:52','','865','https://hypergrowth.fishgrowth.xyz/?p=1801','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1803','17','2026-06-07 13:59:04','2026-06-07 07:59:04','শরীরের সাজ-পোশাক শুধুমাত্র আমাদের বাহ্যিকরূপকে সুন্দর করে তোলে না, বরং আমাদের আত্মবিশ্বাস ও ব্যক্তিত্বের প্রতিফলন ঘটায়। বর্তমান আধুনিক যুগে ফ্যাশন স্টাইল একটি বিশেষ মাধ্যম হিসেবে বিবেচিত হয়, যা আমাদের রুচি, সাংস্কৃতিক প্রেক্ষাপট এবং জীবনের পসন্দ প্রকাশ করে। এই ব্লগ পোস্টে আমরা ফ্যাশন স্টাইলের গুরুত্ব, বিভিন্ন ধরন এবং সঠিক ফ্যাশন বেছে নেওয়ার কিছু গুরুত্বপূর্ণ কৌশল আলোচনা করব।\n\nফ্যাশন স্টাইলে আধুনিক প্রবণতা\n\nফ্যাশন জগত দ্রুত পরিবর্তনশীল। প্রতি সিজনে নতুন নতুন ডিজাইন, রঙ এবং স্টাইল আসতে থাকে। বর্তমানে সূক্ষ্ম এবং মিনিমালিস্ট লুকে বেশ জনপ্রিয়তা পাচ্ছে। পাশাপাশি, রেট্রো ফ্যাশন বা পুরানো দিনের স্টাইল আবারো রূপ নিচ্ছে যুব সম্প্রদায়ের মধ্যে। অর্গানিক এবং ইকো-ফ্রেন্ডলি পোশাকের প্রতি নতুন করে আগ্রহ তৈরি হচ্ছে, যা পরিবেশ সচেতন ক্রেতাদের জন্য সুখবর।\n\nবর্তমান ফ্যাশনের মূল বৈশিষ্ট্য\n\n১. বহুমাত্রিকতা (Versatility): একটি স্টাইল হতে হবে নিঃসন্দেহে বহুমুখী, যাতে সেটি বিভিন্ন অনুষ্ঠানে ব্যবহার করা যায়।\n\n২. আরাম ও ফাংশনালিটি: শুধু দেখতে ভালো লাগলেই হবে না, পোশাকের আরামদায়কতা এবং কার্যকরিতাও জরুরি।\n\n৩. আত্মবিশ্বাস বৃদ্ধি: যে পোশাক পরিধান করলে ব্যক্তি নিজেকে আত্মবিশ্বাসী মনে করবে, সেটি সেরা ফ্যাশন।\n\nব্যক্তিগত স্টাইল আবিষ্কারের পরামর্শ\n\nপ্রথমেই নিজের শরীরের ধরন, রং এবং পছন্দ বুঝে নেওয়া উচিত। নীচের ধাপগুলো অনুসরণ করুন:\n\n- নিজের ওয়ারড্রোব বিশ্লেষণ করুন, কোন ধরনের পোশাক আপনাকে সবচেয়ে বেশি প্রশংসা পেয়েছে তা নির্ধারণ করুন।\n\n- বিভিন্ন ফ্যাশন ম্যাগাজিন এবং সোশ্যাল মিডিয়া থেকে অনুপ্রেরণা','ফ্যাশন স্টাইল: আধুনিক যুগের আত্মবিশ্বাসের পরিচয়','ফ্যাশন স্টাইল শুধু বাইরের চেহারাই নয়, এটি আত্মবিশ্বাসের প্রকাশ। আধুনিক যুগে সঠিক স্টাইল মানুষের ব্যক্তিত্বকে নতুন মাত্রা দেয়। পরিবর্তনকে আলিঙ্গন করে নিজেকে গড়ে তুলুন অনন্য এবং আত্মবিশ্বাসী।','publish','closed','closed','','fashion-style-modern-confidence','','','2026-06-07 14:06:45','2026-06-07 08:06:45','','0','https://hypergrowth.fishgrowth.xyz/?p=1803','0','post','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1804','17','2026-06-07 13:58:32','2026-06-07 07:58:32','শরীরের সাজ-পোশাক শুধুমাত্র আমাদের বাহ্যিকরূপকে সুন্দর করে তোলে না, বরং আমাদের আত্মবিশ্বাস ও ব্যক্তিত্বের প্রতিফলন ঘটায়। বর্তমান আধুনিক যুগে ফ্যাশন স্টাইল একটি বিশেষ মাধ্যম হিসেবে বিবেচিত হয়, যা আমাদের রুচি, সাংস্কৃতিক প্রেক্ষাপট এবং জীবনের পসন্দ প্রকাশ করে। এই ব্লগ পোস্টে আমরা ফ্যাশন স্টাইলের গুরুত্ব, বিভিন্ন ধরন এবং সঠিক ফ্যাশন বেছে নেওয়ার কিছু গুরুত্বপূর্ণ কৌশল আলোচনা করব।\n\nফ্যাশন স্টাইলে আধুনিক প্রবণতা\n\nফ্যাশন জগত দ্রুত পরিবর্তনশীল। প্রতি সিজনে নতুন নতুন ডিজাইন, রঙ এবং স্টাইল আসতে থাকে। বর্তমানে সূক্ষ্ম এবং মিনিমালিস্ট লুকে বেশ জনপ্রিয়তা পাচ্ছে। পাশাপাশি, রেট্রো ফ্যাশন বা পুরানো দিনের স্টাইল আবারো রূপ নিচ্ছে যুব সম্প্রদায়ের মধ্যে। অর্গানিক এবং ইকো-ফ্রেন্ডলি পোশাকের প্রতি নতুন করে আগ্রহ তৈরি হচ্ছে, যা পরিবেশ সচেতন ক্রেতাদের জন্য সুখবর।\n\nবর্তমান ফ্যাশনের মূল বৈশিষ্ট্য\n\n১. বহুমাত্রিকতা (Versatility): একটি স্টাইল হতে হবে নিঃসন্দেহে বহুমুখী, যাতে সেটি বিভিন্ন অনুষ্ঠানে ব্যবহার করা যায়।\n\n২. আরাম ও ফাংশনালিটি: শুধু দেখতে ভালো লাগলেই হবে না, পোশাকের আরামদায়কতা এবং কার্যকরিতাও জরুরি।\n\n৩. আত্মবিশ্বাস বৃদ্ধি: যে পোশাক পরিধান করলে ব্যক্তি নিজেকে আত্মবিশ্বাসী মনে করবে, সেটি সেরা ফ্যাশন।\n\nব্যক্তিগত স্টাইল আবিষ্কারের পরামর্শ\n\nপ্রথমেই নিজের শরীরের ধরন, রং এবং পছন্দ বুঝে নেওয়া উচিত। নীচের ধাপগুলো অনুসরণ করুন:\n\n- নিজের ওয়ারড্রোব বিশ্লেষণ করুন, কোন ধরনের পোশাক আপনাকে সবচেয়ে বেশি প্রশংসা পেয়েছে তা নির্ধারণ করুন।\n\n- বিভিন্ন ফ্যাশন ম্যাগাজিন এবং সোশ্যাল মিডিয়া থেকে অনুপ্রেরণা','ফ্যাশন স্টাইল: আধুনিক যুগের আত্মবিশ্বাসের পরিচয়','','inherit','closed','closed','','1803-revision-v1','','','2026-06-07 13:58:32','2026-06-07 07:58:32','','1803','https://hypergrowth.fishgrowth.xyz/?p=1804','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1805','17','2026-06-07 13:58:34','2026-06-07 07:58:34','শরীরের সাজ-পোশাক শুধুমাত্র আমাদের বাহ্যিকরূপকে সুন্দর করে তোলে না, বরং আমাদের আত্মবিশ্বাস ও ব্যক্তিত্বের প্রতিফলন ঘটায়। বর্তমান আধুনিক যুগে ফ্যাশন স্টাইল একটি বিশেষ মাধ্যম হিসেবে বিবেচিত হয়, যা আমাদের রুচি, সাংস্কৃতিক প্রেক্ষাপট এবং জীবনের পসন্দ প্রকাশ করে। এই ব্লগ পোস্টে আমরা ফ্যাশন স্টাইলের গুরুত্ব, বিভিন্ন ধরন এবং সঠিক ফ্যাশন বেছে নেওয়ার কিছু গুরুত্বপূর্ণ কৌশল আলোচনা করব।\n\nফ্যাশন স্টাইলে আধুনিক প্রবণতা\n\nফ্যাশন জগত দ্রুত পরিবর্তনশীল। প্রতি সিজনে নতুন নতুন ডিজাইন, রঙ এবং স্টাইল আসতে থাকে। বর্তমানে সূক্ষ্ম এবং মিনিমালিস্ট লুকে বেশ জনপ্রিয়তা পাচ্ছে। পাশাপাশি, রেট্রো ফ্যাশন বা পুরানো দিনের স্টাইল আবারো রূপ নিচ্ছে যুব সম্প্রদায়ের মধ্যে। অর্গানিক এবং ইকো-ফ্রেন্ডলি পোশাকের প্রতি নতুন করে আগ্রহ তৈরি হচ্ছে, যা পরিবেশ সচেতন ক্রেতাদের জন্য সুখবর।\n\nবর্তমান ফ্যাশনের মূল বৈশিষ্ট্য\n\n১. বহুমাত্রিকতা (Versatility): একটি স্টাইল হতে হবে নিঃসন্দেহে বহুমুখী, যাতে সেটি বিভিন্ন অনুষ্ঠানে ব্যবহার করা যায়।\n\n২. আরাম ও ফাংশনালিটি: শুধু দেখতে ভালো লাগলেই হবে না, পোশাকের আরামদায়কতা এবং কার্যকরিতাও জরুরি।\n\n৩. আত্মবিশ্বাস বৃদ্ধি: যে পোশাক পরিধান করলে ব্যক্তি নিজেকে আত্মবিশ্বাসী মনে করবে, সেটি সেরা ফ্যাশন।\n\nব্যক্তিগত স্টাইল আবিষ্কারের পরামর্শ\n\nপ্রথমেই নিজের শরীরের ধরন, রং এবং পছন্দ বুঝে নেওয়া উচিত। নীচের ধাপগুলো অনুসরণ করুন:\n\n- নিজের ওয়ারড্রোব বিশ্লেষণ করুন, কোন ধরনের পোশাক আপনাকে সবচেয়ে বেশি প্রশংসা পেয়েছে তা নির্ধারণ করুন।\n\n- বিভিন্ন ফ্যাশন ম্যাগাজিন এবং সোশ্যাল মিডিয়া থেকে অনুপ্রেরণা','ফ্যাশন স্টাইল: আধুনিক যুগের আত্মবিশ্বাসের পরিচয়','ফ্যাশন স্টাইল শুধু বাইরের চেহারাই নয়, এটি আত্মবিশ্বাসের প্রকাশ। আধুনিক যুগে সঠিক স্টাইল মানুষের ব্যক্তিত্বকে নতুন মাত্রা দেয়। পরিবর্তনকে আলিঙ্গন করে নিজেকে গড়ে তুলুন অনন্য এবং আত্মবিশ্বাসী।','inherit','closed','closed','','1803-revision-v1','','','2026-06-07 13:58:34','2026-06-07 07:58:34','','1803','https://hypergrowth.fishgrowth.xyz/?p=1805','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1806','17','2026-06-07 13:58:54','2026-06-07 07:58:54','','ফ্যাশন স্টাইল: আধুনিক যুগের আত্মবিশ্বাসের পরিচয়','','inherit','closed','closed','','{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c0','','','2026-06-07 13:58:54','2026-06-07 07:58:54','','1803','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260607-075852-46d713133d9ab3faadc9dcb4.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1807','17','2026-06-07 14:14:49','2026-06-07 08:14:49','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/Elementor.zip','Elementor.zip','','private','closed','closed','','elementor-zip','','','2026-06-07 14:14:49','2026-06-07 08:14:49','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/Elementor.zip','0','attachment','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1810','17','2026-06-08 21:35:27','2026-06-08 15:35:27','','গুঁড়','','trash','closed','closed','','{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c0','','','2026-06-09 12:53:11','2026-06-09 06:53:11','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow={b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}97','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1811','17','2026-06-08 21:35:27','2026-06-08 15:35:27','\"\\\"\\\"<h2>u098fu0987 u09b6u09c0u09a4u09c7 u09b0u09beu099cu09b6u09beu09b9u09c0u09b0 u0990u09a4u09bfu09b9u09cdu09afu09acu09beu09b9u09c0 u0996u09c7u099cu09c1u09b0 u0997u09c1u09a1u09bc<\\/h2>ttntt<p><strong>u09adu09c7u099cu09beu09b2u09aeu09c1u0995u09cdu09a4 u0997u09c1u09dc<\\/strong><b><b> u09aeu09beu09a8u09c7 u09acu09beu0999u09beu09b2u09bfu09b0 u0995u09beu099bu09c7, u09b8u09beu09b9u09beu09acu09be u09abu09c1u09a1-u098fu09b0 u0997u09c1u09dc u099bu09beu09dcu09be u0986u09b0 u0995u09bf u0986u099bu09c7<\\/b><\\/b><\\/p>https:\\/\\/youtu.be\\/iMpHa3OlAWQttnttt<a href=\\\"#order\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u0995u09cdu09b2u09bfu0995 u0995u09b0u09c1u09a8nttttt<\\/a>nttt<h2>u0996u09c7u099cu09c1u09b0u09c7u09b0 u0997u09c1u09a1u09bc u099au09c7u09a8u09beu09b0 u0989u09aau09beu09df u2b07ufe0f<\\/h2>ttntt<p><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/> u0996u09beu0981u099fu09bf u0997u09c1u09a1u09bcu09c7 u09a8u09cdu09afu09beu099au09beu09b0u09beu09b2 u09b8u09c1u0998u09cdu09b0u09beu09a3 u09a5u09beu0995u09acu09c7u0964<\\/strong><br \\/><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/>u00a0u0995u09beu09b2u09beu09b0 u0997u09beu09ddu09cb u09b2u09beu09b2u099au09c7 u0995u09beu09b2u09beu09b0 u09b9u09acu09c7u0964<\\/strong><br \\/><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/> u09aau09beu099fu09beu09b2u09bf u0997u09c1u09dc u099au09beu09aa u09a6u09bfu09b2u09c7 u09adu09c7u0999u09c7 u09afu09beu09acu09c7u0964<\\/strong><br \\/><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/>u00a0u09a6u09beu09a8u09be u0997u09c1u09dc u0985u09b8u09beu09a7u09beu09b0u09a8 u09a6u09beu09a8u09beu09a6u09beu09b0 u09b9u09acu09c7u0964<\\/strong><br \\/><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/> u099du09cbu09b2u09be u0997u09c1u09dc u09aeu09bfu09b7u09cdu099f u0993 u09b8u09c1u0998u09cdu09b0u09beu09a3 u09a5u09beu0995u09acu09c7u0964<\\/strong><br \\/><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/> u0995u09cbu09a8 u09aau09cdu09b0u0995u09beu09b0 u09b2u09acu09a3u09beu0995u09cdu09a4 u09b2u09beu0997u09acu09c7 u09a8u09beu0964<\\/strong><\\/p>ttnttt<h2>u0986u09aeu09beu09a6u09c7u09b0 u09a5u09c7u0995u09c7 u0995u09c7u09a8 u09a8u09bfu09acu09c7u09a8? <img draggable=\\\"false\\\" role=\\\"img\\\" alt=\\\"u2b07ufe0f\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2b07.svg\\\"><\\/h2>ttntt<p><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/>u00a0<\\/strong><b>u0985u09a5u09c7u09a8u09cdu099fu09bfu0995 u09adu09c7u099cu09beu09b2u09aeu09c1u0995u09cdu09a4 u0996u09c7u099cu09c1u09b0u09c7u09b0 u0997u09c1u09a1u09bc u09a8u09bfu09b6u09cdu099au09afu09bcu09a4u09beu0964<\\/b><br \\/><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/>u00a0u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u0985u0997u09cdu09b0u09c0u09ae u09e7 u099fu09beu0995u09beu0993 u09aau09c7u09aeu09c7u09a8u09cdu099f u0995u09b0u09a4u09c7 u09b9u09acu09c7 u09a8u09beu0964<\\/strong><br \\/><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/>u00a0u0997u09c1u09a1u09bc u09b9u09beu09a4u09c7 u09aau09beu0993u09afu09bcu09beu09b0 u09aau09b0 u099au09c7u0995 u0995u09b0u09c7 u09aau09cdu09b0u09afu09bcu09cbu099cu09a8u09c7 u0996u09c7u09afu09bcu09c7 u09b0u09bfu09b8u09bfu09ad u0995u09b0u09a4u09c7 u09aau09beu09b0u09acu09c7u09a8u0964<\\/strong><br \\/><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/> u0985u09a5u09c7u09a8u09cdu099fu09bfu0995 u09aau09cdu09b0u09cbu09a1u09beu0995u09cdu099f u09a8u09be u09aau09c7u09b2u09c7 u09b8u09beu09a5u09c7 u09b8u09beu09a5u09c7 u09b0u09bfu099fu09beu09b0u09cdu09a8 u09b8u09c1u09acu09bfu09a7u09be u09a5u09beu0995u099bu09c7u0964<\\/strong><\\/p>ttnttt<h1>u09b8u09aeu09cdu09aeu09beu09a8u09bfu09a4 u0995u09beu09b8u09cdu099fu09aeu09beu09b0u09c7u09b0 u09aeu09a4u09beu09aeu09a4u0983<\\/h1>ttnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>tttttttPreviousnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>tttttttNextnttt<a href=\\\"#order\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u0995u09cdu09b2u09bfu0995 u0995u09b0u09c1u09a8nttttt<\\/a>nttt<h2>u0985u09abu09beu09b0 u09aau09cdu09b0u09beu0987u099c<\\/h2>ttntt<p>ud83dudc49u09aau09beu099fu09beu09b2u09bf u0997u09c1u09dc (u09e9u0995u09c7u099cu09bf) u2192 u09e7u09e9u09ebu09e6u099fu09beu0995u09be<br \\/>ud83dudc49u09a6u09beu09a8u09beu09a6u09beu09b0 u0997u09c1u09dc (u09e9u0995u09c7u099cu09bf) u2192 u09e7u09e9u09ebu09e6u099fu09beu0995u09beu00a0<br \\/>ud83dudc49u099au0995u09b2u09c7u099f\\/u09b8u09a8u09cdu09a6u09c7u09b6 u0997u09c1u09dc (u09e8u0995u09c7u099cu09bf) u2192 u09e7u09e9u09e6u09e6u099fu09beu0995u09be<br \\/>ud83dudc49u099du09cbu09b2u09be u0997u09c1u09dc (u09e9u0995u09c7u099cu09bf) u2192 u09e7u09e9u09e8u09e6u099fu09beu0995u09be<\\/p>ttntt<p>&gt;&gt; u09abu09cdu09b0u09bf u09b9u09cbu09ae u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 &lt;&lt;<\\/p>ttnttt<h2>u0985u0997u09cdu09b0u09bfu09ae u09aau09c7u09aeu09c7u09a8u09cdu099f u099bu09beu09dcu09beu0987 u0985u09b0u09cdu09a1u09beu09b0 u0995u09a8u09abu09beu09b0u09cdu09ae u0995u09b0u09a4u09c7 u09a8u09bfu099au09c7u09b0 u09abu09b0u09cdu09aeu099fu09bf u09aau09c2u09b0u09a3 u0995u09b0u09c1u09a8<\\/h2>ttnttt<h4>Checkout ID not found<\\/h4><p>It seems that this is not the CartFlows Checkout page where you have added this shortcode. Please refer to this <a href=\\\"https:\\/\\/cartflows.com\\/docs\\/resolve-checkout-id-not-found-error\\/?utm_source=dashboard&utm_medium=free-cartflows&utm_campaign=docs\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">article<\\/a> to know more.<\\/p>ttnttt<p>u00a9 2023 SahabaFoodbd.com<\\/p>ttnttttt<ul>nttttttt<li>nttttttttttt<a href=\\\"#\\\">ntttttttttttRefund policy nttttttttttt<\\/a>nttttttttt<\\/li>ntttttttt<li>nttttttttttt<a href=\\\"#\\\">ntttttttttttPrivacy policynttttttttttt<\\/a>nttttttttt<\\/li>ntttttttt<li>nttttttttttt<a href=\\\"#\\\">ntttttttttttTerms of servicenttttttttttt<\\/a>nttttttttt<\\/li>ntttttt<\\/ul>\\\"\\\"\"','সাহাবা ফুড স্পেশাল','','trash','closed','closed','','{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c0','','','2026-06-09 12:53:11','2026-06-09 06:53:11','','0','https://hypergrowth.fishgrowth.xyz/step/{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}b8{b979c83bd9','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1812','17','2026-06-08 21:35:27','2026-06-08 15:35:27','\"\\\"\\\"<h2>u098fu0987 u09b6u09c0u09a4u09c7 u09b0u09beu099cu09b6u09beu09b9u09c0u09b0 u0990u09a4u09bfu09b9u09cdu09afu09acu09beu09b9u09c0 u0996u09c7u099cu09c1u09b0 u0997u09c1u09a1u09bc<\\/h2>ttntt<p><strong>u09adu09c7u099cu09beu09b2u09aeu09c1u0995u09cdu09a4 u0997u09c1u09dc<\\/strong><b><b> u09aeu09beu09a8u09c7 u09acu09beu0999u09beu09b2u09bfu09b0 u0995u09beu099bu09c7, u09b8u09beu09b9u09beu09acu09be u09abu09c1u09a1-u098fu09b0 u0997u09c1u09dc u099bu09beu09dcu09be u0986u09b0 u0995u09bf u0986u099bu09c7<\\/b><\\/b><\\/p>https:\\/\\/youtu.be\\/iMpHa3OlAWQttnttt<a href=\\\"#order\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u0995u09cdu09b2u09bfu0995 u0995u09b0u09c1u09a8nttttt<\\/a>nttt<h2>u0996u09c7u099cu09c1u09b0u09c7u09b0 u0997u09c1u09a1u09bc u099au09c7u09a8u09beu09b0 u0989u09aau09beu09df u2b07ufe0f<\\/h2>ttntt<p><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/> u0996u09beu0981u099fu09bf u0997u09c1u09a1u09bcu09c7 u09a8u09cdu09afu09beu099au09beu09b0u09beu09b2 u09b8u09c1u0998u09cdu09b0u09beu09a3 u09a5u09beu0995u09acu09c7u0964<\\/strong><br \\/><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/>u00a0u0995u09beu09b2u09beu09b0 u0997u09beu09ddu09cb u09b2u09beu09b2u099au09c7 u0995u09beu09b2u09beu09b0 u09b9u09acu09c7u0964<\\/strong><br \\/><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/> u09aau09beu099fu09beu09b2u09bf u0997u09c1u09dc u099au09beu09aa u09a6u09bfu09b2u09c7 u09adu09c7u0999u09c7 u09afu09beu09acu09c7u0964<\\/strong><br \\/><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/>u00a0u09a6u09beu09a8u09be u0997u09c1u09dc u0985u09b8u09beu09a7u09beu09b0u09a8 u09a6u09beu09a8u09beu09a6u09beu09b0 u09b9u09acu09c7u0964<\\/strong><br \\/><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/> u099du09cbu09b2u09be u0997u09c1u09dc u09aeu09bfu09b7u09cdu099f u0993 u09b8u09c1u0998u09cdu09b0u09beu09a3 u09a5u09beu0995u09acu09c7u0964<\\/strong><br \\/><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/> u0995u09cbu09a8 u09aau09cdu09b0u0995u09beu09b0 u09b2u09acu09a3u09beu0995u09cdu09a4 u09b2u09beu0997u09acu09c7 u09a8u09beu0964<\\/strong><\\/p>ttnttt<h2>u0986u09aeu09beu09a6u09c7u09b0 u09a5u09c7u0995u09c7 u0995u09c7u09a8 u09a8u09bfu09acu09c7u09a8? <img draggable=\\\"false\\\" role=\\\"img\\\" alt=\\\"u2b07ufe0f\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2b07.svg\\\"><\\/h2>ttntt<p><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/>u00a0<\\/strong><b>u0985u09a5u09c7u09a8u09cdu099fu09bfu0995 u09adu09c7u099cu09beu09b2u09aeu09c1u0995u09cdu09a4 u0996u09c7u099cu09c1u09b0u09c7u09b0 u0997u09c1u09a1u09bc u09a8u09bfu09b6u09cdu099au09afu09bcu09a4u09beu0964<\\/b><br \\/><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/>u00a0u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u0985u0997u09cdu09b0u09c0u09ae u09e7 u099fu09beu0995u09beu0993 u09aau09c7u09aeu09c7u09a8u09cdu099f u0995u09b0u09a4u09c7 u09b9u09acu09c7 u09a8u09beu0964<\\/strong><br \\/><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/>u00a0u0997u09c1u09a1u09bc u09b9u09beu09a4u09c7 u09aau09beu0993u09afu09bcu09beu09b0 u09aau09b0 u099au09c7u0995 u0995u09b0u09c7 u09aau09cdu09b0u09afu09bcu09cbu099cu09a8u09c7 u0996u09c7u09afu09bcu09c7 u09b0u09bfu09b8u09bfu09ad u0995u09b0u09a4u09c7 u09aau09beu09b0u09acu09c7u09a8u0964<\\/strong><br \\/><strong><img role=\\\"img\\\" draggable=\\\"false\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/2705.svg\\\" alt=\\\"u2705\\\" \\/> u0985u09a5u09c7u09a8u09cdu099fu09bfu0995 u09aau09cdu09b0u09cbu09a1u09beu0995u09cdu099f u09a8u09be u09aau09c7u09b2u09c7 u09b8u09beu09a5u09c7 u09b8u09beu09a5u09c7 u09b0u09bfu099fu09beu09b0u09cdu09a8 u09b8u09c1u09acu09bfu09a7u09be u09a5u09beu0995u099bu09c7u0964<\\/strong><\\/p>ttnttt<h1>u09b8u09aeu09cdu09aeu09beu09a8u09bfu09a4 u0995u09beu09b8u09cdu099fu09aeu09beu09b0u09c7u09b0 u09aeu09a4u09beu09aeu09a4u0983<\\/h1>ttnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>tttttttPreviousnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>tttttttNextnttt<a href=\\\"#order\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u0995u09cdu09b2u09bfu0995 u0995u09b0u09c1u09a8nttttt<\\/a>nttt<h2>u0985u09abu09beu09b0 u09aau09cdu09b0u09beu0987u099c<\\/h2>ttntt<p>ud83dudc49u09aau09beu099fu09beu09b2u09bf u0997u09c1u09dc (u09e9u0995u09c7u099cu09bf) u2192 u09e7u09e9u09ebu09e6u099fu09beu0995u09be<br \\/>ud83dudc49u09a6u09beu09a8u09beu09a6u09beu09b0 u0997u09c1u09dc (u09e9u0995u09c7u099cu09bf) u2192 u09e7u09e9u09ebu09e6u099fu09beu0995u09beu00a0<br \\/>ud83dudc49u099au0995u09b2u09c7u099f\\/u09b8u09a8u09cdu09a6u09c7u09b6 u0997u09c1u09dc (u09e8u0995u09c7u099cu09bf) u2192 u09e7u09e9u09e6u09e6u099fu09beu0995u09be<br \\/>ud83dudc49u099du09cbu09b2u09be u0997u09c1u09dc (u09e9u0995u09c7u099cu09bf) u2192 u09e7u09e9u09e8u09e6u099fu09beu0995u09be<\\/p>ttntt<p>&gt;&gt; u09abu09cdu09b0u09bf u09b9u09cbu09ae u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 &lt;&lt;<\\/p>ttnttt<h2>u0985u0997u09cdu09b0u09bfu09ae u09aau09c7u09aeu09c7u09a8u09cdu099f u099bu09beu09dcu09beu0987 u0985u09b0u09cdu09a1u09beu09b0 u0995u09a8u09abu09beu09b0u09cdu09ae u0995u09b0u09a4u09c7 u09a8u09bfu099au09c7u09b0 u09abu09b0u09cdu09aeu099fu09bf u09aau09c2u09b0u09a3 u0995u09b0u09c1u09a8<\\/h2>ttnttt<h4>Checkout ID not found<\\/h4><p>It seems that this is not the CartFlows Checkout page where you have added this shortcode. Please refer to this <a href=\\\"https:\\/\\/cartflows.com\\/docs\\/resolve-checkout-id-not-found-error\\/?utm_source=dashboard&utm_medium=free-cartflows&utm_campaign=docs\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">article<\\/a> to know more.<\\/p>ttnttt<p>u00a9 2023 SahabaFoodbd.com<\\/p>ttnttttt<ul>nttttttt<li>nttttttttttt<a href=\\\"#\\\">ntttttttttttRefund policy nttttttttttt<\\/a>nttttttttt<\\/li>ntttttttt<li>nttttttttttt<a href=\\\"#\\\">ntttttttttttPrivacy policynttttttttttt<\\/a>nttttttttt<\\/li>ntttttttt<li>nttttttttttt<a href=\\\"#\\\">ntttttttttttTerms of servicenttttttttttt<\\/a>nttttttttt<\\/li>ntttttt<\\/ul>\\\"\\\"\"','সাহাবা ফুড স্পেশাল','','inherit','closed','closed','','1811-revision-v1','','','2026-06-08 21:35:27','2026-06-08 15:35:27','','1811','https://hypergrowth.fishgrowth.xyz/?p=1812','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1813','17','2026-06-08 21:35:47','2026-06-08 15:35:47','\"\\\"\\\"<p>No completed or processing order found to show the order details form demo.<\\/p>\\\"\\\"\"','Thank You','','trash','closed','closed','','thank-you__trashed','','','2026-06-09 12:53:11','2026-06-09 06:53:11','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1814','17','2026-06-08 21:35:48','2026-06-08 15:35:48','\"\\\"\\\"<p>No completed or processing order found to show the order details form demo.<\\/p>\\\"\\\"\"','Thank You','','inherit','closed','closed','','1813-revision-v1','','','2026-06-08 21:35:48','2026-06-08 15:35:48','','1813','https://hypergrowth.fishgrowth.xyz/?p=1814','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1815','17','2026-06-08 21:36:29','2026-06-08 15:36:29','','Blue Cut Glass','','trash','closed','closed','','blue-cut-glass__trashed','','','2026-06-09 12:49:28','2026-06-09 06:49:28','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=blue-cut-glass','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1816','17','2026-06-08 21:36:29','2026-06-08 15:36:29','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-2__trashed','','','2026-06-09 12:49:28','2026-06-09 06:49:28','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-2/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1817','17','2026-06-08 21:36:29','2026-06-08 15:36:29','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1816-revision-v1','','','2026-06-08 21:36:29','2026-06-08 15:36:29','','1816','https://hypergrowth.fishgrowth.xyz/?p=1817','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1818','17','2026-06-08 21:36:29','2026-06-08 15:36:29','\"<style>\\/*! elementor-pro - v3.12.1 - 02-04-2023 *\\/\\n.elementor-widget-countdown .elementor-countdown-expire--message{display:none;padding:20px;text-align:center}.elementor-widget-countdown .elementor-countdown-wrapper{flex-direction:row}.elementor-widget-countdown .elementor-countdown-item{padding:20px 0;text-align:center;color:#fff}.elementor-widget-countdown .elementor-countdown-digits,.elementor-widget-countdown .elementor-countdown-label{line-height:1}.elementor-widget-countdown .elementor-countdown-digits{font-size:69px}.elementor-widget-countdown .elementor-countdown-label{font-size:19px}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-wrapper{display:flex;justify-content:center;margin-right:auto;margin-left:auto}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-digits,.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-label{display:block}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-item{flex-basis:0;flex-grow:1}.elementor-widget-countdown.elementor-countdown--label-inline{text-align:center}.elementor-widget-countdown.elementor-countdown--label-inline .elementor-countdown-item{display:inline-block;padding-left:5px;padding-right:5px}<\\/style>\\t\\t\\n\\t\\t\\t Days Hours Minutes Seconds\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u099a\\u09cb\\u0996\\u09c7\\u09b0 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09be\\u09df  \\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be\\u09b0  \\u09ac\\u09bf\\u0995\\u09b2\\u09cd\\u09aa \\u0986\\u09b0 \\u0995\\u09bf\\u099b\\u09c1 \\u09a8\\u09c7\\u0987!<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09b0\\u09be \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u098f \\u0997\\u09cd\\u09b0\\u09c7\\u09a1 \\u098f\\u09b0 \\u0985\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u0986\\u0987 \\u09aa\\u09cd\\u09b0\\u09cb \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1\\u09c7\\u09b0 \\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u0997\\u09cd\\u09b2\\u09be\\u09b8\\u0964 \\u09b8\\u09be\\u09a5\\u09c7 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09ab\\u09cd\\u09b0\\u09c7\\u09ae\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>*\\u09b8\\u09cd\\u099f\\u0995 \\u09b6\\u09c7\\u09b7 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u0986\\u0997\\u09c7 \\u098f\\u0996\\u09a8\\u09bf \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8*<\\/h2>\\t\\t\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=SdoquBK0ceQ&#038;ab_channel=EyeProtectionBD\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c\\u09c7 \\u09af\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8\\u0983<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0993\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u0986\\u0987-\\u09aa\\u09cd\\u09b0\\u09cb \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 \\u09b2\\u09c7\\u09a8\\u09cd\\u09b8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09b2\\u09be\\u0987\\u099f-\\u0993\\u09df\\u09c7\\u099f \\u09ab\\u09cd\\u09b0\\u09c7\\u09ae\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0995\\u099f\\u09bf \\u09b2\\u09c7\\u09a8\\u09cd\\u09b8 \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09be\\u09b0 \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a6\\u09c1\\u0987\\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09bf\\u0982 \\u0995\\u099f\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b2\\u09c7\\u099c\\u09be\\u09b0 \\u099f\\u09c7\\u09b8\\u09cd\\u099f\\u09bf\\u0982 \\u0995\\u09bf\\u099f\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0995\\u099f\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4\\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u099a\\u09b6\\u09ae\\u09be \\u099c\\u09bf\\u09aa\\u09be\\u09b0 \\u09ac\\u0995\\u09cd\\u09b8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u09b8 <s style=\\\"color:yellow\\\">\\u09e7\\u09eb\\u09eb\\u09e6 <\\/s> \\u099f\\u09be\\u0995\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09ab\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u09b8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 <u style=\\\"color:yellow\\\"> \\u09ef\\u09ef\\u09e6 <\\/u> \\u099f\\u09be\\u0995\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be!<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09ac\\u09be \\u0995\\u09ae\\u09cd\\u09aa\\u09bf\\u0989\\u099f\\u09be\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u09b0 \\u09b9\\u0993\\u09df\\u09be \\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09b0 \\u0986\\u09b2\\u09cb \\u09a5\\u09c7\\u0995\\u09c7 \\u099a\\u09cb\\u0996 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u09a8 \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0998\\u09a8\\u0998\\u09a8 \\u09ae\\u09be\\u09a5\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09a5\\u09be, \\u099a\\u09cb\\u0996 \\u09b2\\u09be\\u09b2 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u0993\\u09df\\u09be \\u09ac\\u09be \\u099a\\u09cb\\u0996 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09aa\\u09be\\u09a8\\u09bf \\u09aa\\u09a1\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u09a8\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u099a\\u09b6\\u09ae\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09ab\\u09b2\\u09c7 \\u09ac\\u09cd\\u09b2\\u09c1-\\u09b2\\u09be\\u0987\\u099f \\u09aa\\u09cd\\u09b0\\u099f\\u09c7\\u0995\\u09cd\\u099f \\u09b9\\u09ac\\u09c7, \\u09af\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7  \\u0998\\u09c1\\u09ae\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09c0 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09a6\\u09c0\\u09b0\\u09cd\\u0998 \\u09ae\\u09c7\\u09df\\u09be\\u09a6\\u09c0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09be\\u0981\\u099a\\u09be\\u09b0\\u09c7\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u099a\\u09cb\\u0996\\u09c7\\u09b0 \\u0989\\u09aa\\u09b0 \\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09df\\u0964 \\u09af\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u0985\\u09a8\\u09c1\\u09ad\\u09ac \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf-\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u09b8\\u09ae\\u09cd\\u09aa\\u09c1\\u09b0\\u09cd\\u09a8 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"102\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"105\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717964670\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-4__trashed','','','2026-06-09 12:49:28','2026-06-09 06:49:28','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-4/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1819','17','2026-06-08 21:36:30','2026-06-08 15:36:30','\"<style>\\/*! elementor-pro - v3.12.1 - 02-04-2023 *\\/\\n.elementor-widget-countdown .elementor-countdown-expire--message{display:none;padding:20px;text-align:center}.elementor-widget-countdown .elementor-countdown-wrapper{flex-direction:row}.elementor-widget-countdown .elementor-countdown-item{padding:20px 0;text-align:center;color:#fff}.elementor-widget-countdown .elementor-countdown-digits,.elementor-widget-countdown .elementor-countdown-label{line-height:1}.elementor-widget-countdown .elementor-countdown-digits{font-size:69px}.elementor-widget-countdown .elementor-countdown-label{font-size:19px}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-wrapper{display:flex;justify-content:center;margin-right:auto;margin-left:auto}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-digits,.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-label{display:block}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-item{flex-basis:0;flex-grow:1}.elementor-widget-countdown.elementor-countdown--label-inline{text-align:center}.elementor-widget-countdown.elementor-countdown--label-inline .elementor-countdown-item{display:inline-block;padding-left:5px;padding-right:5px}<\\/style>\\t\\t\\n\\t\\t\\t Days Hours Minutes Seconds\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u099a\\u09cb\\u0996\\u09c7\\u09b0 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09be\\u09df  \\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be\\u09b0  \\u09ac\\u09bf\\u0995\\u09b2\\u09cd\\u09aa \\u0986\\u09b0 \\u0995\\u09bf\\u099b\\u09c1 \\u09a8\\u09c7\\u0987!<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09b0\\u09be \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u098f \\u0997\\u09cd\\u09b0\\u09c7\\u09a1 \\u098f\\u09b0 \\u0985\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u0986\\u0987 \\u09aa\\u09cd\\u09b0\\u09cb \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1\\u09c7\\u09b0 \\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u0997\\u09cd\\u09b2\\u09be\\u09b8\\u0964 \\u09b8\\u09be\\u09a5\\u09c7 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09ab\\u09cd\\u09b0\\u09c7\\u09ae\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>*\\u09b8\\u09cd\\u099f\\u0995 \\u09b6\\u09c7\\u09b7 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u0986\\u0997\\u09c7 \\u098f\\u0996\\u09a8\\u09bf \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8*<\\/h2>\\t\\t\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=SdoquBK0ceQ&#038;ab_channel=EyeProtectionBD\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c\\u09c7 \\u09af\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8\\u0983<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0993\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u0986\\u0987-\\u09aa\\u09cd\\u09b0\\u09cb \\u09ac\\u09cd\\u09b0\\u09be\\u09a8\\u09cd\\u09a1 \\u09b2\\u09c7\\u09a8\\u09cd\\u09b8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09b2\\u09be\\u0987\\u099f-\\u0993\\u09df\\u09c7\\u099f \\u09ab\\u09cd\\u09b0\\u09c7\\u09ae\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0995\\u099f\\u09bf \\u09b2\\u09c7\\u09a8\\u09cd\\u09b8 \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09be\\u09b0 \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a6\\u09c1\\u0987\\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09bf\\u0982 \\u0995\\u099f\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b2\\u09c7\\u099c\\u09be\\u09b0 \\u099f\\u09c7\\u09b8\\u09cd\\u099f\\u09bf\\u0982 \\u0995\\u09bf\\u099f\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0995\\u099f\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4\\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u099a\\u09b6\\u09ae\\u09be \\u099c\\u09bf\\u09aa\\u09be\\u09b0 \\u09ac\\u0995\\u09cd\\u09b8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u09b8 <s style=\\\"color:yellow\\\">\\u09e7\\u09eb\\u09eb\\u09e6 <\\/s> \\u099f\\u09be\\u0995\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09ab\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u09b8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 <u style=\\\"color:yellow\\\"> \\u09ef\\u09ef\\u09e6 <\\/u> \\u099f\\u09be\\u0995\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be!<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09ac\\u09be \\u0995\\u09ae\\u09cd\\u09aa\\u09bf\\u0989\\u099f\\u09be\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u09b0 \\u09b9\\u0993\\u09df\\u09be \\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09b0 \\u0986\\u09b2\\u09cb \\u09a5\\u09c7\\u0995\\u09c7 \\u099a\\u09cb\\u0996 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u09a8 \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0998\\u09a8\\u0998\\u09a8 \\u09ae\\u09be\\u09a5\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09a5\\u09be, \\u099a\\u09cb\\u0996 \\u09b2\\u09be\\u09b2 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u0993\\u09df\\u09be \\u09ac\\u09be \\u099a\\u09cb\\u0996 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09aa\\u09be\\u09a8\\u09bf \\u09aa\\u09a1\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u09a8\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u099a\\u09b6\\u09ae\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09ab\\u09b2\\u09c7 \\u09ac\\u09cd\\u09b2\\u09c1-\\u09b2\\u09be\\u0987\\u099f \\u09aa\\u09cd\\u09b0\\u099f\\u09c7\\u0995\\u09cd\\u099f \\u09b9\\u09ac\\u09c7, \\u09af\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7  \\u0998\\u09c1\\u09ae\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09c0 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09a6\\u09c0\\u09b0\\u09cd\\u0998 \\u09ae\\u09c7\\u09df\\u09be\\u09a6\\u09c0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09be\\u0981\\u099a\\u09be\\u09b0\\u09c7\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u099a\\u09cb\\u0996\\u09c7\\u09b0 \\u0989\\u09aa\\u09b0 \\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09df\\u0964 \\u09af\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u0985\\u09a8\\u09c1\\u09ad\\u09ac \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09b2\\u09c1-\\u0995\\u09be\\u099f \\u099a\\u09b6\\u09ae\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf-\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u09b8\\u09ae\\u09cd\\u09aa\\u09c1\\u09b0\\u09cd\\u09a8 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"102\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"105\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717964670\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Checkout (Woo)','','inherit','closed','closed','','1818-revision-v1','','','2026-06-08 21:36:30','2026-06-08 15:36:30','','1818','https://hypergrowth.fishgrowth.xyz/?p=1819','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1820','17','2026-06-08 21:36:35','2026-06-08 15:36:35','\"\\\"\\\"<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>tttttttttt<img width=\\\"500\\\" height=\\\"500\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo.png 500w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/Test-Logo-300x300.png 300w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/Test-Logo-150x150.png 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo-400x400-1.png 400w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo-qlgjn7dvi44bql5if66j7dolg9mi1ktt1m22gmqy20.png 100w\\\" sizes=\\\"(max-width: 500px) 100vw, 500px\\\" \\/>tttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>603<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>March 24, 2024<\\/strong>ntttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>750.00&#2547;&nbsp;<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttu0995u09c1u09dcu09aeu09c1u09dcu09c7 u09aau09c1u09b0u09beu09a8 u09a2u09beu0995u09beu09b0 u09acu09bfu0996u09cdu09afu09beu09a4 u09a8u09beu09b0u0995u09c7u09b2 <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>750.00&#2547;&nbsp;<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Shipping:<\\/th>nttttttt<td>Free shipping<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>ntt<p>Copyright u00a9 2024 Your Business Name | This website made with u2764ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\\\"\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-2__trashed','','','2026-06-09 12:49:28','2026-06-09 06:49:28','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-2/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1821','17','2026-06-08 21:37:04','2026-06-08 15:37:04','','Blue Cut Glass 02','','trash','closed','closed','','blue-cut-glass-02__trashed','','','2026-06-09 12:49:22','2026-06-09 06:49:22','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=blue-cut-glass-02','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1822','17','2026-06-08 21:37:04','2026-06-08 15:37:04','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-3__trashed','','','2026-06-09 12:49:22','2026-06-09 06:49:22','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-3/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1823','17','2026-06-08 21:37:04','2026-06-08 15:37:04','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1822-revision-v1','','','2026-06-08 21:37:04','2026-06-08 15:37:04','','1822','https://hypergrowth.fishgrowth.xyz/?p=1823','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1824','17','2026-06-08 21:37:04','2026-06-08 15:37:04','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u099au09cbu0996u09c7u09b0 u09b8u09c1u09b0u0995u09cdu09b7u09beu09df  u09acu09cdu09b2u09c1-u0995u09beu099f u099au09b6u09aeu09beu09b0  u09acu09bfu0995u09b2u09cdu09aa u0986u09b0 u0995u09bfu099bu09c1 u09a8u09c7u0987!n<\\/h1>ttntttu0986u09aeu09b0u09be u09a6u09bfu099au09cdu099bu09bf u098f u0997u09cdu09b0u09c7u09a1 u098fu09b0 u0985u09b0u09bfu099cu09bfu09a8u09beu09b2 u0986u0987 u09aau09cdu09b0u09cb u09acu09cdu09b0u09beu09a8u09cdu09a1u09c7u09b0 u09acu09cdu09b2u09c1-u0995u09beu099f u0997u09cdu09b2u09beu09b8u0964 u09b8u09beu09a5u09c7 u09aau09cdu09b0u09bfu09aeu09bfu09dfu09beu09ae u09abu09cdu09b0u09c7u09aeu0964nttt<a href=\\\"#order-form\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8nttttt<\\/a>nttt<a href=\\\"tel:01723624**\\\">nttttttCall Nownttttt<\\/a>nttt<h2>u0986u09aeu09beu09a6u09c7u09b0    u09aau09cdu09afu09beu0995u09c7u099cu09c7  u09afu09be u09aau09beu099au09cdu099bu09c7u09a8u0983<\\/h2>ttntt<ul><li>u0993u09b0u09bfu099cu09bfu09a8u09beu09b2 u0986u0987-u09aau09cdu09b0u09cb u09acu09cdu09b0u09beu09a8u09cdu09a1 u09b2u09c7u09a8u09cdu09b8<\\/li><li>u09aau09cdu09b0u09bfu09aeu09bfu09dfu09beu09ae u09b2u09beu0987u099f-u0993u09dfu09c7u099f u09abu09cdu09b0u09c7u09ae<br \\/>u098fu0995u099fu09bf u09b2u09c7u09a8u09cdu09b8 u0995u09cdu09b2u09bfu09a8u09beu09b0 u09b8u09cdu09aau09cdu09b0u09c7<\\/li><li>u09a6u09c1u0987u099fu09bf u0995u09cdu09b2u09bfu09a8u09bfu0982 u0995u099fu09a8<br \\/>u09b2u09c7u099cu09beu09b0 u099fu09c7u09b8u09cdu099fu09bfu0982 u0995u09bfu099f<\\/li><li>u098fu0995u099fu09bf u0989u09a8u09cdu09a8u09a4u09aeu09beu09a8u09c7u09b0 u099au09b6u09aeu09be u099cu09bfu09aau09beu09b0 u09acu0995u09cdu09b8<\\/li><\\/ul>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>ttntttttttt<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/unnamed-qol8m0y1r9e2pwgk0rrp383oow38mhsmluositmjyg.jpg\\\" alt=\\\"unnamed\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Blue-Modern-New-Product-Facebook-Ad-qoknwk3zkewgz5ak11ee3ua8csel07c944orqsvafc.jpg\\\" alt=\\\"Blue Modern New Product Facebook Ad\\\" \\/><\\/figure>tttntttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>tttttntttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>tttttnttt<h2>u0985u09abu09beu09b0 u09aau09cdu09b0u09beu0987u09b8 u09aeu09beu09a4u09cdu09b0 u09efu09efu09e6 u099fu09beu0995u09ben<\\/h2>ttntt<p>u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u09b8u09beu09b0u09be u09acu09beu0982u09b2u09beu09a6u09c7u09b6u09c7 u09aeu09beu09a4u09cdu09b0 u09e7u09e6u09e6 u099fu09beu0995u09be!<\\/p>ttnttt<a href=\\\"#\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8nttttt<\\/a>nttt<a href=\\\"#\\\">nttttttContactnttttt<\\/a>ntttu09acu09cdu09b2u09c1-u0995u09beu099f u099au09b6u09aeu09beu09b0 u0989u09aau0995u09beu09b0u09bfu09a4u09bentttu09aeu09cbu09acu09beu0987u09b2 u09acu09be u0995u09aeu09cdu09aau09bfu0989u099fu09beu09b0 u09a5u09c7u0995u09c7 u09acu09c7u09b0 u09b9u0993u09dfu09be u0995u09cdu09b7u09a4u09bfu0995u09b0 u0986u09b2u09cb u09a5u09c7u0995u09c7 u099au09cbu0996 u09a5u09beu0995u09acu09c7u09a8 u09b6u09a4u09adu09beu0997 u09b8u09c1u09b0u0995u09cdu09b7u09bfu09a4u0964nttt<h2>u09aeu09cbu09acu09beu0987u09b2 u09acu09be u0995u09aeu09cdu09aau09bfu0989u099fu09beu09b0 u09a5u09c7u0995u09c7 u09acu09c7u09b0 u09b9u0993u09dfu09be u0995u09cdu09b7u09a4u09bfu0995u09b0 u0986u09b2u09cb u09a5u09c7u0995u09c7 u099au09cbu0996 u09a5u09beu0995u09acu09c7u09a8 u09b6u09a4u09adu09beu0997 u09b8u09c1u09b0u0995u09cdu09b7u09bfu09a4u0964<\\/h2>ttnttt<h2>u0998u09a8u0998u09a8 u09aeu09beu09a5u09be u09acu09cdu09afu09beu09a5u09be, u099au09cbu0996 u09b2u09beu09b2 u09b9u09dfu09c7 u09afu09beu0993u09dfu09be u09acu09be u099au09cbu0996 u09a6u09bfu09afu09bcu09c7 u09aau09beu09a8u09bf u09aau09a1u09bcu09be u09a5u09c7u0995u09c7 u09b8u09c1u09b0u0995u09cdu09b7u09bfu09a4 u09a5u09beu0995u09acu09c7u09a8u0964<\\/h2>ttnttt<h2>u099au09b6u09aeu09be u09acu09cdu09afu09beu09acu09b9u09beu09b0u09c7u09b0 u09abu09b2u09c7 u09acu09cdu09b2u09c1-u09b2u09beu0987u099f u09aau09cdu09b0u099fu09c7u0995u09cdu099f u09b9u09acu09c7, u09afu09beu09b0 u0995u09beu09b0u09a3u09c7  u0998u09c1u09aeu09c7u09b0 u09b8u09aeu09b8u09cdu09afu09beu09df u0995u09beu09b0u09cdu09afu0995u09beu09b0u09c0 u09b8u09aeu09beu09a7u09beu09a8 u09aau09beu09b0u09c7u09a8u0964<\\/h2>ttnttt<h2>u09acu09cdu09b2u09c1-u0995u09beu099f u099au09b6u09aeu09be u0986u09aau09a8u09beu0995u09c7 u09a6u09c0u09b0u09cdu0998 u09aeu09c7u09dfu09beu09a6u09c0 u0995u09cdu09b7u09a4u09bf u09a5u09c7u0995u09c7 u09acu09beu0981u099au09beu09b0u09c7u0964<\\/h2>ttnttt<h2>u09acu09cdu09b2u09c1-u0995u09beu099f u099au09b6u09aeu09be u09acu09cdu09afu09acu09b9u09beu09b0u09c7 u099au09cbu0996u09c7u09b0 u0989u09aau09b0 u099au09beu09aa u0995u09aeu09beu09dfu0964 u09afu09beu09b0 u0995u09beu09b0u09a8u09c7 u0986u09aau09a8u09bf u09b6u09beu09a8u09cdu09a4u09bf u0985u09a8u09c1u09adu09ac u0995u09b0u09acu09c7u09a8u0964<\\/h2>ttnttt<h2>u09acu09cdu09b2u09c1-u0995u09beu099f u099au09b6u09aeu09be u0986u09aau09a8u09beu09b0 u09a6u09c3u09b7u09cdu099fu09bf-u09b6u0995u09cdu09a4u09bf u0989u09a8u09cdu09a8u09a4 u0995u09b0u09a4u09c7 u09b8u09b9u09dfu09a4u09be u0995u09b0u09c7u0964<\\/h2>ttnttt<h2>u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u09a8u09bfu099au09c7u09b0 u09abu09b0u09cdu09aeu099fu09bf u09aau09c2u09b0u09a8 u0995u09b0u09c1u09a8<\\/h2>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1932\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1932\\\"nt>nt<label for=\\\"wcf-item-product-1932\\\"><\\/label>nProduct1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;990.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09aeu0983&nbsp;<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_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u09b8u09aeu09cdu09aau09c1u09b0u09cdu09a8 u09a0u09bfu0995u09beu09a8u09beu0983&nbsp;<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_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"1963\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"1966\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716478902\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttProduct&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;990.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_bacs\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"bacs\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_bacs\\\">nttDirect bank transfer t<\\/label>nttt<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>nt<\\/li>n<li>nt<input id=\\\"payment_method_cheque\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cheque\\\"  data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cheque\\\">nttCheck payments t<\\/label>nttt<p>Please send a check to Store Name, Store Street, Store Town, Store State \\/ County, Store Postcode.<\\/p>nt<\\/li>n<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"b809f71953\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->ntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-5__trashed','','','2026-06-09 12:49:22','2026-06-09 06:49:22','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-5/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1825','17','2026-06-08 21:37:05','2026-06-08 15:37:05','\"\\\"\\\"<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>tttttttttt<img width=\\\"500\\\" height=\\\"500\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo.png 500w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/Test-Logo-300x300.png 300w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/Test-Logo-150x150.png 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo-400x400-1.png 400w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo-qlgjn7dvi44bql5if66j7dolg9mi1ktt1m22gmqy20.png 100w\\\" sizes=\\\"(max-width: 500px) 100vw, 500px\\\" \\/>tttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>603<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>March 24, 2024<\\/strong>ntttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>750.00&#2547;&nbsp;<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttu0995u09c1u09dcu09aeu09c1u09dcu09c7 u09aau09c1u09b0u09beu09a8 u09a2u09beu0995u09beu09b0 u09acu09bfu0996u09cdu09afu09beu09a4 u09a8u09beu09b0u0995u09c7u09b2 <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>750.00&#2547;&nbsp;<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Shipping:<\\/th>nttttttt<td>Free shipping<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>ntt<p>Copyright u00a9 2024 Your Business Name | This website made with u2764ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\\\"\\\"\"','Thank You (Woo)','','inherit','closed','closed','','1820-revision-v1','','','2026-06-08 21:37:05','2026-06-08 15:37:05','','1820','https://hypergrowth.fishgrowth.xyz/?p=1825','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1826','17','2026-06-08 21:37:23','2026-06-08 15:37:23','','Chingri Balachao','','trash','closed','closed','','chingri-balachao__trashed','','','2026-06-09 12:53:20','2026-06-09 06:53:20','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=chingri-balachao','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1827','17','2026-06-08 21:37:23','2026-06-08 15:37:23','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u099a\\u09bf\\u0982\\u09dc\\u09bf \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u201c\\u099a\\u09bf\\u0982\\u09dc\\u09bf \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993\\u201d \\u0996\\u09c1\\u09ac\\u0987 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09a6\\u09c1 \\u0993 \\u09ae\\u09c1\\u0996\\u09b0\\u09cb\\u099a\\u0995 \\u098f\\u0995\\u099f\\u09bf \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964 \\u09a8\\u09be\\u09ae\\u099f\\u09be \\u09af\\u09c7\\u09ae\\u09a8 \\u0985\\u09a8\\u09cd\\u09af\\u09b0\\u0995\\u09ae, \\u0996\\u09c7\\u09a4\\u09c7\\u0993 \\u0985\\u09b8\\u09ae\\u09cd\\u09ad\\u09ac \\u09ae\\u099c\\u09be\\u09a6\\u09be\\u09b0\\u0964 \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u098f\\u0995 \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b0 \\u09b0\\u09c7\\u09a1\\u09bf \\u099f\\u09c1 \\u0987\\u099f \\u09ab\\u09c1\\u09a1, \\u09af\\u09be \\u09ae\\u09c1\\u09b2\\u09a4 \\u099a\\u09bf\\u0982\\u09a1\\u09bc\\u09bf, \\u09aa\\u09c7\\u09af\\u09bc\\u09be\\u099c , \\u09b0\\u09b8\\u09c1\\u09a8, \\u09b6\\u09c1\\u0995\\u09a8\\u09cb \\u09ae\\u09b0\\u09bf\\u099a \\u0993 \\u09ae\\u09b6\\u09b2\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3\\u0964 \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u0995\\u0995\\u09cd\\u09b8\\u09ac\\u09be\\u099c\\u09be\\u09b0 \\u0993 \\u099a\\u099f\\u09cd\\u099f\\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09df \\u0990\\u09a4\\u09bf\\u09b9\\u09cd\\u09af\\u09ac\\u09be\\u09b9\\u09c0 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09b9\\u09cb\\u09ae \\u09ae\\u09c7\\u0987\\u09a1 \\u098f\\u09ac\\u0982 \\u09b0\\u09c7\\u09a1\\u09bf \\u099f\\u09c1 \\u0987\\u099f \\u09ab\\u09c1\\u09a1<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"687\\\" height=\\\"916\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1.jpeg 687w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1-225x300.jpeg 225w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1-600x800.jpeg 600w\\\" sizes=\\\"(max-width: 687px) 100vw, 687px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09bf \\u0995\\u09bf \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"250\\\" height=\\\"203\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/01m-1-1.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u099a\\u09bf\\u0982\\u09a1\\u09bc\\u09bf \\u09b6\\u09c1\\u099f\\u0995\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"250\\\" height=\\\"203\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/02m-1-1.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09c7\\u0981\\u09af\\u09bc\\u09be\\u099c \\u09ac\\u09c7\\u09b0\\u09c7\\u09b8\\u09cd\\u09a4\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"250\\\" height=\\\"203\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/03m-1-1.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09b0\\u09b8\\u09c1\\u09a8 \\u09ad\\u09be\\u099c\\u09be\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"250\\\" height=\\\"219\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/04m-1-1.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09ae\\u09b0\\u09bf\\u099a\\u09c7\\u09b0 \\u0997\\u09c1\\u0981\\u09dc\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"250\\\" height=\\\"203\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/05m-1-1.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09b8\\u09bf\\u0995\\u09cd\\u09b0\\u09c7\\u099f \\u09ae\\u09b6\\u09b2\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09af\\u09c7\\u09ad\\u09be\\u09ac\\u09c7 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09af\\u09bc<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09c1\\u09dc\\u09bf \\u09ae\\u09be\\u0996\\u09be \\u09ac\\u09be \\u09ae\\u09c1\\u09dc\\u09bf \\u09ad\\u09b0\\u09cd\\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09b2\\u09c1 \\u09ad\\u09b0\\u09cd\\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u09b6\\u09bf\\u09df\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09c7\\u0997\\u09c1\\u09a8 \\u09ad\\u09b0\\u09cd\\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u09b6\\u09bf\\u09df\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0997\\u09b0\\u09ae \\u09a7\\u09cb\\u09df\\u09be \\u0993\\u09a0\\u09be \\u09b8\\u09be\\u09a6\\u09be \\u09ad\\u09be\\u09a4\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09be\\u09a8\\u09be\\u099a\\u09c1\\u09b0\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b8\\u09b0\\u09be\\u09b8\\u09b0\\u09bf\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0997\\u09b0\\u09ae \\u0997\\u09b0\\u09ae \\u0996\\u09c1\\u09a6\\u09c7\\u09b0 \\u09ad\\u09be\\u09a4\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ad\\u09c2\\u09a8\\u09be \\u0996\\u09bf\\u099a\\u09c1\\u09dc\\u09bf \\u0993 \\u09aa\\u09cb\\u09b2\\u09be\\u0993\\u09df\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"576\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1-1-1024x576.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1-1-1024x576.jpg 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1-1-300x169.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1-1-768x432.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1-1-600x338.jpg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1-1.jpg 1280w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09eb\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u098f\\u09b0 \\u09aa\\u09c2\\u09b0\\u09cd\\u09ac\\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09ef\\u09eb\\u09e6 \\u098f\\u0996\\u09a8 \\u099b\\u09be\\u09dc\\u09c7 \\u09ee\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t<h2>\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u098f\\u09b0 \\u09aa\\u09c2\\u09b0\\u09cd\\u09ac\\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09e7\\u09ee\\u09e6\\u09e6 \\u098f\\u0996\\u09a8 \\u099b\\u09be\\u09dc\\u09c7 \\u09e7\\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8 ?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"64\\\" height=\\\"64\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/chef-1-1.png\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09ad\\u09bf\\u099c\\u09cd\\u099e \\u09ac\\u09be\\u09ac\\u09c1\\u09b0\\u09cd\\u099a\\u09bf\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c1\\u09b2\\u09be\\u09df \\u09a4\\u09c8\\u09b0\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"64\\\" height=\\\"64\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/house-1-1.png\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09b9\\u09cb\\u09ae\\u09ae\\u09c7\\u0987\\u09a1 \\u09aa\\u09cd\\u09b0\\u0995\\u09cd\\u09b0\\u09bf\\u09df\\u09be\\u09df \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"64\\\" height=\\\"64\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/shrimp-1-1-1.png\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09ac\\u09be\\u09b2\\u09c1\\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u099a\\u09bf\\u0982\\u09dc\\u09bf \\u09b6\\u09c1\\u099f\\u0995\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"64\\\" height=\\\"64\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/tasty-1-1.png\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993 \\u098f\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img data-src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.30-PM-1.jpeg\\\" alt=\\\"WhatsApp-Image-2023-09-13-at-3.02.30-PM-1.jpeg\\\" \\/><\\/figure><figure><img data-src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.30-PM.jpeg\\\" alt=\\\"WhatsApp-Image-2023-09-13-at-3.02.30-PM.jpeg\\\" \\/><\\/figure><figure><img data-src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.29-PM-2.jpeg\\\" alt=\\\"WhatsApp-Image-2023-09-13-at-3.02.29-PM-2.jpeg\\\" \\/><\\/figure><figure><img data-src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.29-PM-1.jpeg\\\" alt=\\\"WhatsApp-Image-2023-09-13-at-3.02.29-PM-1.jpeg\\\" \\/><\\/figure><figure><img data-src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.29-PM.jpeg\\\" alt=\\\"WhatsApp-Image-2023-09-13-at-3.02.29-PM.jpeg\\\" \\/><\\/figure><figure><img data-src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.28-PM-2.jpeg\\\" alt=\\\"WhatsApp-Image-2023-09-13-at-3.02.28-PM-2.jpeg\\\" \\/><\\/figure><figure><img data-src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.28-PM-1.jpeg\\\" alt=\\\"WhatsApp-Image-2023-09-13-at-3.02.28-PM-1.jpeg\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u099f\\u09be\\u0995\\u09be \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964 \\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a6\\u09c7\\u09df\\u09be \\u09b9\\u09df\\u0964<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>\\n\\t<input type=\\\"checkbox\\\"\\n\\tname=\\\"wcf-multiple-sel\\\"\\n\\tvalue=\\\"989\\\"  >\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;(optional)<\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u09b8\\u09ae\\u09cd\\u09aa\\u09c1\\u09b0\\u09cd\\u09a8 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;(optional)<\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u0983&nbsp;(optional)<\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"127\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"128\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717964873\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;900.00\\\">\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t  Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Store Checkout 02','','trash','closed','closed','','store-checkout-02__trashed','','','2026-06-09 12:53:20','2026-06-09 06:53:20','','0','https://hypergrowth.fishgrowth.xyz/step/store-checkout-02/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1828','17','2026-06-08 21:37:24','2026-06-08 15:37:24','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u099au09cbu0996u09c7u09b0 u09b8u09c1u09b0u0995u09cdu09b7u09beu09df  u09acu09cdu09b2u09c1-u0995u09beu099f u099au09b6u09aeu09beu09b0  u09acu09bfu0995u09b2u09cdu09aa u0986u09b0 u0995u09bfu099bu09c1 u09a8u09c7u0987!n<\\/h1>ttntttu0986u09aeu09b0u09be u09a6u09bfu099au09cdu099bu09bf u098f u0997u09cdu09b0u09c7u09a1 u098fu09b0 u0985u09b0u09bfu099cu09bfu09a8u09beu09b2 u0986u0987 u09aau09cdu09b0u09cb u09acu09cdu09b0u09beu09a8u09cdu09a1u09c7u09b0 u09acu09cdu09b2u09c1-u0995u09beu099f u0997u09cdu09b2u09beu09b8u0964 u09b8u09beu09a5u09c7 u09aau09cdu09b0u09bfu09aeu09bfu09dfu09beu09ae u09abu09cdu09b0u09c7u09aeu0964nttt<a href=\\\"#order-form\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8nttttt<\\/a>nttt<a href=\\\"tel:01723624**\\\">nttttttCall Nownttttt<\\/a>nttt<h2>u0986u09aeu09beu09a6u09c7u09b0    u09aau09cdu09afu09beu0995u09c7u099cu09c7  u09afu09be u09aau09beu099au09cdu099bu09c7u09a8u0983<\\/h2>ttntt<ul><li>u0993u09b0u09bfu099cu09bfu09a8u09beu09b2 u0986u0987-u09aau09cdu09b0u09cb u09acu09cdu09b0u09beu09a8u09cdu09a1 u09b2u09c7u09a8u09cdu09b8<\\/li><li>u09aau09cdu09b0u09bfu09aeu09bfu09dfu09beu09ae u09b2u09beu0987u099f-u0993u09dfu09c7u099f u09abu09cdu09b0u09c7u09ae<br \\/>u098fu0995u099fu09bf u09b2u09c7u09a8u09cdu09b8 u0995u09cdu09b2u09bfu09a8u09beu09b0 u09b8u09cdu09aau09cdu09b0u09c7<\\/li><li>u09a6u09c1u0987u099fu09bf u0995u09cdu09b2u09bfu09a8u09bfu0982 u0995u099fu09a8<br \\/>u09b2u09c7u099cu09beu09b0 u099fu09c7u09b8u09cdu099fu09bfu0982 u0995u09bfu099f<\\/li><li>u098fu0995u099fu09bf u0989u09a8u09cdu09a8u09a4u09aeu09beu09a8u09c7u09b0 u099au09b6u09aeu09be u099cu09bfu09aau09beu09b0 u09acu0995u09cdu09b8<\\/li><\\/ul>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>ttntttttttt<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/unnamed-qol8m0y1r9e2pwgk0rrp383oow38mhsmluositmjyg.jpg\\\" alt=\\\"unnamed\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Blue-Modern-New-Product-Facebook-Ad-qoknwk3zkewgz5ak11ee3ua8csel07c944orqsvafc.jpg\\\" alt=\\\"Blue Modern New Product Facebook Ad\\\" \\/><\\/figure>tttntttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>tttttntttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>tttttnttt<h2>u0985u09abu09beu09b0 u09aau09cdu09b0u09beu0987u09b8 u09aeu09beu09a4u09cdu09b0 u09efu09efu09e6 u099fu09beu0995u09ben<\\/h2>ttntt<p>u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u09b8u09beu09b0u09be u09acu09beu0982u09b2u09beu09a6u09c7u09b6u09c7 u09aeu09beu09a4u09cdu09b0 u09e7u09e6u09e6 u099fu09beu0995u09be!<\\/p>ttnttt<a href=\\\"#\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8nttttt<\\/a>nttt<a href=\\\"#\\\">nttttttContactnttttt<\\/a>ntttu09acu09cdu09b2u09c1-u0995u09beu099f u099au09b6u09aeu09beu09b0 u0989u09aau0995u09beu09b0u09bfu09a4u09bentttu09aeu09cbu09acu09beu0987u09b2 u09acu09be u0995u09aeu09cdu09aau09bfu0989u099fu09beu09b0 u09a5u09c7u0995u09c7 u09acu09c7u09b0 u09b9u0993u09dfu09be u0995u09cdu09b7u09a4u09bfu0995u09b0 u0986u09b2u09cb u09a5u09c7u0995u09c7 u099au09cbu0996 u09a5u09beu0995u09acu09c7u09a8 u09b6u09a4u09adu09beu0997 u09b8u09c1u09b0u0995u09cdu09b7u09bfu09a4u0964nttt<h2>u09aeu09cbu09acu09beu0987u09b2 u09acu09be u0995u09aeu09cdu09aau09bfu0989u099fu09beu09b0 u09a5u09c7u0995u09c7 u09acu09c7u09b0 u09b9u0993u09dfu09be u0995u09cdu09b7u09a4u09bfu0995u09b0 u0986u09b2u09cb u09a5u09c7u0995u09c7 u099au09cbu0996 u09a5u09beu0995u09acu09c7u09a8 u09b6u09a4u09adu09beu0997 u09b8u09c1u09b0u0995u09cdu09b7u09bfu09a4u0964<\\/h2>ttnttt<h2>u0998u09a8u0998u09a8 u09aeu09beu09a5u09be u09acu09cdu09afu09beu09a5u09be, u099au09cbu0996 u09b2u09beu09b2 u09b9u09dfu09c7 u09afu09beu0993u09dfu09be u09acu09be u099au09cbu0996 u09a6u09bfu09afu09bcu09c7 u09aau09beu09a8u09bf u09aau09a1u09bcu09be u09a5u09c7u0995u09c7 u09b8u09c1u09b0u0995u09cdu09b7u09bfu09a4 u09a5u09beu0995u09acu09c7u09a8u0964<\\/h2>ttnttt<h2>u099au09b6u09aeu09be u09acu09cdu09afu09beu09acu09b9u09beu09b0u09c7u09b0 u09abu09b2u09c7 u09acu09cdu09b2u09c1-u09b2u09beu0987u099f u09aau09cdu09b0u099fu09c7u0995u09cdu099f u09b9u09acu09c7, u09afu09beu09b0 u0995u09beu09b0u09a3u09c7  u0998u09c1u09aeu09c7u09b0 u09b8u09aeu09b8u09cdu09afu09beu09df u0995u09beu09b0u09cdu09afu0995u09beu09b0u09c0 u09b8u09aeu09beu09a7u09beu09a8 u09aau09beu09b0u09c7u09a8u0964<\\/h2>ttnttt<h2>u09acu09cdu09b2u09c1-u0995u09beu099f u099au09b6u09aeu09be u0986u09aau09a8u09beu0995u09c7 u09a6u09c0u09b0u09cdu0998 u09aeu09c7u09dfu09beu09a6u09c0 u0995u09cdu09b7u09a4u09bf u09a5u09c7u0995u09c7 u09acu09beu0981u099au09beu09b0u09c7u0964<\\/h2>ttnttt<h2>u09acu09cdu09b2u09c1-u0995u09beu099f u099au09b6u09aeu09be u09acu09cdu09afu09acu09b9u09beu09b0u09c7 u099au09cbu0996u09c7u09b0 u0989u09aau09b0 u099au09beu09aa u0995u09aeu09beu09dfu0964 u09afu09beu09b0 u0995u09beu09b0u09a8u09c7 u0986u09aau09a8u09bf u09b6u09beu09a8u09cdu09a4u09bf u0985u09a8u09c1u09adu09ac u0995u09b0u09acu09c7u09a8u0964<\\/h2>ttnttt<h2>u09acu09cdu09b2u09c1-u0995u09beu099f u099au09b6u09aeu09be u0986u09aau09a8u09beu09b0 u09a6u09c3u09b7u09cdu099fu09bf-u09b6u0995u09cdu09a4u09bf u0989u09a8u09cdu09a8u09a4 u0995u09b0u09a4u09c7 u09b8u09b9u09dfu09a4u09be u0995u09b0u09c7u0964<\\/h2>ttnttt<h2>u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u09a8u09bfu099au09c7u09b0 u09abu09b0u09cdu09aeu099fu09bf u09aau09c2u09b0u09a8 u0995u09b0u09c1u09a8<\\/h2>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1932\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1932\\\"nt>nt<label for=\\\"wcf-item-product-1932\\\"><\\/label>nProduct1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;990.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09aeu0983&nbsp;<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_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u09b8u09aeu09cdu09aau09c1u09b0u09cdu09a8 u09a0u09bfu0995u09beu09a8u09beu0983&nbsp;<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_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"1963\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"1966\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716478902\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttProduct&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;990.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_bacs\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"bacs\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_bacs\\\">nttDirect bank transfer t<\\/label>nttt<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>nt<\\/li>n<li>nt<input id=\\\"payment_method_cheque\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cheque\\\"  data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cheque\\\">nttCheck payments t<\\/label>nttt<p>Please send a check to Store Name, Store Street, Store Town, Store State \\/ County, Store Postcode.<\\/p>nt<\\/li>n<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"b809f71953\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->ntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\"','Checkout (Woo)','','inherit','closed','closed','','1824-revision-v1','','','2026-06-08 21:37:24','2026-06-08 15:37:24','','1824','https://hypergrowth.fishgrowth.xyz/?p=1828','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1829','17','2026-06-08 21:37:28','2026-06-08 15:37:28','','Special Red Atta 02','','trash','closed','closed','','special-red-atta-02__trashed','','','2026-06-09 12:42:17','2026-06-09 06:42:17','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=special-red-atta-02','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1830','17','2026-06-08 21:37:28','2026-06-08 15:37:28','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-4__trashed','','','2026-06-09 12:42:17','2026-06-09 06:42:17','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-4/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1831','17','2026-06-08 21:37:28','2026-06-08 15:37:28','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1830-revision-v1','','','2026-06-08 21:37:28','2026-06-08 15:37:28','','1830','https://hypergrowth.fishgrowth.xyz/?p=1831','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1832','17','2026-06-08 21:37:28','2026-06-08 15:37:28','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp 472w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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>u0986u09aeu09b0u09be u09aau09cdu09b0u09a4u09bfu09a8u09bfu09afu09bcu09a4 u0995u09cdu09afu09beu09a8u09b8u09beu09b0, u09b0u0995u09cdu09a4u09c7 u0995u09b2u09c7u09b8u09cdu099fu09c7u09b0u09b2, u09a1u09beu09dfu09beu09acu09c7u099fu09bfu09b8 u0987u09a4u09cdu09afu09beu09a6u09bf u09aeu09b0u09a3u09acu09cdu09afu09beu09a7u09bf u09b0u09cbu0997u09c7 u0986u0995u09cdu09b0u09beu09a8u09cdu09a4 u09b9u099au09cdu099bu09bfu0964 u09acu099bu09b0u09c7 u09aau09cdu09b0u09beu09df u09e8 u09b2u09beu0995u09cdu09b7 u09aeu09beu09a8u09c1u09b7 u0995u09cdu09afu09beu09a8u09b8u09beu09b0u09c7 u0986u0995u09cdu09b0u09beu09a8u09cdu09a4 u09b9u099au09cdu099bu09c7u09a8u0964  u09e7u09e6 u09b6u09a4u09beu0982u09b6 u09aeu09beu09a8u09c1u09b7 u09aeu09beu09b0u09be u09afu09beu099au09cdu099bu09c7u09a8 u09a1u09beu09dfu09beu09acu09c7u099fu09bfu09b8 u09b0u09cbu0997u09c7u09b0 u0995u09beu09b0u09a3u09c7u0964 u09b0u0995u09cdu09a4u09c7 u0995u09b2u09c7u09b8u09cdu099fu09c7u09b0u09b2 u09aau09cdu09b0u09a4u09bfu09a8u09bfu09dfu09a4 u0998u09b0u09c7 u0998u09b0u09c7 u09acu09c7u09dcu09c7 u099au09b2u09c7u099bu09c7u0964 <\\/h2>ttntt<p>u0986u09b0 u098fu09b8u09ac u09b0u09cbu0997 u0986u09aeu09beu09a6u09c7u09b0 u09b6u09b0u09c0u09b0u09c7 u09acu09beu09b8u09be u09acu09beu0981u09a7u09beu09b0 u09aau09c2u09b0u09cdu09acu09c7u0987 u0986u09aeu09beu09a6u09c7u09b0 u0989u099au09bfu09a4 u09acu09bfu09adu09bfu09a8u09cdu09a8 u09adu09bfu099fu09beu09aeu09bfu09a8 u099cu09beu09a4u09c0u09afu09bc u0993 u09abu09beu0987u09acu09beu09b0 u09acu09be u0986u0981u09b6u09afu09c1u0995u09cdu09a4 u0996u09beu09acu09beu09b0 u0996u09beu0993u09afu09bcu09beu0964 u09acu09bfu09adu09bfu09a8u09cdu09a8 u09abu09b2u09aeu09c2u09b2 u098fu09acu0982 u09b2u09beu09b2 u0986u099fu09beu09df u09abu09beu0987u09acu09beu09b0 u09a5u09beu0995u09c7u0964 u09a4u09acu09c7 u09b8u09ac u09a5u09c7u0995u09c7 u09acu09c7u09b6u09bf u0995u09cdu09afu09beu09a8u09cdu09b8u09beu09b0 u09aau09cdu09b0u09a4u09bfu09b0u09cbu09a7u0995 u0993 u09abu09beu0987u09acu09beu09b0 (u0986u0981u09b6) u09aau09beu0993u09dfu09be u09afu09beu09df u09b2u09beu09b2 u0986u099fu09beu09dfu0964<\\/p>https:\\/\\/youtu.be\\/rU4nqtt5ynsttnttt<a href=\\\"#order\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<h2>u09a6u09c8u09a8u09bfu0995 u0995u09a4u099fu09c1u0995u09c1 u09abu09beu0987u09acu09beu09b0 u0997u09cdu09b0u09b9u09a3 u0995u09b0u09be u0989u099au09bfu09a4<\\/h2>ttntt<table><tbody><tr><th>u09acu09dfu09b8<\\/th><th>u09a6u09c8u09a8u09bfu0995 u09afu09a4u099fu09c1u0995u09c1 u09abu09beu0987u09acu09beu09b0 u0996u09beu0993u09dfu09be u0989u099au09bfu09a4<\\/th><\\/tr><tr><td>2-5 u09acu099bu09b0<\\/td><td>15 u0997u09cdu09b0u09beu09ae<\\/td><\\/tr><tr><td>5-11 u09acu099bu09b0<\\/td><td>20 u0997u09cdu09b0u09beu09ae<\\/td><\\/tr><tr><td>11-15 u09acu099bu09b0<\\/td><td>25 u0997u09cdu09b0u09beu09ae<\\/td><\\/tr><tr><td>17 u09acu099bu09b0 u09acu09be u09a4u09a6u09c2u09b0u09cdu09a7<\\/td><td>30 u0997u09cdu09b0u09beu09ae<\\/td><\\/tr><\\/tbody><\\/table>ttnttt<h2>u09b2u09beu09b2 u0986u099fu09beu09b0 u09aau09c1u09b7u09cdu099fu09bf u0997u09c1u09a3u0983 <\\/br>nu09e7u09e6u09e6 u0997u09cdu09b0u09beu09ae u09b2u09beu09b2 u0986u099fu09beu09b0 u09b0u09c1u099fu09bf u09acu09be u09b2u09beu09b2 u0986u099fu09beu09b0 u09aeu09a7u09cdu09afu09c7 u09b0u09dfu09c7u099bu09c7<\\/h2>ttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">tt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0995u09cdu09afu09beu09a8u09cdu09b8u09beu09b0 u09aau09cdu09b0u09a4u09bfu09b0u09cbu09a7u0995 u09adu09bfu099fu09beu09aeu09bfu09a8- B6 = u09e6.u09ed u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09abu09beu0987u09acu09beu09b0 u09acu09be u0986u0981u09b6 u09b0u09dfu09c7u099bu09c7= u09e7u09e6 u09a5u09c7u0995u09c7 u09e7u09eb u0997u09cdu09b0u09beu09aeu0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0995u09cdu09afu09beu09b2u09cbu09b0u09bf u09b0u09dfu09c7u099bu09c7 =  u09e9u09eau09e6 u0995u09bfu09b2u09cb u0995u09cdu09afu09beu09b2u09cbu09b0u09bfu0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aau09cdu09b0u09cbu099fu09bfu09a8 u09b0u09dfu09c7u099bu09c7= u09e7u09e9 u09a5u09c7u0995u09c7 u09e7u09eb u0997u09cdu09b0u09beu09aeu0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aeu09cdu09afu09beu0997u09a8u09c7u09b6u09bfu09dfu09beu09ae = u09ebu09e6 u09a5u09c7u0995u09c7 u09ecu09e6 u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964 nttttttttt<\\/li>ntttttt<\\/ul>nttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0995u09beu09b0u09cdu09acu09cbu09b9u09beu0987u09a1u09cdu09b0u09c7u099f = u09edu09e6 u09a5u09c7u0995u09c7 u09edu09eb u0997u09cdu09b0u09beu09aeu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09dfu09b0u09a8 = u09e8 u09a5u09c7u0995u09c7 u09e9 u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aeu09cdu09afu09beu0997u09a8u09c7u09b6u09bfu09dfu09beu09ae = u09ebu09e6 u09a5u09c7u0995u09c7 u09ecu09e6 u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09abu09b8u09abu09b0u09beu09b8 = u09e9u09e6u09e6 u09a5u09c7u0995u09c7 u09e9u09ebu09e6 u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu099cu09bfu0982u0995= u09e8 u09a5u09c7u0995u09c7 u09e9 u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964 nttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>u098fu099bu09beu09dcu09beu0993 u09b0u09dfu09c7u099bu09c7<\\/h2>ttnttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09adu09bfu099fu09beu09aeu09bfu09a8- B1= u09e6.u09eb u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09adu09bfu099fu09beu09aeu09bfu09a8- B2= u09e6.u09e8 u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09adu09bfu099fu09beu09aeu09bfu09a8- B3= u09eb u09a5u09c7u0995u09c7 u09ed u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09adu09bfu099fu09beu09aeu09bfu09a8- B9= u09eau09e6 u09a5u09c7u0995u09c7 u09ecu09e6 u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964nttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>u09b2u09beu09b2 u0986u099fu09beu09b0 u0989u09aau0995u09beu09b0u09bfu09a4u09be<\\/h2>ttnttt<h2>u0996u09beu09acu09cb u0995u09cbu09a8u099fu09be?  u09b2u09beu09b2 u0986u099fu09be u09a8u09beu0995u09bf u09b8u09beu09a6u09be u0986u099fu09be? <\\/h2>ttntt<p>u09b8u09cbu099cu09be u0995u09a5u09beu09df u09acu09b2u09a4u09c7 u0997u09c7u09b2u09c7, u09b8u09beu09a6u09be u0986u099fu09beu09df u09aau09c1u09b7u09cdu099fu09bf u0997u09c1u09a8 u0985u09a8u09c7u0995 u0985u09a8u09c7u0995 u0995u09aeu0964 u0995u09c7u09a8u09a8u09be, u0997u09ae u09adu09c7u0999u09cdu0997u09c7 u09aau09b0u09bfu09b6u09cbu09a7u09a8 u0995u09b0u09c7 u09afu0996u09a8 u09b8u09beu09a6u09be u0986u099fu09be u09aau09cdu09b0u09b8u09cdu09a4u09c1u09a4 u0995u09b0u09be u09b9u09df,u09a4u0996u09a8 u0997u09aeu09c7 u09a5u09beu0995u09be u09acu09bfu09adu09bfu09a8u09cdu09a8 u09adu09bfu099fu09beu09aeu09bfu09a8, u0996u09a8u09bfu099c u098fu09acu0982 u0986u09aeu09bfu09b7 u09a8u09b7u09cdu099f u09b9u09dfu09c7 u09afu09beu09dfu0964 u09b8u09beu09a6u09be u0986u099fu09beu09df u0986u0981u09b6 u0996u09c1u09acu0987 u0995u09ae u09a5u09beu0995u09c7u0964 u0986u09b0 u09adu09c2u09b8u09bfu09b8u09b9 u09b2u09beu09b2 u0986u099fu09beu09df u0986u0981u09b6u09c7u09b0 u09aau09b0u09bfu09aeu09beu09a3 u0985u09a8u09c7u0995 u0985u09a8u09c7u0995 u0997u09c1u09a8 u09acu09c7u09b6u09bfu0964 u09b8u0995u09beu09b2-u09acu09bfu0995u09beu09b2 u09a8u09beu09b8u09cdu09a4u09beu09df u09afu09beu09b0u09be u09b0u09c1u099fu09bf u09aau099bu09a8u09cdu09a6 u0995u09b0u09c7u09a8,u09a4u09beu09b0u09be u09b8u09beu09a6u09be u0986u099fu09beu09b0 u09aau09b0u09bfu09acu09b0u09cdu09a4u09c7 u09b2u09beu09b2 u0986u099fu09beu09b0 u09acu09cdu09afu09acu09b9u09beu09b0 u0995u09b0u09c1u09a8u0964<\\/p>ttnttt<h2>u09aau09b0u09bfu09acu09beu09b0u09c7u09b0 u09aau09cdu09b0u09a4u09bf u09a6u09cdu09acu09beu09dfu09bfu09a4u09cdu09acu0983 <\\/h2>ttnttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aau09cdu09b0u09a4u09bfu099fu09bf u09acu09beu09acu09be u09aeu09beu09dfu09c7u09b0 u09acu09be u0995u09b0u09cdu09a4u09beu09b0 u0989u099au09bfu09a4 u09aau09b0u09bfu09acu09beu09b0u09c7u09b0 u0996u09beu09acu09beu09b0u09c7u09b0 u09aau09cdu09b0u09a4u09bf u09b8u099au09c7u09a4u09a8 u09b9u0993u09dfu09beu0964 u0986u09aau09a8u09bf u09b8u099au09c7u09a4u09a8 u09b9u09b2u09c7 u0986u09aau09a8u09beu09b0 u09aau09b0u09bfu09acu09beu09b0u09c7u09b0 u09b8u09a6u09b8u09cdu09afu09b0u09be u09b8u09c1u09b8u09cdu09a5 u09a5u09beu0995u09acu09c7u0964u0986u09b0 u09aau09b0u09bfu09acu09beu09b0u09c7u09b0 u09b8u09a6u09b8u09cdu09afu09b0u09be u09b8u09c1u09b8u09cdu09a5 u09a5u09beu0995u09b2u09c7 u0986u09aau09a8u09bf u099au09bfu09a8u09cdu09a4u09be u09aeu09c1u0995u09cdu09a4 u09acu09be u09adu09df u09a5u09c7u0995u09c7 u09aeu09c1u0995u09cdu09a4 u09a5u09beu0995u09acu09c7u09a8u0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aau09cdu09b0u09a4u09bfu099fu09bf u09aau09b0u09bfu09acu09beu09b0u09c7u09b0 u0989u099au09bfu09a4,u09aau09cdu09b0u09a4u09bfu09a6u09bfu09a8 u09a4u09beu09a6u09c7u09b0 u0996u09beu09acu09beu09b0u09c7 u09abu09beu0987u09acu09beu09b0 u09acu09be u0986u0981u09b6u09afu09c1u0995u09cdu09a4 u0996u09beu09acu09beu09b0 u09b0u09beu0996u09beu0964 u0986u09aau09a8u09beu09a6u09c7u09b0 u09acu09b2u09acu09cb u09aau09cdu09b0u09a4u09bfu09a6u09bfu09a8 u09b8u0995u09beu09b2- u09acu09bfu0995u09c7u09b2u09c7u09b0 u09a8u09beu09b8u09cdu09a4u09beu09df u09b6u09bfu09b6u09c1 u09a5u09c7u0995u09c7 u09acu09c3u09a6u09cdu09a7 u09b8u09acu09beu0987u0995u09c7 u09b2u09beu09b2 u0986u099fu09beu09b0 u09b0u09c1u099fu09bf u0996u09c7u09a4u09c7 u09a6u09bfu09a8u0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09aau09a8u09bf u099fu09beu0995u09be u09a6u09bfu09dfu09c7 u0996u09beu09acu09beu09b0 u0995u09bfu09a8u099bu09c7u09a8 u0995u09bfu09a8u09cdu09a4u09c1, u0986u09aau09a8u09bf u09acu09c1u099du09a4u09c7u099bu09c7u09a8 u09a8u09be u09b8u09c7u0987 u0996u09beu09acu09beu09b0 u0986u09aau09a8u09beu09b0 u09aau09b0u09bfu09acu09beu09b0u09c7u09b0 u09b8u09c1u09b8u09cdu09a5u09a4u09be u09a8u09bfu09dfu09c7 u0986u09b8u09acu09c7 u09a8u09be u0985u09b8u09c1u09b8u09cdu09a5u09a4u09be? u09aeu09a8u09c7 u09b0u09beu0996u09acu09c7u09a8 u09a8u09bfu09b0u09beu09aau09a6, u09adu09c7u099cu09beu09b2u09aeu09c1u0995u09cdu09a4 u0996u09beu09acu09beu09b0 u0994u09b7u09a7u09c7u09b0 u09acu09bfu0995u09b2u09cdu09aau0964 nttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>u0986u09aeu09beu09a6u09c7u09b0 u0995u09beu099bu09c7 u09a5u09c7u0995u09c7 u0995u09c7u09a8u09cb u0995u09bfu09a8u09acu09c7u09a8u0983<\\/h2>ttnttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09aau09a8u09beu09a6u09c7u09b0 u09acu09b2u09acu09cb u09aau09cdu09b0u09a4u09bfu09a6u09bfu09a8 u0986u0981u09b6u09afu09c1u0995u09cdu09a4 u09b2u09beu09b2 u0986u099fu09beu09b0 u09b0u09c1u099fu09bf u0996u09beu09a8u0964 u09a8u09bfu099cu09c7u09b0u09be u0997u09ae u0995u09bfu09a8u09c7 u09b2u09beu09b2 u0986u099fu09be u09acu09beu09a8u09bfu09dfu09c7 u09a8u09bfu09a8u0964 u0986u09b0 u09afu09beu09b0u09be u098fu0987 u099du09beu09aeu09c7u09b2u09be u0995u09b0u09a4u09c7 u099au09beu09a8 u09a8u09be, u09a4u09beu09b0u09be u0986u09aeu09beu09a6u09c7u09b0 u0995u09beu099bu09c7 u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8u0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09aeu09b0u09be u09a8u09bfu099cu09b8u09cdu09ac u09a4u09a4u09cdu09a4u09cdu09acu09beu09acu09a7u09beu09a8u09c7 u09b2u09beu09b2 u0986u099fu09be u09a4u09c8u09b0u09bf u0995u09b0u09c7 u09b8u09aeu0997u09cdu09b0 u09acu09beu0982u09b2u09beu09a6u09c7u09b6 u09b9u09cbu09ae u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u09a6u09bfu099au09cdu099bu09bfu0964 u0986u09aeu09beu09a6u09c7u09b0 u09b8u09c1u09a6u0995u09cdu09b7 u099fu09bfu09ae u09aeu09c7u09aeu09cdu09acu09beu09b0u0997u09a8 u09a6u09c7u09b6u09bf u0997u09ae u099du09c7u09dcu09c7,u09acu09c7u099bu09c7, u09aau09beu09a8u09bf u09a6u09bfu09dfu09c7 u09a7u09c1u09dfu09c7 u09b0u09cbu09a6u09c7 u09b6u09c1u0995u09bfu09afu09bcu09c7 u09b8u09c1u09b8u09cdu09acu09beu09b8u09cdu09a5u09cdu09afu0995u09b0  u09adu09beu09acu09c7 u09b2u09beu09b2 u0986u099fu09be u09a4u09c8u09b0u09bf u0995u09b0u099bu09c7u0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu09a4u09beu0987 u0986u09b0 u09a6u09c7u09b0u09bf u09a8u09be u0995u09b0u09c7 u09b8u09c1u09b8u09cdu09acu09beu09b8u09cdu09a5u09cdu09afu0995u09b0 u0986u0981u09b6u09afu09c1u0995u09cdu09a4 u09b2u09beu09b2 u0986u099fu09be u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8 u098fu0996u09a8u09bfu0987u0964nttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u09a8u09bfu099au09c7u09b0 u09abu09b0u09cdu09aeu099fu09bf u09aau09c2u09b0u09a3 u0995u09b0u09c1u09a8<\\/h2>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"2372\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"2375\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1717804451\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>nttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;0.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;0.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"d6ef7bffc8\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->ntt Copyright u00a9 2024  Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\\\"\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-6__trashed','','','2026-06-09 12:42:17','2026-06-09 06:42:17','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-6/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1833','17','2026-06-08 21:37:28','2026-06-08 15:37:28','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp 472w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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>u0986u09aeu09b0u09be u09aau09cdu09b0u09a4u09bfu09a8u09bfu09afu09bcu09a4 u0995u09cdu09afu09beu09a8u09b8u09beu09b0, u09b0u0995u09cdu09a4u09c7 u0995u09b2u09c7u09b8u09cdu099fu09c7u09b0u09b2, u09a1u09beu09dfu09beu09acu09c7u099fu09bfu09b8 u0987u09a4u09cdu09afu09beu09a6u09bf u09aeu09b0u09a3u09acu09cdu09afu09beu09a7u09bf u09b0u09cbu0997u09c7 u0986u0995u09cdu09b0u09beu09a8u09cdu09a4 u09b9u099au09cdu099bu09bfu0964 u09acu099bu09b0u09c7 u09aau09cdu09b0u09beu09df u09e8 u09b2u09beu0995u09cdu09b7 u09aeu09beu09a8u09c1u09b7 u0995u09cdu09afu09beu09a8u09b8u09beu09b0u09c7 u0986u0995u09cdu09b0u09beu09a8u09cdu09a4 u09b9u099au09cdu099bu09c7u09a8u0964  u09e7u09e6 u09b6u09a4u09beu0982u09b6 u09aeu09beu09a8u09c1u09b7 u09aeu09beu09b0u09be u09afu09beu099au09cdu099bu09c7u09a8 u09a1u09beu09dfu09beu09acu09c7u099fu09bfu09b8 u09b0u09cbu0997u09c7u09b0 u0995u09beu09b0u09a3u09c7u0964 u09b0u0995u09cdu09a4u09c7 u0995u09b2u09c7u09b8u09cdu099fu09c7u09b0u09b2 u09aau09cdu09b0u09a4u09bfu09a8u09bfu09dfu09a4 u0998u09b0u09c7 u0998u09b0u09c7 u09acu09c7u09dcu09c7 u099au09b2u09c7u099bu09c7u0964 <\\/h2>ttntt<p>u0986u09b0 u098fu09b8u09ac u09b0u09cbu0997 u0986u09aeu09beu09a6u09c7u09b0 u09b6u09b0u09c0u09b0u09c7 u09acu09beu09b8u09be u09acu09beu0981u09a7u09beu09b0 u09aau09c2u09b0u09cdu09acu09c7u0987 u0986u09aeu09beu09a6u09c7u09b0 u0989u099au09bfu09a4 u09acu09bfu09adu09bfu09a8u09cdu09a8 u09adu09bfu099fu09beu09aeu09bfu09a8 u099cu09beu09a4u09c0u09afu09bc u0993 u09abu09beu0987u09acu09beu09b0 u09acu09be u0986u0981u09b6u09afu09c1u0995u09cdu09a4 u0996u09beu09acu09beu09b0 u0996u09beu0993u09afu09bcu09beu0964 u09acu09bfu09adu09bfu09a8u09cdu09a8 u09abu09b2u09aeu09c2u09b2 u098fu09acu0982 u09b2u09beu09b2 u0986u099fu09beu09df u09abu09beu0987u09acu09beu09b0 u09a5u09beu0995u09c7u0964 u09a4u09acu09c7 u09b8u09ac u09a5u09c7u0995u09c7 u09acu09c7u09b6u09bf u0995u09cdu09afu09beu09a8u09cdu09b8u09beu09b0 u09aau09cdu09b0u09a4u09bfu09b0u09cbu09a7u0995 u0993 u09abu09beu0987u09acu09beu09b0 (u0986u0981u09b6) u09aau09beu0993u09dfu09be u09afu09beu09df u09b2u09beu09b2 u0986u099fu09beu09dfu0964<\\/p>https:\\/\\/youtu.be\\/rU4nqtt5ynsttnttt<a href=\\\"#order\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<h2>u09a6u09c8u09a8u09bfu0995 u0995u09a4u099fu09c1u0995u09c1 u09abu09beu0987u09acu09beu09b0 u0997u09cdu09b0u09b9u09a3 u0995u09b0u09be u0989u099au09bfu09a4<\\/h2>ttntt<table><tbody><tr><th>u09acu09dfu09b8<\\/th><th>u09a6u09c8u09a8u09bfu0995 u09afu09a4u099fu09c1u0995u09c1 u09abu09beu0987u09acu09beu09b0 u0996u09beu0993u09dfu09be u0989u099au09bfu09a4<\\/th><\\/tr><tr><td>2-5 u09acu099bu09b0<\\/td><td>15 u0997u09cdu09b0u09beu09ae<\\/td><\\/tr><tr><td>5-11 u09acu099bu09b0<\\/td><td>20 u0997u09cdu09b0u09beu09ae<\\/td><\\/tr><tr><td>11-15 u09acu099bu09b0<\\/td><td>25 u0997u09cdu09b0u09beu09ae<\\/td><\\/tr><tr><td>17 u09acu099bu09b0 u09acu09be u09a4u09a6u09c2u09b0u09cdu09a7<\\/td><td>30 u0997u09cdu09b0u09beu09ae<\\/td><\\/tr><\\/tbody><\\/table>ttnttt<h2>u09b2u09beu09b2 u0986u099fu09beu09b0 u09aau09c1u09b7u09cdu099fu09bf u0997u09c1u09a3u0983 <\\/br>nu09e7u09e6u09e6 u0997u09cdu09b0u09beu09ae u09b2u09beu09b2 u0986u099fu09beu09b0 u09b0u09c1u099fu09bf u09acu09be u09b2u09beu09b2 u0986u099fu09beu09b0 u09aeu09a7u09cdu09afu09c7 u09b0u09dfu09c7u099bu09c7<\\/h2>ttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">tt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0995u09cdu09afu09beu09a8u09cdu09b8u09beu09b0 u09aau09cdu09b0u09a4u09bfu09b0u09cbu09a7u0995 u09adu09bfu099fu09beu09aeu09bfu09a8- B6 = u09e6.u09ed u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09abu09beu0987u09acu09beu09b0 u09acu09be u0986u0981u09b6 u09b0u09dfu09c7u099bu09c7= u09e7u09e6 u09a5u09c7u0995u09c7 u09e7u09eb u0997u09cdu09b0u09beu09aeu0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0995u09cdu09afu09beu09b2u09cbu09b0u09bf u09b0u09dfu09c7u099bu09c7 =  u09e9u09eau09e6 u0995u09bfu09b2u09cb u0995u09cdu09afu09beu09b2u09cbu09b0u09bfu0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aau09cdu09b0u09cbu099fu09bfu09a8 u09b0u09dfu09c7u099bu09c7= u09e7u09e9 u09a5u09c7u0995u09c7 u09e7u09eb u0997u09cdu09b0u09beu09aeu0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aeu09cdu09afu09beu0997u09a8u09c7u09b6u09bfu09dfu09beu09ae = u09ebu09e6 u09a5u09c7u0995u09c7 u09ecu09e6 u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964 nttttttttt<\\/li>ntttttt<\\/ul>nttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0995u09beu09b0u09cdu09acu09cbu09b9u09beu0987u09a1u09cdu09b0u09c7u099f = u09edu09e6 u09a5u09c7u0995u09c7 u09edu09eb u0997u09cdu09b0u09beu09aeu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09dfu09b0u09a8 = u09e8 u09a5u09c7u0995u09c7 u09e9 u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aeu09cdu09afu09beu0997u09a8u09c7u09b6u09bfu09dfu09beu09ae = u09ebu09e6 u09a5u09c7u0995u09c7 u09ecu09e6 u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09abu09b8u09abu09b0u09beu09b8 = u09e9u09e6u09e6 u09a5u09c7u0995u09c7 u09e9u09ebu09e6 u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu099cu09bfu0982u0995= u09e8 u09a5u09c7u0995u09c7 u09e9 u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964 nttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>u098fu099bu09beu09dcu09beu0993 u09b0u09dfu09c7u099bu09c7<\\/h2>ttnttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09adu09bfu099fu09beu09aeu09bfu09a8- B1= u09e6.u09eb u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09adu09bfu099fu09beu09aeu09bfu09a8- B2= u09e6.u09e8 u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09adu09bfu099fu09beu09aeu09bfu09a8- B3= u09eb u09a5u09c7u0995u09c7 u09ed u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09adu09bfu099fu09beu09aeu09bfu09a8- B9= u09eau09e6 u09a5u09c7u0995u09c7 u09ecu09e6 u09aeu09bfu09b2u09bf u0997u09cdu09b0u09beu09aeu0964nttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>u09b2u09beu09b2 u0986u099fu09beu09b0 u0989u09aau0995u09beu09b0u09bfu09a4u09be<\\/h2>ttnttt<h2>u0996u09beu09acu09cb u0995u09cbu09a8u099fu09be?  u09b2u09beu09b2 u0986u099fu09be u09a8u09beu0995u09bf u09b8u09beu09a6u09be u0986u099fu09be? <\\/h2>ttntt<p>u09b8u09cbu099cu09be u0995u09a5u09beu09df u09acu09b2u09a4u09c7 u0997u09c7u09b2u09c7, u09b8u09beu09a6u09be u0986u099fu09beu09df u09aau09c1u09b7u09cdu099fu09bf u0997u09c1u09a8 u0985u09a8u09c7u0995 u0985u09a8u09c7u0995 u0995u09aeu0964 u0995u09c7u09a8u09a8u09be, u0997u09ae u09adu09c7u0999u09cdu0997u09c7 u09aau09b0u09bfu09b6u09cbu09a7u09a8 u0995u09b0u09c7 u09afu0996u09a8 u09b8u09beu09a6u09be u0986u099fu09be u09aau09cdu09b0u09b8u09cdu09a4u09c1u09a4 u0995u09b0u09be u09b9u09df,u09a4u0996u09a8 u0997u09aeu09c7 u09a5u09beu0995u09be u09acu09bfu09adu09bfu09a8u09cdu09a8 u09adu09bfu099fu09beu09aeu09bfu09a8, u0996u09a8u09bfu099c u098fu09acu0982 u0986u09aeu09bfu09b7 u09a8u09b7u09cdu099f u09b9u09dfu09c7 u09afu09beu09dfu0964 u09b8u09beu09a6u09be u0986u099fu09beu09df u0986u0981u09b6 u0996u09c1u09acu0987 u0995u09ae u09a5u09beu0995u09c7u0964 u0986u09b0 u09adu09c2u09b8u09bfu09b8u09b9 u09b2u09beu09b2 u0986u099fu09beu09df u0986u0981u09b6u09c7u09b0 u09aau09b0u09bfu09aeu09beu09a3 u0985u09a8u09c7u0995 u0985u09a8u09c7u0995 u0997u09c1u09a8 u09acu09c7u09b6u09bfu0964 u09b8u0995u09beu09b2-u09acu09bfu0995u09beu09b2 u09a8u09beu09b8u09cdu09a4u09beu09df u09afu09beu09b0u09be u09b0u09c1u099fu09bf u09aau099bu09a8u09cdu09a6 u0995u09b0u09c7u09a8,u09a4u09beu09b0u09be u09b8u09beu09a6u09be u0986u099fu09beu09b0 u09aau09b0u09bfu09acu09b0u09cdu09a4u09c7 u09b2u09beu09b2 u0986u099fu09beu09b0 u09acu09cdu09afu09acu09b9u09beu09b0 u0995u09b0u09c1u09a8u0964<\\/p>ttnttt<h2>u09aau09b0u09bfu09acu09beu09b0u09c7u09b0 u09aau09cdu09b0u09a4u09bf u09a6u09cdu09acu09beu09dfu09bfu09a4u09cdu09acu0983 <\\/h2>ttnttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aau09cdu09b0u09a4u09bfu099fu09bf u09acu09beu09acu09be u09aeu09beu09dfu09c7u09b0 u09acu09be u0995u09b0u09cdu09a4u09beu09b0 u0989u099au09bfu09a4 u09aau09b0u09bfu09acu09beu09b0u09c7u09b0 u0996u09beu09acu09beu09b0u09c7u09b0 u09aau09cdu09b0u09a4u09bf u09b8u099au09c7u09a4u09a8 u09b9u0993u09dfu09beu0964 u0986u09aau09a8u09bf u09b8u099au09c7u09a4u09a8 u09b9u09b2u09c7 u0986u09aau09a8u09beu09b0 u09aau09b0u09bfu09acu09beu09b0u09c7u09b0 u09b8u09a6u09b8u09cdu09afu09b0u09be u09b8u09c1u09b8u09cdu09a5 u09a5u09beu0995u09acu09c7u0964u0986u09b0 u09aau09b0u09bfu09acu09beu09b0u09c7u09b0 u09b8u09a6u09b8u09cdu09afu09b0u09be u09b8u09c1u09b8u09cdu09a5 u09a5u09beu0995u09b2u09c7 u0986u09aau09a8u09bf u099au09bfu09a8u09cdu09a4u09be u09aeu09c1u0995u09cdu09a4 u09acu09be u09adu09df u09a5u09c7u0995u09c7 u09aeu09c1u0995u09cdu09a4 u09a5u09beu0995u09acu09c7u09a8u0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aau09cdu09b0u09a4u09bfu099fu09bf u09aau09b0u09bfu09acu09beu09b0u09c7u09b0 u0989u099au09bfu09a4,u09aau09cdu09b0u09a4u09bfu09a6u09bfu09a8 u09a4u09beu09a6u09c7u09b0 u0996u09beu09acu09beu09b0u09c7 u09abu09beu0987u09acu09beu09b0 u09acu09be u0986u0981u09b6u09afu09c1u0995u09cdu09a4 u0996u09beu09acu09beu09b0 u09b0u09beu0996u09beu0964 u0986u09aau09a8u09beu09a6u09c7u09b0 u09acu09b2u09acu09cb u09aau09cdu09b0u09a4u09bfu09a6u09bfu09a8 u09b8u0995u09beu09b2- u09acu09bfu0995u09c7u09b2u09c7u09b0 u09a8u09beu09b8u09cdu09a4u09beu09df u09b6u09bfu09b6u09c1 u09a5u09c7u0995u09c7 u09acu09c3u09a6u09cdu09a7 u09b8u09acu09beu0987u0995u09c7 u09b2u09beu09b2 u0986u099fu09beu09b0 u09b0u09c1u099fu09bf u0996u09c7u09a4u09c7 u09a6u09bfu09a8u0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09aau09a8u09bf u099fu09beu0995u09be u09a6u09bfu09dfu09c7 u0996u09beu09acu09beu09b0 u0995u09bfu09a8u099bu09c7u09a8 u0995u09bfu09a8u09cdu09a4u09c1, u0986u09aau09a8u09bf u09acu09c1u099du09a4u09c7u099bu09c7u09a8 u09a8u09be u09b8u09c7u0987 u0996u09beu09acu09beu09b0 u0986u09aau09a8u09beu09b0 u09aau09b0u09bfu09acu09beu09b0u09c7u09b0 u09b8u09c1u09b8u09cdu09a5u09a4u09be u09a8u09bfu09dfu09c7 u0986u09b8u09acu09c7 u09a8u09be u0985u09b8u09c1u09b8u09cdu09a5u09a4u09be? u09aeu09a8u09c7 u09b0u09beu0996u09acu09c7u09a8 u09a8u09bfu09b0u09beu09aau09a6, u09adu09c7u099cu09beu09b2u09aeu09c1u0995u09cdu09a4 u0996u09beu09acu09beu09b0 u0994u09b7u09a7u09c7u09b0 u09acu09bfu0995u09b2u09cdu09aau0964 nttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>u0986u09aeu09beu09a6u09c7u09b0 u0995u09beu099bu09c7 u09a5u09c7u0995u09c7 u0995u09c7u09a8u09cb u0995u09bfu09a8u09acu09c7u09a8u0983<\\/h2>ttnttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09aau09a8u09beu09a6u09c7u09b0 u09acu09b2u09acu09cb u09aau09cdu09b0u09a4u09bfu09a6u09bfu09a8 u0986u0981u09b6u09afu09c1u0995u09cdu09a4 u09b2u09beu09b2 u0986u099fu09beu09b0 u09b0u09c1u099fu09bf u0996u09beu09a8u0964 u09a8u09bfu099cu09c7u09b0u09be u0997u09ae u0995u09bfu09a8u09c7 u09b2u09beu09b2 u0986u099fu09be u09acu09beu09a8u09bfu09dfu09c7 u09a8u09bfu09a8u0964 u0986u09b0 u09afu09beu09b0u09be u098fu0987 u099du09beu09aeu09c7u09b2u09be u0995u09b0u09a4u09c7 u099au09beu09a8 u09a8u09be, u09a4u09beu09b0u09be u0986u09aeu09beu09a6u09c7u09b0 u0995u09beu099bu09c7 u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8u0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09aeu09b0u09be u09a8u09bfu099cu09b8u09cdu09ac u09a4u09a4u09cdu09a4u09cdu09acu09beu09acu09a7u09beu09a8u09c7 u09b2u09beu09b2 u0986u099fu09be u09a4u09c8u09b0u09bf u0995u09b0u09c7 u09b8u09aeu0997u09cdu09b0 u09acu09beu0982u09b2u09beu09a6u09c7u09b6 u09b9u09cbu09ae u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u09a6u09bfu099au09cdu099bu09bfu0964 u0986u09aeu09beu09a6u09c7u09b0 u09b8u09c1u09a6u0995u09cdu09b7 u099fu09bfu09ae u09aeu09c7u09aeu09cdu09acu09beu09b0u0997u09a8 u09a6u09c7u09b6u09bf u0997u09ae u099du09c7u09dcu09c7,u09acu09c7u099bu09c7, u09aau09beu09a8u09bf u09a6u09bfu09dfu09c7 u09a7u09c1u09dfu09c7 u09b0u09cbu09a6u09c7 u09b6u09c1u0995u09bfu09afu09bcu09c7 u09b8u09c1u09b8u09cdu09acu09beu09b8u09cdu09a5u09cdu09afu0995u09b0  u09adu09beu09acu09c7 u09b2u09beu09b2 u0986u099fu09be u09a4u09c8u09b0u09bf u0995u09b0u099bu09c7u0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu09a4u09beu0987 u0986u09b0 u09a6u09c7u09b0u09bf u09a8u09be u0995u09b0u09c7 u09b8u09c1u09b8u09cdu09acu09beu09b8u09cdu09a5u09cdu09afu0995u09b0 u0986u0981u09b6u09afu09c1u0995u09cdu09a4 u09b2u09beu09b2 u0986u099fu09be u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8 u098fu0996u09a8u09bfu0987u0964nttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u09a8u09bfu099au09c7u09b0 u09abu09b0u09cdu09aeu099fu09bf u09aau09c2u09b0u09a3 u0995u09b0u09c1u09a8<\\/h2>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"2372\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"2375\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1717804451\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>nttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;0.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;0.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"d6ef7bffc8\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->ntt Copyright u00a9 2024  Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\\\"\"','Checkout (Woo)','','inherit','closed','closed','','1832-revision-v1','','','2026-06-08 21:37:28','2026-06-08 15:37:28','','1832','https://hypergrowth.fishgrowth.xyz/?p=1833','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1834','17','2026-06-08 21:37:32','2026-06-08 15:37:32','','Sugai Khejur','','trash','closed','closed','','sugai-khejur__trashed','','','2026-06-09 12:53:26','2026-06-09 06:53:26','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=sugai-khejur','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1835','17','2026-06-08 21:37:32','2026-06-08 15:37:32','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-5__trashed','','','2026-06-09 12:53:26','2026-06-09 06:53:26','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-5/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1836','17','2026-06-08 21:37:32','2026-06-08 15:37:32','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1835-revision-v1','','','2026-06-08 21:37:32','2026-06-08 15:37:32','','1835','https://hypergrowth.fishgrowth.xyz/?p=1836','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1837','17','2026-06-08 21:37:32','2026-06-08 15:37:32','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"406\\\" height=\\\"326\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Sugai-01-1-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Sugai-01-1-1.jpg 406w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Sugai-01-1-1-300x241.jpg 300w\\\" sizes=\\\"(max-width: 406px) 100vw, 406px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0995\\u09c7\\u09a8 \\u0996\\u09be\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0, \\u0986\\u09df\\u09b0\\u09a8, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae\\u09b8\\u09b9 \\u09a8\\u09be\\u09a8\\u09be\\u09a8 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3\\u0964 \\u098f\\u09b8\\u09ac \\u0996\\u09be\\u09a6\\u09cd\\u09af \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u0985\\u09a4\\u09c0\\u09ac \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09b9\\u09df\\u09c7 \\u0993\\u09a0\\u09c7 \\u09af\\u0996\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09df\\u09b8 \\u09aa\\u09cc\\u0981\\u099b\\u09be\\u09ac\\u09c7 \\u09e9\\u09e6-\\u098f\\u09b0 \\u0995\\u09cb\\u09a0\\u09be\\u09df\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2\\u09cb \\u0989\\u09ce\\u09b8, \\u09af\\u09be \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2 \\u0989\\u09a4\\u09cd\\u09b8, \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u098f\\u09ac\\u0982 \\u09a4\\u09c3\\u09aa\\u09cd\\u09a4 \\u09ac\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09af\\u09bc: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09af\\u09be \\u09b9\\u09be\\u09b0\\u09cd\\u099f\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf\\u09a4\\u09c7 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u0993 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7, \\u09af\\u09be \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u0996\\u09a8\\u09bf\\u099c, \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09df\\u09be\\u09ae \\u0993 \\u09aa\\u099f\\u09be\\u09b6\\u09bf\\u09df\\u09be\\u0964 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09be \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09be\\u09dc\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u09b9\\u09be\\u09a1\\u09bc \\u0993 \\u09a6\\u09be\\u0981\\u09a4: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u0993 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09a5\\u09be\\u0995\\u09c7 \\u09af\\u09be \\u09b9\\u09be\\u09a1\\u09bc \\u0993 \\u09a6\\u09be\\u0981\\u09a4\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09ae\\u09b8\\u09cd\\u09a4\\u09bf\\u09b7\\u09cd\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u0996\\u09a8\\u09bf\\u099c \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09af\\u09be \\u09ae\\u09b8\\u09cd\\u09a4\\u09bf\\u09b7\\u09cd\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3, \\u09af\\u09c7\\u09ae\\u09a8 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09ac\\u09bf\\u09ec \\u098f\\u09ac\\u0982 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u0995\\u09cd\\u09a4\\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be\\u09df \\u09ad\\u09cb\\u0997\\u09be \\u09b0\\u09cb\\u0997\\u09c0\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u098f\\u0995\\u099c\\u09a8 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09af\\u09a4\\u099f\\u09c1\\u0995\\u09c1 \\u0986\\u09df\\u09b0\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8, \\u09a4\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09df \\u09e7\\u09e7 \\u09ad\\u09be\\u0997 \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09b0\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09bf\\u099c\\u09bf\\u09df\\u09c7 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964 \\u09aa\\u09b0 \\u09a6\\u09bf\\u09a8 \\u09b8\\u0995\\u09be\\u09b2\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09c7\\u099c\\u09be\\u09a8\\u09cb \\u09aa\\u09be\\u09a8\\u09bf \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u09a6\\u09c2\\u09b0 \\u09b9\\u09ac\\u09c7 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09b9\\u099c\\u09ae: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0989\\u099a\\u09cd\\u099a \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b9\\u099c\\u09ae\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u09ac\\u0982 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09e8\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e8\\u09eb \\u09ae\\u09bf\\u09b2\\u09bf\\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae, \\u09af\\u09be \\u0989\\u099a\\u09cd\\u099a \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u09ee\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0  \\u0995\\u09b0\\u09a4\\u09c7  \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09a3\\u09cd\\u09af \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0996\\u09c7\\u09df\\u09c7 \\u09b0\\u09bf\\u09b8\\u09bf\\u09ad \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u098f\\u0987 \\u09b8\\u09c0\\u099c\\u09a8\\u09c7\\u09b0 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u098f \\u0995\\u09cb\\u09a8\\u09cb \\u09aa\\u09cb\\u0995\\u09be \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09a8\\u09be \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09a5\\u09be \\u09ae\\u09a4 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09a8\\u09be \\u09aa\\u09c7\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u09bf\\u09b0\\u09cd\\u099f\\u09be\\u09a8 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09a5\\u09be\\u0995\\u099b\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"714\\\" height=\\\"853\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Sugai-1-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Sugai-1-1.jpg 714w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Sugai-1-1-251x300.jpg 251w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Sugai-1-1-600x717.jpg 600w\\\" sizes=\\\"(max-width: 714px) 100vw, 714px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2><a href=\\\"tel:01819000000\\\">\\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8    01819000000<\\/a><\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_country\\\" id=\\\"billing_country\\\" autocomplete=\\\"country\\\" data-placeholder=\\\"Select a country \\/ region&hellip;\\\" data-label=\\\"Country \\/ Region\\\"><option value=\\\"\\\">Select a country \\/ region&hellip;<\\/option><option value=\\\"AF\\\" >Afghanistan<\\/option><option value=\\\"AX\\\" >\\u00c5land 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&ccedil;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&atilde;o Tom&eacute; and Pr&iacute;ncipe<\\/option><option value=\\\"BL\\\" >Saint Barth&eacute;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\\\">\\u09b6\\u09bf\\u09aa\\u09bf\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a1\\u09a1\\u09cd\\u09b0\\u09c7\\u09b8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u099f\\u09bf \\u09b2\\u09c7\\u0996\\u09c1\\u09a8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"833\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"836\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>\\n\\t\\tProduct\\n\\t\\tQuantity\\n\\t\\tPrice\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717890083\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"edcba24797\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-7__trashed','','','2026-06-09 12:53:26','2026-06-09 06:53:26','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-7/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1838','17','2026-06-08 21:37:36','2026-06-08 15:37:36','','Sugai Khejur 02','','trash','closed','closed','','sugai-khejur-02__trashed','','','2026-06-09 12:41:54','2026-06-09 06:41:54','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=sugai-khejur-02','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1839','17','2026-06-08 21:37:36','2026-06-08 15:37:36','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-6__trashed','','','2026-06-09 12:41:54','2026-06-09 06:41:54','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-6/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1840','17','2026-06-08 21:37:36','2026-06-08 15:37:36','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1839-revision-v1','','','2026-06-08 21:37:36','2026-06-08 15:37:36','','1839','https://hypergrowth.fishgrowth.xyz/?p=1840','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1841','17','2026-06-08 21:37:36','2026-06-08 15:37:36','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp 472w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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>u09b8u09c1u0997u09beu0987 u0996u09c7u099cu09c1u09b0<\\/h2>ttnttttttttttttttt<img width=\\\"600\\\" height=\\\"800\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Irani-Khajur.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Irani-Khajur.jpg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Irani-Khajur-225x300-1.jpg 225w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\" \\/>tttttttttttttttnttt<a href=\\\"#order\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>tttnttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<h2>u09b8u09c1u0997u09beu0987 u0996u09c7u099cu09c1u09b0 u0995u09c7u09a8 u0996u09beu09acu09c7u09a8?<\\/h2>ttnttt<h2>u098fu0987 u0996u09c7u099cu09c1u09b0u09c7 u09b0u09dfu09c7u099bu09c7 u09aau09cdu09b0u099au09c1u09b0 u09aau09b0u09bfu09aeu09beu09a3u09c7 u09abu09beu0987u09acu09beu09b0, u0986u09dfu09b0u09a8, u09adu09bfu099fu09beu09aeu09bfu09a8 u098fu09acu0982 u09aeu09cdu09afu09beu0997u09a8u09c7u09b8u09bfu09dfu09beu09aeu09b8u09b9 u09a8u09beu09a8u09beu09a8 u09aau09c1u09b7u09cdu099fu09bfu0997u09c1u09a3u0964 u098fu09b8u09ac u0996u09beu09a6u09cdu09af u0989u09aau09beu09a6u09beu09a8 u09b6u09b0u09c0u09b0u09c7 u0985u09a4u09c0u09ac u09aau09cdu09b0u09dfu09cbu099cu09a8u09c0u09df u09b9u09dfu09c7 u0993u09a0u09c7 u09afu0996u09a8 u0986u09aau09a8u09beu09b0 u09acu09dfu09b8 u09aau09ccu0981u099bu09beu09acu09c7 u09e9u09e6-u098fu09b0 u0995u09cbu09a0u09beu09dfu0964<\\/h2>ttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">tt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09c1u0997u09beu0987 u0996u09c7u099cu09c1u09b0 u09aau09cdu09b0u09beu0995u09c3u09a4u09bfu0995 u09b6u09b0u09cdu0995u09b0u09beu09b0 u098fu0995u099fu09bf u09adu09beu09b2u09cb u0989u09ceu09b8, u09afu09be u09a6u09cdu09b0u09c1u09a4 u09b6u0995u09cdu09a4u09bf u09acu09c3u09a6u09cdu09a7u09bf u0995u09b0u09a4u09c7 u09aau09beu09b0u09c7u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu098fu0997u09c1u09b2u09bf u09abu09beu0987u09acu09beu09b0u09c7u09b0 u098fu0995u099fu09bf u09adu09beu09b2 u0989u09a4u09cdu09b8, u09afu09be u0986u09aau09a8u09beu0995u09c7 u0996u09beu0993u09afu09bcu09beu09b0 u09aau09b0u09c7 u09aau09c2u09b0u09cdu09a3 u098fu09acu0982 u09a4u09c3u09aau09cdu09a4 u09acu09cbu09a7 u0995u09b0u09a4u09c7 u09b8u09b9u09beu09afu09bcu09a4u09be u0995u09b0u09a4u09c7 u09aau09beu09b0u09c7u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b9u09c3u09a6u09b0u09cbu0997u09c7u09b0 u099du09c1u0981u0995u09bf u0995u09aeu09beu09afu09bc: u09b8u09c1u0997u09beu0987 u0996u09c7u099cu09c1u09b0u09c7 u09b0u09afu09bcu09c7u099bu09c7 u0985u09cdu09afu09beu09a8u09cdu099fu09bfu0985u0995u09cdu09b8u09bfu09a1u09c7u09a8u09cdu099f u09afu09be u09b9u09beu09b0u09cdu099fu09c7u09b0 u0995u09cdu09b7u09a4u09bf u09a5u09c7u0995u09c7 u09b0u0995u09cdu09b7u09be u0995u09b0u09a4u09c7 u09b8u09beu09b9u09beu09afu09cdu09af u0995u09b0u09c7u0964 u098fu0997u09c1u09b2u09bfu09a4u09c7 u09aau099fu09beu09b8u09bfu09afu09bcu09beu09aeu0993 u09b0u09afu09bcu09c7u099bu09c7, u09afu09be u09b0u0995u09cdu09a4u099au09beu09aa u0995u09aeu09beu09a4u09c7 u09b8u09beu09b9u09beu09afu09cdu09af u0995u09b0u09a4u09c7 u09aau09beu09b0u09c7u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu098fu0987 u0996u09c7u099cu09c1u09b0u09c7 u09b0u09dfu09c7u099bu09c7 u09aau09cdu09b0u099au09c1u09b0 u09adu09bfu099fu09beu09aeu09bfu09a8, u0996u09a8u09bfu099c, u0995u09cdu09afu09beu09b2u09b8u09bfu09dfu09beu09ae u0993 u09aau099fu09beu09b6u09bfu09dfu09beu0964 u0996u09c7u099cu09c1u09b0u09c7 u09a5u09beu0995u09be u0985u09cdu09afu09beu09a8u09cdu099fu09bfu0985u0995u09cdu09b8u09bfu09a1u09c7u09a8u09cdu099f u09b6u09b0u09c0u09b0u09c7 u09b0u09cbu0997 u09aau09cdu09b0u09a4u09bfu09b0u09cbu09a7u09c7u09b0 u0995u09cdu09b7u09aeu09a4u09be u09acu09beu09dcu09beu09dfu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aeu099cu09acu09c1u09a4 u09b9u09beu09a1u09bc u0993 u09a6u09beu0981u09a4: u09b8u09c1u0997u09beu0987 u0996u09c7u099cu09c1u09b0u09c7 u0995u09cdu09afu09beu09b2u09b8u09bfu09afu09bcu09beu09ae u0993 u09aeu09cdu09afu09beu0997u09a8u09c7u09b8u09bfu09afu09bcu09beu09ae u09a5u09beu0995u09c7 u09afu09be u09b9u09beu09a1u09bc u0993 u09a6u09beu0981u09a4u09c7u09b0 u09b8u09cdu09acu09beu09b8u09cdu09a5u09cdu09afu09c7u09b0 u099cu09a8u09cdu09af u0997u09c1u09b0u09c1u09a4u09cdu09acu09aau09c2u09b0u09cdu09a3u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu0989u09a8u09cdu09a8u09a4 u09aeu09b8u09cdu09a4u09bfu09b7u09cdu0995u09c7u09b0 u0995u09beu09b0u09cdu09afu0995u09beu09b0u09bfu09a4u09be: u09b8u09c1u0997u09beu0987 u0996u09c7u099cu09c1u09b0u09c7 u09adu09bfu099fu09beu09aeu09bfu09a8 u098fu09acu0982 u0996u09a8u09bfu099c u09b0u09afu09bcu09c7u099bu09c7 u09afu09be u09aeu09b8u09cdu09a4u09bfu09b7u09cdu0995u09c7u09b0 u0995u09beu09b0u09cdu09afu0995u09beu09b0u09bfu09a4u09beu09b0 u099cu09a8u09cdu09af u0997u09c1u09b0u09c1u09a4u09cdu09acu09aau09c2u09b0u09cdu09a3, u09afu09c7u09aeu09a8 u09adu09bfu099fu09beu09aeu09bfu09a8 u09acu09bfu09ec u098fu09acu0982 u09aau099fu09beu09b8u09bfu09afu09bcu09beu09aeu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b0u0995u09cdu09a4u09b8u09cdu09acu09b2u09cdu09aau09a4u09beu09df u09adu09cbu0997u09be u09b0u09cbu0997u09c0u09b0u09be u09aau09cdu09b0u09a4u09bfu09a6u09bfu09a8 u098fu0987 u0996u09c7u099cu09c1u09b0 u0996u09c7u09a4u09c7 u09aau09beu09b0u09c7u09a8u0964 u098fu0995u099cu09a8 u09b8u09c1u09b8u09cdu09a5 u09aeu09beu09a8u09c1u09b7u09c7u09b0 u09b6u09b0u09c0u09b0u09c7 u09afu09a4u099fu09c1u0995u09c1 u0986u09dfu09b0u09a8 u09aau09cdu09b0u09dfu09cbu099cu09a8, u09a4u09beu09b0 u09aau09cdu09b0u09beu09df u09e7u09e7 u09adu09beu0997 u09aau09c2u09b0u09a3 u0995u09b0u09c7 u098fu0987 u0996u09c7u099cu09c1u09b0u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu0995u09cbu09b7u09cdu09a0u0995u09beu09a0u09bfu09a8u09cdu09afu09c7u09b0 u09b8u09aeu09b8u09cdu09afu09beu09df u09b0u09beu09a4u09c7 u09aau09beu09a8u09bfu09a4u09c7 u0996u09c7u099cu09c1u09b0 u09adu09bfu099cu09bfu09dfu09c7 u09b0u09beu0996u09c1u09a8u0964 u09aau09b0 u09a6u09bfu09a8 u09b8u0995u09beu09b2u09c7 u0996u09c7u099cu09c1u09b0 u09adu09c7u099cu09beu09a8u09cb u09aau09beu09a8u09bf u09aau09beu09a8 u0995u09b0u09c1u09a8u0964 u09a6u09c2u09b0 u09b9u09acu09c7 u0995u09cbu09b7u09cdu09a0u0995u09beu09a0u09bfu09a8u09cdu09afu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu0989u09a8u09cdu09a8u09a4 u09b9u099cu09ae: u09b8u09c1u0997u09beu0987 u0996u09c7u099cu09c1u09b0u09c7u09b0 u0989u099au09cdu099a u09abu09beu0987u09acu09beu09b0 u0989u09aau09beu09a6u09beu09a8 u09b9u099cu09aeu09b6u0995u09cdu09a4u09bf u0989u09a8u09cdu09a8u09a4 u0995u09b0u09a4u09c7 u098fu09acu0982 u0995u09cbu09b7u09cdu09a0u0995u09beu09a0u09bfu09a8u09cdu09af u09aau09cdu09b0u09a4u09bfu09b0u09cbu09a7 u0995u09b0u09a4u09c7 u09b8u09b9u09beu09afu09bcu09a4u09be u0995u09b0u09c7u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aau09cdu09b0u09a4u09bfu099fu09bf u0996u09c7u099cu09c1u09b0u09c7 u09b0u09dfu09c7u099bu09c7 u09e8u09e6 u09a5u09c7u0995u09c7 u09e8u09eb u09aeu09bfu09b2u09bfu0997u09cdu09b0u09beu09ae u09aeu09cdu09afu09beu0997u09a8u09c7u09b8u09bfu09dfu09beu09ae, u09afu09be u0989u099au09cdu099a u09b0u0995u09cdu09a4u099au09beu09aa u0995u09aeu09beu09a4u09c7 u09b8u09beu09b9u09beu09afu09cdu09af u0995u09b0u09c7u0964nttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>u09e7 u0995u09c7u099cu09bf u09eeu09ebu09e6 u099fu09beu0995u09be u09aeu09beu09a4u09cdu09b0<\\/h2>ttnttt<a href=\\\"#order\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>tttnttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<h2>u0986u09aeu09beu09a6u09c7u09b0 u0995u09beu099bu09c7 u0995u09c7u09a8u09cb u0995u09bfu09a8u09acu09c7u09a8?<\\/h2>ttnttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>ttttttnttttttttttu0985u09b0u09cdu09a1u09beu09b0  u0995u09b0u09a4u09c7  u0986u09aau09a8u09beu0995u09c7 u0985u0997u09cdu09b0u09bfu09ae u09e7 u099fu09beu0995u09beu0993 u09aau09c7u09aeu09c7u09a8u09cdu099f u0995u09b0u09a4u09c7 u09b9u09acu09c7 u09a8u09beu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09beu09b0u09be u09acu09beu0982u09b2u09beu09a6u09c7u09b6u09c7 u0995u09cdu09afu09beu09b6 u0985u09a8 u09b9u09cbu09ae u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u09aau09beu09acu09c7u09a8u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aau09a3u09cdu09af u09b9u09beu09a4u09c7 u09aau09beu0993u09afu09bcu09beu09b0 u09aau09b0 u09aau09cdu09b0u09dfu09cbu099cu09a8u09c7 u0996u09c7u09dfu09c7 u09b0u09bfu09b8u09bfu09ad u0995u09b0u09a4u09c7 u09aau09beu09b0u09acu09c7u09a8u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09aeu09b0u09beu0987 u09a6u09bfu099au09cdu099bu09bf u098fu0987 u09b8u09c0u099cu09a8u09c7u09b0 u09abu09cdu09b0u09c7u09b6 u09b8u09c1u0997u09beu0987 u0996u09c7u099cu09c1u09b0 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09aeu09beu09a6u09c7u09b0 u0996u09c7u099cu09c1u09b0 u098f u0995u09cbu09a8u09cb u09aau09cbu0995u09be u09aau09beu09acu09c7u09a8 u09a8u09be u0987u09a8u09b6u09beu0986u09b2u09cdu09b2u09beu09b9 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09aeu09beu09a6u09c7u09b0 u0995u09a5u09be u09aeu09a4 u09aau09cdu09b0u09cbu09a1u09beu0995u09cdu099f u09a8u09be u09aau09c7u09b2u09c7 u09b8u09beu09a5u09c7 u09b8u09beu09a5u09c7 u09b0u09bfu09b0u09cdu099fu09beu09a8 u09b8u09c1u09acu09bfu09a7u09be u09a5u09beu0995u099bu09c7u0964nttttttttt<\\/li>ntttttt<\\/ul>nttttttttttttttt<img width=\\\"600\\\" height=\\\"600\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/Untitled-design.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/Untitled-design.webp 600w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/Untitled-design-300x300.webp 300w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/Untitled-design-150x150.webp 150w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/Untitled-design-100x100.webp 100w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\" \\/>tttttttttttttttnttt<h2><a href=\\\"tel:01819000000\\\">u09afu09c7 u0995u09cbu09a8 u09aau09cdu09b0u09dfu09cbu099cu09a8u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09c1u09a8    01819000000<\\/a><\\/h2>ttnttt<h2>u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u09a8u09bfu099au09c7u09b0 u09abu09b0u09cdu09aeu099fu09bf u09aau09c2u09b0u09a8 u0995u09b0u09c1u09a8<\\/h2>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><strong>Bangladesh<\\/strong><input type=\\\"hidden\\\" name=\\\"billing_country\\\" id=\\\"billing_country\\\" value=\\\"BD\\\" autocomplete=\\\"country\\\" readonly=\\\"readonly\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u09b6u09bfu09aau09bfu0982 u0985u09cdu09afu09beu09a1u09a1u09cdu09b0u09c7u09b8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0u099fu09bf u09b2u09c7u0996u09c1u09a8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"2365\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"2368\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1717803307\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>nttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;0.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;0.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"d6ef7bffc8\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->ntt Copyright u00a9 2024  Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\\\"\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-8__trashed','','','2026-06-09 12:41:54','2026-06-09 06:41:54','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-8/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1842','17','2026-06-08 21:37:38','2026-06-08 15:37:38','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp 472w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt<p>Copyright u00a9 2024 Your Business Name | This website made with u2764ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-3__trashed','','','2026-06-09 12:42:17','2026-06-09 06:42:17','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-3/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1843','17','2026-06-08 21:37:38','2026-06-08 15:37:38','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp 472w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt<p>Copyright u00a9 2024 Your Business Name | This website made with u2764ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\\\"\"','Thank You (Woo)','','inherit','closed','closed','','1842-revision-v1','','','2026-06-08 21:37:38','2026-06-08 15:37:38','','1842','https://hypergrowth.fishgrowth.xyz/?p=1843','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1844','17','2026-06-08 21:37:40','2026-06-08 15:37:40','','TASTE 01 Copy','','trash','closed','closed','','taste-01-copy__trashed','','','2026-06-09 12:36:54','2026-06-09 06:36:54','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=taste-01-copy','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1845','17','2026-06-08 21:37:40','2026-06-08 15:37:40','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-7__trashed','','','2026-06-09 12:36:54','2026-06-09 06:36:54','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-7/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1846','17','2026-06-08 21:37:40','2026-06-08 15:37:40','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1845-revision-v1','','','2026-06-08 21:37:40','2026-06-08 15:37:40','','1845','https://hypergrowth.fishgrowth.xyz/?p=1846','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1847','17','2026-06-08 21:37:40','2026-06-08 15:37:40','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"683\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/soup-683x1024-1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?resize=683{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1024&amp;ssl=1 683w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?resize=200{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 200w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1152&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C900&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?w=1000&amp;ssl=1 1000w\\\" sizes=\\\"(max-width: 683px) 100vw, 683px\\\" \\/>tttttttttttttttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>Taste <br>Dalmatia<\\/h1>ttntt<p>Ofu00a0<\\/p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.<\\/p>ttnttt<a href=\\\"#order\\\">nttttttOrder Nownttttt<\\/a>nttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\\\"><\\/path><\\/svg>tttnttttttContactnttttt<\\/a>nttHome Of Thettnttt<h2>best food<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p><p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<\\/p>ttnttt<a href=\\\"#\\\">nttttttGet directionsnttttt<\\/a>nttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/vishwas-katti-UrQ_BS9bLXQ-unsplash-min-qolicw57n2wsvunasit4pltibei17dhwaoqhguuf1c.jpg\\\" title=\\\"vishwas-katti-UrQ_BS9bLXQ-unsplash-min.jpg\\\" alt=\\\"vishwas-katti-UrQ_BS9bLXQ-unsplash-min.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z\\\"><\\/path><\\/svg>nttt<h2>Our Food Menu<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.<\\/p>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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>ttnttttttttttttttt<img width=\\\"807\\\" height=\\\"791\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/lily-banse-YHSwy6uqvk-unsplash.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/lily-banse-YHSwy6uqvk-unsplash.png?w=807&amp;ssl=1 807w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/lily-banse-YHSwy6uqvk-unsplash.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C294&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/lily-banse-YHSwy6uqvk-unsplash.png?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C753&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/lily-banse-YHSwy6uqvk-unsplash.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C588&amp;ssl=1 600w\\\" sizes=\\\"(max-width: 807px) 100vw, 807px\\\" \\/>tttttttttttttttnttt<h4>Dinner<\\/h4>ttnttSed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.ttnttttttttttttttt<img width=\\\"720\\\" height=\\\"720\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?w=720&amp;ssl=1 720w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C600&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 720px) 100vw, 720px\\\" \\/>tttttttttttttttnttt<h4>Lunch<\\/h4>ttnttSed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.ttnttttttttttttttt<img width=\\\"720\\\" height=\\\"720\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food5.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?w=720&amp;ssl=1 720w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C600&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 720px) 100vw, 720px\\\" \\/>tttttttttttttttnttt<h4>Breakfast<\\/h4>ttnttSed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.ttnttttttttttttttt<img width=\\\"800\\\" height=\\\"522\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/takeout.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/takeout.png?w=800&amp;ssl=1 800w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/takeout.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C196&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/takeout.png?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C501&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/takeout.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C392&amp;ssl=1 600w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>tttttttttttttttnttt<h4>To Go<\\/h4>ttnttSed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.ttntt<p>Consectetur adipiscing elit w\\/ iste natus u200b\\/ $10.95<\\/p>Aliquet lectus proin nibh nisl condimentum id venenatis.nw\\/Vegetables \\/ 10.95<p>Urna condimentum mattis pellentesque id \\/ 7:95<\\/p>Mediterranean Style Braised Goat\\/ $10.95<p>Consectetur adipiscing elit w\\/ iste natus u200b\\/ $10.95<\\/p>Aliquet lectus proin nibh nisl condimentum id venenatis.nw\\/Vegetables \\/ 10.95<p>Urna condimentum mattis pellentesque id \\/ 7:95<\\/p>Mediterranean Style Braised Goat\\/ $10.95ttnttt<a href=\\\"#\\\">nttttttFull Menu listnttttt<\\/a>n<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1932\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1932\\\"nt>nt<label for=\\\"wcf-item-product-1932\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nProduct1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;990.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"1996\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"1999\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716491843\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttProduct&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;990.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"b809f71953\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/h2>\\\"\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-9__trashed','','','2026-06-09 12:36:54','2026-06-09 06:36:54','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-9/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1848','17','2026-06-08 21:37:49','2026-06-08 15:37:49','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>No completed or processing order found to show the order details form demo.<\\/p>ttntt<p>Copyright u00a9 2024 Your Business Name | This website made with u2764ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-4__trashed','','','2026-06-09 12:49:22','2026-06-09 06:49:22','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-4/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1849','17','2026-06-08 21:37:49','2026-06-08 15:37:49','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>No completed or processing order found to show the order details form demo.<\\/p>ttntt<p>Copyright u00a9 2024 Your Business Name | This website made with u2764ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\\\"\"','Thank You (Woo)','','inherit','closed','closed','','1848-revision-v1','','','2026-06-08 21:37:49','2026-06-08 15:37:49','','1848','https://hypergrowth.fishgrowth.xyz/?p=1849','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1850','17','2026-06-08 21:37:56','2026-06-08 15:37:56','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp 472w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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>u09b8u09c1u0997u09beu0987 u0996u09c7u099cu09c1u09b0<\\/h2>ttnttttttttttttttt<img width=\\\"600\\\" height=\\\"800\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Irani-Khajur.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Irani-Khajur.jpg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Irani-Khajur-225x300-1.jpg 225w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\" \\/>tttttttttttttttnttt<a href=\\\"#order\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>tttnttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<h2>u09b8u09c1u0997u09beu0987 u0996u09c7u099cu09c1u09b0 u0995u09c7u09a8 u0996u09beu09acu09c7u09a8?<\\/h2>ttnttt<h2>u098fu0987 u0996u09c7u099cu09c1u09b0u09c7 u09b0u09dfu09c7u099bu09c7 u09aau09cdu09b0u099au09c1u09b0 u09aau09b0u09bfu09aeu09beu09a3u09c7 u09abu09beu0987u09acu09beu09b0, u0986u09dfu09b0u09a8, u09adu09bfu099fu09beu09aeu09bfu09a8 u098fu09acu0982 u09aeu09cdu09afu09beu0997u09a8u09c7u09b8u09bfu09dfu09beu09aeu09b8u09b9 u09a8u09beu09a8u09beu09a8 u09aau09c1u09b7u09cdu099fu09bfu0997u09c1u09a3u0964 u098fu09b8u09ac u0996u09beu09a6u09cdu09af u0989u09aau09beu09a6u09beu09a8 u09b6u09b0u09c0u09b0u09c7 u0985u09a4u09c0u09ac u09aau09cdu09b0u09dfu09cbu099cu09a8u09c0u09df u09b9u09dfu09c7 u0993u09a0u09c7 u09afu0996u09a8 u0986u09aau09a8u09beu09b0 u09acu09dfu09b8 u09aau09ccu0981u099bu09beu09acu09c7 u09e9u09e6-u098fu09b0 u0995u09cbu09a0u09beu09dfu0964<\\/h2>ttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">tt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09c1u0997u09beu0987 u0996u09c7u099cu09c1u09b0 u09aau09cdu09b0u09beu0995u09c3u09a4u09bfu0995 u09b6u09b0u09cdu0995u09b0u09beu09b0 u098fu0995u099fu09bf u09adu09beu09b2u09cb u0989u09ceu09b8, u09afu09be u09a6u09cdu09b0u09c1u09a4 u09b6u0995u09cdu09a4u09bf u09acu09c3u09a6u09cdu09a7u09bf u0995u09b0u09a4u09c7 u09aau09beu09b0u09c7u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu098fu0997u09c1u09b2u09bf u09abu09beu0987u09acu09beu09b0u09c7u09b0 u098fu0995u099fu09bf u09adu09beu09b2 u0989u09a4u09cdu09b8, u09afu09be u0986u09aau09a8u09beu0995u09c7 u0996u09beu0993u09afu09bcu09beu09b0 u09aau09b0u09c7 u09aau09c2u09b0u09cdu09a3 u098fu09acu0982 u09a4u09c3u09aau09cdu09a4 u09acu09cbu09a7 u0995u09b0u09a4u09c7 u09b8u09b9u09beu09afu09bcu09a4u09be u0995u09b0u09a4u09c7 u09aau09beu09b0u09c7u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b9u09c3u09a6u09b0u09cbu0997u09c7u09b0 u099du09c1u0981u0995u09bf u0995u09aeu09beu09afu09bc: u09b8u09c1u0997u09beu0987 u0996u09c7u099cu09c1u09b0u09c7 u09b0u09afu09bcu09c7u099bu09c7 u0985u09cdu09afu09beu09a8u09cdu099fu09bfu0985u0995u09cdu09b8u09bfu09a1u09c7u09a8u09cdu099f u09afu09be u09b9u09beu09b0u09cdu099fu09c7u09b0 u0995u09cdu09b7u09a4u09bf u09a5u09c7u0995u09c7 u09b0u0995u09cdu09b7u09be u0995u09b0u09a4u09c7 u09b8u09beu09b9u09beu09afu09cdu09af u0995u09b0u09c7u0964 u098fu0997u09c1u09b2u09bfu09a4u09c7 u09aau099fu09beu09b8u09bfu09afu09bcu09beu09aeu0993 u09b0u09afu09bcu09c7u099bu09c7, u09afu09be u09b0u0995u09cdu09a4u099au09beu09aa u0995u09aeu09beu09a4u09c7 u09b8u09beu09b9u09beu09afu09cdu09af u0995u09b0u09a4u09c7 u09aau09beu09b0u09c7u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu098fu0987 u0996u09c7u099cu09c1u09b0u09c7 u09b0u09dfu09c7u099bu09c7 u09aau09cdu09b0u099au09c1u09b0 u09adu09bfu099fu09beu09aeu09bfu09a8, u0996u09a8u09bfu099c, u0995u09cdu09afu09beu09b2u09b8u09bfu09dfu09beu09ae u0993 u09aau099fu09beu09b6u09bfu09dfu09beu0964 u0996u09c7u099cu09c1u09b0u09c7 u09a5u09beu0995u09be u0985u09cdu09afu09beu09a8u09cdu099fu09bfu0985u0995u09cdu09b8u09bfu09a1u09c7u09a8u09cdu099f u09b6u09b0u09c0u09b0u09c7 u09b0u09cbu0997 u09aau09cdu09b0u09a4u09bfu09b0u09cbu09a7u09c7u09b0 u0995u09cdu09b7u09aeu09a4u09be u09acu09beu09dcu09beu09dfu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aeu099cu09acu09c1u09a4 u09b9u09beu09a1u09bc u0993 u09a6u09beu0981u09a4: u09b8u09c1u0997u09beu0987 u0996u09c7u099cu09c1u09b0u09c7 u0995u09cdu09afu09beu09b2u09b8u09bfu09afu09bcu09beu09ae u0993 u09aeu09cdu09afu09beu0997u09a8u09c7u09b8u09bfu09afu09bcu09beu09ae u09a5u09beu0995u09c7 u09afu09be u09b9u09beu09a1u09bc u0993 u09a6u09beu0981u09a4u09c7u09b0 u09b8u09cdu09acu09beu09b8u09cdu09a5u09cdu09afu09c7u09b0 u099cu09a8u09cdu09af u0997u09c1u09b0u09c1u09a4u09cdu09acu09aau09c2u09b0u09cdu09a3u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu0989u09a8u09cdu09a8u09a4 u09aeu09b8u09cdu09a4u09bfu09b7u09cdu0995u09c7u09b0 u0995u09beu09b0u09cdu09afu0995u09beu09b0u09bfu09a4u09be: u09b8u09c1u0997u09beu0987 u0996u09c7u099cu09c1u09b0u09c7 u09adu09bfu099fu09beu09aeu09bfu09a8 u098fu09acu0982 u0996u09a8u09bfu099c u09b0u09afu09bcu09c7u099bu09c7 u09afu09be u09aeu09b8u09cdu09a4u09bfu09b7u09cdu0995u09c7u09b0 u0995u09beu09b0u09cdu09afu0995u09beu09b0u09bfu09a4u09beu09b0 u099cu09a8u09cdu09af u0997u09c1u09b0u09c1u09a4u09cdu09acu09aau09c2u09b0u09cdu09a3, u09afu09c7u09aeu09a8 u09adu09bfu099fu09beu09aeu09bfu09a8 u09acu09bfu09ec u098fu09acu0982 u09aau099fu09beu09b8u09bfu09afu09bcu09beu09aeu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b0u0995u09cdu09a4u09b8u09cdu09acu09b2u09cdu09aau09a4u09beu09df u09adu09cbu0997u09be u09b0u09cbu0997u09c0u09b0u09be u09aau09cdu09b0u09a4u09bfu09a6u09bfu09a8 u098fu0987 u0996u09c7u099cu09c1u09b0 u0996u09c7u09a4u09c7 u09aau09beu09b0u09c7u09a8u0964 u098fu0995u099cu09a8 u09b8u09c1u09b8u09cdu09a5 u09aeu09beu09a8u09c1u09b7u09c7u09b0 u09b6u09b0u09c0u09b0u09c7 u09afu09a4u099fu09c1u0995u09c1 u0986u09dfu09b0u09a8 u09aau09cdu09b0u09dfu09cbu099cu09a8, u09a4u09beu09b0 u09aau09cdu09b0u09beu09df u09e7u09e7 u09adu09beu0997 u09aau09c2u09b0u09a3 u0995u09b0u09c7 u098fu0987 u0996u09c7u099cu09c1u09b0u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu0995u09cbu09b7u09cdu09a0u0995u09beu09a0u09bfu09a8u09cdu09afu09c7u09b0 u09b8u09aeu09b8u09cdu09afu09beu09df u09b0u09beu09a4u09c7 u09aau09beu09a8u09bfu09a4u09c7 u0996u09c7u099cu09c1u09b0 u09adu09bfu099cu09bfu09dfu09c7 u09b0u09beu0996u09c1u09a8u0964 u09aau09b0 u09a6u09bfu09a8 u09b8u0995u09beu09b2u09c7 u0996u09c7u099cu09c1u09b0 u09adu09c7u099cu09beu09a8u09cb u09aau09beu09a8u09bf u09aau09beu09a8 u0995u09b0u09c1u09a8u0964 u09a6u09c2u09b0 u09b9u09acu09c7 u0995u09cbu09b7u09cdu09a0u0995u09beu09a0u09bfu09a8u09cdu09afu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu0989u09a8u09cdu09a8u09a4 u09b9u099cu09ae: u09b8u09c1u0997u09beu0987 u0996u09c7u099cu09c1u09b0u09c7u09b0 u0989u099au09cdu099a u09abu09beu0987u09acu09beu09b0 u0989u09aau09beu09a6u09beu09a8 u09b9u099cu09aeu09b6u0995u09cdu09a4u09bf u0989u09a8u09cdu09a8u09a4 u0995u09b0u09a4u09c7 u098fu09acu0982 u0995u09cbu09b7u09cdu09a0u0995u09beu09a0u09bfu09a8u09cdu09af u09aau09cdu09b0u09a4u09bfu09b0u09cbu09a7 u0995u09b0u09a4u09c7 u09b8u09b9u09beu09afu09bcu09a4u09be u0995u09b0u09c7u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aau09cdu09b0u09a4u09bfu099fu09bf u0996u09c7u099cu09c1u09b0u09c7 u09b0u09dfu09c7u099bu09c7 u09e8u09e6 u09a5u09c7u0995u09c7 u09e8u09eb u09aeu09bfu09b2u09bfu0997u09cdu09b0u09beu09ae u09aeu09cdu09afu09beu0997u09a8u09c7u09b8u09bfu09dfu09beu09ae, u09afu09be u0989u099au09cdu099a u09b0u0995u09cdu09a4u099au09beu09aa u0995u09aeu09beu09a4u09c7 u09b8u09beu09b9u09beu09afu09cdu09af u0995u09b0u09c7u0964nttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>u09e7 u0995u09c7u099cu09bf u09eeu09ebu09e6 u099fu09beu0995u09be u09aeu09beu09a4u09cdu09b0<\\/h2>ttnttt<a href=\\\"#order\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>tttnttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<h2>u0986u09aeu09beu09a6u09c7u09b0 u0995u09beu099bu09c7 u0995u09c7u09a8u09cb u0995u09bfu09a8u09acu09c7u09a8?<\\/h2>ttnttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>ttttttnttttttttttu0985u09b0u09cdu09a1u09beu09b0  u0995u09b0u09a4u09c7  u0986u09aau09a8u09beu0995u09c7 u0985u0997u09cdu09b0u09bfu09ae u09e7 u099fu09beu0995u09beu0993 u09aau09c7u09aeu09c7u09a8u09cdu099f u0995u09b0u09a4u09c7 u09b9u09acu09c7 u09a8u09beu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09beu09b0u09be u09acu09beu0982u09b2u09beu09a6u09c7u09b6u09c7 u0995u09cdu09afu09beu09b6 u0985u09a8 u09b9u09cbu09ae u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u09aau09beu09acu09c7u09a8u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aau09a3u09cdu09af u09b9u09beu09a4u09c7 u09aau09beu0993u09afu09bcu09beu09b0 u09aau09b0 u09aau09cdu09b0u09dfu09cbu099cu09a8u09c7 u0996u09c7u09dfu09c7 u09b0u09bfu09b8u09bfu09ad u0995u09b0u09a4u09c7 u09aau09beu09b0u09acu09c7u09a8u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09aeu09b0u09beu0987 u09a6u09bfu099au09cdu099bu09bf u098fu0987 u09b8u09c0u099cu09a8u09c7u09b0 u09abu09cdu09b0u09c7u09b6 u09b8u09c1u0997u09beu0987 u0996u09c7u099cu09c1u09b0 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09aeu09beu09a6u09c7u09b0 u0996u09c7u099cu09c1u09b0 u098f u0995u09cbu09a8u09cb u09aau09cbu0995u09be u09aau09beu09acu09c7u09a8 u09a8u09be u0987u09a8u09b6u09beu0986u09b2u09cdu09b2u09beu09b9 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09aeu09beu09a6u09c7u09b0 u0995u09a5u09be u09aeu09a4 u09aau09cdu09b0u09cbu09a1u09beu0995u09cdu099f u09a8u09be u09aau09c7u09b2u09c7 u09b8u09beu09a5u09c7 u09b8u09beu09a5u09c7 u09b0u09bfu09b0u09cdu099fu09beu09a8 u09b8u09c1u09acu09bfu09a7u09be u09a5u09beu0995u099bu09c7u0964nttttttttt<\\/li>ntttttt<\\/ul>nttttttttttttttt<img width=\\\"600\\\" height=\\\"600\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/Untitled-design.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/Untitled-design.webp 600w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/Untitled-design-300x300.webp 300w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/Untitled-design-150x150.webp 150w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/Untitled-design-100x100.webp 100w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\" \\/>tttttttttttttttnttt<h2><a href=\\\"tel:01819000000\\\">u09afu09c7 u0995u09cbu09a8 u09aau09cdu09b0u09dfu09cbu099cu09a8u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09c1u09a8    01819000000<\\/a><\\/h2>ttnttt<h2>u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u09a8u09bfu099au09c7u09b0 u09abu09b0u09cdu09aeu099fu09bf u09aau09c2u09b0u09a8 u0995u09b0u09c1u09a8<\\/h2>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><strong>Bangladesh<\\/strong><input type=\\\"hidden\\\" name=\\\"billing_country\\\" id=\\\"billing_country\\\" value=\\\"BD\\\" autocomplete=\\\"country\\\" readonly=\\\"readonly\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u09b6u09bfu09aau09bfu0982 u0985u09cdu09afu09beu09a1u09a1u09cdu09b0u09c7u09b8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0u099fu09bf u09b2u09c7u0996u09c1u09a8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"2365\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"2368\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1717803307\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>nttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;0.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;0.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"d6ef7bffc8\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->ntt Copyright u00a9 2024  Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\\\"\"','Checkout (Woo)','','inherit','closed','closed','','1841-revision-v1','','','2026-06-08 21:37:56','2026-06-08 15:37:56','','1841','https://hypergrowth.fishgrowth.xyz/?p=1850','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1851','17','2026-06-08 21:38:00','2026-06-08 15:38:00','','TASTE 01 Copy Copy','','trash','closed','closed','','taste-01-copy-copy__trashed','','','2026-06-09 12:36:46','2026-06-09 06:36:46','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=taste-01-copy-copy','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1852','17','2026-06-08 21:38:00','2026-06-08 15:38:00','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-8__trashed','','','2026-06-09 12:36:46','2026-06-09 06:36:46','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-8/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1853','17','2026-06-08 21:38:00','2026-06-08 15:38:00','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1852-revision-v1','','','2026-06-08 21:38:00','2026-06-08 15:38:00','','1852','https://hypergrowth.fishgrowth.xyz/?p=1853','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1854','17','2026-06-08 21:38:00','2026-06-08 15:38:00','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"683\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/soup-683x1024-1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?resize=683{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1024&amp;ssl=1 683w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?resize=200{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 200w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1152&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C900&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?w=1000&amp;ssl=1 1000w\\\" sizes=\\\"(max-width: 683px) 100vw, 683px\\\" \\/>tttttttttttttttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>Taste <br>Dalmatia<\\/h1>ttntt<p>Ofu00a0<\\/p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.<\\/p>ttnttt<a href=\\\"#order\\\">nttttttOrder Nownttttt<\\/a>nttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\\\"><\\/path><\\/svg>tttnttttttContactnttttt<\\/a>nttHome Of Thettnttt<h2>best food<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p><p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<\\/p>ttnttt<a href=\\\"#\\\">nttttttGet directionsnttttt<\\/a>nttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/vishwas-katti-UrQ_BS9bLXQ-unsplash-min-qolicw57n2wsvunasit4pltibei17dhwaoqhguuf1c.jpg\\\" title=\\\"vishwas-katti-UrQ_BS9bLXQ-unsplash-min.jpg\\\" alt=\\\"vishwas-katti-UrQ_BS9bLXQ-unsplash-min.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z\\\"><\\/path><\\/svg>nttt<h2>Our Food Menu<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.<\\/p>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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>ttnttttttttttttttt<img width=\\\"807\\\" height=\\\"791\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/lily-banse-YHSwy6uqvk-unsplash.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/lily-banse-YHSwy6uqvk-unsplash.png?w=807&amp;ssl=1 807w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/lily-banse-YHSwy6uqvk-unsplash.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C294&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/lily-banse-YHSwy6uqvk-unsplash.png?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C753&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/lily-banse-YHSwy6uqvk-unsplash.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C588&amp;ssl=1 600w\\\" sizes=\\\"(max-width: 807px) 100vw, 807px\\\" \\/>tttttttttttttttnttt<h4>Dinner<\\/h4>ttnttSed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.ttnttttttttttttttt<img width=\\\"720\\\" height=\\\"720\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?w=720&amp;ssl=1 720w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C600&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 720px) 100vw, 720px\\\" \\/>tttttttttttttttnttt<h4>Lunch<\\/h4>ttnttSed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.ttnttttttttttttttt<img width=\\\"720\\\" height=\\\"720\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food5.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?w=720&amp;ssl=1 720w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C600&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 720px) 100vw, 720px\\\" \\/>tttttttttttttttnttt<h4>Breakfast<\\/h4>ttnttSed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.ttnttttttttttttttt<img width=\\\"800\\\" height=\\\"522\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/takeout.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/takeout.png?w=800&amp;ssl=1 800w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/takeout.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C196&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/takeout.png?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C501&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/takeout.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C392&amp;ssl=1 600w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>tttttttttttttttnttt<h4>To Go<\\/h4>ttnttSed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.ttntt<p>Consectetur adipiscing elit w\\/ iste natus u200b\\/ $10.95<\\/p>Aliquet lectus proin nibh nisl condimentum id venenatis.nw\\/Vegetables \\/ 10.95<p>Urna condimentum mattis pellentesque id \\/ 7:95<\\/p>Mediterranean Style Braised Goat\\/ $10.95<p>Consectetur adipiscing elit w\\/ iste natus u200b\\/ $10.95<\\/p>Aliquet lectus proin nibh nisl condimentum id venenatis.nw\\/Vegetables \\/ 10.95<p>Urna condimentum mattis pellentesque id \\/ 7:95<\\/p>Mediterranean Style Braised Goat\\/ $10.95ttnttt<a href=\\\"#\\\">nttttttFull Menu listnttttt<\\/a>n<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1932\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1932\\\"nt>nt<label for=\\\"wcf-item-product-1932\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nProduct1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;990.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"1996\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"1999\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716491843\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttProduct&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;990.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"b809f71953\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/h2>\\\"\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-10__trashed','','','2026-06-09 12:36:46','2026-06-09 06:36:46','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-10/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1855','17','2026-06-08 21:38:04','2026-06-08 15:38:04','','tea plaza 01','','trash','closed','closed','','tea-plaza-01__trashed','','','2026-06-09 12:36:39','2026-06-09 06:36:39','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=tea-plaza-01','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1856','17','2026-06-08 21:38:04','2026-06-08 15:38:04','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-9__trashed','','','2026-06-09 12:36:39','2026-06-09 06:36:39','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-9/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1857','17','2026-06-08 21:38:04','2026-06-08 15:38:04','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1856-revision-v1','','','2026-06-08 21:38:04','2026-06-08 15:38:04','','1856','https://hypergrowth.fishgrowth.xyz/?p=1857','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1858','17','2026-06-08 21:38:04','2026-06-08 15:38:04','\"\\\"\\\"<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1932\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1932\\\"nt>nt<label for=\\\"wcf-item-product-1932\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nProduct1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;990.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<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_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<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_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"1996\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"1999\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716483585\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttProduct&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;990.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"b809f71953\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<style>\\/*! elementor - v3.18.0 - 20-12-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>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/h2>\\\"\\\"\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-11__trashed','','','2026-06-09 12:36:39','2026-06-09 06:36:39','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-11/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1859','17','2026-06-08 21:38:04','2026-06-08 15:38:04','\"\\\"\\\"<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1932\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1932\\\"nt>nt<label for=\\\"wcf-item-product-1932\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nProduct1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;990.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<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_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<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_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"1996\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"1999\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716483585\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttProduct&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;990.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"b809f71953\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<style>\\/*! elementor - v3.18.0 - 20-12-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>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/h2>\\\"\\\"\"','Checkout (Woo)','','inherit','closed','closed','','1858-revision-v1','','','2026-06-08 21:38:04','2026-06-08 15:38:04','','1858','https://hypergrowth.fishgrowth.xyz/?p=1859','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1860','17','2026-06-08 21:38:12','2026-06-08 15:38:12','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp 472w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt Copyright u00a9 2024  Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-5__trashed','','','2026-06-09 12:41:54','2026-06-09 06:41:54','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-5/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1861','17','2026-06-08 21:38:12','2026-06-08 15:38:12','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp 472w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt Copyright u00a9 2024  Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\\\"\"','Thank You (Woo)','','inherit','closed','closed','','1860-revision-v1','','','2026-06-08 21:38:12','2026-06-08 15:38:12','','1860','https://hypergrowth.fishgrowth.xyz/?p=1861','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1862','17','2026-06-08 21:38:12','2026-06-08 15:38:12','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"406\\\" height=\\\"326\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Sugai-01-1-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Sugai-01-1-1.jpg 406w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Sugai-01-1-1-300x241.jpg 300w\\\" sizes=\\\"(max-width: 406px) 100vw, 406px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0995\\u09c7\\u09a8 \\u0996\\u09be\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0, \\u0986\\u09df\\u09b0\\u09a8, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae\\u09b8\\u09b9 \\u09a8\\u09be\\u09a8\\u09be\\u09a8 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3\\u0964 \\u098f\\u09b8\\u09ac \\u0996\\u09be\\u09a6\\u09cd\\u09af \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u0985\\u09a4\\u09c0\\u09ac \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09b9\\u09df\\u09c7 \\u0993\\u09a0\\u09c7 \\u09af\\u0996\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09df\\u09b8 \\u09aa\\u09cc\\u0981\\u099b\\u09be\\u09ac\\u09c7 \\u09e9\\u09e6-\\u098f\\u09b0 \\u0995\\u09cb\\u09a0\\u09be\\u09df\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2\\u09cb \\u0989\\u09ce\\u09b8, \\u09af\\u09be \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2 \\u0989\\u09a4\\u09cd\\u09b8, \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u098f\\u09ac\\u0982 \\u09a4\\u09c3\\u09aa\\u09cd\\u09a4 \\u09ac\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09af\\u09bc: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09af\\u09be \\u09b9\\u09be\\u09b0\\u09cd\\u099f\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf\\u09a4\\u09c7 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u0993 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7, \\u09af\\u09be \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u0996\\u09a8\\u09bf\\u099c, \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09df\\u09be\\u09ae \\u0993 \\u09aa\\u099f\\u09be\\u09b6\\u09bf\\u09df\\u09be\\u0964 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09be \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09be\\u09dc\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u09b9\\u09be\\u09a1\\u09bc \\u0993 \\u09a6\\u09be\\u0981\\u09a4: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u0993 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09a5\\u09be\\u0995\\u09c7 \\u09af\\u09be \\u09b9\\u09be\\u09a1\\u09bc \\u0993 \\u09a6\\u09be\\u0981\\u09a4\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09ae\\u09b8\\u09cd\\u09a4\\u09bf\\u09b7\\u09cd\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u0996\\u09a8\\u09bf\\u099c \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09af\\u09be \\u09ae\\u09b8\\u09cd\\u09a4\\u09bf\\u09b7\\u09cd\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3, \\u09af\\u09c7\\u09ae\\u09a8 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09ac\\u09bf\\u09ec \\u098f\\u09ac\\u0982 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u0995\\u09cd\\u09a4\\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be\\u09df \\u09ad\\u09cb\\u0997\\u09be \\u09b0\\u09cb\\u0997\\u09c0\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u098f\\u0995\\u099c\\u09a8 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09af\\u09a4\\u099f\\u09c1\\u0995\\u09c1 \\u0986\\u09df\\u09b0\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8, \\u09a4\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09df \\u09e7\\u09e7 \\u09ad\\u09be\\u0997 \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09b0\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09bf\\u099c\\u09bf\\u09df\\u09c7 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964 \\u09aa\\u09b0 \\u09a6\\u09bf\\u09a8 \\u09b8\\u0995\\u09be\\u09b2\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09c7\\u099c\\u09be\\u09a8\\u09cb \\u09aa\\u09be\\u09a8\\u09bf \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u09a6\\u09c2\\u09b0 \\u09b9\\u09ac\\u09c7 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09b9\\u099c\\u09ae: \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0989\\u099a\\u09cd\\u099a \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b9\\u099c\\u09ae\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u09ac\\u0982 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09e8\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e8\\u09eb \\u09ae\\u09bf\\u09b2\\u09bf\\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae, \\u09af\\u09be \\u0989\\u099a\\u09cd\\u099a \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u09ee\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0  \\u0995\\u09b0\\u09a4\\u09c7  \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09a3\\u09cd\\u09af \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0996\\u09c7\\u09df\\u09c7 \\u09b0\\u09bf\\u09b8\\u09bf\\u09ad \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u098f\\u0987 \\u09b8\\u09c0\\u099c\\u09a8\\u09c7\\u09b0 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u09b8\\u09c1\\u0997\\u09be\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u098f \\u0995\\u09cb\\u09a8\\u09cb \\u09aa\\u09cb\\u0995\\u09be \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09a8\\u09be \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09a5\\u09be \\u09ae\\u09a4 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09a8\\u09be \\u09aa\\u09c7\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u09bf\\u09b0\\u09cd\\u099f\\u09be\\u09a8 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09a5\\u09be\\u0995\\u099b\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"714\\\" height=\\\"853\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Sugai-1-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Sugai-1-1.jpg 714w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Sugai-1-1-251x300.jpg 251w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Sugai-1-1-600x717.jpg 600w\\\" sizes=\\\"(max-width: 714px) 100vw, 714px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2><a href=\\\"tel:01819000000\\\">\\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8    01819000000<\\/a><\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_country\\\" id=\\\"billing_country\\\" autocomplete=\\\"country\\\" data-placeholder=\\\"Select a country \\/ region&hellip;\\\" data-label=\\\"Country \\/ Region\\\"><option value=\\\"\\\">Select a country \\/ region&hellip;<\\/option><option value=\\\"AF\\\" >Afghanistan<\\/option><option value=\\\"AX\\\" >\\u00c5land 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&ccedil;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&atilde;o Tom&eacute; and Pr&iacute;ncipe<\\/option><option value=\\\"BL\\\" >Saint Barth&eacute;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\\\">\\u09b6\\u09bf\\u09aa\\u09bf\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a1\\u09a1\\u09cd\\u09b0\\u09c7\\u09b8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u099f\\u09bf \\u09b2\\u09c7\\u0996\\u09c1\\u09a8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"833\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"836\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>\\n\\t\\tProduct\\n\\t\\tQuantity\\n\\t\\tPrice\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717890083\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"edcba24797\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Checkout (Woo)','','inherit','closed','closed','','1837-revision-v1','','','2026-06-08 21:38:12','2026-06-08 15:38:12','','1837','https://hypergrowth.fishgrowth.xyz/?p=1862','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1863','17','2026-06-08 21:38:27','2026-06-08 15:38:27','\"\\\"\\\"<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>tttttttttt<img width=\\\"500\\\" height=\\\"500\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo.png 500w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/Test-Logo-300x300.png 300w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/Test-Logo-150x150.png 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo-400x400-1.png 400w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo-qlgjn7dvi44bql5if66j7dolg9mi1ktt1m22gmqy20.png 100w\\\" sizes=\\\"(max-width: 500px) 100vw, 500px\\\" \\/>tttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>603<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>March 24, 2024<\\/strong>ntttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>750.00&#2547;&nbsp;<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttu0995u09c1u09dcu09aeu09c1u09dcu09c7 u09aau09c1u09b0u09beu09a8 u09a2u09beu0995u09beu09b0 u09acu09bfu0996u09cdu09afu09beu09a4 u09a8u09beu09b0u0995u09c7u09b2 <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>750.00&#2547;&nbsp;<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Shipping:<\\/th>nttttttt<td>Free shipping<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>ntt<p>Copyright u00a9 2024 Your Business Name | This website made with u2764ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\\\"\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-6__trashed','','','2026-06-09 12:53:26','2026-06-09 06:53:26','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-6/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1864','17','2026-06-08 21:38:38','2026-06-08 15:38:38','','tea plaza 02','','trash','closed','closed','','tea-plaza-02__trashed','','','2026-06-09 12:37:04','2026-06-09 06:37:04','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=tea-plaza-02','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1865','17','2026-06-08 21:38:38','2026-06-08 15:38:38','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-10__trashed','','','2026-06-09 12:37:04','2026-06-09 06:37:04','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-10/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1866','17','2026-06-08 21:38:38','2026-06-08 15:38:38','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1865-revision-v1','','','2026-06-08 21:38:38','2026-06-08 15:38:38','','1865','https://hypergrowth.fishgrowth.xyz/?p=1866','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1867','17','2026-06-08 21:38:38','2026-06-08 15:38:38','\"\\\"\\\"<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1932\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1932\\\"nt>nt<label for=\\\"wcf-item-product-1932\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nProduct1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;990.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<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_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<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_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"1996\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"1999\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716483585\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttProduct&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;990.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"b809f71953\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<style>\\/*! elementor - v3.18.0 - 20-12-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>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/h2>\\\"\\\"\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-12__trashed','','','2026-06-09 12:37:04','2026-06-09 06:37:04','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-12/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1868','17','2026-06-08 21:38:39','2026-06-08 15:38:39','\"\\\"\\\"<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1932\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1932\\\"nt>nt<label for=\\\"wcf-item-product-1932\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nProduct1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;990.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<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_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<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_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"1996\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"1999\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716483585\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttProduct&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;990.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"b809f71953\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<style>\\/*! elementor - v3.18.0 - 20-12-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>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/h2>\\\"\\\"\"','Checkout (Woo)','','inherit','closed','closed','','1867-revision-v1','','','2026-06-08 21:38:39','2026-06-08 15:38:39','','1867','https://hypergrowth.fishgrowth.xyz/?p=1868','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1869','17','2026-06-08 21:38:40','2026-06-08 15:38:40','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"683\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/soup-683x1024-1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?resize=683{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1024&amp;ssl=1 683w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?resize=200{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 200w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1152&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C900&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?w=1000&amp;ssl=1 1000w\\\" sizes=\\\"(max-width: 683px) 100vw, 683px\\\" \\/>tttttttttttttttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>Taste <br>Dalmatia<\\/h1>ttntt<p>Ofu00a0<\\/p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.<\\/p>ttnttt<a href=\\\"#order\\\">nttttttOrder Nownttttt<\\/a>nttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\\\"><\\/path><\\/svg>tttnttttttContactnttttt<\\/a>nttHome Of Thettnttt<h2>best food<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p><p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<\\/p>ttnttt<a href=\\\"#\\\">nttttttGet directionsnttttt<\\/a>nttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/vishwas-katti-UrQ_BS9bLXQ-unsplash-min-qolicw57n2wsvunasit4pltibei17dhwaoqhguuf1c.jpg\\\" title=\\\"vishwas-katti-UrQ_BS9bLXQ-unsplash-min.jpg\\\" alt=\\\"vishwas-katti-UrQ_BS9bLXQ-unsplash-min.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z\\\"><\\/path><\\/svg>nttt<h2>Our Food Menu<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.<\\/p>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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>ttnttttttttttttttt<img width=\\\"807\\\" height=\\\"791\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/lily-banse-YHSwy6uqvk-unsplash.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/lily-banse-YHSwy6uqvk-unsplash.png?w=807&amp;ssl=1 807w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/lily-banse-YHSwy6uqvk-unsplash.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C294&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/lily-banse-YHSwy6uqvk-unsplash.png?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C753&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/lily-banse-YHSwy6uqvk-unsplash.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C588&amp;ssl=1 600w\\\" sizes=\\\"(max-width: 807px) 100vw, 807px\\\" \\/>tttttttttttttttnttt<h4>Dinner<\\/h4>ttnttSed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.ttnttttttttttttttt<img width=\\\"720\\\" height=\\\"720\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?w=720&amp;ssl=1 720w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C600&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 720px) 100vw, 720px\\\" \\/>tttttttttttttttnttt<h4>Lunch<\\/h4>ttnttSed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.ttnttttttttttttttt<img width=\\\"720\\\" height=\\\"720\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food5.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?w=720&amp;ssl=1 720w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C600&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 720px) 100vw, 720px\\\" \\/>tttttttttttttttnttt<h4>Breakfast<\\/h4>ttnttSed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.ttnttttttttttttttt<img width=\\\"800\\\" height=\\\"522\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/takeout.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/takeout.png?w=800&amp;ssl=1 800w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/takeout.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C196&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/takeout.png?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C501&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/takeout.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C392&amp;ssl=1 600w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>tttttttttttttttnttt<h4>To Go<\\/h4>ttnttSed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.ttntt<p>Consectetur adipiscing elit w\\/ iste natus u200b\\/ $10.95<\\/p>Aliquet lectus proin nibh nisl condimentum id venenatis.nw\\/Vegetables \\/ 10.95<p>Urna condimentum mattis pellentesque id \\/ 7:95<\\/p>Mediterranean Style Braised Goat\\/ $10.95<p>Consectetur adipiscing elit w\\/ iste natus u200b\\/ $10.95<\\/p>Aliquet lectus proin nibh nisl condimentum id venenatis.nw\\/Vegetables \\/ 10.95<p>Urna condimentum mattis pellentesque id \\/ 7:95<\\/p>Mediterranean Style Braised Goat\\/ $10.95ttnttt<a href=\\\"#\\\">nttttttFull Menu listnttttt<\\/a>n<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1932\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1932\\\"nt>nt<label for=\\\"wcf-item-product-1932\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nProduct1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;990.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"1996\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"1999\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716491843\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttProduct&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;990.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"b809f71953\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/h2>\\\"\"','Checkout (Woo)','','inherit','closed','closed','','1847-revision-v1','','','2026-06-08 21:38:40','2026-06-08 15:38:40','','1847','https://hypergrowth.fishgrowth.xyz/?p=1869','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1870','17','2026-06-08 21:38:57','2026-06-08 15:38:57','\"\\\"\\\"<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>tttttttttt<img width=\\\"500\\\" height=\\\"500\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo.png 500w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/Test-Logo-300x300.png 300w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/Test-Logo-150x150.png 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo-400x400-1.png 400w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo-qlgjn7dvi44bql5if66j7dolg9mi1ktt1m22gmqy20.png 100w\\\" sizes=\\\"(max-width: 500px) 100vw, 500px\\\" \\/>tttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>603<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>March 24, 2024<\\/strong>ntttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>750.00&#2547;&nbsp;<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttu0995u09c1u09dcu09aeu09c1u09dcu09c7 u09aau09c1u09b0u09beu09a8 u09a2u09beu0995u09beu09b0 u09acu09bfu0996u09cdu09afu09beu09a4 u09a8u09beu09b0u0995u09c7u09b2 <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>750.00&#2547;&nbsp;<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Shipping:<\\/th>nttttttt<td>Free shipping<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>ntt<p>Copyright u00a9 2024 Your Business Name | This website made with u2764ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\\\"\\\"\"','Thank You (Woo)','','inherit','closed','closed','','1863-revision-v1','','','2026-06-08 21:38:57','2026-06-08 15:38:57','','1863','https://hypergrowth.fishgrowth.xyz/?p=1870','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1871','17','2026-06-08 21:39:00','2026-06-08 15:39:00','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"683\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/soup-683x1024-1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?resize=683{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1024&amp;ssl=1 683w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?resize=200{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 200w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1152&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C900&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/soup.png?w=1000&amp;ssl=1 1000w\\\" sizes=\\\"(max-width: 683px) 100vw, 683px\\\" \\/>tttttttttttttttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>Taste <br>Dalmatia<\\/h1>ttntt<p>Ofu00a0<\\/p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.<\\/p>ttnttt<a href=\\\"#order\\\">nttttttOrder Nownttttt<\\/a>nttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z\\\"><\\/path><\\/svg>tttnttttttContactnttttt<\\/a>nttHome Of Thettnttt<h2>best food<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p><p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<\\/p>ttnttt<a href=\\\"#\\\">nttttttGet directionsnttttt<\\/a>nttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/vishwas-katti-UrQ_BS9bLXQ-unsplash-min-qolicw57n2wsvunasit4pltibei17dhwaoqhguuf1c.jpg\\\" title=\\\"vishwas-katti-UrQ_BS9bLXQ-unsplash-min.jpg\\\" alt=\\\"vishwas-katti-UrQ_BS9bLXQ-unsplash-min.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M546.2 9.7c-5.6-12.5-21.6-13-28.3-1.2C486.9 62.4 431.4 96 368 96h-80C182 96 96 182 96 288c0 7 .8 13.7 1.5 20.5C161.3 262.8 253.4 224 384 224c8.8 0 16 7.2 16 16s-7.2 16-16 16C132.6 256 26 410.1 2.4 468c-6.6 16.3 1.2 34.9 17.5 41.6 16.4 6.8 35-1.1 41.8-17.3 1.5-3.6 20.9-47.9 71.9-90.6 32.4 43.9 94 85.8 174.9 77.2C465.5 467.5 576 326.7 576 154.3c0-50.2-10.8-102.2-29.8-144.6z\\\"><\\/path><\\/svg>nttt<h2>Our Food Menu<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.<\\/p>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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>ttnttttttttttttttt<img width=\\\"807\\\" height=\\\"791\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/lily-banse-YHSwy6uqvk-unsplash.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/lily-banse-YHSwy6uqvk-unsplash.png?w=807&amp;ssl=1 807w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/lily-banse-YHSwy6uqvk-unsplash.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C294&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/lily-banse-YHSwy6uqvk-unsplash.png?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C753&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/lily-banse-YHSwy6uqvk-unsplash.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C588&amp;ssl=1 600w\\\" sizes=\\\"(max-width: 807px) 100vw, 807px\\\" \\/>tttttttttttttttnttt<h4>Dinner<\\/h4>ttnttSed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.ttnttttttttttttttt<img width=\\\"720\\\" height=\\\"720\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?w=720&amp;ssl=1 720w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C600&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food1.png?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 720px) 100vw, 720px\\\" \\/>tttttttttttttttnttt<h4>Lunch<\\/h4>ttnttSed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.ttnttttttttttttttt<img width=\\\"720\\\" height=\\\"720\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food5.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?w=720&amp;ssl=1 720w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C600&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/food5.png?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 720px) 100vw, 720px\\\" \\/>tttttttttttttttnttt<h4>Breakfast<\\/h4>ttnttSed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.ttnttttttttttttttt<img width=\\\"800\\\" height=\\\"522\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/takeout.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/takeout.png?w=800&amp;ssl=1 800w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/takeout.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C196&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/takeout.png?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C501&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/takeout.png?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C392&amp;ssl=1 600w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>tttttttttttttttnttt<h4>To Go<\\/h4>ttnttSed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque.ttntt<p>Consectetur adipiscing elit w\\/ iste natus u200b\\/ $10.95<\\/p>Aliquet lectus proin nibh nisl condimentum id venenatis.nw\\/Vegetables \\/ 10.95<p>Urna condimentum mattis pellentesque id \\/ 7:95<\\/p>Mediterranean Style Braised Goat\\/ $10.95<p>Consectetur adipiscing elit w\\/ iste natus u200b\\/ $10.95<\\/p>Aliquet lectus proin nibh nisl condimentum id venenatis.nw\\/Vegetables \\/ 10.95<p>Urna condimentum mattis pellentesque id \\/ 7:95<\\/p>Mediterranean Style Braised Goat\\/ $10.95ttnttt<a href=\\\"#\\\">nttttttFull Menu listnttttt<\\/a>n<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1932\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1932\\\"nt>nt<label for=\\\"wcf-item-product-1932\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nProduct1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;990.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"1996\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"1999\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716491843\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttProduct&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;990.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"b809f71953\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/h2>\\\"\"','Checkout (Woo)','','inherit','closed','closed','','1854-revision-v1','','','2026-06-08 21:39:00','2026-06-08 15:39:00','','1854','https://hypergrowth.fishgrowth.xyz/?p=1871','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1872','17','2026-06-08 21:39:10','2026-06-08 15:39:10','','Three Piece','','trash','closed','closed','','three-piece__trashed','','','2026-06-09 12:42:04','2026-06-09 06:42:04','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=three-piece','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1873','17','2026-06-08 21:39:10','2026-06-08 15:39:10','\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-11__trashed','','','2026-06-09 12:42:03','2026-06-09 06:42:03','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-11/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1874','17','2026-06-08 21:39:10','2026-06-08 15:39:10','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-1.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-1.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-7__trashed','','','2026-06-09 12:36:39','2026-06-09 06:36:39','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-7/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1875','17','2026-06-08 21:39:10','2026-06-08 15:39:10','\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1873-revision-v1','','','2026-06-08 21:39:10','2026-06-08 15:39:10','','1873','https://hypergrowth.fishgrowth.xyz/?p=1875','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1876','17','2026-06-08 21:39:10','2026-06-08 15:39:10','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/jadutech.com\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0986\\u09ab\\u09b8\\u09be\\u09a8 \\u09aa\\u09cd\\u09b0\\u09bf\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09be \\u0986\\u09a8\\u09b8\\u09cd\\u099f\\u09bf\\u099c \\u09e9 \\u09aa\\u09bf\\u09b8<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-2.webp\\\" alt=\\\"3pcs-2.webp\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-3.webp\\\" alt=\\\"3pcs-3.webp\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-4.webp\\\" alt=\\\"3pcs-4.webp\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-5.webp\\\" alt=\\\"3pcs-5.webp\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-6.webp\\\" alt=\\\"3pcs-6.webp\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t<p>\\u09ac\\u09be\\u099c\\u09be\\u09b0\\u09c7\\u09b0 \\u0995\\u09aa\\u09bf \\u09a5\\u09cd\\u09b0\\u09bf \\u09aa\\u09bf\\u09b8\\u09c7\\u09b0 \\u09b8\\u0999\\u09cd\\u0997\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u0995\\u09c7 \\u09a4\\u09c1\\u09b2\\u09a8\\u09be \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 \\u09a8\\u09be\\u0964 \\u0986\\u09ae\\u09b0\\u09be \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09aa\\u09c1\\u09b0\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09ab\\u09cd\\u09af\\u09be\\u0995\\u09cd\\u099f\\u09b0\\u09bf\\u09a4\\u09c7 \\u09ae\\u09c7\\u09a8\\u09c1\\u09ab\\u09cd\\u09af\\u09be\\u0995\\u099a\\u09be\\u09b0\\u09bf\\u0982 \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\u0964 \\u0995\\u09be\\u09b0\\u09a8 \\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09a8\\u09bf\\u099c\\u09c7\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09b8\\u09cd\\u09a4\\u09c1\\u09a4 \\u0995\\u09b0\\u09bf \\u0995\\u09be\\u09aa\\u09a1\\u09bc\\u09c7\\u09b0 \\u0993\\u09a1\\u09bc\\u09a8\\u09be \\u0993 \\u09aa\\u09be\\u09af\\u09bc\\u099c\\u09be\\u09ae\\u09be\\u09b0 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09b8\\u09c1\\u09a4\\u09bf \\u0995\\u09be\\u09aa\\u09a1\\u09bc\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09e7\\u09e7\\u09e6\\u09e6\\/=\\u00a0\\u099f\\u09be\\u0995\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09a8\\u09b8\\u09cd\\u099f\\u09bf\\u099c \\u09e9 \\u09aa\\u09bf\\u09b8 \\u098f\\u09b0 \\u09ac\\u09c8\\u09b6\\u09bf\\u09b7\\u09cd\\u099f\\u09cd\\u09af<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099c\\u09be\\u09ae\\u09be \\u09b2\\u0982 \\u09ea\\u09ee \\u09ac\\u09a1\\u09bf \\u09eb\\u09e6+\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09be\\u09af\\u09bc\\u099c\\u09be\\u09ae\\u09be \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09e8.\\u09eb \\u0997\\u099c ( \\u09ef\\u09e6 \\u0987\\u099e\\u09cd\\u099a\\u09bf)\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0993\\u09a1\\u09bc\\u09a8\\u09be\\u09b0 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u0986\\u099b\\u09c7 \\u09eb.\\u09eb \\u09b9\\u09be\\u09a4\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0986\\u09ab\\u09b8\\u09be\\u09a8 \\u09aa\\u09cd\\u09b0\\u09bf\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09be\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u099f\\u09a8 \\u09b8\\u09c1\\u09a4\\u09bf\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-6.webp\\\" alt=\\\"3pcs-6.webp\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-5.webp\\\" alt=\\\"3pcs-5.webp\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-4.webp\\\" alt=\\\"3pcs-4.webp\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-3.webp\\\" alt=\\\"3pcs-3.webp\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-2.webp\\\" alt=\\\"3pcs-2.webp\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09c7\\u09b8\\u09c7\\u099e\\u09cd\\u099c\\u09be\\u09b0\\u09c7 24 \\u0998\\u09a8\\u09cd\\u099f\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u098f\\u0995\\u099f\\u09bf\\u09ad \\u09a5\\u09be\\u0995\\u09c7 \\u0995\\u09cb\\u09a8 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09b9\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09c7\\u09b8\\u09c7\\u099e\\u09cd\\u099c\\u09be\\u09b0\\u09c7 \\u09ae\\u09c7\\u09b8\\u09c7\\u099c \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256.55 8C116.52 8 8 110.34 8 248.57c0 72.3 29.71 134.78 78.07 177.94 8.35 7.51 6.63 11.86 8.05 58.23A19.92 19.92 0 0 0 122 502.31c52.91-23.3 53.59-25.14 62.56-22.7C337.85 521.8 504 423.7 504 248.57 504 110.34 396.59 8 256.55 8zm149.24 185.13l-73 115.57a37.37 37.37 0 0 1-53.91 9.93l-58.08-43.47a15 15 0 0 0-18 0l-78.37 59.44c-10.46 7.93-24.16-4.6-17.11-15.67l73-115.57a37.36 37.36 0 0 1 53.91-9.93l58.06 43.46a15 15 0 0 0 18 0l78.41-59.38c10.44-7.98 24.14 4.54 17.09 15.62z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ab\\u09c7\\u0987\\u09b8\\u09ac\\u09c1\\u0995\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<a href=\\\"#\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b9\\u09cb\\u09df\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09a8\\u09b8\\u09cd\\u099f\\u09bf\\u099c \\u09e9 \\u09aa\\u09bf\\u09b8 \\u098f\\u09b0 \\u09ac\\u09c8\\u09b6\\u09bf\\u09b7\\u09cd\\u099f\\u09cd\\u09af<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09b0\\u09be \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09aa\\u09c1\\u09b0\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09ab\\u09cd\\u09af\\u09be\\u0995\\u09cd\\u099f\\u09b0\\u09bf\\u09a4\\u09c7 \\u09ae\\u09c7\\u09a8\\u09c1\\u09ab\\u09cd\\u09af\\u09be\\u0995\\u099a\\u09be\\u09b0\\u09bf\\u0982 \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09be\\u09b0\\u09a8 \\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09a8\\u09bf\\u099c\\u09c7\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09b8\\u09cd\\u09a4\\u09c1\\u09a4 \\u0995\\u09b0\\u09bf \\u0995\\u09be\\u09aa\\u09a1\\u09bc\\u09c7\\u09b0 \\u0993\\u09a1\\u09bc\\u09a8\\u09be \\u0993 \\u09aa\\u09be\\u09af\\u09bc\\u099c\\u09be\\u09ae\\u09be\\u09b0 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09b8\\u09c1\\u09a4\\u09bf \\u0995\\u09be\\u09aa\\u09a1\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09b0 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 \\u09b8\\u0995\\u09be\\u09b2 \\u09a6\\u09b6\\u099f\\u09be \\u09b9\\u09a4\\u09c7 \\u09b0\\u09be\\u09a4 \\u09a6\\u09b6\\u099f\\u09be \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09af\\u09a6\\u09bf \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u09c7\\u09b0 \\u0995\\u09cb\\u09a8 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a5\\u09be\\u0995\\u09c7 \\u0989\\u0995\\u09cd\\u09a4 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09be \\u09ad\\u09bf\\u09a1\\u09bf\\u0993 \\u0995\\u09b0\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0\\u0995\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09ae\\u09c7\\u09b8\\u09c7\\u099e\\u09cd\\u099c\\u09be\\u09b0 \\u0985\\u09a5\\u09ac\\u09be \\u09b9\\u09cb\\u09af\\u09bc\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09c7 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\\u0964 \\u09af\\u09a6\\u09bf \\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09ae\\u09a8\\u09c7 \\u0995\\u09b0\\u09bf \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u09ac\\u09bf\\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u098f\\u0995\\u09cd\\u09b8\\u099a\\u09c7\\u099e\\u09cd\\u099c \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09ac\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995 \\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09c1\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t\\t<a href=\\\"tel:01625032937\\\">\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t<\\/h3>\\n\\t\\t<\\/a>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\">   <\\/h3>\\n\\t\\tProduct\\n\\t\\tQuantity\\n\\t\\tPrice\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-100x100.webp 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">First name&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">Phone&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_email_field\\\" data-priority=\\\"110\\\"><label for=\\\"billing_email\\\">Email address&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"email\\\" name=\\\"billing_email\\\" id=\\\"billing_email\\\" placeholder=\\\"\\\"  value=\\\"admin@thesmartway.xyz\\\" autocomplete=\\\"email username\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"925\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"928\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717889809\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"edcba24797\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-13__trashed','','','2026-06-09 12:42:03','2026-06-09 06:42:03','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-13/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1877','17','2026-06-08 21:39:10','2026-06-08 15:39:10','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-1.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-1.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\"','Thank You (Woo)','','inherit','closed','closed','','1874-revision-v1','','','2026-06-08 21:39:10','2026-06-08 15:39:10','','1874','https://hypergrowth.fishgrowth.xyz/?p=1877','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1878','17','2026-06-08 21:39:10','2026-06-08 15:39:10','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/jadutech.com\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0986\\u09ab\\u09b8\\u09be\\u09a8 \\u09aa\\u09cd\\u09b0\\u09bf\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09be \\u0986\\u09a8\\u09b8\\u09cd\\u099f\\u09bf\\u099c \\u09e9 \\u09aa\\u09bf\\u09b8<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-2.webp\\\" alt=\\\"3pcs-2.webp\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-3.webp\\\" alt=\\\"3pcs-3.webp\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-4.webp\\\" alt=\\\"3pcs-4.webp\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-5.webp\\\" alt=\\\"3pcs-5.webp\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-6.webp\\\" alt=\\\"3pcs-6.webp\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t<p>\\u09ac\\u09be\\u099c\\u09be\\u09b0\\u09c7\\u09b0 \\u0995\\u09aa\\u09bf \\u09a5\\u09cd\\u09b0\\u09bf \\u09aa\\u09bf\\u09b8\\u09c7\\u09b0 \\u09b8\\u0999\\u09cd\\u0997\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u0995\\u09c7 \\u09a4\\u09c1\\u09b2\\u09a8\\u09be \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 \\u09a8\\u09be\\u0964 \\u0986\\u09ae\\u09b0\\u09be \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09aa\\u09c1\\u09b0\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09ab\\u09cd\\u09af\\u09be\\u0995\\u09cd\\u099f\\u09b0\\u09bf\\u09a4\\u09c7 \\u09ae\\u09c7\\u09a8\\u09c1\\u09ab\\u09cd\\u09af\\u09be\\u0995\\u099a\\u09be\\u09b0\\u09bf\\u0982 \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\u0964 \\u0995\\u09be\\u09b0\\u09a8 \\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09a8\\u09bf\\u099c\\u09c7\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09b8\\u09cd\\u09a4\\u09c1\\u09a4 \\u0995\\u09b0\\u09bf \\u0995\\u09be\\u09aa\\u09a1\\u09bc\\u09c7\\u09b0 \\u0993\\u09a1\\u09bc\\u09a8\\u09be \\u0993 \\u09aa\\u09be\\u09af\\u09bc\\u099c\\u09be\\u09ae\\u09be\\u09b0 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09b8\\u09c1\\u09a4\\u09bf \\u0995\\u09be\\u09aa\\u09a1\\u09bc\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09e7\\u09e7\\u09e6\\u09e6\\/=\\u00a0\\u099f\\u09be\\u0995\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09a8\\u09b8\\u09cd\\u099f\\u09bf\\u099c \\u09e9 \\u09aa\\u09bf\\u09b8 \\u098f\\u09b0 \\u09ac\\u09c8\\u09b6\\u09bf\\u09b7\\u09cd\\u099f\\u09cd\\u09af<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099c\\u09be\\u09ae\\u09be \\u09b2\\u0982 \\u09ea\\u09ee \\u09ac\\u09a1\\u09bf \\u09eb\\u09e6+\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09be\\u09af\\u09bc\\u099c\\u09be\\u09ae\\u09be \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09e8.\\u09eb \\u0997\\u099c ( \\u09ef\\u09e6 \\u0987\\u099e\\u09cd\\u099a\\u09bf)\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0993\\u09a1\\u09bc\\u09a8\\u09be\\u09b0 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u0986\\u099b\\u09c7 \\u09eb.\\u09eb \\u09b9\\u09be\\u09a4\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0986\\u09ab\\u09b8\\u09be\\u09a8 \\u09aa\\u09cd\\u09b0\\u09bf\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09be\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u099f\\u09a8 \\u09b8\\u09c1\\u09a4\\u09bf\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-6.webp\\\" alt=\\\"3pcs-6.webp\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-5.webp\\\" alt=\\\"3pcs-5.webp\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-4.webp\\\" alt=\\\"3pcs-4.webp\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-3.webp\\\" alt=\\\"3pcs-3.webp\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3pcs-2.webp\\\" alt=\\\"3pcs-2.webp\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09c7\\u09b8\\u09c7\\u099e\\u09cd\\u099c\\u09be\\u09b0\\u09c7 24 \\u0998\\u09a8\\u09cd\\u099f\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u098f\\u0995\\u099f\\u09bf\\u09ad \\u09a5\\u09be\\u0995\\u09c7 \\u0995\\u09cb\\u09a8 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09b9\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09c7\\u09b8\\u09c7\\u099e\\u09cd\\u099c\\u09be\\u09b0\\u09c7 \\u09ae\\u09c7\\u09b8\\u09c7\\u099c \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256.55 8C116.52 8 8 110.34 8 248.57c0 72.3 29.71 134.78 78.07 177.94 8.35 7.51 6.63 11.86 8.05 58.23A19.92 19.92 0 0 0 122 502.31c52.91-23.3 53.59-25.14 62.56-22.7C337.85 521.8 504 423.7 504 248.57 504 110.34 396.59 8 256.55 8zm149.24 185.13l-73 115.57a37.37 37.37 0 0 1-53.91 9.93l-58.08-43.47a15 15 0 0 0-18 0l-78.37 59.44c-10.46 7.93-24.16-4.6-17.11-15.67l73-115.57a37.36 37.36 0 0 1 53.91-9.93l58.06 43.46a15 15 0 0 0 18 0l78.41-59.38c10.44-7.98 24.14 4.54 17.09 15.62z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ab\\u09c7\\u0987\\u09b8\\u09ac\\u09c1\\u0995\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<a href=\\\"#\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b9\\u09cb\\u09df\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09a8\\u09b8\\u09cd\\u099f\\u09bf\\u099c \\u09e9 \\u09aa\\u09bf\\u09b8 \\u098f\\u09b0 \\u09ac\\u09c8\\u09b6\\u09bf\\u09b7\\u09cd\\u099f\\u09cd\\u09af<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09b0\\u09be \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u0987\\u09b8\\u09b2\\u09be\\u09ae\\u09aa\\u09c1\\u09b0\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09ab\\u09cd\\u09af\\u09be\\u0995\\u09cd\\u099f\\u09b0\\u09bf\\u09a4\\u09c7 \\u09ae\\u09c7\\u09a8\\u09c1\\u09ab\\u09cd\\u09af\\u09be\\u0995\\u099a\\u09be\\u09b0\\u09bf\\u0982 \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09be\\u09b0\\u09a8 \\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09a8\\u09bf\\u099c\\u09c7\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09b8\\u09cd\\u09a4\\u09c1\\u09a4 \\u0995\\u09b0\\u09bf \\u0995\\u09be\\u09aa\\u09a1\\u09bc\\u09c7\\u09b0 \\u0993\\u09a1\\u09bc\\u09a8\\u09be \\u0993 \\u09aa\\u09be\\u09af\\u09bc\\u099c\\u09be\\u09ae\\u09be\\u09b0 \\u0995\\u09be\\u09aa\\u09a1\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09b8\\u09c1\\u09a4\\u09bf \\u0995\\u09be\\u09aa\\u09a1\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09b0 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 \\u09b8\\u0995\\u09be\\u09b2 \\u09a6\\u09b6\\u099f\\u09be \\u09b9\\u09a4\\u09c7 \\u09b0\\u09be\\u09a4 \\u09a6\\u09b6\\u099f\\u09be \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09af\\u09a6\\u09bf \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u09c7\\u09b0 \\u0995\\u09cb\\u09a8 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a5\\u09be\\u0995\\u09c7 \\u0989\\u0995\\u09cd\\u09a4 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09be \\u09ad\\u09bf\\u09a1\\u09bf\\u0993 \\u0995\\u09b0\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0\\u0995\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09ae\\u09c7\\u09b8\\u09c7\\u099e\\u09cd\\u099c\\u09be\\u09b0 \\u0985\\u09a5\\u09ac\\u09be \\u09b9\\u09cb\\u09af\\u09bc\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09c7 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\\u0964 \\u09af\\u09a6\\u09bf \\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf\\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09ae\\u09a8\\u09c7 \\u0995\\u09b0\\u09bf \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u09ac\\u09bf\\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u098f\\u0995\\u09cd\\u09b8\\u099a\\u09c7\\u099e\\u09cd\\u099c \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09ac\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995 \\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09c1\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t\\t<a href=\\\"tel:01625032937\\\">\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t<\\/h3>\\n\\t\\t<\\/a>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\">   <\\/h3>\\n\\t\\tProduct\\n\\t\\tQuantity\\n\\t\\tPrice\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-100x100.webp 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">First name&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">Phone&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_email_field\\\" data-priority=\\\"110\\\"><label for=\\\"billing_email\\\">Email address&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"email\\\" name=\\\"billing_email\\\" id=\\\"billing_email\\\" placeholder=\\\"\\\"  value=\\\"admin@thesmartway.xyz\\\" autocomplete=\\\"email username\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"925\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"928\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717889809\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"edcba24797\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Checkout (Woo)','','inherit','closed','closed','','1876-revision-v1','','','2026-06-08 21:39:10','2026-06-08 15:39:10','','1876','https://hypergrowth.fishgrowth.xyz/?p=1878','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1879','17','2026-06-08 21:39:21','2026-06-08 15:39:21','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>Thanks<\\/h1>ttnttt<h1>Congratulations!!! Your order has been successfully received.<\\/h1>ttnttt<h1>You will be contacted for product delivery very soon<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-8__trashed','','','2026-06-09 12:36:54','2026-06-09 06:36:54','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-8/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1880','17','2026-06-08 21:39:21','2026-06-08 15:39:21','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>Thanks<\\/h1>ttnttt<h1>Congratulations!!! Your order has been successfully received.<\\/h1>ttnttt<h1>You will be contacted for product delivery very soon<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\"','Thank You (Woo)','','inherit','closed','closed','','1879-revision-v1','','','2026-06-08 21:39:21','2026-06-08 15:39:21','','1879','https://hypergrowth.fishgrowth.xyz/?p=1880','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1881','17','2026-06-08 21:39:40','2026-06-08 15:39:40','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>Thanks<\\/h1>ttnttt<h1>Congratulations!!! Your order has been successfully received.<\\/h1>ttnttt<h1>You will be contacted for product delivery very soon<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-9__trashed','','','2026-06-09 12:36:46','2026-06-09 06:36:46','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-9/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1882','17','2026-06-08 21:39:40','2026-06-08 15:39:40','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>Thanks<\\/h1>ttnttt<h1>Congratulations!!! Your order has been successfully received.<\\/h1>ttnttt<h1>You will be contacted for product delivery very soon<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\"','Thank You (Woo)','','inherit','closed','closed','','1881-revision-v1','','','2026-06-08 21:39:40','2026-06-08 15:39:40','','1881','https://hypergrowth.fishgrowth.xyz/?p=1882','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1883','17','2026-06-08 21:39:50','2026-06-08 15:39:50','','Trimmer','','trash','closed','closed','','trimmer__trashed','','','2026-06-09 12:49:06','2026-06-09 06:49:06','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=trimmer','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1884','17','2026-06-08 21:39:50','2026-06-08 15:39:50','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-12__trashed','','','2026-06-09 12:49:05','2026-06-09 06:49:05','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-12/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1885','17','2026-06-08 21:39:50','2026-06-08 15:39:50','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1884-revision-v1','','','2026-06-08 21:39:50','2026-06-08 15:39:50','','1884','https://hypergrowth.fishgrowth.xyz/?p=1885','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1886','17','2026-06-08 21:39:50','2026-06-08 15:39:50','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>Classy Trimmer combo T0 786<\\/h2>\\t\\t\\n\\t\\t<p>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099a\\u09c1\\u09b2 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09a6\\u09be\\u09a1\\u09bc\\u09bf \\u0995\\u09be\\u099f\\u09be\\u09b0 \\u09b8\\u09b9\\u099c \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u098f\\u0987 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0 \\u099f\\u09bf , \\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09e7 \\u09ac\\u099b\\u09b0\\u09c7\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u09b0\\u09c7\\u09a8\\u09cd\\u099f\\u09bf\\u0964 \\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09b8\\u09be\\u0987\\u099c\\u09c7 \\u099a\\u09c1\\u09b2 \\u0993 \\u09a6\\u09be\\u09a1\\u09bc\\u09bf \\u0995\\u09be\\u099f\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u09a4\\u09c7\\u0981 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u0986\\u099b\\u09c7 \\u09ea \\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09aa ,\\u09af\\u09be\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 0.8 mm \\u09a5\\u09c7\\u0995\\u09c7 12mm \\u0995\\u09be\\u099f\\u09be \\u09af\\u09be\\u09ac\\u09c7 \\u0964\\u09b6\\u09c1\\u09a7\\u09c1 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0\\u0987 \\u09a8\\u09af\\u09bc \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7 \\u0986\\u09b0\\u0993 \\u09ae\\u09cb\\u099f \\u09ef \\u099f\\u09bf \\u0986\\u0987\\u099f\\u09c7\\u09ae (\\u09ea \\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09aa , \\u099a\\u09bf\\u09b0\\u09c1\\u09a8\\u09bf , \\u099a\\u09be\\u09b0\\u09cd\\u099c\\u09be\\u09b0 , \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09bf\\u0982 \\u09ac\\u09cd\\u09b0\\u09be\\u09b6 , \\u0985\\u09df\\u09c7\\u09b2 , \\u09ab\\u09cb\\u09ae )<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/philips-bt3302-15-beard-trimmer-for-men.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/philips-bt3302-15-beard-trimmer-for-men.webp 800w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/philips-bt3302-15-beard-trimmer-for-men-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/philips-bt3302-15-beard-trimmer-for-men-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/philips-bt3302-15-beard-trimmer-for-men-768x768.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/philips-bt3302-15-beard-trimmer-for-men-600x600.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/philips-bt3302-15-beard-trimmer-for-men-100x100.webp 100w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/f217d2eb2c91417d80ffae77013d622c-1024x1024.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/f217d2eb2c91417d80ffae77013d622c-1024x1024.webp 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/f217d2eb2c91417d80ffae77013d622c-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/f217d2eb2c91417d80ffae77013d622c-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/f217d2eb2c91417d80ffae77013d622c-768x768.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/f217d2eb2c91417d80ffae77013d622c-600x600.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/f217d2eb2c91417d80ffae77013d622c-100x100.webp 100w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/f217d2eb2c91417d80ffae77013d622c.webp 1250w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t<p>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099a\\u09c1\\u09b2 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09a6\\u09be\\u09a1\\u09bc\\u09bf \\u0995\\u09be\\u099f\\u09be\\u09b0 \\u09b8\\u09b9\\u099c \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u098f\\u0987 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0 \\u099f\\u09bf , \\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09e7 \\u09ac\\u099b\\u09b0\\u09c7\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u09b0\\u09c7\\u09a8\\u09cd\\u099f\\u09bf \\u0964\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09b8\\u09be\\u0987\\u099c\\u09c7 \\u099a\\u09c1\\u09b2 \\u0993 \\u09a6\\u09be\\u09a1\\u09bc\\u09bf \\u0995\\u09be\\u099f\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u09a4\\u09c7\\u0981 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u0986\\u099b\\u09c7 \\u09ea \\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09aa ,\\u09af\\u09be\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 0.8 mm \\u09a5\\u09c7\\u0995\\u09c7 12mm \\u0995\\u09be\\u099f\\u09be \\u09af\\u09be\\u09ac\\u09c7 \\u0964\\u09b6\\u09c1\\u09a7\\u09c1 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0\\u0987 \\u09a8\\u09af\\u09bc \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7 \\u0986\\u09b0\\u0993 \\u09ae\\u09cb\\u099f \\u09ef \\u099f\\u09bf \\u0986\\u0987\\u099f\\u09c7\\u09ae (\\u09ea \\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09aa , \\u099a\\u09bf\\u09b0\\u09c1\\u09a8\\u09bf , \\u099a\\u09be\\u09b0\\u09cd\\u099c\\u09be\\u09b0 , \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09bf\\u0982 \\u09ac\\u09cd\\u09b0\\u09be\\u09b6 , \\u0985\\u09df\\u09c7\\u09b2 , \\u09ab\\u09cb\\u09ae )<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"600\\\" height=\\\"503\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Adapter-and-battery-1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Adapter-and-battery-1.png 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Adapter-and-battery-1-300x252.png 300w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09e8 \\u0998\\u09a8\\u09cd\\u099f\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09bf \\u09ac\\u09cd\\u09af\\u09be\\u0995\\u0986\\u09aa<\\/h2>\\t\\t\\n\\t\\t<p>\\u098f\\u0995 \\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09df\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u099f\\u09be\\u09a8\\u09be \\u09e8\\u0998\\u09a8\\u09cd\\u099f\\u09be\\u0964 \\u098f\\u0987 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0\\u099f\\u09bf\\u09a4\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u09ac\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09c0\\u0964 \\u098f\\u099f\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09c7\\u09b8\\u09cd\\u099f \\u099a\\u09df\\u09c7\\u099c \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09b8\\u09bf\\u09b0\\u09be\\u09ae\\u09bf\\u0995 \\u09ac\\u09cd\\u09b2\\u09c7\\u09a1<\\/h2>\\t\\t\\n\\t\\t<p>\\u09b8\\u09bf\\u09b0\\u09be\\u09ae\\u09bf\\u0995 \\u09ac\\u09cd\\u09b2\\u09c7\\u09a1 \\u098f\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 \\u098f\\u0987 \\u09b2\\u09c7\\u0996\\u09be \\u099f\\u09be \\u09b9\\u09ac\\u09c7 \\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u098f\\u09b8\\u09c7\\u099b\\u09bf \\u09b8\\u09bf\\u09b0\\u09be\\u09ae\\u09bf\\u0995 \\u09ac\\u09cd\\u09b2\\u09c7\\u09a1 , \\u098f\\u09b0 \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7\\u09a4\\u09cd\\u09ac \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u098f\\u099f\\u09bf \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0995\\u09cb\\u09a8\\u09cb \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u0995\\u09b0\\u09c7 \\u09a8\\u09be \\u0993 \\u09b8\\u09cd\\u099f\\u09bf\\u09b2 \\u098f\\u09b0 \\u09ac\\u09cd\\u09b2\\u09c7\\u09a1 \\u098f\\u09b0 \\u09ae\\u09a4 \\u0995\\u09c7\\u099f\\u09c7 \\u09af\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u0995\\u09cb\\u09a8\\u09cb \\u09b8\\u09ae\\u09cd\\u09ad\\u09be\\u09ac\\u09a8\\u09be \\u09a8\\u09c7\\u0987 \\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/4-1024x1024.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/4-1024x1024.png 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/4-300x300.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/4-150x150.png 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/4-768x768.png 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/4-600x600.png 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/4-100x100.png 100w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ai-image-20260605-123751-a9e804e2ec1e284627804334.png 1080w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/433898718_288137447637810_2435037710483055314_n-1.jpg\\\" alt=\\\"433898718_288137447637810_2435037710483055314_n-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/433234049_288137364304485_6792386511423881034_n-1.jpg\\\" alt=\\\"433234049_288137364304485_6792386511423881034_n-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/433059906_288137397637815_8185707815567624270_n-1.jpg\\\" alt=\\\"433059906_288137397637815_8185707815567624270_n-1.jpg\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\n\\t\\t\\t\\t\\u09e7\\u09e6\\u09ef\\u09ef&nbsp;\\/=\\t\\t\\t\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_country\\\" id=\\\"billing_country\\\" autocomplete=\\\"country\\\" data-placeholder=\\\"Select a country \\/ region&hellip;\\\" data-label=\\\"Country \\/ Region\\\"><option value=\\\"\\\">Select a country \\/ region&hellip;<\\/option><option value=\\\"AF\\\" >Afghanistan<\\/option><option value=\\\"AX\\\" >\\u00c5land 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&ccedil;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&atilde;o Tom&eacute; and Pr&iacute;ncipe<\\/option><option value=\\\"BL\\\" >Saint Barth&eacute;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\\\">\\u09b6\\u09bf\\u09aa\\u09bf\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a1\\u09a1\\u09cd\\u09b0\\u09c7\\u09b8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u099f\\u09bf \\u09b2\\u09c7\\u0996\\u09c1\\u09a8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"937\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"940\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>\\n\\t\\tProduct\\n\\t\\tQuantity\\n\\t\\tPrice\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717889892\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"edcba24797\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-14__trashed','','','2026-06-09 12:49:06','2026-06-09 06:49:06','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-14/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1887','17','2026-06-08 21:39:50','2026-06-08 15:39:50','','Tshirt','','trash','closed','closed','','tshirt__trashed','','','2026-06-09 12:41:44','2026-06-09 06:41:44','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=tshirt','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1888','17','2026-06-08 21:39:50','2026-06-08 15:39:50','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09e9 \\u09aa\\u09bf\\u09b8 \\u099f\\u09bf-\\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e7\\u09ef\\u09e6<\\/h2>\\t\\t\\n\\t\\t<p>Premium Quality Jearsey T Shart Package \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u0995\\u0996\\u09a8\\u09cb \\u09b8\\u09b8\\u09cd\\u09a5\\u09be\\u09af\\u09bc \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09af\\u09bc \\u09a8\\u09be \\u09a4\\u09ac\\u09c1\\u0993 \\u0986\\u09ae\\u09b0\\u09be \\u098f\\u0987 \\u09ae\\u09c1\\u09b2\\u09cd\\u09af\\u09c7 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u00a0<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/youtu.be\\/1HtrB9hDve4\\t\\t\\n\\t\\t\\t<h2>ZOTO Always comfort<\\/h2>\\t\\t\\n\\t\\t<p>\\u0986\\u09ae\\u09b0\\u09be \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09bf\\u0995\\u09cd\\u09b8, \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf \\u098f\\u09ac\\u0982 \\u09b8\\u09c1\\u09df\\u09bf\\u0982 \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09bf\\u09a8\\u09cd\\u099f \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf, \\u09b8\\u09be\\u09a5\\u09c7 \\u09e7\\u09e6\\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09b0\\u09bf\\u09aa\\u09cd\\u09b2\\u09c7\\u09b8\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0964 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af \\u09ac\\u09bf\\u0995\\u09cd\\u09b0\\u09bf \\u09a8\\u09df, \\u0986\\u09ae\\u09b0\\u09be \\u099a\\u09be\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09c7\\u0995 \\u09ac\\u09bf\\u0995\\u09cd\\u09b0\\u09af\\u09bc\\u09a4\\u09cd\\u09ac\\u09b0 \\u09b8\\u09c7\\u09ac\\u09be \\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09be \\u098f\\u09ac\\u0982 \\u0986\\u09b0\\u0993 \\u09b8\\u09ac \\u09ac\\u09be\\u09b9\\u09be\\u09b0\\u09bf \\u09a1\\u09bf\\u099c\\u09be\\u0987\\u09a8 \\u098f\\u09ac\\u0982 \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u0989\\u09aa\\u09b9\\u09be\\u09b0 \\u09a6\\u09c7\\u09af\\u09bc\\u09be<\\/p>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor-pro - v3.12.1 - 02-04-2023 *\\/\\n.elementor-widget-price-list .elementor-price-list{list-style:none;padding:0;margin:0}.elementor-widget-price-list .elementor-price-list li{margin:0}.elementor-price-list li:not(:last-child){margin-bottom:20px}.elementor-price-list .elementor-price-list-image{max-width:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};flex-shrink:0;padding-right:25px}.elementor-price-list .elementor-price-list-image img{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-price-list .elementor-price-list-header,.elementor-price-list .elementor-price-list-item,.elementor-price-list .elementor-price-list-text{display:flex}.elementor-price-list .elementor-price-list-item{align-items:flex-start}.elementor-price-list .elementor-price-list-item .elementor-price-list-text{align-items:flex-start;flex-wrap:wrap;flex-grow:1}.elementor-price-list .elementor-price-list-item .elementor-price-list-header{align-items:center;flex-basis:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};font-size:19px;font-weight:600;margin-bottom:10px;justify-content:space-between}.elementor-price-list .elementor-price-list-item .elementor-price-list-title{max-width:80{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-price-list .elementor-price-list-item .elementor-price-list-price{font-weight:600}.elementor-price-list .elementor-price-list-item p.elementor-price-list-description{flex-basis:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};font-size:14px;margin:0}.elementor-price-list .elementor-price-list-item .elementor-price-list-separator{flex-grow:1;margin-left:10px;margin-right:10px;border-bottom-style:dotted;border-bottom-width:2px;height:0}.elementor-price-table{text-align:center}.elementor-price-table .elementor-price-table__header{background:var(--e-price-table-header-background-color,#555);padding:20px 0}.elementor-price-table .elementor-price-table__heading{margin:0;padding:0;line-height:1.2;font-size:24px;font-weight:600;color:#fff}.elementor-price-table .elementor-price-table__subheading{font-size:13px;font-weight:400;color:#fff}.elementor-price-table .elementor-price-table__original-price{margin-right:15px;text-decoration:line-through;font-size:.5em;line-height:1;font-weight:400;align-self:center}.elementor-price-table .elementor-price-table__original-price .elementor-price-table__currency{font-size:1em;margin:0}.elementor-price-table .elementor-price-table__price{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;flex-direction:row;color:#555;font-weight:800;font-size:65px;padding:40px 0}.elementor-price-table .elementor-price-table__price .elementor-typo-excluded{line-height:normal;letter-spacing:normal;text-transform:none;font-weight:400;font-size:medium;font-style:normal}.elementor-price-table .elementor-price-table__after-price{display:flex;flex-wrap:wrap;text-align:left;align-self:stretch;align-items:flex-start;flex-direction:column}.elementor-price-table .elementor-price-table__integer-part{line-height:.8}.elementor-price-table .elementor-price-table__currency,.elementor-price-table .elementor-price-table__fractional-part{line-height:1;font-size:.3em}.elementor-price-table .elementor-price-table__currency{margin-right:3px}.elementor-price-table .elementor-price-table__period{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};font-size:13px;font-weight:400}.elementor-price-table .elementor-price-table__features-list{list-style-type:none;margin:0;padding:0;line-height:1;color:var(--e-price-table-features-list-color)}.elementor-price-table .elementor-price-table__features-list li{font-size:14px;line-height:1;margin:0;padding:0}.elementor-price-table .elementor-price-table__features-list li .elementor-price-table__feature-inner{margin-left:15px;margin-right:15px}.elementor-price-table .elementor-price-table__features-list li:not(:first-child):before{content:\\\"\\\";display:block;border:0 solid hsla(0,0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05},47.8{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05},.3);margin:10px 12.5{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-price-table .elementor-price-table__features-list i{margin-right:10px;font-size:1.3em}.elementor-price-table .elementor-price-table__features-list svg{margin-right:10px;fill:var(--e-price-table-features-list-color);height:1.3em;width:1.3em}.elementor-price-table .elementor-price-table__features-list svg~*{vertical-align:text-top}.elementor-price-table .elementor-price-table__footer{padding:30px 0}.elementor-price-table .elementor-price-table__additional_info{margin:0;font-size:13px;line-height:1.4}.elementor-price-table__ribbon{position:absolute;top:0;left:auto;right:0;transform:rotate(90deg);width:150px;overflow:hidden;height:150px}.elementor-price-table__ribbon-inner{text-align:center;left:0;width:200{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};transform:translateY(-50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}) translateX(-50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}) translateX(35px) rotate(-45deg);margin-top:35px;font-size:13px;line-height:2;font-weight:800;text-transform:uppercase;background:#000}.elementor-price-table__ribbon.elementor-ribbon-left{transform:rotate(0);left:0;right:auto}.elementor-price-table__ribbon.elementor-ribbon-right{transform:rotate(90deg);left:auto;right:0}.elementor-widget-price-table .elementor-widget-container{overflow:hidden;background-color:#f9fafa}.e-con-inner>.elementor-widget-price-list,.e-con>.elementor-widget-price-list{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\n\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li><a href=\\\"#\\\">\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\u09e9 \\u09aa\\u09bf\\u09b8 \\u099f\\u09bf-\\u09b6\\u09be\\u09b0\\u09cd\\u099f\\u09c7\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09f31190\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p>\\n\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09aa\\u09cd\\u09b0\\u09af\\u09cb\\u099c\\u09cd\\u09af\\t\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t<\\/a><\\/li>\\t\\t\\t\\t\\t\\n\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1.jpeg 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-300x300.jpeg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-150x150.jpeg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-768x768.jpeg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-600x600.jpeg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-100x100.jpeg 100w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ts-1-1-1.jpg\\\" alt=\\\"ts-1-1-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ts-18-B-1-1.jpg\\\" alt=\\\"ts-18-B-1-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ts-31-1-1.jpg\\\" alt=\\\"ts-31-1-1.jpg\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09b8\\u09be\\u0987\\u099c\\u09c7 \\u09aa\\u09cd\\u09b0\\u09ac\\u09b2\\u09c7\\u09ae \\u09b9\\u09b2\\u09c7 \\u0985\\u09a5\\u09ac\\u09be \\u0985\\u09a8\\u09cd\\u09af \\u0995\\u09cb\\u09a8 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09b9\\u09b2\\u09c7 \\u09b0\\u09bf\\u09b0\\u09cd\\u099f\\u09be\\u09a8 \\u09ac\\u09be \\u098f\\u0995\\u09cd\\u09b8\\u09c7\\u099a\\u099e\\u09cd\\u099c \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09ed\\u09a5\\u09c7\\u0995\\u09c7 \\u09e7\\u09e6 \\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a4\\u09b0\\u09c7<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:+8801819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t+8801819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"538\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1.jpeg 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1-300x158.jpeg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1-768x404.jpeg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1-600x315.jpeg 600w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099c\\u09c7\\u09b2\\u09be,\\u09a5\\u09be\\u09a8\\u09be \\u0993 \\u09af\\u09c7 \\u09b2\\u09cb\\u0995\\u09c7\\u09b6\\u09a8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8 \\u0990 \\u098f\\u09b0\\u09bf\\u09df\\u09be\\u09b0 \\u09a8\\u09be\\u09ae \\u09a6\\u09bf\\u09a8\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"90\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"110\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_country\\\" id=\\\"billing_country\\\" autocomplete=\\\"country\\\" data-placeholder=\\\"Select a country \\/ region&hellip;\\\" data-label=\\\"Country \\/ Region\\\"><option value=\\\"\\\">Select a country \\/ region&hellip;<\\/option><option value=\\\"AF\\\" >Afghanistan<\\/option><option value=\\\"AX\\\" >\\u00c5land 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&ccedil;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&atilde;o Tom&eacute; and Pr&iacute;ncipe<\\/option><option value=\\\"BL\\\" >Saint Barth&eacute;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_size_field\\\" data-priority=\\\"120\\\"><label for=\\\"billing_size_M\\\">\\u099f\\u09bf\\u09b6\\u09be\\u09b0\\u09cd\\u099f\\u09c7\\u09b0 \\u09b8\\u09be\\u0987\\u099c&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"radio\\\" value=\\\"M\\\" name=\\\"billing_size\\\"  id=\\\"billing_size_M\\\" \\/><label for=\\\"billing_size_M\\\">M<\\/label><input type=\\\"radio\\\" value=\\\"L\\\" name=\\\"billing_size\\\"  id=\\\"billing_size_L\\\" checked=\'checked\' \\/><label for=\\\"billing_size_L\\\">L<\\/label><input type=\\\"radio\\\" value=\\\"XL\\\" name=\\\"billing_size\\\"  id=\\\"billing_size_XL\\\" \\/><label for=\\\"billing_size_XL\\\">XL<\\/label><input type=\\\"radio\\\" value=\\\"2XL\\\" name=\\\"billing_size\\\"  id=\\\"billing_size_2XL\\\" \\/><label for=\\\"billing_size_2XL\\\">2XL<\\/label><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"960\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"961\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717889958\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;900.00\\\">\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"edcba24797\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-15__trashed','','','2026-06-09 12:41:44','2026-06-09 06:41:44','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-15/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1889','17','2026-06-08 21:39:53','2026-06-08 15:39:53','','Tshirt 02','','trash','closed','closed','','tshirt-02__trashed','','','2026-06-09 12:41:28','2026-06-09 06:41:28','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=tshirt-02','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1890','17','2026-06-08 21:39:53','2026-06-08 15:39:53','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp 472w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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>u09e9 u09aau09bfu09b8 u099fu09bf-u09b6u09beu09b0u09cdu099f u09aeu09beu09a4u09cdu09b0 u09e7u09e7u09efu09e6<\\/h2>ttntt<p>Premium Quality Jearsey T Shart Package u0995u09cbu09afu09bcu09beu09b2u09bfu099fu09bf u09aau09cdu09b0u09cbu09a1u09beu0995u09cdu099f u0995u0996u09a8u09cb u09b8u09b8u09cdu09a5u09beu09afu09bc u09aau09beu0993u09afu09bcu09be u09afu09beu09afu09bc u09a8u09be u09a4u09acu09c1u0993 u0986u09aeu09b0u09be u098fu0987 u09aeu09c1u09b2u09cdu09afu09c7 u09a6u09bfu099au09cdu099bu09bf u09b8u09b0u09cdu09acu09cbu099au09cdu099a u0995u09cbu09afu09bcu09beu09b2u09bfu099fu09bfu00a0<\\/p>ttnttt<a href=\\\"#order\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>ntthttps:\\/\\/youtu.be\\/1HtrB9hDve4ttnttt<h2>ZOTO Always comfort<\\/h2>ttntt<p>u0986u09aeu09b0u09be u0995u09cbu09afu09bcu09beu09b2u09bfu099fu09bf u09abu09c7u09acu09cdu09b0u09bfu0995u09cdu09b8, u0995u09beu09b2u09beu09b0 u0997u09cdu09afu09beu09b0u09beu09a8u09cdu099fu09bf u098fu09acu0982 u09b8u09c1u09dfu09bfu0982 u0997u09cdu09afu09beu09b0u09beu09bfu09a8u09cdu099f u09a6u09bfu099au09cdu099bu09bf, u09b8u09beu09a5u09c7 u09e7u09e6u09a6u09bfu09a8u09c7u09b0 u09b0u09bfu09aau09cdu09b2u09c7u09b8u09aeu09c7u09a8u09cdu099f u0997u09cdu09afu09beu09b0u09beu09a8u09cdu099fu09bfu0964 u09b6u09c1u09a7u09c1 u09aau09a3u09cdu09af u09acu09bfu0995u09cdu09b0u09bf u09a8u09df, u0986u09aeu09b0u09be u099au09beu0987 u0986u09aau09a8u09beu09c7u0995 u09acu09bfu0995u09cdu09b0u09afu09bcu09a4u09cdu09acu09b0 u09b8u09c7u09acu09be u09a6u09beu09a8 u0995u09b0u09be u098fu09acu0982 u0986u09b0u0993 u09b8u09ac u09acu09beu09b9u09beu09b0u09bf u09a1u09bfu099cu09beu0987u09a8 u098fu09acu0982 u0995u09cbu09afu09bcu09beu09b2u09bfu099fu09bf u0989u09aau09b9u09beu09b0 u09a6u09c7u09afu09bcu09be<\\/p>ttnttt<style>\\/*! elementor-pro - v3.12.1 - 02-04-2023 *\\/n.elementor-widget-price-list .elementor-price-list{list-style:none;padding:0;margin:0}.elementor-widget-price-list .elementor-price-list li{margin:0}.elementor-price-list li:not(:last-child){margin-bottom:20px}.elementor-price-list .elementor-price-list-image{max-width:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};flex-shrink:0;padding-right:25px}.elementor-price-list .elementor-price-list-image img{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-price-list .elementor-price-list-header,.elementor-price-list .elementor-price-list-item,.elementor-price-list .elementor-price-list-text{display:flex}.elementor-price-list .elementor-price-list-item{align-items:flex-start}.elementor-price-list .elementor-price-list-item .elementor-price-list-text{align-items:flex-start;flex-wrap:wrap;flex-grow:1}.elementor-price-list .elementor-price-list-item .elementor-price-list-header{align-items:center;flex-basis:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};font-size:19px;font-weight:600;margin-bottom:10px;justify-content:space-between}.elementor-price-list .elementor-price-list-item .elementor-price-list-title{max-width:80{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-price-list .elementor-price-list-item .elementor-price-list-price{font-weight:600}.elementor-price-list .elementor-price-list-item p.elementor-price-list-description{flex-basis:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};font-size:14px;margin:0}.elementor-price-list .elementor-price-list-item .elementor-price-list-separator{flex-grow:1;margin-left:10px;margin-right:10px;border-bottom-style:dotted;border-bottom-width:2px;height:0}.elementor-price-table{text-align:center}.elementor-price-table .elementor-price-table__header{background:var(--e-price-table-header-background-color,#555);padding:20px 0}.elementor-price-table .elementor-price-table__heading{margin:0;padding:0;line-height:1.2;font-size:24px;font-weight:600;color:#fff}.elementor-price-table .elementor-price-table__subheading{font-size:13px;font-weight:400;color:#fff}.elementor-price-table .elementor-price-table__original-price{margin-right:15px;text-decoration:line-through;font-size:.5em;line-height:1;font-weight:400;align-self:center}.elementor-price-table .elementor-price-table__original-price .elementor-price-table__currency{font-size:1em;margin:0}.elementor-price-table .elementor-price-table__price{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;flex-direction:row;color:#555;font-weight:800;font-size:65px;padding:40px 0}.elementor-price-table .elementor-price-table__price .elementor-typo-excluded{line-height:normal;letter-spacing:normal;text-transform:none;font-weight:400;font-size:medium;font-style:normal}.elementor-price-table .elementor-price-table__after-price{display:flex;flex-wrap:wrap;text-align:left;align-self:stretch;align-items:flex-start;flex-direction:column}.elementor-price-table .elementor-price-table__integer-part{line-height:.8}.elementor-price-table .elementor-price-table__currency,.elementor-price-table .elementor-price-table__fractional-part{line-height:1;font-size:.3em}.elementor-price-table .elementor-price-table__currency{margin-right:3px}.elementor-price-table .elementor-price-table__period{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};font-size:13px;font-weight:400}.elementor-price-table .elementor-price-table__features-list{list-style-type:none;margin:0;padding:0;line-height:1;color:var(--e-price-table-features-list-color)}.elementor-price-table .elementor-price-table__features-list li{font-size:14px;line-height:1;margin:0;padding:0}.elementor-price-table .elementor-price-table__features-list li .elementor-price-table__feature-inner{margin-left:15px;margin-right:15px}.elementor-price-table .elementor-price-table__features-list li:not(:first-child):before{content:\\\"\\\";display:block;border:0 solid hsla(0,0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05},47.8{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05},.3);margin:10px 12.5{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-price-table .elementor-price-table__features-list i{margin-right:10px;font-size:1.3em}.elementor-price-table .elementor-price-table__features-list svg{margin-right:10px;fill:var(--e-price-table-features-list-color);height:1.3em;width:1.3em}.elementor-price-table .elementor-price-table__features-list svg~*{vertical-align:text-top}.elementor-price-table .elementor-price-table__footer{padding:30px 0}.elementor-price-table .elementor-price-table__additional_info{margin:0;font-size:13px;line-height:1.4}.elementor-price-table__ribbon{position:absolute;top:0;left:auto;right:0;transform:rotate(90deg);width:150px;overflow:hidden;height:150px}.elementor-price-table__ribbon-inner{text-align:center;left:0;width:200{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};transform:translateY(-50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}) translateX(-50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}) translateX(35px) rotate(-45deg);margin-top:35px;font-size:13px;line-height:2;font-weight:800;text-transform:uppercase;background:#000}.elementor-price-table__ribbon.elementor-ribbon-left{transform:rotate(0);left:0;right:auto}.elementor-price-table__ribbon.elementor-ribbon-right{transform:rotate(90deg);left:auto;right:0}.elementor-widget-price-table .elementor-widget-container{overflow:hidden;background-color:#f9fafa}.e-con-inner>.elementor-widget-price-list,.e-con>.elementor-widget-price-list{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}<\\/style>ntt<ul>nttttttttt<li><a href=\\\"#\\\">ttttntttttttu09e9 u09aau09bfu09b8 u099fu09bf-u09b6u09beu09b0u09cdu099fu09c7u09b0 u09aeu09c2u09b2u09cdu09afttttttntttttttttttttttttttu09f31190nttttttttttttttt<p>ntttttttu09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u09aau09cdu09b0u09afu09cbu099cu09cdu09aftttttt<\\/p>ntttt<\\/a><\\/li>tttttntt<\\/ul>nttt<a href=\\\"#order\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>ttntttttttt<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ts-1-1-1.jpg\\\" alt=\\\"ts-1-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ts-18-B-1-1.jpg\\\" alt=\\\"ts-18-B-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ts-31-1-1.jpg\\\" alt=\\\"ts-31-1.jpg\\\" \\/><\\/figure>tttntttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>tttttntttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>tttttnttttttttttttttt<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1.jpeg 1024w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-300x300.jpeg 300w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-150x150.jpeg 150w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-768x768.jpeg 768w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-600x600.jpeg 600w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-100x100.jpeg 100w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttttnttt<h2>u09b8u09beu0987u099cu09c7 u09aau09cdu09b0u09acu09b2u09c7u09ae u09b9u09b2u09c7 u0985u09a5u09acu09be u0985u09a8u09cdu09af u0995u09cbu09a8 u09b8u09aeu09b8u09cdu09afu09beu09b0 u09b9u09b2u09c7 u09b0u09bfu09b0u09cdu099fu09beu09a8 u09acu09be u098fu0995u09cdu09b8u09c7u099au099eu09cdu099c u0995u09b0u09c7 u09a8u09bfu09a4u09c7 u09aau09beu09b0u09acu09c7u09a8 u09edu09a5u09c7u0995u09c7 u09e7u09e6 u09a6u09bfu09a8u09c7u09b0 u09adu09bfu09a4u09b0u09c7<\\/h2>ttnttt<h2>u09aau09cdu09b0u09dfu09cbu099cu09a8u09c7 u09abu09cbu09a8 u0995u09b0u09c1u09a8<\\/h2>ttnttt<a href=\\\"tel:+8801819000000\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>tttntttttt+8801819000000nttttt<\\/a>nttttttttttttttt<img width=\\\"1024\\\" height=\\\"538\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1.jpeg 1024w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1-300x158.jpeg 300w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1-768x404.jpeg 768w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1-600x315.jpeg 600w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttttnttt<h2>u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u09a8u09bfu099au09c7u09b0 u09abu09b0u09cdu09aeu099fu09bf u09aau09c2u09b0u09a8 u0995u09b0u09c1u09a8<\\/h2>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"u0986u09aau09a8u09beu09b0 u099cu09c7u09b2u09be,u09a5u09beu09a8u09be u0993 u09afu09c7 u09b2u09cbu0995u09c7u09b6u09a8 u09a5u09c7u0995u09c7 u09a8u09bfu09acu09c7u09a8 u0990 u098fu09b0u09bfu09dfu09beu09b0 u09a8u09beu09ae u09a6u09bfu09a8\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"90\\\"><label for=\\\"billing_phone\\\">u09aeu09cbu09acu09beu0987u09b2 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"110\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><strong>Bangladesh<\\/strong><input type=\\\"hidden\\\" name=\\\"billing_country\\\" id=\\\"billing_country\\\" value=\\\"BD\\\" autocomplete=\\\"country\\\" readonly=\\\"readonly\\\" \\/><\\/p><p id=\\\"billing_size_field\\\" data-priority=\\\"120\\\"><label for=\\\"billing_size_M\\\">u099fu09bfu09b6u09beu09b0u09cdu099fu09c7u09b0 u09b8u09beu0987u099c&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"radio\\\" value=\\\"M\\\" name=\\\"billing_size\\\"  id=\\\"billing_size_M\\\" \\/><label for=\\\"billing_size_M\\\">M<\\/label><input type=\\\"radio\\\" value=\\\"L\\\" name=\\\"billing_size\\\"  id=\\\"billing_size_L\\\" \\/><label for=\\\"billing_size_L\\\">L<\\/label><input type=\\\"radio\\\" value=\\\"XL\\\" name=\\\"billing_size\\\"  id=\\\"billing_size_XL\\\" \\/><label for=\\\"billing_size_XL\\\">XL<\\/label><input type=\\\"radio\\\" value=\\\"2XL\\\" name=\\\"billing_size\\\"  id=\\\"billing_size_2XL\\\" \\/><label for=\\\"billing_size_2XL\\\">2XL<\\/label><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"2358\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"2359\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1717802367\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>nttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;0.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;0.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8&nbsp;&nbsp;&#2547;&nbsp;0.00\\\" data-value=\\\"u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8&nbsp;&nbsp;&#2547;&nbsp;0.00\\\">u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8&nbsp;&nbsp;&#2547;&nbsp;0.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"d6ef7bffc8\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2> Copyright u00a9 2024  Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\\\"\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-16__trashed','','','2026-06-09 12:41:28','2026-06-09 06:41:28','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-16/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1891','17','2026-06-08 21:39:54','2026-06-08 15:39:54','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u099a\\u09bf\\u0982\\u09dc\\u09bf \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u201c\\u099a\\u09bf\\u0982\\u09dc\\u09bf \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993\\u201d \\u0996\\u09c1\\u09ac\\u0987 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09a6\\u09c1 \\u0993 \\u09ae\\u09c1\\u0996\\u09b0\\u09cb\\u099a\\u0995 \\u098f\\u0995\\u099f\\u09bf \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964 \\u09a8\\u09be\\u09ae\\u099f\\u09be \\u09af\\u09c7\\u09ae\\u09a8 \\u0985\\u09a8\\u09cd\\u09af\\u09b0\\u0995\\u09ae, \\u0996\\u09c7\\u09a4\\u09c7\\u0993 \\u0985\\u09b8\\u09ae\\u09cd\\u09ad\\u09ac \\u09ae\\u099c\\u09be\\u09a6\\u09be\\u09b0\\u0964 \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u098f\\u0995 \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b0 \\u09b0\\u09c7\\u09a1\\u09bf \\u099f\\u09c1 \\u0987\\u099f \\u09ab\\u09c1\\u09a1, \\u09af\\u09be \\u09ae\\u09c1\\u09b2\\u09a4 \\u099a\\u09bf\\u0982\\u09a1\\u09bc\\u09bf, \\u09aa\\u09c7\\u09af\\u09bc\\u09be\\u099c , \\u09b0\\u09b8\\u09c1\\u09a8, \\u09b6\\u09c1\\u0995\\u09a8\\u09cb \\u09ae\\u09b0\\u09bf\\u099a \\u0993 \\u09ae\\u09b6\\u09b2\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3\\u0964 \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u0995\\u0995\\u09cd\\u09b8\\u09ac\\u09be\\u099c\\u09be\\u09b0 \\u0993 \\u099a\\u099f\\u09cd\\u099f\\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09df \\u0990\\u09a4\\u09bf\\u09b9\\u09cd\\u09af\\u09ac\\u09be\\u09b9\\u09c0 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09b9\\u09cb\\u09ae \\u09ae\\u09c7\\u0987\\u09a1 \\u098f\\u09ac\\u0982 \\u09b0\\u09c7\\u09a1\\u09bf \\u099f\\u09c1 \\u0987\\u099f \\u09ab\\u09c1\\u09a1<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"687\\\" height=\\\"916\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1.jpeg 687w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1-225x300.jpeg 225w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1-600x800.jpeg 600w\\\" sizes=\\\"(max-width: 687px) 100vw, 687px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09bf \\u0995\\u09bf \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"250\\\" height=\\\"203\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/01m-1-1.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u099a\\u09bf\\u0982\\u09a1\\u09bc\\u09bf \\u09b6\\u09c1\\u099f\\u0995\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"250\\\" height=\\\"203\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/02m-1-1.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09c7\\u0981\\u09af\\u09bc\\u09be\\u099c \\u09ac\\u09c7\\u09b0\\u09c7\\u09b8\\u09cd\\u09a4\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"250\\\" height=\\\"203\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/03m-1-1.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09b0\\u09b8\\u09c1\\u09a8 \\u09ad\\u09be\\u099c\\u09be\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"250\\\" height=\\\"219\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/04m-1-1.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09ae\\u09b0\\u09bf\\u099a\\u09c7\\u09b0 \\u0997\\u09c1\\u0981\\u09dc\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"250\\\" height=\\\"203\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/05m-1-1.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09b8\\u09bf\\u0995\\u09cd\\u09b0\\u09c7\\u099f \\u09ae\\u09b6\\u09b2\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09af\\u09c7\\u09ad\\u09be\\u09ac\\u09c7 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09af\\u09bc<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09c1\\u09dc\\u09bf \\u09ae\\u09be\\u0996\\u09be \\u09ac\\u09be \\u09ae\\u09c1\\u09dc\\u09bf \\u09ad\\u09b0\\u09cd\\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09b2\\u09c1 \\u09ad\\u09b0\\u09cd\\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u09b6\\u09bf\\u09df\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09c7\\u0997\\u09c1\\u09a8 \\u09ad\\u09b0\\u09cd\\u09a4\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u09b6\\u09bf\\u09df\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0997\\u09b0\\u09ae \\u09a7\\u09cb\\u09df\\u09be \\u0993\\u09a0\\u09be \\u09b8\\u09be\\u09a6\\u09be \\u09ad\\u09be\\u09a4\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09be\\u09a8\\u09be\\u099a\\u09c1\\u09b0\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b8\\u09b0\\u09be\\u09b8\\u09b0\\u09bf\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0997\\u09b0\\u09ae \\u0997\\u09b0\\u09ae \\u0996\\u09c1\\u09a6\\u09c7\\u09b0 \\u09ad\\u09be\\u09a4\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ad\\u09c2\\u09a8\\u09be \\u0996\\u09bf\\u099a\\u09c1\\u09dc\\u09bf \\u0993 \\u09aa\\u09cb\\u09b2\\u09be\\u0993\\u09df\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"576\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1-1-1024x576.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1-1-1024x576.jpg 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1-1-300x169.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1-1-768x432.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1-1-600x338.jpg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/balachao-1-1.jpg 1280w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09eb\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u098f\\u09b0 \\u09aa\\u09c2\\u09b0\\u09cd\\u09ac\\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09ef\\u09eb\\u09e6 \\u098f\\u0996\\u09a8 \\u099b\\u09be\\u09dc\\u09c7 \\u09ee\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t<h2>\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u098f\\u09b0 \\u09aa\\u09c2\\u09b0\\u09cd\\u09ac\\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09e7\\u09ee\\u09e6\\u09e6 \\u098f\\u0996\\u09a8 \\u099b\\u09be\\u09dc\\u09c7 \\u09e7\\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8 ?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"64\\\" height=\\\"64\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/chef-1-1.png\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09ad\\u09bf\\u099c\\u09cd\\u099e \\u09ac\\u09be\\u09ac\\u09c1\\u09b0\\u09cd\\u099a\\u09bf\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c1\\u09b2\\u09be\\u09df \\u09a4\\u09c8\\u09b0\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"64\\\" height=\\\"64\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/house-1-1.png\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09b9\\u09cb\\u09ae\\u09ae\\u09c7\\u0987\\u09a1 \\u09aa\\u09cd\\u09b0\\u0995\\u09cd\\u09b0\\u09bf\\u09df\\u09be\\u09df \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"64\\\" height=\\\"64\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/shrimp-1-1-1.png\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09ac\\u09be\\u09b2\\u09c1\\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u099a\\u09bf\\u0982\\u09dc\\u09bf \\u09b6\\u09c1\\u099f\\u0995\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"64\\\" height=\\\"64\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/tasty-1-1.png\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09bf\\u099c\\u09bf\\u09a8\\u09be\\u09b2 \\u09ac\\u09be\\u09b2\\u09be\\u099a\\u09be\\u0993 \\u098f\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img data-src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.30-PM-1.jpeg\\\" alt=\\\"WhatsApp-Image-2023-09-13-at-3.02.30-PM-1.jpeg\\\" \\/><\\/figure><figure><img data-src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.30-PM.jpeg\\\" alt=\\\"WhatsApp-Image-2023-09-13-at-3.02.30-PM.jpeg\\\" \\/><\\/figure><figure><img data-src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.29-PM-2.jpeg\\\" alt=\\\"WhatsApp-Image-2023-09-13-at-3.02.29-PM-2.jpeg\\\" \\/><\\/figure><figure><img data-src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.29-PM-1.jpeg\\\" alt=\\\"WhatsApp-Image-2023-09-13-at-3.02.29-PM-1.jpeg\\\" \\/><\\/figure><figure><img data-src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.29-PM.jpeg\\\" alt=\\\"WhatsApp-Image-2023-09-13-at-3.02.29-PM.jpeg\\\" \\/><\\/figure><figure><img data-src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.28-PM-2.jpeg\\\" alt=\\\"WhatsApp-Image-2023-09-13-at-3.02.28-PM-2.jpeg\\\" \\/><\\/figure><figure><img data-src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-09-13-at-3.02.28-PM-1.jpeg\\\" alt=\\\"WhatsApp-Image-2023-09-13-at-3.02.28-PM-1.jpeg\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u099f\\u09be\\u0995\\u09be \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964 \\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a6\\u09c7\\u09df\\u09be \\u09b9\\u09df\\u0964<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>\\n\\t<input type=\\\"checkbox\\\"\\n\\tname=\\\"wcf-multiple-sel\\\"\\n\\tvalue=\\\"989\\\"  >\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;(optional)<\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u09b8\\u09ae\\u09cd\\u09aa\\u09c1\\u09b0\\u09cd\\u09a8 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;(optional)<\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u0983&nbsp;(optional)<\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"127\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"128\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717964873\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;900.00\\\">\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t  Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Store Checkout 02','','inherit','closed','closed','','1827-revision-v1','','','2026-06-08 21:39:54','2026-06-08 15:39:54','','1827','https://hypergrowth.fishgrowth.xyz/?p=1891','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1892','17','2026-06-08 21:40:05','2026-06-08 15:40:05','\"\\\"\\\"<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<p>u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u09b8u09aeu09cdu09aau09a8u09cdu09a8 u09b9u09dfu09c7u099bu09c7u0964 u0986u09aeu09beu09a6u09c7u09b0 u098fu0995u099cu09a8 u09aau09cdu09b0u09a4u09bfu09a8u09bfu09a7u09bf u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u0995u09a5u09be u09acu09b2u09c7 u0986u09aau09a8u09beu0995u09c7 u09acu09bfu09b8u09cdu09a4u09beu09b0u09bfu09a4 u099cu09beu09a8u09bfu09dfu09c7 u09a6u09bfu09acu09c7u09a8<\\/p>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>341<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>March 21, 2024<\\/strong>ntttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>3,150.00&#2547;&nbsp;<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttTiibaby rocking chair with music and vibration <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>3,150.00&#2547;&nbsp;<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>3,150.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Shipping:<\\/th>nttttttt<td>Free shipping<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>3,150.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\" style=\\\"color:red\\\">DPW<\\/a><\\/h2>\\\"\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-10__trashed','','','2026-06-09 12:42:04','2026-06-09 06:42:04','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-10/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1893','17','2026-06-08 21:40:05','2026-06-08 15:40:05','\"\\\"\\\"<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<p>u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u09b8u09aeu09cdu09aau09a8u09cdu09a8 u09b9u09dfu09c7u099bu09c7u0964 u0986u09aeu09beu09a6u09c7u09b0 u098fu0995u099cu09a8 u09aau09cdu09b0u09a4u09bfu09a8u09bfu09a7u09bf u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u0995u09a5u09be u09acu09b2u09c7 u0986u09aau09a8u09beu0995u09c7 u09acu09bfu09b8u09cdu09a4u09beu09b0u09bfu09a4 u099cu09beu09a8u09bfu09dfu09c7 u09a6u09bfu09acu09c7u09a8<\\/p>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>341<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>March 21, 2024<\\/strong>ntttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>3,150.00&#2547;&nbsp;<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttTiibaby rocking chair with music and vibration <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>3,150.00&#2547;&nbsp;<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>3,150.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Shipping:<\\/th>nttttttt<td>Free shipping<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>3,150.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\" style=\\\"color:red\\\">DPW<\\/a><\\/h2>\\\"\\\"\"','Thank You (Woo)','','inherit','closed','closed','','1892-revision-v1','','','2026-06-08 21:40:05','2026-06-08 15:40:05','','1892','https://hypergrowth.fishgrowth.xyz/?p=1893','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1894','17','2026-06-08 21:40:13','2026-06-08 15:40:13','','Coconut Chips','','publish','closed','closed','','coconut-chips','','','2026-06-08 21:40:13','2026-06-08 15:40:13','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=coconut-chips','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1895','17','2026-06-08 21:40:13','2026-06-08 15:40:13','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','publish','closed','closed','','sales-landing-13','','','2026-06-08 21:40:13','2026-06-08 15:40:13','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-13/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1896','17','2026-06-08 21:40:13','2026-06-08 15:40:13','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1895-revision-v1','','','2026-06-08 21:40:13','2026-06-08 15:40:13','','1895','https://hypergrowth.fishgrowth.xyz/?p=1896','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1897','17','2026-06-08 21:40:13','2026-06-08 15:40:13','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1254\" height=\"1254\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/79cb8f3c-5692-4e31-950d-e723a35373c3.png\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>পুরান ঢাকার বিখ্যাত কুড়মুড়ে নারিকেল ভাজা খাবেন তো মজা পাবেন</h2>		\n		<p>নারিকেল ভাজা, অনেকে এটাকে নারকেলি বলে থাকে। মুখোরোচক খাবার হিসেবে এটা অনেক জনপ্রিয় একটি খাবার।</p>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									অর্ডার করুন\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/79cb8f3c-5692-4e31-950d-e723a35373c3.png\" alt=\"79cb8f3c-5692-4e31-950d-e723a35373c3\" /></figure><figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/10a91c3c-afe2-4a7d-86bd-7edd27071144.png\" alt=\"10a91c3c-afe2-4a7d-86bd-7edd27071144\" /></figure>			\n													<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/79cb8f3c-5692-4e31-950d-e723a35373c3.png\" alt=\"\" />													\n			<h2>কুড়মুড়ে পুরান ঢাকার বিখ্যাত নারকেল ভাজা – ৪০০ গ্রাম ৫২০ টাকা</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									এখনই অর্ডার করুন\n					</a>\n													<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/10a91c3c-afe2-4a7d-86bd-7edd27071144.png\" alt=\"\" />													\n			<h2>কুড়মুড়ে পুরান ঢাকার বিখ্যাত নারকেল ভাজা – ৬০০ গ্রাম ৬৭০ টাকা</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									এখনই অর্ডার করুন\n					</a>\n													<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/79cb8f3c-5692-4e31-950d-e723a35373c3.png\" alt=\"\" />													\n			<h2>কুড়মুড়ে পুরান ঢাকার বিখ্যাত নারকেল ভাজা – ১ কেজি ১০২০ টাকা</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									এখনই অর্ডার করুন\n					</a>\n			<h2>প্রয়োজনে কল করুন বা কল করতে নিচের বাটনে ক্লিক করুন</h2>		\n			<a href=\"https://wa.me/+8801819000000\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\"></path></svg>			\n									01819000000\n					</a>\n			<h2>আমাদের থেকে কেন নিবেন?</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										ভেজালের এই সময় র্নিভেজাল একটি খাবার।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										ছোট থেকে বড় সবাই খেতে পাবরেন। \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										মন ভরে খাওয়া যায়,কারণ মিষ্টি কম দেয়া।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										বিকেলের নাস্তা বা মেহমানদারীতে অতুলনীয় ।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										নিজের জন্য বা প্রিয়জনকে উপহার দেওয়ার জন্য।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										এই নারিকেল ভাজার স্বাদ আপনাকে নিয়ে যাবে সেই ছোট্টবেলার স্মৃতির জগতে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										কুড়মুড়ে ও মচমচে ।\n									</li>\n						</ul>\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									অর্ডার করুন\n					</a>\n			<h2>যা দিয়ে তৈরি করা হয়?</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										কোন রকম কেমিক্যাল ছাড়া ঘরোয়া পরিবেশে সাস্থ্য সম্মত ভাবে তৈরি করা হয়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										দেশের বিভিন্ন অঞ্চল থেকে বাছাইকৃত  নারিকেল দ্বারা ও চিনি দিয়ে তৈরি করা হয়।\n									</li>\n						</ul>\n			<h2>সম্মানিত গ্রাহকদের রিভিউ</h2>		\n								<figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/10a91c3c-afe2-4a7d-86bd-7edd27071144.png\" alt=\"10a91c3c-afe2-4a7d-86bd-7edd27071144\" /></figure><figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/79cb8f3c-5692-4e31-950d-e723a35373c3.png\" alt=\"79cb8f3c-5692-4e31-950d-e723a35373c3\" /></figure>			\n						<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>					\n						<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>					\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									অর্ডার করুন\n					</a>\n			<h2>অর্ডার করার জন্য নিচের ফর্মটি পূরণ করুন-</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নাম&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"আপনার নাম\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">আপনার সম্পূর্ণ ঠিকানা&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"আপনার ঠিকানা লিখুন\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">আপনার ফোন নাম্বার&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"আপনার ফোন নাম্বার\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"1894\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"1897\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780987961\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n			<h2> Copyright © 2024  Busness Name | This website made with ❤️ by <a href=\"https://itgalaxi.com/\" style=\"color:red\"><b> The Smart Way</b></a></h2>','Checkout (Woo)','','publish','closed','closed','','checkout-woo-17','','','2026-06-09 12:53:54','2026-06-09 06:53:54','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-17/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1898','17','2026-06-08 21:40:19','2026-06-08 15:40:19','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-1.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-1.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-11__trashed','','','2026-06-09 12:37:04','2026-06-09 06:37:04','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-11/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1899','17','2026-06-08 21:40:19','2026-06-08 15:40:19','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-1.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-1.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\"','Thank You (Woo)','','inherit','closed','closed','','1898-revision-v1','','','2026-06-08 21:40:19','2026-06-08 15:40:19','','1898','https://hypergrowth.fishgrowth.xyz/?p=1899','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1900','17','2026-06-08 21:40:21','2026-06-08 15:40:21','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09e9 \\u09aa\\u09bf\\u09b8 \\u099f\\u09bf-\\u09b6\\u09be\\u09b0\\u09cd\\u099f \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e7\\u09ef\\u09e6<\\/h2>\\t\\t\\n\\t\\t<p>Premium Quality Jearsey T Shart Package \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u0995\\u0996\\u09a8\\u09cb \\u09b8\\u09b8\\u09cd\\u09a5\\u09be\\u09af\\u09bc \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09af\\u09bc \\u09a8\\u09be \\u09a4\\u09ac\\u09c1\\u0993 \\u0986\\u09ae\\u09b0\\u09be \\u098f\\u0987 \\u09ae\\u09c1\\u09b2\\u09cd\\u09af\\u09c7 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u00a0<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/youtu.be\\/1HtrB9hDve4\\t\\t\\n\\t\\t\\t<h2>ZOTO Always comfort<\\/h2>\\t\\t\\n\\t\\t<p>\\u0986\\u09ae\\u09b0\\u09be \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09bf\\u0995\\u09cd\\u09b8, \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf \\u098f\\u09ac\\u0982 \\u09b8\\u09c1\\u09df\\u09bf\\u0982 \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09bf\\u09a8\\u09cd\\u099f \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf, \\u09b8\\u09be\\u09a5\\u09c7 \\u09e7\\u09e6\\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09b0\\u09bf\\u09aa\\u09cd\\u09b2\\u09c7\\u09b8\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0964 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af \\u09ac\\u09bf\\u0995\\u09cd\\u09b0\\u09bf \\u09a8\\u09df, \\u0986\\u09ae\\u09b0\\u09be \\u099a\\u09be\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09c7\\u0995 \\u09ac\\u09bf\\u0995\\u09cd\\u09b0\\u09af\\u09bc\\u09a4\\u09cd\\u09ac\\u09b0 \\u09b8\\u09c7\\u09ac\\u09be \\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09be \\u098f\\u09ac\\u0982 \\u0986\\u09b0\\u0993 \\u09b8\\u09ac \\u09ac\\u09be\\u09b9\\u09be\\u09b0\\u09bf \\u09a1\\u09bf\\u099c\\u09be\\u0987\\u09a8 \\u098f\\u09ac\\u0982 \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u0989\\u09aa\\u09b9\\u09be\\u09b0 \\u09a6\\u09c7\\u09af\\u09bc\\u09be<\\/p>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor-pro - v3.12.1 - 02-04-2023 *\\/\\n.elementor-widget-price-list .elementor-price-list{list-style:none;padding:0;margin:0}.elementor-widget-price-list .elementor-price-list li{margin:0}.elementor-price-list li:not(:last-child){margin-bottom:20px}.elementor-price-list .elementor-price-list-image{max-width:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};flex-shrink:0;padding-right:25px}.elementor-price-list .elementor-price-list-image img{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-price-list .elementor-price-list-header,.elementor-price-list .elementor-price-list-item,.elementor-price-list .elementor-price-list-text{display:flex}.elementor-price-list .elementor-price-list-item{align-items:flex-start}.elementor-price-list .elementor-price-list-item .elementor-price-list-text{align-items:flex-start;flex-wrap:wrap;flex-grow:1}.elementor-price-list .elementor-price-list-item .elementor-price-list-header{align-items:center;flex-basis:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};font-size:19px;font-weight:600;margin-bottom:10px;justify-content:space-between}.elementor-price-list .elementor-price-list-item .elementor-price-list-title{max-width:80{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-price-list .elementor-price-list-item .elementor-price-list-price{font-weight:600}.elementor-price-list .elementor-price-list-item p.elementor-price-list-description{flex-basis:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};font-size:14px;margin:0}.elementor-price-list .elementor-price-list-item .elementor-price-list-separator{flex-grow:1;margin-left:10px;margin-right:10px;border-bottom-style:dotted;border-bottom-width:2px;height:0}.elementor-price-table{text-align:center}.elementor-price-table .elementor-price-table__header{background:var(--e-price-table-header-background-color,#555);padding:20px 0}.elementor-price-table .elementor-price-table__heading{margin:0;padding:0;line-height:1.2;font-size:24px;font-weight:600;color:#fff}.elementor-price-table .elementor-price-table__subheading{font-size:13px;font-weight:400;color:#fff}.elementor-price-table .elementor-price-table__original-price{margin-right:15px;text-decoration:line-through;font-size:.5em;line-height:1;font-weight:400;align-self:center}.elementor-price-table .elementor-price-table__original-price .elementor-price-table__currency{font-size:1em;margin:0}.elementor-price-table .elementor-price-table__price{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;flex-direction:row;color:#555;font-weight:800;font-size:65px;padding:40px 0}.elementor-price-table .elementor-price-table__price .elementor-typo-excluded{line-height:normal;letter-spacing:normal;text-transform:none;font-weight:400;font-size:medium;font-style:normal}.elementor-price-table .elementor-price-table__after-price{display:flex;flex-wrap:wrap;text-align:left;align-self:stretch;align-items:flex-start;flex-direction:column}.elementor-price-table .elementor-price-table__integer-part{line-height:.8}.elementor-price-table .elementor-price-table__currency,.elementor-price-table .elementor-price-table__fractional-part{line-height:1;font-size:.3em}.elementor-price-table .elementor-price-table__currency{margin-right:3px}.elementor-price-table .elementor-price-table__period{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};font-size:13px;font-weight:400}.elementor-price-table .elementor-price-table__features-list{list-style-type:none;margin:0;padding:0;line-height:1;color:var(--e-price-table-features-list-color)}.elementor-price-table .elementor-price-table__features-list li{font-size:14px;line-height:1;margin:0;padding:0}.elementor-price-table .elementor-price-table__features-list li .elementor-price-table__feature-inner{margin-left:15px;margin-right:15px}.elementor-price-table .elementor-price-table__features-list li:not(:first-child):before{content:\\\"\\\";display:block;border:0 solid hsla(0,0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05},47.8{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05},.3);margin:10px 12.5{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-price-table .elementor-price-table__features-list i{margin-right:10px;font-size:1.3em}.elementor-price-table .elementor-price-table__features-list svg{margin-right:10px;fill:var(--e-price-table-features-list-color);height:1.3em;width:1.3em}.elementor-price-table .elementor-price-table__features-list svg~*{vertical-align:text-top}.elementor-price-table .elementor-price-table__footer{padding:30px 0}.elementor-price-table .elementor-price-table__additional_info{margin:0;font-size:13px;line-height:1.4}.elementor-price-table__ribbon{position:absolute;top:0;left:auto;right:0;transform:rotate(90deg);width:150px;overflow:hidden;height:150px}.elementor-price-table__ribbon-inner{text-align:center;left:0;width:200{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};transform:translateY(-50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}) translateX(-50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}) translateX(35px) rotate(-45deg);margin-top:35px;font-size:13px;line-height:2;font-weight:800;text-transform:uppercase;background:#000}.elementor-price-table__ribbon.elementor-ribbon-left{transform:rotate(0);left:0;right:auto}.elementor-price-table__ribbon.elementor-ribbon-right{transform:rotate(90deg);left:auto;right:0}.elementor-widget-price-table .elementor-widget-container{overflow:hidden;background-color:#f9fafa}.e-con-inner>.elementor-widget-price-list,.e-con>.elementor-widget-price-list{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\n\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li><a href=\\\"#\\\">\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\u09e9 \\u09aa\\u09bf\\u09b8 \\u099f\\u09bf-\\u09b6\\u09be\\u09b0\\u09cd\\u099f\\u09c7\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09f31190\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p>\\n\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09aa\\u09cd\\u09b0\\u09af\\u09cb\\u099c\\u09cd\\u09af\\t\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t<\\/a><\\/li>\\t\\t\\t\\t\\t\\n\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1.jpeg 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-300x300.jpeg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-150x150.jpeg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-768x768.jpeg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-600x600.jpeg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-100x100.jpeg 100w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ts-1-1-1.jpg\\\" alt=\\\"ts-1-1-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ts-18-B-1-1.jpg\\\" alt=\\\"ts-18-B-1-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ts-31-1-1.jpg\\\" alt=\\\"ts-31-1-1.jpg\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09b8\\u09be\\u0987\\u099c\\u09c7 \\u09aa\\u09cd\\u09b0\\u09ac\\u09b2\\u09c7\\u09ae \\u09b9\\u09b2\\u09c7 \\u0985\\u09a5\\u09ac\\u09be \\u0985\\u09a8\\u09cd\\u09af \\u0995\\u09cb\\u09a8 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09b9\\u09b2\\u09c7 \\u09b0\\u09bf\\u09b0\\u09cd\\u099f\\u09be\\u09a8 \\u09ac\\u09be \\u098f\\u0995\\u09cd\\u09b8\\u09c7\\u099a\\u099e\\u09cd\\u099c \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09ed\\u09a5\\u09c7\\u0995\\u09c7 \\u09e7\\u09e6 \\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a4\\u09b0\\u09c7<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:+8801819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t+8801819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"538\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1.jpeg 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1-300x158.jpeg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1-768x404.jpeg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1-600x315.jpeg 600w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099c\\u09c7\\u09b2\\u09be,\\u09a5\\u09be\\u09a8\\u09be \\u0993 \\u09af\\u09c7 \\u09b2\\u09cb\\u0995\\u09c7\\u09b6\\u09a8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8 \\u0990 \\u098f\\u09b0\\u09bf\\u09df\\u09be\\u09b0 \\u09a8\\u09be\\u09ae \\u09a6\\u09bf\\u09a8\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"90\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"110\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_country\\\" id=\\\"billing_country\\\" autocomplete=\\\"country\\\" data-placeholder=\\\"Select a country \\/ region&hellip;\\\" data-label=\\\"Country \\/ Region\\\"><option value=\\\"\\\">Select a country \\/ region&hellip;<\\/option><option value=\\\"AF\\\" >Afghanistan<\\/option><option value=\\\"AX\\\" >\\u00c5land 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&ccedil;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&atilde;o Tom&eacute; and Pr&iacute;ncipe<\\/option><option value=\\\"BL\\\" >Saint Barth&eacute;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_size_field\\\" data-priority=\\\"120\\\"><label for=\\\"billing_size_M\\\">\\u099f\\u09bf\\u09b6\\u09be\\u09b0\\u09cd\\u099f\\u09c7\\u09b0 \\u09b8\\u09be\\u0987\\u099c&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"radio\\\" value=\\\"M\\\" name=\\\"billing_size\\\"  id=\\\"billing_size_M\\\" \\/><label for=\\\"billing_size_M\\\">M<\\/label><input type=\\\"radio\\\" value=\\\"L\\\" name=\\\"billing_size\\\"  id=\\\"billing_size_L\\\" checked=\'checked\' \\/><label for=\\\"billing_size_L\\\">L<\\/label><input type=\\\"radio\\\" value=\\\"XL\\\" name=\\\"billing_size\\\"  id=\\\"billing_size_XL\\\" \\/><label for=\\\"billing_size_XL\\\">XL<\\/label><input type=\\\"radio\\\" value=\\\"2XL\\\" name=\\\"billing_size\\\"  id=\\\"billing_size_2XL\\\" \\/><label for=\\\"billing_size_2XL\\\">2XL<\\/label><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"960\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"961\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717889958\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;900.00\\\">\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"edcba24797\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','inherit','closed','closed','','1888-revision-v1','','','2026-06-08 21:40:21','2026-06-08 15:40:21','','1888','https://hypergrowth.fishgrowth.xyz/?p=1900','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1901','17','2026-06-08 21:40:23','2026-06-08 15:40:23','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp 472w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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>u09e9 u09aau09bfu09b8 u099fu09bf-u09b6u09beu09b0u09cdu099f u09aeu09beu09a4u09cdu09b0 u09e7u09e7u09efu09e6<\\/h2>ttntt<p>Premium Quality Jearsey T Shart Package u0995u09cbu09afu09bcu09beu09b2u09bfu099fu09bf u09aau09cdu09b0u09cbu09a1u09beu0995u09cdu099f u0995u0996u09a8u09cb u09b8u09b8u09cdu09a5u09beu09afu09bc u09aau09beu0993u09afu09bcu09be u09afu09beu09afu09bc u09a8u09be u09a4u09acu09c1u0993 u0986u09aeu09b0u09be u098fu0987 u09aeu09c1u09b2u09cdu09afu09c7 u09a6u09bfu099au09cdu099bu09bf u09b8u09b0u09cdu09acu09cbu099au09cdu099a u0995u09cbu09afu09bcu09beu09b2u09bfu099fu09bfu00a0<\\/p>ttnttt<a href=\\\"#order\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>ntthttps:\\/\\/youtu.be\\/1HtrB9hDve4ttnttt<h2>ZOTO Always comfort<\\/h2>ttntt<p>u0986u09aeu09b0u09be u0995u09cbu09afu09bcu09beu09b2u09bfu099fu09bf u09abu09c7u09acu09cdu09b0u09bfu0995u09cdu09b8, u0995u09beu09b2u09beu09b0 u0997u09cdu09afu09beu09b0u09beu09a8u09cdu099fu09bf u098fu09acu0982 u09b8u09c1u09dfu09bfu0982 u0997u09cdu09afu09beu09b0u09beu09bfu09a8u09cdu099f u09a6u09bfu099au09cdu099bu09bf, u09b8u09beu09a5u09c7 u09e7u09e6u09a6u09bfu09a8u09c7u09b0 u09b0u09bfu09aau09cdu09b2u09c7u09b8u09aeu09c7u09a8u09cdu099f u0997u09cdu09afu09beu09b0u09beu09a8u09cdu099fu09bfu0964 u09b6u09c1u09a7u09c1 u09aau09a3u09cdu09af u09acu09bfu0995u09cdu09b0u09bf u09a8u09df, u0986u09aeu09b0u09be u099au09beu0987 u0986u09aau09a8u09beu09c7u0995 u09acu09bfu0995u09cdu09b0u09afu09bcu09a4u09cdu09acu09b0 u09b8u09c7u09acu09be u09a6u09beu09a8 u0995u09b0u09be u098fu09acu0982 u0986u09b0u0993 u09b8u09ac u09acu09beu09b9u09beu09b0u09bf u09a1u09bfu099cu09beu0987u09a8 u098fu09acu0982 u0995u09cbu09afu09bcu09beu09b2u09bfu099fu09bf u0989u09aau09b9u09beu09b0 u09a6u09c7u09afu09bcu09be<\\/p>ttnttt<style>\\/*! elementor-pro - v3.12.1 - 02-04-2023 *\\/n.elementor-widget-price-list .elementor-price-list{list-style:none;padding:0;margin:0}.elementor-widget-price-list .elementor-price-list li{margin:0}.elementor-price-list li:not(:last-child){margin-bottom:20px}.elementor-price-list .elementor-price-list-image{max-width:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};flex-shrink:0;padding-right:25px}.elementor-price-list .elementor-price-list-image img{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-price-list .elementor-price-list-header,.elementor-price-list .elementor-price-list-item,.elementor-price-list .elementor-price-list-text{display:flex}.elementor-price-list .elementor-price-list-item{align-items:flex-start}.elementor-price-list .elementor-price-list-item .elementor-price-list-text{align-items:flex-start;flex-wrap:wrap;flex-grow:1}.elementor-price-list .elementor-price-list-item .elementor-price-list-header{align-items:center;flex-basis:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};font-size:19px;font-weight:600;margin-bottom:10px;justify-content:space-between}.elementor-price-list .elementor-price-list-item .elementor-price-list-title{max-width:80{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-price-list .elementor-price-list-item .elementor-price-list-price{font-weight:600}.elementor-price-list .elementor-price-list-item p.elementor-price-list-description{flex-basis:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};font-size:14px;margin:0}.elementor-price-list .elementor-price-list-item .elementor-price-list-separator{flex-grow:1;margin-left:10px;margin-right:10px;border-bottom-style:dotted;border-bottom-width:2px;height:0}.elementor-price-table{text-align:center}.elementor-price-table .elementor-price-table__header{background:var(--e-price-table-header-background-color,#555);padding:20px 0}.elementor-price-table .elementor-price-table__heading{margin:0;padding:0;line-height:1.2;font-size:24px;font-weight:600;color:#fff}.elementor-price-table .elementor-price-table__subheading{font-size:13px;font-weight:400;color:#fff}.elementor-price-table .elementor-price-table__original-price{margin-right:15px;text-decoration:line-through;font-size:.5em;line-height:1;font-weight:400;align-self:center}.elementor-price-table .elementor-price-table__original-price .elementor-price-table__currency{font-size:1em;margin:0}.elementor-price-table .elementor-price-table__price{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;flex-direction:row;color:#555;font-weight:800;font-size:65px;padding:40px 0}.elementor-price-table .elementor-price-table__price .elementor-typo-excluded{line-height:normal;letter-spacing:normal;text-transform:none;font-weight:400;font-size:medium;font-style:normal}.elementor-price-table .elementor-price-table__after-price{display:flex;flex-wrap:wrap;text-align:left;align-self:stretch;align-items:flex-start;flex-direction:column}.elementor-price-table .elementor-price-table__integer-part{line-height:.8}.elementor-price-table .elementor-price-table__currency,.elementor-price-table .elementor-price-table__fractional-part{line-height:1;font-size:.3em}.elementor-price-table .elementor-price-table__currency{margin-right:3px}.elementor-price-table .elementor-price-table__period{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};font-size:13px;font-weight:400}.elementor-price-table .elementor-price-table__features-list{list-style-type:none;margin:0;padding:0;line-height:1;color:var(--e-price-table-features-list-color)}.elementor-price-table .elementor-price-table__features-list li{font-size:14px;line-height:1;margin:0;padding:0}.elementor-price-table .elementor-price-table__features-list li .elementor-price-table__feature-inner{margin-left:15px;margin-right:15px}.elementor-price-table .elementor-price-table__features-list li:not(:first-child):before{content:\\\"\\\";display:block;border:0 solid hsla(0,0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05},47.8{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05},.3);margin:10px 12.5{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-price-table .elementor-price-table__features-list i{margin-right:10px;font-size:1.3em}.elementor-price-table .elementor-price-table__features-list svg{margin-right:10px;fill:var(--e-price-table-features-list-color);height:1.3em;width:1.3em}.elementor-price-table .elementor-price-table__features-list svg~*{vertical-align:text-top}.elementor-price-table .elementor-price-table__footer{padding:30px 0}.elementor-price-table .elementor-price-table__additional_info{margin:0;font-size:13px;line-height:1.4}.elementor-price-table__ribbon{position:absolute;top:0;left:auto;right:0;transform:rotate(90deg);width:150px;overflow:hidden;height:150px}.elementor-price-table__ribbon-inner{text-align:center;left:0;width:200{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};transform:translateY(-50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}) translateX(-50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}) translateX(35px) rotate(-45deg);margin-top:35px;font-size:13px;line-height:2;font-weight:800;text-transform:uppercase;background:#000}.elementor-price-table__ribbon.elementor-ribbon-left{transform:rotate(0);left:0;right:auto}.elementor-price-table__ribbon.elementor-ribbon-right{transform:rotate(90deg);left:auto;right:0}.elementor-widget-price-table .elementor-widget-container{overflow:hidden;background-color:#f9fafa}.e-con-inner>.elementor-widget-price-list,.e-con>.elementor-widget-price-list{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}<\\/style>ntt<ul>nttttttttt<li><a href=\\\"#\\\">ttttntttttttu09e9 u09aau09bfu09b8 u099fu09bf-u09b6u09beu09b0u09cdu099fu09c7u09b0 u09aeu09c2u09b2u09cdu09afttttttntttttttttttttttttttu09f31190nttttttttttttttt<p>ntttttttu09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u09aau09cdu09b0u09afu09cbu099cu09cdu09aftttttt<\\/p>ntttt<\\/a><\\/li>tttttntt<\\/ul>nttt<a href=\\\"#order\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>ttntttttttt<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ts-1-1-1.jpg\\\" alt=\\\"ts-1-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ts-18-B-1-1.jpg\\\" alt=\\\"ts-18-B-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ts-31-1-1.jpg\\\" alt=\\\"ts-31-1.jpg\\\" \\/><\\/figure>tttntttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>tttttntttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>tttttnttttttttttttttt<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1.jpeg 1024w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-300x300.jpeg 300w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-150x150.jpeg 150w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-768x768.jpeg 768w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-600x600.jpeg 600w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-10.28.07-PM-1024x1024-1-100x100.jpeg 100w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttttnttt<h2>u09b8u09beu0987u099cu09c7 u09aau09cdu09b0u09acu09b2u09c7u09ae u09b9u09b2u09c7 u0985u09a5u09acu09be u0985u09a8u09cdu09af u0995u09cbu09a8 u09b8u09aeu09b8u09cdu09afu09beu09b0 u09b9u09b2u09c7 u09b0u09bfu09b0u09cdu099fu09beu09a8 u09acu09be u098fu0995u09cdu09b8u09c7u099au099eu09cdu099c u0995u09b0u09c7 u09a8u09bfu09a4u09c7 u09aau09beu09b0u09acu09c7u09a8 u09edu09a5u09c7u0995u09c7 u09e7u09e6 u09a6u09bfu09a8u09c7u09b0 u09adu09bfu09a4u09b0u09c7<\\/h2>ttnttt<h2>u09aau09cdu09b0u09dfu09cbu099cu09a8u09c7 u09abu09cbu09a8 u0995u09b0u09c1u09a8<\\/h2>ttnttt<a href=\\\"tel:+8801819000000\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>tttntttttt+8801819000000nttttt<\\/a>nttttttttttttttt<img width=\\\"1024\\\" height=\\\"538\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1.jpeg 1024w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1-300x158.jpeg 300w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1-768x404.jpeg 768w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/WhatsApp-Image-2024-02-24-at-11.13.45-PM-1024x538-1-600x315.jpeg 600w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttttnttt<h2>u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u09a8u09bfu099au09c7u09b0 u09abu09b0u09cdu09aeu099fu09bf u09aau09c2u09b0u09a8 u0995u09b0u09c1u09a8<\\/h2>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"u0986u09aau09a8u09beu09b0 u099cu09c7u09b2u09be,u09a5u09beu09a8u09be u0993 u09afu09c7 u09b2u09cbu0995u09c7u09b6u09a8 u09a5u09c7u0995u09c7 u09a8u09bfu09acu09c7u09a8 u0990 u098fu09b0u09bfu09dfu09beu09b0 u09a8u09beu09ae u09a6u09bfu09a8\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"90\\\"><label for=\\\"billing_phone\\\">u09aeu09cbu09acu09beu0987u09b2 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"110\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><strong>Bangladesh<\\/strong><input type=\\\"hidden\\\" name=\\\"billing_country\\\" id=\\\"billing_country\\\" value=\\\"BD\\\" autocomplete=\\\"country\\\" readonly=\\\"readonly\\\" \\/><\\/p><p id=\\\"billing_size_field\\\" data-priority=\\\"120\\\"><label for=\\\"billing_size_M\\\">u099fu09bfu09b6u09beu09b0u09cdu099fu09c7u09b0 u09b8u09beu0987u099c&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"radio\\\" value=\\\"M\\\" name=\\\"billing_size\\\"  id=\\\"billing_size_M\\\" \\/><label for=\\\"billing_size_M\\\">M<\\/label><input type=\\\"radio\\\" value=\\\"L\\\" name=\\\"billing_size\\\"  id=\\\"billing_size_L\\\" \\/><label for=\\\"billing_size_L\\\">L<\\/label><input type=\\\"radio\\\" value=\\\"XL\\\" name=\\\"billing_size\\\"  id=\\\"billing_size_XL\\\" \\/><label for=\\\"billing_size_XL\\\">XL<\\/label><input type=\\\"radio\\\" value=\\\"2XL\\\" name=\\\"billing_size\\\"  id=\\\"billing_size_2XL\\\" \\/><label for=\\\"billing_size_2XL\\\">2XL<\\/label><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"2358\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"2359\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1717802367\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>nttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;0.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;0.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8&nbsp;&nbsp;&#2547;&nbsp;0.00\\\" data-value=\\\"u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8&nbsp;&nbsp;&#2547;&nbsp;0.00\\\">u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8&nbsp;&nbsp;&#2547;&nbsp;0.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"d6ef7bffc8\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2> Copyright u00a9 2024  Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\\\"\"','Checkout (Woo)','','inherit','closed','closed','','1890-revision-v1','','','2026-06-08 21:40:23','2026-06-08 15:40:23','','1890','https://hypergrowth.fishgrowth.xyz/?p=1901','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1902','17','2026-06-08 21:40:29','2026-06-08 15:40:29','','Digital Timer Switch','','trash','closed','closed','','digital-timer-switch__trashed','','','2026-06-09 12:39:24','2026-06-09 06:39:24','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=digital-timer-switch','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1903','17','2026-06-08 21:40:29','2026-06-08 15:40:29','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-14__trashed','','','2026-06-09 12:39:24','2026-06-09 06:39:24','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-14/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1904','17','2026-06-08 21:40:29','2026-06-08 15:40:29','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1903-revision-v1','','','2026-06-08 21:40:29','2026-06-08 15:40:29','','1903','https://hypergrowth.fishgrowth.xyz/?p=1904','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1905','17','2026-06-08 21:40:29','2026-06-08 15:40:29','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 (Digital Timer Switch AC 220V ) \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09af\\u09c7\\u0995\\u09cb\\u09a8 \\u0987\\u09b2\\u09c7\\u0995\\u09cd\\u099f\\u09cd\\u09b0\\u09a8\\u09bf\\u0995\\u09cd\\u09b8 \\u09af\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b8\\u09ae\\u09df\\u09ae\\u09a4 \\u09ac\\u09a8\\u09cd\\u09a7 \\u0993 \\u099a\\u09be\\u09b2\\u09c1 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8, \\u09ac\\u09be\\u0981\\u099a\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u0985\\u09a8\\u09be\\u0995\\u09be\\u0999\\u09cd\\u0996\\u09bf\\u09a4 \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09a4\\u09c7\\u09b0 \\u0985\\u09aa\\u099a\\u09df\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\n\\t\\t\\t\\t\\t\\u09e7\\u09eb\\u09eb\\u09e6\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09e8\\u09e9{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}  \\u099b\\u09be\\u09dc\\u09c7 \\u0985\\u09ab\\u09be\\u09b0  \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\n\\t\\t\\t\\t\\t\\u09e7\\u09e7\\u09ef\\u09e6\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/428032616_122124272660149555_5864529653850465611_n-300x300.jpg\\\" alt=\\\"428032616_122124272660149555_5864529653850465611_n.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/428081984_122124272702149555_5743743261868910294_n-300x300.jpg\\\" alt=\\\"428081984_122124272702149555_5743743261868910294_n.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/428194276_122124272612149555_3814611115758490521_n-300x300.jpg\\\" alt=\\\"428194276_122124272612149555_3814611115758490521_n.jpg\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09af\\u09c7 \\u09b8\\u0995\\u09b2 \\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8\\u09c7 \\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 \\u09b8\\u09c1\\u0987\\u099a \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09c3\\u09a4 \\u098f\\u09df\\u09be\\u09b0\\u09c7\\u099f\\u09b0\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09aa\\u09be\\u09ae\\u09cd\\u09aa\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09bf\\u0995\\u09bf\\u0989\\u09b0\\u09bf\\u099f\\u09bf \\u09b2\\u09be\\u0987\\u099f\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b2\\u09be\\u0987\\u099f, \\u09ab\\u09cd\\u09af\\u09be\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09be\\u0997\\u09be\\u09a8, \\u0996\\u09be\\u09ae\\u09be\\u09b0 \\u09ac\\u09be \\u0995\\u09c3\\u09b7\\u09bf \\u09af\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09b9\\u09bf\\u099f\\u09be\\u09b0\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09bf\\u09b2 \\u09ac\\u09cb\\u09b0\\u09cd\\u09a1\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0995\\u09c1\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099f\\u09bf\\u09ad\\u09bf \\u0987\\u09a4\\u09cd\\u09af\\u09be\\u09a6\\u09bf\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=EhNJbwZ-NqU\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u0985\\u099f\\u09cb \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0\\u09c7\\u09b0\\u09b0 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u0986\\u09b0\\u09cb \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0:<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09af\\u09c7\\u0995\\u09cb\\u09a8 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09af\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u098f\\u099f\\u09bf\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be\\u09ae\\u09a4 On\\/Off \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u099f\\u09bf\\u09b0 \\u09b8\\u09be\\u09b9\\u09af\\u09cd\\u09af\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09be\\u09b0\\u09cd\\u09ae\\u09c7\\u09b0, \\u09ac\\u09be\\u09dc\\u09bf\\u09b0, \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09c7\\u09b0 \\u09ac\\u09be\\u09a4\\u09bf automitic \\u099c\\u09cd\\u09ac\\u09be\\u09b2\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09c7\\u099a \\u09aa\\u09be\\u09ae\\u09cd\\u09aa autometic \\u09ad\\u09be\\u09ac\\u09c7 \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09be\\u09b8\\u09be \\u09ac\\u09be\\u09dc\\u09bf\\u09b0 \\u09b8\\u09be\\u09ac\\u09ae\\u09be\\u09b0\\u09b8\\u09bf\\u09ac\\u09b2 \\u09aa\\u09be\\u09ae\\u09cd\\u09aa Autometic \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u09be\\u09b8\\u09cd\\u09a4\\u09be\\u09b0 \\u09ac\\u09be\\u09a4\\u09bf Autometic \\u099c\\u09cd\\u09ac\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09a8\\u09c7\\u09ad\\u09be\\u09a8\\u09cb\\u09b0 \\u0995\\u09be\\u099c\\u09c7 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tBiofloc \\u098f\\u09b0 Air pump Autometic On\\/Off \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u0995\\u09b0\\u09c7 \\u0985\\u09a4\\u09bf\\u09b0\\u09bf\\u0995\\u09cd\\u09a4 Air pump \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8 \\u09b9\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099b\\u09be\\u09a6 \\u09ac\\u09be\\u0997\\u09be\\u09a8\\u09c7 Autometic \\u09aa\\u09be\\u09a8\\u09bf \\u09a6\\u09c7\\u09ac\\u09be\\u09b0\\/\\u09b8\\u09c7\\u099a\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09aa\\u09be\\u09ae\\u09cd\\u09aa\\u09c7 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u09ae\\u099c\\u09be\\u09a8 \\u09ae\\u09be\\u09b8\\u09c7 \\u09ae\\u09b8\\u099c\\u09bf\\u09a6\\u09c7 \\u099a\\u09c7\\u09b9\\u09c7\\u09b0\\u09bf\\u09b0 \\u09b8\\u09ae\\u09df Autometic \\u09b8\\u09be\\u0987\\u09b0\\u09c7\\u09a8\\/\\u0997\\u099c\\u09b2 \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb\\u09b0 \\u0995\\u09be\\u099c\\u09c7 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09ae\\u09a4 Wifi Router On\\/Off \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ab\\u09cd\\u09b0\\u09bf\\u099c\\/\\u09b0\\u09c7\\u09ab\\u09cd\\u09b0\\u09bf\\u099c\\u09be\\u09b0\\u09c7\\u099f\\u09b0 \\u09b8\\u09ac\\u09b8\\u09ae\\u09df \\u099a\\u09b2\\u09a4\\u09c7 \\u09a5\\u09be\\u0995\\u09b2\\u09c7 \\u098f\\u099f\\u09bf\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09a8\\u09bf\\u09b0\\u09cd\\u09a6\\u09bf\\u09b8\\u09cd\\u099f \\u09b8\\u09ae\\u09df\\u09c7 On\\/Off \\u0995\\u09b0\\u09c7 \\u09ab\\u09cd\\u09b0\\u09c0\\u099c \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09af\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ab\\u09bf\\u099c \\u09a8\\u09a4\\u09c1\\u09a8\\u09c7\\u09b0 \\u09ae\\u09a4 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7 \\u0993 \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09ce \\u09ac\\u09bf\\u09b2 \\u0995\\u09ae \\u0986\\u09b8\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u09be\\u09b0\\u09be\\u09a4\\/\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09bf\\u09a8 \\/ \\u09ac\\u09c7\\u09b6\\u09c0 \\u09b8\\u09ae\\u09df \\u09a7\\u09b0\\u09c7 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u099a\\u09be\\u09b0\\u09cd\\u09af\\u09c7 \\u09b0\\u09be\\u0996\\u09b2\\u09c7 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09b8\\u09cd\\u099f \\u09ac\\u09be \\u09a6\\u09c1\\u09b0\\u09cd\\u0998\\u099f\\u09a8\\u09be \\u09b9\\u09ac\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ad\\u09be\\u09ac\\u09a8\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u099f\\u09bf\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09bf\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09df \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09c7 \\u099a\\u09be\\u09b0\\u09cd\\u09af \\u09a6\\u09c7\\u0993\\u09df\\u09be \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09be\\u09b8\\u09be, \\u09ac\\u09be\\u09dc\\u09bf\\u09b0 \\u09ac\\u09be\\u09a4\\u09bf, \\u09ab\\u09cd\\u09af\\u09be\\u09a8 \\u0987\\u09a4\\u09cd\\u09af\\u09be\\u09a6\\u09bf On\\/Off \\u0995\\u09b0\\u09be\\u09b0 \\u0995\\u09be\\u099c\\u09c7 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09be\\u09b0\\u09cd\\u099c\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09bf\\u09a4 \\u09b8\\u0995\\u09b2 \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b0 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09a8\\u09bf\\u0995\\u09cd\\u09b8 \\u09ac\\u09be\\u0987\\u0995 \\u0985\\u099f\\u09cb\\u09b0\\u09bf\\u0995\\u09b6\\u09be \\u09ad\\u09cd\\u09af\\u09be\\u09a8 \\u09a8\\u09bf\\u09b0\\u09cd\\u09a6\\u09bf\\u09b7\\u09cd\\u099f \\u099f\\u09be\\u0987\\u09ae \\u0985\\u09a8\\u09c1\\u09af\\u09be\\u09af\\u09bc\\u09c0 \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0995\\u09c1\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u0995\\u09b0\\u09be\\u09b0 \\u0995\\u09cd\\u09b7\\u09c7\\u09a4\\u09cd\\u09b0\\u09c7 \\u098f\\u0987 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 \\u09ae\\u09c7\\u09b6\\u09bf\\u09a8 \\u0996\\u09c1\\u09ac\\u0987 \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099f\\u09be\\u0987\\u09ae \\u0985\\u09a8\\u09c1\\u09af\\u09be\\u09af\\u09bc\\u09c0 \\u09b8\\u09c1\\u0987\\u099a \\u0985\\u09a8 \\u0985\\u09ab \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a5\\u09be\\u09ce \\u098f\\u09b0 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af\\u09c7 \\u09a6\\u09c8\\u09a8\\u09a8\\u09cd\\u09a6\\u09bf\\u09a8 \\u09ac\\u09b9\\u09c1\\u09b2 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09c3\\u09a4 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8\\u0997\\u09c1\\u09b2\\u09cb\\u0995\\u09c7 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09ae\\u09a4 \\u099f\\u09be\\u0987\\u09ae \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09c7 \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09af\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u0995\\u09cb\\u09a8 \\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8\\u0995\\u09c7 \\u09ac\\u09be\\u09b0 \\u09ac\\u09be\\u09b0 On\\/Off \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09df \\u09a8\\u09be\\u0964 \\u098f\\u099f\\u09bf\\u09a4\\u09c7 \\u098f\\u0995\\u09ac\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09b2\\u09c7\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09af\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\/\\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8\\u099f\\u09bf \\u09b8\\u09c7\\u0987 \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09be \\u09b8\\u09ae\\u09df \\u0985\\u09a8\\u09c1\\u09af\\u09be\\u09df\\u09c0 On\\/Off \\u09b9\\u09a4\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>*** \\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 ***<\\/h2>\\t\\t\\n\\t\\t<p>\\u09e7\\u09ec \\u099f\\u09bf \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u099c\\u09a8\\u0995 \\u0986\\u09b2\\u09be\\u09a6\\u09be \\u09b8\\u09ae\\u09df\\u09c7 ON\\/OFF \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964 \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09ce \\u099a\\u09b2\\u09c7 \\u0997\\u09c7\\u09b2\\u09c7\\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b8\\u09c7\\u09ad \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u0995\\u09ac\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09b2\\u09c7 \\u09a4\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u09a8\\u09be \\u0995\\u09b0\\u09be \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u0985\\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09bf\\u09a4 \\u09a5\\u09be\\u0995\\u09c7\\u0964\\u09ae\\u09cd\\u09af\\u09be\\u09a8\\u09c1\\u09df\\u09be\\u09b2 \\u09ae\\u09c1\\u09a1\\u09c7 \\u0985\\u09a8 \\u09ac\\u09be \\u0985\\u09ab \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09a6\\u09bf\\u09a8\\u09c7 ON\\/OFF \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\u0987\\u09a8\\u09cd\\u09b8\\u099f\\u09b2 \\u0995\\u09b0\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09b9\\u099c, \\u09aa\\u09cd\\u09b2\\u09be\\u0997 \\u09b2\\u09be\\u0997\\u09be\\u09a8\\u09cb \\u0986\\u099b\\u09c7\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 \\u09b8\\u09c1\\u0987\\u099a (Digital Timer Switch) \\u098f\\u09b0 \\u09ac\\u09bf\\u09ac\\u09b0\\u09a3\\u09c0:<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae: \\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 \\u09b8\\u09c1\\u0987\\u099a (Digital Timer Switch)\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09a6\\u09c7\\u09b6: \\u099a\\u09be\\u09df\\u09a8\\u09be\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ad\\u09cb\\u09b2\\u09cd\\u099f\\u09c7\\u099c: \\u09e8\\u09e8\\u09e6-\\u09e8\\u09ea\\u09e6 \\u09ad\\u09cb\\u09b2\\u09cd\\u099f\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u09c7\\u099f\\u09c7\\u09a1 \\u09aa\\u09be\\u0993\\u09df\\u09be\\u09b0: \\u09e8\\u09e9\\u09e6\\u09e6 \\u0993\\u09df\\u09be\\u099f\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ab\\u09cd\\u09b0\\u09bf\\u0995\\u09c1\\u09df\\u09c7\\u09a8\\u09cd\\u09b8\\u09bf : \\u09eb\\u09e6\\u09b9\\u09be\\u09b0\\u09cd\\u099c\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u0987\\u099c: \\u09e7\\u09e6.\\u09ebx\\u09ecx\\u09ea cm\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t \\u0993\\u099c\\u09a8: \\u09e7\\u09ea\\u09eb \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b2\\u09be\\u0997 \\u099f\\u09be\\u0987\\u09aa:\\u0987 \\u0987\\u0989 \\u09aa\\u09cd\\u09b2\\u09be\\u0997\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09bf \\u09ac\\u09cd\\u09af\\u09be\\u0995\\u0986\\u09aa: \\u09e7\\u09e8 V \\u2013 \\u09ee\\u09e6mAH\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09ce \\u09b8\\u09be\\u09b6\\u09cd\\u09b0\\u09df\\u09c0\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tLED Display \\u098f\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u0995\\u09a8\\u09cd\\u099f\\u09cd\\u09b0\\u09cb\\u09b2 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-4-1.png\\\" alt=\\\"img-4-1.png\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-1.png\\\" alt=\\\"img-2-1.png\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-3-1.png\\\" alt=\\\"img-3-1.png\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-5-1.png\\\" alt=\\\"img-5-1.png\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-1.png\\\" alt=\\\"img-1-1.png\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8, \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u0986\\u09aa\\u09a1\\u09c7\\u099f \\u09aa\\u09c7\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09c7\\u099c\\u099f\\u09bf \\u09ab\\u09b2\\u09cb \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"https:\\/\\/www.facebook.com\\/arabelectronicgadgets\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u099c\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<a href=\\\"https:\\/\\/wa.me\\/+8801819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"182\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"185\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717965628\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;0.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;0.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;0.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;0.00\\\">Place Order&nbsp;&nbsp;&#036;0.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-18__trashed','','','2026-06-09 12:39:24','2026-06-09 06:39:24','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-18/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1906','17','2026-06-08 21:40:54','2026-06-08 15:40:54','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09aa\\u09c1\\u09b0\\u09be\\u09a8 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 \\u0995\\u09c1\\u09dc\\u09ae\\u09c1\\u09dc\\u09c7 \\u09a8\\u09be\\u09b0\\u09bf\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be \\u0996\\u09be\\u09ac\\u09c7\\u09a8 \\u09a4\\u09cb \\u09ae\\u099c\\u09be \\u09aa\\u09be\\u09ac\\u09c7\\u09a8<\\/h2>\\t\\t\\n\\t\\t<p>\\u09a8\\u09be\\u09b0\\u09bf\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be, \\u0985\\u09a8\\u09c7\\u0995\\u09c7 \\u098f\\u099f\\u09be\\u0995\\u09c7 \\u09a8\\u09be\\u09b0\\u0995\\u09c7\\u09b2\\u09bf \\u09ac\\u09b2\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u09ae\\u09c1\\u0996\\u09cb\\u09b0\\u09cb\\u099a\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u098f\\u099f\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09df \\u098f\\u0995\\u099f\\u09bf \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/350X350-2-1-1.jpg\\\" alt=\\\"350X350-2-1-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/350X350-4-1-1.jpg\\\" alt=\\\"350X350-4-1-1.jpg\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3-1-300x300-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3-1-300x300-1.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3-1-300x300-1-150x150.jpg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/3-1-300x300-1-100x100.jpg 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09c1\\u09dc\\u09ae\\u09c1\\u09dc\\u09c7 \\u09aa\\u09c1\\u09b0\\u09be\\u09a8 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 \\u09a8\\u09be\\u09b0\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be \\u2013 \\u09ea\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09eb\\u09e8\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"500\\\" height=\\\"500\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5-2-1-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5-2-1-1.jpg 500w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5-2-1-1-300x300.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5-2-1-1-150x150.jpg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5-2-1-1-100x100.jpg 100w\\\" sizes=\\\"(max-width: 500px) 100vw, 500px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09c1\\u09dc\\u09ae\\u09c1\\u09dc\\u09c7 \\u09aa\\u09c1\\u09b0\\u09be\\u09a8 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 \\u09a8\\u09be\\u09b0\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be \\u2013 \\u09ec\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09ec\\u09ed\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"500\\\" height=\\\"500\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5-2-1-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5-2-1-1.jpg 500w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5-2-1-1-300x300.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5-2-1-1-150x150.jpg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5-2-1-1-100x100.jpg 100w\\\" sizes=\\\"(max-width: 500px) 100vw, 500px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09c1\\u09dc\\u09ae\\u09c1\\u09dc\\u09c7 \\u09aa\\u09c1\\u09b0\\u09be\\u09a8 \\u09a2\\u09be\\u0995\\u09be\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 \\u09a8\\u09be\\u09b0\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be \\u2013 \\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u09e7\\u09e6\\u09e8\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 \\u09ac\\u09be \\u0995\\u09b2 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"https:\\/\\/wa.me\\/+8801819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ad\\u09c7\\u099c\\u09be\\u09b2\\u09c7\\u09b0 \\u098f\\u0987 \\u09b8\\u09ae\\u09af\\u09bc \\u09b0\\u09cd\\u09a8\\u09bf\\u09ad\\u09c7\\u099c\\u09be\\u09b2 \\u098f\\u0995\\u099f\\u09bf \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099b\\u09cb\\u099f \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09a1\\u09bc \\u09b8\\u09ac\\u09be\\u0987 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09ac\\u09b0\\u09c7\\u09a8\\u0964 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09a8 \\u09ad\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09af\\u09bc,\\u0995\\u09be\\u09b0\\u09a3 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf \\u0995\\u09ae \\u09a6\\u09c7\\u09df\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09bf\\u0995\\u09c7\\u09b2\\u09c7\\u09b0 \\u09a8\\u09be\\u09b8\\u09cd\\u09a4\\u09be \\u09ac\\u09be \\u09ae\\u09c7\\u09b9\\u09ae\\u09be\\u09a8\\u09a6\\u09be\\u09b0\\u09c0\\u09a4\\u09c7 \\u0985\\u09a4\\u09c1\\u09b2\\u09a8\\u09c0\\u09af\\u09bc \\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09bf\\u09af\\u09bc\\u099c\\u09a8\\u0995\\u09c7 \\u0989\\u09aa\\u09b9\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0987 \\u09a8\\u09be\\u09b0\\u09bf\\u0995\\u09c7\\u09b2 \\u09ad\\u09be\\u099c\\u09be\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u09ac\\u09c7 \\u09b8\\u09c7\\u0987 \\u099b\\u09cb\\u099f\\u09cd\\u099f\\u09ac\\u09c7\\u09b2\\u09be\\u09b0 \\u09b8\\u09cd\\u09ae\\u09c3\\u09a4\\u09bf\\u09b0 \\u099c\\u0997\\u09a4\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09c1\\u09a1\\u09bc\\u09ae\\u09c1\\u09a1\\u09bc\\u09c7 \\u0993 \\u09ae\\u099a\\u09ae\\u099a\\u09c7 \\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09af\\u09be \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09cb\\u09a8 \\u09b0\\u0995\\u09ae \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u099b\\u09be\\u09a1\\u09bc\\u09be \\u0998\\u09b0\\u09cb\\u09df\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09b8\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u0985\\u099e\\u09cd\\u099a\\u09b2 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4  \\u09a8\\u09be\\u09b0\\u09bf\\u0995\\u09c7\\u09b2 \\u09a6\\u09cd\\u09ac\\u09be\\u09b0\\u09be \\u0993 \\u099a\\u09bf\\u09a8\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09b8\\u09ae\\u09cd\\u09ae\\u09be\\u09a8\\u09bf\\u09a4 \\u0997\\u09cd\\u09b0\\u09be\\u09b9\\u0995\\u09a6\\u09c7\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8-<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09a8\\u09bf\\u09b0\\u09cd\\u09a7\\u09be\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 <\\/h3>\\n\\t<input type=\\\"radio\\\"\\n\\tid=\\\"wcf-item-product-989\\\"\\n\\tname=\\\"wcf-single-sel\\\" \\n\\tvalue=\\\"989\\\"\\n\\t>\\n\\t<label for=\\\"wcf-item-product-989\\\"><\\/label>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-100x100.webp 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"166\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"169\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717965469\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;0.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;0.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;0.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;0.00\\\">Place Order&nbsp;&nbsp;&#036;0.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','inherit','closed','closed','','1897-revision-v1','','','2026-06-08 21:40:54','2026-06-08 15:40:54','','1897','https://hypergrowth.fishgrowth.xyz/?p=1906','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1907','17','2026-06-08 21:41:01','2026-06-08 15:41:01','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>Classy Trimmer combo T0 786<\\/h2>\\t\\t\\n\\t\\t<p>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099a\\u09c1\\u09b2 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09a6\\u09be\\u09a1\\u09bc\\u09bf \\u0995\\u09be\\u099f\\u09be\\u09b0 \\u09b8\\u09b9\\u099c \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u098f\\u0987 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0 \\u099f\\u09bf , \\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09e7 \\u09ac\\u099b\\u09b0\\u09c7\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u09b0\\u09c7\\u09a8\\u09cd\\u099f\\u09bf\\u0964 \\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09b8\\u09be\\u0987\\u099c\\u09c7 \\u099a\\u09c1\\u09b2 \\u0993 \\u09a6\\u09be\\u09a1\\u09bc\\u09bf \\u0995\\u09be\\u099f\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u09a4\\u09c7\\u0981 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u0986\\u099b\\u09c7 \\u09ea \\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09aa ,\\u09af\\u09be\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 0.8 mm \\u09a5\\u09c7\\u0995\\u09c7 12mm \\u0995\\u09be\\u099f\\u09be \\u09af\\u09be\\u09ac\\u09c7 \\u0964\\u09b6\\u09c1\\u09a7\\u09c1 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0\\u0987 \\u09a8\\u09af\\u09bc \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7 \\u0986\\u09b0\\u0993 \\u09ae\\u09cb\\u099f \\u09ef \\u099f\\u09bf \\u0986\\u0987\\u099f\\u09c7\\u09ae (\\u09ea \\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09aa , \\u099a\\u09bf\\u09b0\\u09c1\\u09a8\\u09bf , \\u099a\\u09be\\u09b0\\u09cd\\u099c\\u09be\\u09b0 , \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09bf\\u0982 \\u09ac\\u09cd\\u09b0\\u09be\\u09b6 , \\u0985\\u09df\\u09c7\\u09b2 , \\u09ab\\u09cb\\u09ae )<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/philips-bt3302-15-beard-trimmer-for-men.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/philips-bt3302-15-beard-trimmer-for-men.webp 800w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/philips-bt3302-15-beard-trimmer-for-men-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/philips-bt3302-15-beard-trimmer-for-men-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/philips-bt3302-15-beard-trimmer-for-men-768x768.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/philips-bt3302-15-beard-trimmer-for-men-600x600.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/philips-bt3302-15-beard-trimmer-for-men-100x100.webp 100w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/f217d2eb2c91417d80ffae77013d622c-1024x1024.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/f217d2eb2c91417d80ffae77013d622c-1024x1024.webp 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/f217d2eb2c91417d80ffae77013d622c-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/f217d2eb2c91417d80ffae77013d622c-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/f217d2eb2c91417d80ffae77013d622c-768x768.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/f217d2eb2c91417d80ffae77013d622c-600x600.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/f217d2eb2c91417d80ffae77013d622c-100x100.webp 100w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/f217d2eb2c91417d80ffae77013d622c.webp 1250w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t<p>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099a\\u09c1\\u09b2 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09a6\\u09be\\u09a1\\u09bc\\u09bf \\u0995\\u09be\\u099f\\u09be\\u09b0 \\u09b8\\u09b9\\u099c \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u098f\\u0987 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0 \\u099f\\u09bf , \\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09e7 \\u09ac\\u099b\\u09b0\\u09c7\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u09b0\\u09c7\\u09a8\\u09cd\\u099f\\u09bf \\u0964\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09b8\\u09be\\u0987\\u099c\\u09c7 \\u099a\\u09c1\\u09b2 \\u0993 \\u09a6\\u09be\\u09a1\\u09bc\\u09bf \\u0995\\u09be\\u099f\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u09a4\\u09c7\\u0981 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u0986\\u099b\\u09c7 \\u09ea \\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09aa ,\\u09af\\u09be\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 0.8 mm \\u09a5\\u09c7\\u0995\\u09c7 12mm \\u0995\\u09be\\u099f\\u09be \\u09af\\u09be\\u09ac\\u09c7 \\u0964\\u09b6\\u09c1\\u09a7\\u09c1 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0\\u0987 \\u09a8\\u09af\\u09bc \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7 \\u0986\\u09b0\\u0993 \\u09ae\\u09cb\\u099f \\u09ef \\u099f\\u09bf \\u0986\\u0987\\u099f\\u09c7\\u09ae (\\u09ea \\u099f\\u09bf \\u0995\\u09cd\\u09b2\\u09bf\\u09aa , \\u099a\\u09bf\\u09b0\\u09c1\\u09a8\\u09bf , \\u099a\\u09be\\u09b0\\u09cd\\u099c\\u09be\\u09b0 , \\u0995\\u09cd\\u09b2\\u09bf\\u09a8\\u09bf\\u0982 \\u09ac\\u09cd\\u09b0\\u09be\\u09b6 , \\u0985\\u09df\\u09c7\\u09b2 , \\u09ab\\u09cb\\u09ae )<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"600\\\" height=\\\"503\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Adapter-and-battery-1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Adapter-and-battery-1.png 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Adapter-and-battery-1-300x252.png 300w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09e8 \\u0998\\u09a8\\u09cd\\u099f\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09bf \\u09ac\\u09cd\\u09af\\u09be\\u0995\\u0986\\u09aa<\\/h2>\\t\\t\\n\\t\\t<p>\\u098f\\u0995 \\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09df\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u099f\\u09be\\u09a8\\u09be \\u09e8\\u0998\\u09a8\\u09cd\\u099f\\u09be\\u0964 \\u098f\\u0987 \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0\\u099f\\u09bf\\u09a4\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u09ac\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09c0\\u0964 \\u098f\\u099f\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09c7\\u09b8\\u09cd\\u099f \\u099a\\u09df\\u09c7\\u099c \\u099f\\u09cd\\u09b0\\u09bf\\u09ae\\u09be\\u09b0\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09b8\\u09bf\\u09b0\\u09be\\u09ae\\u09bf\\u0995 \\u09ac\\u09cd\\u09b2\\u09c7\\u09a1<\\/h2>\\t\\t\\n\\t\\t<p>\\u09b8\\u09bf\\u09b0\\u09be\\u09ae\\u09bf\\u0995 \\u09ac\\u09cd\\u09b2\\u09c7\\u09a1 \\u098f\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 \\u098f\\u0987 \\u09b2\\u09c7\\u0996\\u09be \\u099f\\u09be \\u09b9\\u09ac\\u09c7 \\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u098f\\u09b8\\u09c7\\u099b\\u09bf \\u09b8\\u09bf\\u09b0\\u09be\\u09ae\\u09bf\\u0995 \\u09ac\\u09cd\\u09b2\\u09c7\\u09a1 , \\u098f\\u09b0 \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7\\u09a4\\u09cd\\u09ac \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u098f\\u099f\\u09bf \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0995\\u09cb\\u09a8\\u09cb \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u0995\\u09b0\\u09c7 \\u09a8\\u09be \\u0993 \\u09b8\\u09cd\\u099f\\u09bf\\u09b2 \\u098f\\u09b0 \\u09ac\\u09cd\\u09b2\\u09c7\\u09a1 \\u098f\\u09b0 \\u09ae\\u09a4 \\u0995\\u09c7\\u099f\\u09c7 \\u09af\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u0995\\u09cb\\u09a8\\u09cb \\u09b8\\u09ae\\u09cd\\u09ad\\u09be\\u09ac\\u09a8\\u09be \\u09a8\\u09c7\\u0987 \\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/4-1024x1024.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/4-1024x1024.png 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/4-300x300.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/4-150x150.png 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/4-768x768.png 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/4-600x600.png 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/4-100x100.png 100w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/ai-image-20260605-123751-a9e804e2ec1e284627804334.png 1080w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/433898718_288137447637810_2435037710483055314_n-1.jpg\\\" alt=\\\"433898718_288137447637810_2435037710483055314_n-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/433234049_288137364304485_6792386511423881034_n-1.jpg\\\" alt=\\\"433234049_288137364304485_6792386511423881034_n-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/433059906_288137397637815_8185707815567624270_n-1.jpg\\\" alt=\\\"433059906_288137397637815_8185707815567624270_n-1.jpg\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\n\\t\\t\\t\\t\\u09e7\\u09e6\\u09ef\\u09ef&nbsp;\\/=\\t\\t\\t\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_country\\\" id=\\\"billing_country\\\" autocomplete=\\\"country\\\" data-placeholder=\\\"Select a country \\/ region&hellip;\\\" data-label=\\\"Country \\/ Region\\\"><option value=\\\"\\\">Select a country \\/ region&hellip;<\\/option><option value=\\\"AF\\\" >Afghanistan<\\/option><option value=\\\"AX\\\" >\\u00c5land 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&ccedil;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&atilde;o Tom&eacute; and Pr&iacute;ncipe<\\/option><option value=\\\"BL\\\" >Saint Barth&eacute;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\\\">\\u09b6\\u09bf\\u09aa\\u09bf\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a1\\u09a1\\u09cd\\u09b0\\u09c7\\u09b8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u099f\\u09bf \\u09b2\\u09c7\\u0996\\u09c1\\u09a8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"937\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"940\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>\\n\\t\\tProduct\\n\\t\\tQuantity\\n\\t\\tPrice\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717889892\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"edcba24797\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Checkout (Woo)','','inherit','closed','closed','','1886-revision-v1','','','2026-06-08 21:41:01','2026-06-08 15:41:01','','1886','https://hypergrowth.fishgrowth.xyz/?p=1907','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1908','17','2026-06-08 21:41:01','2026-06-08 15:41:01','\"\\\"\\\"<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09beu09b0 u099cu09a8u09cdu09af u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttntt<p>u0986u09aeu09beu09a6u09c7u09b0 u098fu0995u099cu09a8 u09aau09cdu09b0u09a4u09bfu09a8u09bfu09a7u09bf u0996u09c1u09ac u09b6u09c0u0998u09cdu09b0u0987 u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09c7 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u0995u09a8u09abu09beu09b0u09cdu09ae u0995u09b0u09acu09c7u09a8u0964<\\/p>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>603<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>March 24, 2024<\\/strong>ntttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>750.00&#2547;&nbsp;<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttu0995u09c1u09dcu09aeu09c1u09dcu09c7 u09aau09c1u09b0u09beu09a8 u09a2u09beu0995u09beu09b0 u09acu09bfu0996u09cdu09afu09beu09a4 u09a8u09beu09b0u0995u09c7u09b2 <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>750.00&#2547;&nbsp;<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Shipping:<\\/th>nttttttt<td>Free shipping<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>nttt<h2>u0986u09aeu09beu09a6u09c7u09b0 u0997u09cdu09b0u09c1u09aau09c7 u09afu09c1u0995u09cdu09a4 u09b9u09b2u09c7u0987 u09e7u09e6u09e6 u099fu09beu0995u09be u09a1u09bfu09b8u0995u09beu0989u09a8u09cdu099f<\\/h2>ttntt<p>u09a8u09bfu09dfu09aeu09bfu09a4 u0986u09aau09a1u09c7u099f u09aau09c7u09a4u09c7 u0986u09aeu09beu09a6u09c7u09b0 u09abu09c7u09b8u09acu09c1u0995 u09aau09c7u0987u099c u0993 u09abu09c7u09b8u09acu09c1u0995 u0997u09cdu09b0u09c1u09aau09c7u09b0 u09b8u09beu09a5u09c7 u09afu09c1u0995u09cdu09a4 u09a5u09beu0995u09c1u09a8u0964<\\/p>ttnttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\\\"><\\/path><\\/svg>tttnttttttu0986u09aeu09beu09a6u09c7u09b0 u09abu09c7u09b8u09acu09c1u0995 u09aau09c7u099cnttttt<\\/a>nttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 640 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z\\\"><\\/path><\\/svg>tttnttttttu098fu0996u09a8u0987 u09abu09c7u09b8u09acu09c1u0995 u0997u09c1u09aau09c7 u09afu09c1u0995u09cdu09a4 u09b9u09cbu09a8nttttt<\\/a>nttt<a href=\\\"#\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">nttttttu0986u09b0u09cb u0985u09a8u09c7u0995 u09aau09cdu09b0u09a1u09beu0995u09cdu099f u09a6u09c7u0996u09a4u09c7 u09adu09bfu099cu09bfu099f u0995u09b0u09c1u09a8nttttt<\\/a>nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\" style=\\\"color:red\\\">DPW<\\/a><\\/h2>\\\"\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-12__trashed','','','2026-06-09 12:41:44','2026-06-09 06:41:44','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-12/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1909','17','2026-06-08 21:41:01','2026-06-08 15:41:01','\"\\\"\\\"<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09beu09b0 u099cu09a8u09cdu09af u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttntt<p>u0986u09aeu09beu09a6u09c7u09b0 u098fu0995u099cu09a8 u09aau09cdu09b0u09a4u09bfu09a8u09bfu09a7u09bf u0996u09c1u09ac u09b6u09c0u0998u09cdu09b0u0987 u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09c7 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u0995u09a8u09abu09beu09b0u09cdu09ae u0995u09b0u09acu09c7u09a8u0964<\\/p>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>603<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>March 24, 2024<\\/strong>ntttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>750.00&#2547;&nbsp;<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttu0995u09c1u09dcu09aeu09c1u09dcu09c7 u09aau09c1u09b0u09beu09a8 u09a2u09beu0995u09beu09b0 u09acu09bfu0996u09cdu09afu09beu09a4 u09a8u09beu09b0u0995u09c7u09b2 <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>750.00&#2547;&nbsp;<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Shipping:<\\/th>nttttttt<td>Free shipping<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>nttt<h2>u0986u09aeu09beu09a6u09c7u09b0 u0997u09cdu09b0u09c1u09aau09c7 u09afu09c1u0995u09cdu09a4 u09b9u09b2u09c7u0987 u09e7u09e6u09e6 u099fu09beu0995u09be u09a1u09bfu09b8u0995u09beu0989u09a8u09cdu099f<\\/h2>ttntt<p>u09a8u09bfu09dfu09aeu09bfu09a4 u0986u09aau09a1u09c7u099f u09aau09c7u09a4u09c7 u0986u09aeu09beu09a6u09c7u09b0 u09abu09c7u09b8u09acu09c1u0995 u09aau09c7u0987u099c u0993 u09abu09c7u09b8u09acu09c1u0995 u0997u09cdu09b0u09c1u09aau09c7u09b0 u09b8u09beu09a5u09c7 u09afu09c1u0995u09cdu09a4 u09a5u09beu0995u09c1u09a8u0964<\\/p>ttnttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\\\"><\\/path><\\/svg>tttnttttttu0986u09aeu09beu09a6u09c7u09b0 u09abu09c7u09b8u09acu09c1u0995 u09aau09c7u099cnttttt<\\/a>nttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 640 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z\\\"><\\/path><\\/svg>tttnttttttu098fu0996u09a8u0987 u09abu09c7u09b8u09acu09c1u0995 u0997u09c1u09aau09c7 u09afu09c1u0995u09cdu09a4 u09b9u09cbu09a8nttttt<\\/a>nttt<a href=\\\"#\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">nttttttu0986u09b0u09cb u0985u09a8u09c7u0995 u09aau09cdu09b0u09a1u09beu0995u09cdu099f u09a6u09c7u0996u09a4u09c7 u09adu09bfu099cu09bfu099f u0995u09b0u09c1u09a8nttttt<\\/a>nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\" style=\\\"color:red\\\">DPW<\\/a><\\/h2>\\\"\\\"\"','Thank You (Woo)','','inherit','closed','closed','','1908-revision-v1','','','2026-06-08 21:41:01','2026-06-08 15:41:01','','1908','https://hypergrowth.fishgrowth.xyz/?p=1909','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1910','17','2026-06-08 21:41:02','2026-06-08 15:41:02','','Eid Shirts','','trash','closed','closed','','eid-shirts__trashed','','','2026-06-09 12:40:59','2026-06-09 06:40:59','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=eid-shirts','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1911','17','2026-06-08 21:41:02','2026-06-08 15:41:02','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-15__trashed','','','2026-06-09 12:40:59','2026-06-09 06:40:59','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-15/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1912','17','2026-06-08 21:41:02','2026-06-08 15:41:02','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1911-revision-v1','','','2026-06-08 21:41:02','2026-06-08 15:41:02','','1911','https://hypergrowth.fishgrowth.xyz/?p=1912','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1913','17','2026-06-08 21:41:02','2026-06-08 15:41:02','\"\\\"\\\"<style>\\\\\\/*! elementor - v3.20.0 - 20-03-2024 *\\\\\\/\\\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\\\\\".svg\\\\\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\\\\\/style>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<img width=\\\\\\\"500\\\\\\\" height=\\\\\\\"500\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/Test-Logo.png\\\\\\\" alt=\\\\\\\"\\\\\\\" srcset=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/Test-Logo.png 500w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/Test-Logo-300x300.png 300w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/Test-Logo-150x150.png 150w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/Test-Logo-400x400.png 400w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/elementor\\\\\\/thumbs\\\\\\/Test-Logo-qlgjn7dvi44bql5if66j7dolg9mi1ktt1m22gmqy20.png 100w\\\\\\\" sizes=\\\\\\\"(max-width: 500px) 100vw, 500px\\\\\\\" \\\\\\/>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<style>\\\\\\/*! elementor - v3.20.0 - 20-03-2024 *\\\\\\/\\\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\\\\\/style><h2>\\\\u0995\\\\u09c7\\\\u099c\\\\u09c1\\\\u09af\\\\u09bc\\\\u09be\\\\u09b2 \\\\u0986\\\\u0989\\\\u099f\\\\u09ab\\\\u09bf\\\\u099f \\\\u0985\\\\u09ab\\\\u09bf\\\\u09b8 \\\\u0985\\\\u09a5\\\\u09ac\\\\u09be \\\\u09b8\\\\u09ac \\\\u09b0\\\\u0995\\\\u09ae \\\\u09aa\\\\u09cd\\\\u09b0\\\\u09cb\\\\u0997\\\\u09cd\\\\u09b0\\\\u09be\\\\u09ae\\\\u09c7\\\\u09b0 \\\\u099c\\\\u09a8\\\\u09cd\\\\u09af \\\\u0985\\\\u09a5\\\\u09ac\\\\u09be \\\\u0995\\\\u09b2\\\\u09c7\\\\u099c \\\\u0987\\\\u0989\\\\u09a8\\\\u09bf\\\\u09ad\\\\u09be\\\\u09b0\\\\u09cd\\\\u09b8\\\\u09bf\\\\u099f\\\\u09bf \\\\u09b8\\\\u09ac \\\\u09b8\\\\u09ae\\\\u09af\\\\u09bc\\\\u09c7\\\\u09b0 \\\\u099c\\\\u09a8\\\\u09cd\\\\u09af \\\\u09ac\\\\u09c7\\\\u09b8\\\\u09cd\\\\u099f \\\\u09ac\\\\u09c7\\\\u09b7\\\\u09cd\\\\u099f \\\\u0995\\\\u09c7\\\\u099c\\\\u09c1\\\\u09df\\\\u09be\\\\u09b2 \\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f \\\\u0995\\\\u09be\\\\u09b2\\\\u09c7\\\\u0995\\\\u09b6\\\\u09a8  \\\\u099c\\\\u0997\\\\u09be\\\\u09b0 \\\\u0986\\\\u0989\\\\u099f\\\\u09ab\\\\u09bf\\\\u099f\\\\u0964 <\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2><del>\\\\u0986\\\\u0997\\\\u09c7\\\\u09b0 \\\\u09ae\\\\u09c2\\\\u09b2\\\\u09cd\\\\u09af\\\\u0983 \\\\u09e7\\\\u09ea\\\\u09e6\\\\u09e6 \\\\u099f\\\\u09be\\\\u0995\\\\u09be<\\\\\\/del><\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<link rel=\\\\\\\"stylesheet\\\\\\\" href=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/plugins\\\\\\/pro-elements\\\\\\/assets\\\\\\/css\\\\\\/widget-animated-headline.min.css\\\\\\\">\\\\t\\\\t<h3>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u0995\\\\u09c7\\\\u099c\\\\u09c1\\\\u09af\\\\u09bc\\\\u09be\\\\u09b2 \\\\u0986\\\\u0989\\\\u099f\\\\u09ab\\\\u09bf\\\\u099f \\\\u0985\\\\u09ab\\\\u09bf\\\\u09b8 \\\\u0985\\\\u09a5\\\\u09ac\\\\u09be \\\\u09b8\\\\u09ac \\\\u09b0\\\\u0995\\\\u09ae \\\\u09aa\\\\u09cd\\\\u09b0\\\\u09cb\\\\u0997\\\\u09cd\\\\u09b0\\\\u09be\\\\u09ae\\\\u09c7\\\\u09b0 \\\\u099c\\\\u09a8\\\\u09cd\\\\u09af \\\\u0985\\\\u09a5\\\\u09ac\\\\u09be \\\\u0995\\\\u09b2\\\\u09c7\\\\u099c \\\\u0987\\\\u0989\\\\u09a8\\\\u09bf\\\\u09ad\\\\u09be\\\\u09b0\\\\u09cd\\\\u09b8\\\\u09bf\\\\u099f\\\\u09bf \\\\u09b8\\\\u09ac \\\\u09b8\\\\u09ae\\\\u09af\\\\u09bc\\\\u09c7\\\\u09b0 \\\\u099c\\\\u09a8\\\\u09cd\\\\u09af \\\\u09ac\\\\u09c7\\\\u09b8\\\\u09cd\\\\u099f \\\\u0995\\\\u09ae\\\\u09cd\\\\u09ac   \\\\u0985\\\\u09ab\\\\u09be\\\\u09b0 \\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u0995\\\\u09c7\\\\u099c\\\\u09c1\\\\u09df\\\\u09be\\\\u09b2 \\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t \\\\u0995\\\\u09be\\\\u09b2\\\\u09c7\\\\u0995\\\\u09b6\\\\u09a8\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/h3>\\\\n\\\\t\\\\t\\\\t<a href=\\\\\\\"#order\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u0985\\\\u09b0\\\\u09cd\\\\u09a1\\\\u09be\\\\u09b0 \\\\u0995\\\\u09b0\\\\u09a4\\\\u09c7 \\\\u099a\\\\u09be\\\\u0987\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/a>\\\\n\\\\t\\\\thttps:\\\\\\/\\\\\\/youtu.be\\\\\\/Oj33V0ZpUkA<p>\\\\u09a6\\\\u09be\\\\u09ae\\\\u09c7 \\\\u09a8\\\\u09df, \\\\u0986\\\\u09ae\\\\u09b0\\\\u09be \\\\u09ac\\\\u09bf\\\\u09b6\\\\u09cd\\\\u09ac\\\\u09be\\\\u09b8 \\\\u0995\\\\u09b0\\\\u09bf \\\\u0997\\\\u09c1\\\\u09a8\\\\u09c7, \\\\u09ac\\\\u09bf\\\\u09b6\\\\u09cd\\\\u09ac\\\\u09be\\\\u09b8 \\\\u0995\\\\u09b0\\\\u09bf \\\\u09ae\\\\u09be\\\\u09a8\\\\u09c7\\\\u0964<\\\\\\/p>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<a href=\\\\\\\"#order\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u0985\\\\u09b0\\\\u09cd\\\\u09a1\\\\u09be\\\\u09b0 \\\\u0995\\\\u09b0\\\\u09a4\\\\u09c7 \\\\u099a\\\\u09be\\\\u0987\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/a>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<img width=\\\\\\\"1920\\\\\\\" height=\\\\\\\"2560\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0371-scaled-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\" srcset=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0371-scaled-2.jpg 1920w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0371-scaled-2-225x300.jpg 225w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0371-scaled-2-768x1024.jpg 768w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0371-scaled-2-1152x1536.jpg 1152w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0371-scaled-2-1536x2048.jpg 1536w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0371-scaled-2-600x800.jpg 600w\\\\\\\" sizes=\\\\\\\"(max-width: 1920px) 100vw, 1920px\\\\\\\" \\\\\\/>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>\\\\u0995\\\\u09ae\\\\u09cd\\\\u09ac \\\\u09e7 - \\\\u09e8\\\\u09e9\\\\u09e6\\\\u09e6 \\\\u099f\\\\u09be\\\\u0995\\\\u09be \\\\u200b<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<img width=\\\\\\\"600\\\\\\\" height=\\\\\\\"800\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0372-600x800-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\" srcset=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0372-600x800-1.jpg 600w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0372-600x800-1-225x300.jpg 225w\\\\\\\" sizes=\\\\\\\"(max-width: 600px) 100vw, 600px\\\\\\\" \\\\\\/>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>\\\\u0995\\\\u09ae\\\\u09cd\\\\u09ac \\\\u09e8 - \\\\u09e8\\\\u09e8\\\\u09e6\\\\u09e6 \\\\u099f\\\\u09be\\\\u0995\\\\u09be \\\\u200b<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<img width=\\\\\\\"1512\\\\\\\" height=\\\\\\\"2016\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0281-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\" srcset=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0281-1.jpg 1512w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0281-1-225x300.jpg 225w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0281-1-768x1024.jpg 768w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0281-1-1152x1536.jpg 1152w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0281-1-600x800.jpg 600w\\\\\\\" sizes=\\\\\\\"(max-width: 1512px) 100vw, 1512px\\\\\\\" \\\\\\/>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>Full Sleeve M1<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<img width=\\\\\\\"768\\\\\\\" height=\\\\\\\"1024\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0302-scaled-2-768x1024.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\" srcset=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0302-scaled-2-768x1024.jpg 768w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0302-scaled-2-225x300.jpg 225w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0302-scaled-2-1152x1536.jpg 1152w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0302-scaled-2-1536x2048.jpg 1536w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0302-scaled-2-600x800.jpg 600w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0302-scaled-2.jpg 1920w\\\\\\\" sizes=\\\\\\\"(max-width: 768px) 100vw, 768px\\\\\\\" \\\\\\/>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>Full Sleeve M2<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<img width=\\\\\\\"768\\\\\\\" height=\\\\\\\"1024\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0349-scaled-2-768x1024.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\" srcset=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0349-scaled-2-768x1024.jpg 768w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0349-scaled-2-225x300.jpg 225w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0349-scaled-2-1152x1536.jpg 1152w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0349-scaled-2-1536x2048.jpg 1536w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0349-scaled-2-600x800.jpg 600w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0349-scaled-2.jpg 1920w\\\\\\\" sizes=\\\\\\\"(max-width: 768px) 100vw, 768px\\\\\\\" \\\\\\/>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>Full Sleeve M3<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<img width=\\\\\\\"225\\\\\\\" height=\\\\\\\"300\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0249-225x300-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\" \\\\\\/>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>Hawaiian Shirt M4<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<img width=\\\\\\\"768\\\\\\\" height=\\\\\\\"1024\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0259-1-768x1024.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\" srcset=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0259-1-768x1024.jpg 768w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0259-1-225x300.jpg 225w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0259-1-1152x1536.jpg 1152w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0259-1-600x800.jpg 600w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0259-1.jpg 1512w\\\\\\\" sizes=\\\\\\\"(max-width: 768px) 100vw, 768px\\\\\\\" \\\\\\/>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>Hawaiian Shirt M5<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<img width=\\\\\\\"645\\\\\\\" height=\\\\\\\"1024\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/\\\\u099f\\\\u09bf\\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f-scaled-1-645x1024.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\" srcset=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/\\\\u099f\\\\u09bf\\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f-scaled-1-645x1024.jpg 645w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/\\\\u099f\\\\u09bf\\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f-scaled-1-189x300.jpg 189w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/\\\\u099f\\\\u09bf\\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f-scaled-1-768x1219.jpg 768w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/\\\\u099f\\\\u09bf\\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f-scaled-1-968x1536.jpg 968w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/\\\\u099f\\\\u09bf\\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f-scaled-1-1290x2048.jpg 1290w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/\\\\u099f\\\\u09bf\\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f-scaled-1-600x952.jpg 600w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/\\\\u099f\\\\u09bf\\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f-scaled-1.jpg 1613w\\\\\\\" sizes=\\\\\\\"(max-width: 645px) 100vw, 645px\\\\\\\" \\\\\\/>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>\\\\u098f\\\\u09ae\\\\u09ac\\\\u09cd\\\\u09b0\\\\u09cb\\\\u09a1\\\\u09be\\\\u09b0\\\\u09bf \\\\u09b8\\\\u09be\\\\u09a6\\\\u09be \\\\u099f\\\\u09bf-\\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t<p>\\\\u09a8\\\\u09cb\\\\u099f\\\\u0983 \\\\u0986\\\\u09b2\\\\u09be\\\\u09a6\\\\u09be \\\\u0986\\\\u09b2\\\\u09be\\\\u09a6\\\\u09be \\\\u09a1\\\\u09bf\\\\u09ad\\\\u09be\\\\u0987\\\\u09b8 \\\\u098f\\\\u09b0 \\\\u0995\\\\u09be\\\\u09b0\\\\u09a8\\\\u09c7 \\\\u09aa\\\\u09cb\\\\u09b6\\\\u09be\\\\u0995\\\\u09c7\\\\u09b0 \\\\u0995\\\\u09be\\\\u09b2\\\\u09be\\\\u09b0 \\\\u0995\\\\u09bf\\\\u099b\\\\u09c1\\\\u099f\\\\u09be \\\\u09a4\\\\u09be\\\\u09b0\\\\u09a4\\\\u09ae\\\\u09cd\\\\u09af \\\\u09a6\\\\u09c7\\\\u0996\\\\u09be \\\\u09af\\\\u09c7\\\\u09a4\\\\u09c7 \\\\u09aa\\\\u09be\\\\u09b0\\\\u09c7\\\\u0964<\\\\\\/p>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<a href=\\\\\\\"#order\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u0985\\\\u09b0\\\\u09cd\\\\u09a1\\\\u09be\\\\u09b0 \\\\u0995\\\\u09b0\\\\u09a4\\\\u09c7 \\\\u099a\\\\u09be\\\\u0987\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/a>\\\\n\\\\t\\\\t\\\\t<h2>Full Sleeve \\\\u09b8\\\\u09be\\\\u0987\\\\u099c \\\\u0997\\\\u09be\\\\u0987\\\\u09a1<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<style>\\\\\\/*! elementor - v3.20.0 - 20-03-2024 *\\\\\\/\\\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\\\\\"\\\\\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\\\\\/style>\\\\t\\\\t\\\\n\\\\t\\\\t<table><tbody><tr><th>SIZE (\\\\u09b8\\\\u09be\\\\u0987\\\\u099c)<\\\\\\/th><th>CHEST (\\\\u09ac\\\\u09c1\\\\u0995\\\\u09c7\\\\u09b0 \\\\u09ae\\\\u09be\\\\u09aa)<\\\\\\/th><th>LEANGTH (\\\\u09b2\\\\u09c7\\\\u09a8\\\\u09cd\\\\u09a5)<\\\\\\/th><\\\\\\/tr><tr><td>M<\\\\\\/td><td>42\\\\\\\"<\\\\\\/td><td>28\\\\\\\"<\\\\\\/td><\\\\\\/tr><tr><td>L<\\\\\\/td><td>44\\\\\\\"<\\\\\\/td><td>29\\\\\\\"<\\\\\\/td><\\\\\\/tr><tr><td>XL<\\\\\\/td><td>46\\\\\\\"<\\\\\\/td><td>30\\\\\\\"<\\\\\\/td><\\\\\\/tr><tr><td>XXL<\\\\\\/td><td>48\\\\\\\"<\\\\\\/td><td>41\\\\\\\"<\\\\\\/td><\\\\\\/tr><\\\\\\/tbody><\\\\\\/table>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>Hawaiian \\\\u09b8\\\\u09be\\\\u0987\\\\u099c \\\\u0997\\\\u09be\\\\u0987\\\\u09a1<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t<table><tbody><tr><th>SIZE (\\\\u09b8\\\\u09be\\\\u0987\\\\u099c)<\\\\\\/th><th>CHEST (\\\\u09ac\\\\u09c1\\\\u0995\\\\u09c7\\\\u09b0 \\\\u09ae\\\\u09be\\\\u09aa)<\\\\\\/th><th>LEANGTH (\\\\u09b2\\\\u09c7\\\\u09a8\\\\u09cd\\\\u09a5)<\\\\\\/th><\\\\\\/tr><tr><td>M<\\\\\\/td><td>42\\\\\\\"<\\\\\\/td><td>27\\\\\\\"<\\\\\\/td><\\\\\\/tr><tr><td>L<\\\\\\/td><td>44\\\\\\\"<\\\\\\/td><td>28\\\\\\\"<\\\\\\/td><\\\\\\/tr><tr><td>XL<\\\\\\/td><td>46\\\\\\\"<\\\\\\/td><td>29\\\\\\\"<\\\\\\/td><\\\\\\/tr><tr><td>XXL<\\\\\\/td><td>48\\\\\\\"<\\\\\\/td><td>30\\\\\\\"<\\\\\\/td><\\\\\\/tr><\\\\\\/tbody><\\\\\\/table>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<h3>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u0986\\\\u09ae\\\\u09be\\\\u09a6\\\\u09c7\\\\u09b0 \\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f \\\\u0995\\\\u09cd\\\\u09b0\\\\u09df \\\\u0995\\\\u09b0\\\\u09b2\\\\u09c7 \\\\u0986\\\\u09aa\\\\u09a8\\\\u09bf \\\\u0995\\\\u09bf \\\\u0995\\\\u09bf \\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u09b8\\\\u09c1\\\\u09ac\\\\u09bf\\\\u09a7\\\\u09be \\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u0997\\\\u09c1\\\\u09b2\\\\u09cb \\\\u09aa\\\\u09be\\\\u099a\\\\u09cd\\\\u099b\\\\u09c7\\\\u09a8 \\\\u098f\\\\u0996\\\\u09a8\\\\u0987 \\\\u099c\\\\u09c7\\\\u09a8\\\\u09c7 \\\\u09a8\\\\u09bf\\\\u09a8!!\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/h3>\\\\n\\\\t\\\\t\\\\t<link rel=\\\\\\\"stylesheet\\\\\\\" href=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/plugins\\\\\\/elementor\\\\\\/assets\\\\\\/css\\\\\\/widget-icon-list.min.css\\\\\\\">\\\\t\\\\t<ul>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg aria-hidden=\\\\\\\"true\\\\\\\" viewBox=\\\\\\\"0 0 512 512\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t \\\\u09b8\\\\u09be\\\\u09b0\\\\u09be \\\\u09ac\\\\u09be\\\\u0982\\\\u09b2\\\\u09be\\\\u09a6\\\\u09c7\\\\u09b6\\\\u09c7 \\\\u09b9\\\\u09cb\\\\u09ae \\\\u09a1\\\\u09c7\\\\u09b2\\\\u09bf\\\\u09ad\\\\u09be\\\\u09b0\\\\u09bf\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg aria-hidden=\\\\\\\"true\\\\\\\" viewBox=\\\\\\\"0 0 512 512\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u09b8\\\\u09ae\\\\u09cd\\\\u09aa\\\\u09c2\\\\u09b0\\\\u09cd\\\\u09a3 \\\\u0995\\\\u09c7\\\\u09b6 \\\\u0985\\\\u09a8 \\\\u09a1\\\\u09c7\\\\u09b2\\\\u09bf\\\\u09ad\\\\u09be\\\\u09b0\\\\u09bf \\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg aria-hidden=\\\\\\\"true\\\\\\\" viewBox=\\\\\\\"0 0 512 512\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u09aa\\\\u09a3\\\\u09cd\\\\u09af \\\\u09b0\\\\u09bf\\\\u09b8\\\\u09bf\\\\u09ad \\\\u0995\\\\u09b0\\\\u09be\\\\u09b0 \\\\u09b8\\\\u09ae\\\\u09df \\\\u09a6\\\\u09c7\\\\u0996\\\\u09c7 \\\\u09a8\\\\u09c7\\\\u0993\\\\u09df\\\\u09be\\\\u09b0 \\\\u09b8\\\\u09c1\\\\u09af\\\\u09cb\\\\u0997\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg aria-hidden=\\\\\\\"true\\\\\\\" viewBox=\\\\\\\"0 0 512 512\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u09b8\\\\u09be\\\\u0987\\\\u099c \\\\u09b8\\\\u09ae\\\\u09b8\\\\u09cd\\\\u09af\\\\u09be \\\\u09b9\\\\u09b2\\\\u09c7 \\\\u09ed\\\\u09e8 \\\\u0998\\\\u09a3\\\\u09cd\\\\u099f\\\\u09be\\\\u09b0 \\\\u09ae\\\\u09a7\\\\u09cd\\\\u09af\\\\u09c7 \\\\u09aa\\\\u09b0\\\\u09bf\\\\u09ac\\\\u09b0\\\\u09cd\\\\u09a4\\\\u09a8\\\\u09c7\\\\u09b0 \\\\u09b8\\\\u09c1\\\\u09af\\\\u09cb\\\\u0997\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg aria-hidden=\\\\\\\"true\\\\\\\" viewBox=\\\\\\\"0 0 512 512\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u09e8\\\\u09ea \\\\u0998\\\\u09a3\\\\u09cd\\\\u099f\\\\u09be \\\\u0995\\\\u09be\\\\u09b8\\\\u09cd\\\\u099f\\\\u09cb\\\\u09ae\\\\u09be\\\\u09b0 \\\\u0995\\\\u09c7\\\\u09df\\\\u09be\\\\u09b0 \\\\u09b8\\\\u09be\\\\u09aa\\\\u09cb\\\\u09b0\\\\u09cd\\\\u099f\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg aria-hidden=\\\\\\\"true\\\\\\\" viewBox=\\\\\\\"0 0 512 512\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u09aa\\\\u09a3\\\\u09cd\\\\u09af \\\\u09ad\\\\u09be\\\\u09b2\\\\u09cb \\\\u09a8\\\\u09be \\\\u09b2\\\\u09be\\\\u0997\\\\u09b2\\\\u09c7 \\\\u09b0\\\\u09bf\\\\u09b0\\\\u09cd\\\\u099f\\\\u09be\\\\u09a8 \\\\u0995\\\\u09b0\\\\u09be\\\\u09b0 \\\\u09b8\\\\u09c1\\\\u09ac\\\\u09bf\\\\u09a7\\\\u09be\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/ul>\\\\n\\\\t\\\\t\\\\t<h2>\\\\u0995\\\\u09be\\\\u09b8\\\\u09cd\\\\u099f\\\\u09ae\\\\u09be\\\\u09b0 \\\\u09b0\\\\u09bf\\\\u09ad\\\\u09bf\\\\u0989<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<style>\\\\\\/*! elementor - v3.20.0 - 20-03-2024 *\\\\\\/\\\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\\\\\/ var(--e-image-carousel-slides-to-show, 3))}<\\\\\\/style>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<figure><img src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/gal-2-1.png\\\\\\\" alt=\\\\\\\"gal-2.png\\\\\\\" \\\\\\/><\\\\\\/figure><figure><img src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/gal-4-1.png\\\\\\\" alt=\\\\\\\"gal-4.png\\\\\\\" \\\\\\/><\\\\\\/figure>\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg aria-hidden=\\\\\\\"true\\\\\\\" viewBox=\\\\\\\"0 0 1000 1000\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg aria-hidden=\\\\\\\"true\\\\\\\" viewBox=\\\\\\\"0 0 1000 1000\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>\\\\u09aa\\\\u09cd\\\\u09b0\\\\u09a4\\\\u09bf\\\\u099f\\\\u09be \\\\u099c\\\\u0997\\\\u09be\\\\u09b0 \\\\u098f\\\\u09b0 \\\\u0995\\\\u09be\\\\u09aa\\\\u09dc \\\\u0987\\\\u09ae\\\\u09aa\\\\u09cb\\\\u09b0\\\\u09cd\\\\u099f\\\\u09c7\\\\u09a1\\\\u0964 \\\\u09e7\\\\u09e6\\\\u09e6 \\\\u09ad\\\\u09be\\\\u0997 \\\\u0995\\\\u099f\\\\u09a8 \\\\u09a4\\\\u09be\\\\u0987 <\\\\\\/br> \\\\u0997\\\\u09b0\\\\u09ae\\\\u09c7\\\\u09b0 \\\\u099c\\\\u09a8\\\\u09cd\\\\u09af \\\\u0996\\\\u09c1\\\\u09ac-\\\\u0987 \\\\u0986\\\\u09b0\\\\u09be\\\\u09ae\\\\u09a6\\\\u09be\\\\u09df\\\\u0995 \\\\u098f\\\\u09ac\\\\u0982 \\\\u09b0\\\\u0982 \\\\u09a8\\\\u09b7\\\\u09cd\\\\u099f \\\\u09b9\\\\u09ac\\\\u09c7 \\\\u09a8\\\\u09be \\\\u0987\\\\u09a8\\\\u09b6\\\\u09be\\\\u2014\\\\u0986\\\\u09b2\\\\u09cd\\\\u09b2\\\\u09be\\\\u09b9\\\\u0964<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>\\\\u0985\\\\u0997\\\\u09cd\\\\u09b0\\\\u09c0\\\\u09ae \\\\u0995\\\\u09cb\\\\u09a8 \\\\u099f\\\\u09be\\\\u0995\\\\u09be \\\\u09a8\\\\u09c7\\\\u0993\\\\u09df\\\\u09be \\\\u09b9\\\\u09df \\\\u09a8\\\\u09be\\\\u0964 \\\\u09aa\\\\u09cd\\\\u09b0\\\\u09a1\\\\u09be\\\\u0995\\\\u09cd\\\\u099f \\\\u09b9\\\\u09be\\\\u09a4\\\\u09c7 \\\\u09aa\\\\u09c7\\\\u09df\\\\u09c7 \\\\u09a1\\\\u09c7\\\\u09b2\\\\u09bf\\\\u09ad\\\\u09be\\\\u09b0\\\\u09bf \\\\u09ae\\\\u09cd\\\\u09af\\\\u09be\\\\u09a8\\\\u09c7\\\\u09b0 \\\\u0995\\\\u09be\\\\u099b\\\\u09c7 \\\\u099f\\\\u09be\\\\u0995\\\\u09be \\\\u09aa\\\\u09b0\\\\u09bf\\\\u09b6\\\\u09cb\\\\u09a7 \\\\u0995\\\\u09b0\\\\u09ac\\\\u09c7\\\\u09a8\\\\u0964<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>\\\\u0985\\\\u09b0\\\\u09cd\\\\u09a1\\\\u09be\\\\u09b0 \\\\u0995\\\\u09b0\\\\u09a4\\\\u09c7 \\\\u09a8\\\\u09bf\\\\u099a\\\\u09c7\\\\u09b0 \\\\u09ab\\\\u09b0\\\\u09cd\\\\u09ae\\\\u099f\\\\u09bf \\\\u09aa\\\\u09c2\\\\u09b0\\\\u09a8 \\\\u0995\\\\u09b0\\\\u09c1\\\\u09a8<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\u09af\\\\u09c7\\\\u0995\\\\u09cb\\\\u09a8\\\\u09cb \\\\u09b8\\\\u09ae\\\\u09b8\\\\u09cd\\\\u09af\\\\u09be\\\\u09df \\\\u09b0\\\\u09bf\\\\u099f\\\\u09be\\\\u09b0\\\\u09cd\\\\u09a8 \\\\u09ac\\\\u09be \\\\u09aa\\\\u09b0\\\\u09bf\\\\u09ac\\\\u09b0\\\\u09cd\\\\u09a4\\\\u09a8 \\\\u0995\\\\u09b0\\\\u09a4\\\\u09c7 \\\\u09aa\\\\u09be\\\\u09b0\\\\u09ac\\\\u09c7\\\\u09a8  \\\\u09ed\\\\u09e8 \\\\u0998\\\\u09a8\\\\u09cd\\\\u099f\\\\u09be\\\\u09b0 \\\\u09ae\\\\u09a7\\\\u09cd\\\\u09af\\\\u09c7\\\\u0964\\\\t\\\\t\\\\n<!-- CHECKOUT SHORTCODE -->\\\\n<form name=\\\\\\\"checkout\\\\\\\" method=\\\\\\\"post\\\\\\\" action=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/checkout\\\\\\/\\\\\\\" enctype=\\\\\\\"multipart\\\\\\/form-data\\\\\\\">\\\\n\\\\t<h3 id=\\\\\\\"your_products_heading\\\\\\\"> \\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f \\\\u09b8\\\\u0982\\\\u0996\\\\u09cd\\\\u09af\\\\u09be \\\\u09a8\\\\u09bf\\\\u09b0\\\\u09cd\\\\u09a7\\\\u09be\\\\u09b0\\\\u09a3 \\\\u0995\\\\u09b0\\\\u09c1\\\\u09a8 <\\\\\\/h3>\\\\n\\\\t\\\\tProduct\\\\n\\\\t\\\\tQuantity\\\\n\\\\t\\\\tPrice\\\\n\\\\t<input type=\\\\\\\"checkbox\\\\\\\"\\\\n\\\\tname=\\\\\\\"wcf-multiple-sel\\\\\\\"\\\\n\\\\tvalue=\\\\\\\"414\\\\\\\"  >\\\\n\\\\t<img width=\\\\\\\"400\\\\\\\" height=\\\\\\\"400\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0281-1-400x400.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\" \\\\\\/>\\\\nFull Sleeve M11\\\\n\\\\t\\\\t&minus;\\\\n\\\\t\\\\t<input autocomplete=\\\\\\\"off\\\\\\\" type=\\\\\\\"number\\\\\\\" value=\\\\\\\"1\\\\\\\" step=\\\\\\\"1\\\\\\\" min=\\\\\\\"1\\\\\\\" name=\\\\\\\"wcf_qty_selection\\\\\\\" placeholder=\\\\\\\"1\\\\\\\" data-sale-limit=\\\\\\\"false\\\\\\\" title=\\\\\\\"\\\\\\\"  >\\\\n\\\\t\\\\t&plus;\\\\n\\\\t1,200.00&#2547;&nbsp;\\\\n\\\\t\\\\t<h3 id=\\\\\\\"billing_fields_heading\\\\\\\">Billing details<\\\\\\/h3>\\\\n\\\\t\\\\t<p id=\\\\\\\"billing_first_name_field\\\\\\\" data-priority=\\\\\\\"10\\\\\\\"><label for=\\\\\\\"billing_first_name\\\\\\\">\\\\u0986\\\\u09aa\\\\u09a8\\\\u09be\\\\u09b0 \\\\u09a8\\\\u09be\\\\u09ae&nbsp;<abbr title=\\\\\\\"required\\\\\\\">*<\\\\\\/abbr><\\\\\\/label><input type=\\\\\\\"text\\\\\\\" name=\\\\\\\"billing_first_name\\\\\\\" id=\\\\\\\"billing_first_name\\\\\\\" placeholder=\\\\\\\"\\\\\\\"  value=\\\\\\\"Minu Khan\\\\\\\" autocomplete=\\\\\\\"given-name\\\\\\\" \\\\\\/><\\\\\\/p><p id=\\\\\\\"billing_address_1_field\\\\\\\" data-priority=\\\\\\\"50\\\\\\\"><label for=\\\\\\\"billing_address_1\\\\\\\">\\\\u0986\\\\u09aa\\\\u09a8\\\\u09be\\\\u09b0 \\\\u09b8\\\\u09ae\\\\u09cd\\\\u09aa\\\\u09c2\\\\u09b0\\\\u09cd\\\\u09a3 \\\\u09a0\\\\u09bf\\\\u0995\\\\u09be\\\\u09a8\\\\u09be&nbsp;<abbr title=\\\\\\\"required\\\\\\\">*<\\\\\\/abbr><\\\\\\/label><input type=\\\\\\\"text\\\\\\\" name=\\\\\\\"billing_address_1\\\\\\\" id=\\\\\\\"billing_address_1\\\\\\\" placeholder=\\\\\\\"\\\\u0986\\\\u09aa\\\\u09a8\\\\u09be\\\\u09b0 \\\\u09a0\\\\u09bf\\\\u0995\\\\u09be\\\\u09a8\\\\u09be\\\\\\/\\\\u098f\\\\u09b2\\\\u09be\\\\u0995\\\\u09be\\\\u09b0 \\\\u09a8\\\\u09be\\\\u09ae, \\\\u09a5\\\\u09be\\\\u09a8\\\\u09be, \\\\u099c\\\\u09c7\\\\u09b2\\\\u09be\\\\\\\"  value=\\\\\\\"test\\\\\\\" autocomplete=\\\\\\\"address-line1\\\\\\\" \\\\\\/><\\\\\\/p><p id=\\\\\\\"billing_phone_field\\\\\\\" data-priority=\\\\\\\"100\\\\\\\"><label for=\\\\\\\"billing_phone\\\\\\\">\\\\u0986\\\\u09aa\\\\u09a8\\\\u09be\\\\u09b0 \\\\u09ab\\\\u09cb\\\\u09a8 \\\\u09a8\\\\u09be\\\\u09ae\\\\u09cd\\\\u09ac\\\\u09be\\\\u09b0&nbsp;<abbr title=\\\\\\\"required\\\\\\\">*<\\\\\\/abbr><\\\\\\/label><input type=\\\\\\\"tel\\\\\\\" name=\\\\\\\"billing_phone\\\\\\\" id=\\\\\\\"billing_phone\\\\\\\" placeholder=\\\\\\\"\\\\\\\"  value=\\\\\\\"0190\\\\\\\" autocomplete=\\\\\\\"tel\\\\\\\" \\\\\\/><\\\\\\/p><p id=\\\\\\\"billing_size_field\\\\\\\" data-priority=\\\\\\\"120\\\\\\\"><label for=\\\\\\\"billing_size_M\\\\\\\">\\\\u09b8\\\\u09be\\\\u0987\\\\u099c&nbsp;<abbr title=\\\\\\\"required\\\\\\\">*<\\\\\\/abbr><\\\\\\/label><input type=\\\\\\\"radio\\\\\\\" value=\\\\\\\"M\\\\\\\" name=\\\\\\\"billing_size\\\\\\\"  id=\\\\\\\"billing_size_M\\\\\\\" \\\\\\/><label for=\\\\\\\"billing_size_M\\\\\\\">M<\\\\\\/label><input type=\\\\\\\"radio\\\\\\\" value=\\\\\\\"L\\\\\\\" name=\\\\\\\"billing_size\\\\\\\"  id=\\\\\\\"billing_size_L\\\\\\\" \\\\\\/><label for=\\\\\\\"billing_size_L\\\\\\\">L<\\\\\\/label><input type=\\\\\\\"radio\\\\\\\" value=\\\\\\\"XL\\\\\\\" name=\\\\\\\"billing_size\\\\\\\"  id=\\\\\\\"billing_size_XL\\\\\\\" checked=\'checked\' \\\\\\/><label for=\\\\\\\"billing_size_XL\\\\\\\">XL<\\\\\\/label><input type=\\\\\\\"radio\\\\\\\" value=\\\\\\\"XXL\\\\\\\" name=\\\\\\\"billing_size\\\\\\\"  id=\\\\\\\"billing_size_XXL\\\\\\\" \\\\\\/><label for=\\\\\\\"billing_size_XXL\\\\\\\">XXL<\\\\\\/label><\\\\\\/p>\\\\t\\\\n\\\\t<input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"_wcf_flow_id\\\\\\\" value=\\\\\\\"342\\\\\\\"><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"_wcf_checkout_id\\\\\\\" value=\\\\\\\"344\\\\\\\">\\\\n\\\\t\\\\t<input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_source_type\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_referrer\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_utm_campaign\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_utm_source\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_utm_medium\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_utm_content\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_utm_id\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_utm_term\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_session_entry\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_session_start_time\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_session_pages\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_session_count\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_user_agent\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/>\\\\n\\\\t\\\\t<h3 id=\\\\\\\"order_review_heading\\\\\\\">Your order<\\\\\\/h3>\\\\n\\\\t\\\\t\\\\t<table data-update-time=\\\\\\\"1711183983\\\\\\\">\\\\n\\\\t<thead>\\\\n\\\\t\\\\t<tr>\\\\n\\\\t\\\\t\\\\t<th>Product<\\\\\\/th>\\\\n\\\\t\\\\t\\\\t<th>Subtotal<\\\\\\/th>\\\\n\\\\t\\\\t<\\\\\\/tr>\\\\n\\\\t<\\\\\\/thead>\\\\n\\\\t<tbody>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<tr>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<td>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\tFull Sleeve M1&nbsp;\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t <strong>&times;&nbsp;1<\\\\\\/strong>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/td>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<td>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<bdi>1,200.00&#2547;&nbsp;<\\\\\\/bdi>\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/td>\\\\n\\\\t\\\\t\\\\t\\\\t<\\\\\\/tr>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/tbody>\\\\n\\\\t<tfoot>\\\\n\\\\t\\\\t<tr>\\\\n\\\\t\\\\t\\\\t<th>Subtotal<\\\\\\/th>\\\\n\\\\t\\\\t\\\\t<td><bdi>1,200.00&#2547;&nbsp;<\\\\\\/bdi><\\\\\\/td>\\\\n\\\\t\\\\t<\\\\\\/tr>\\\\n\\\\t\\\\t\\\\t<tr>\\\\n\\\\t<th>Shipping<\\\\\\/th>\\\\n\\\\t<td data-title=\\\\\\\"Shipping\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<ul id=\\\\\\\"shipping_method\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"shipping_method[0]\\\\\\\" data-index=\\\\\\\"0\\\\\\\" id=\\\\\\\"shipping_method_0_free_shipping1\\\\\\\" value=\\\\\\\"free_shipping:1\\\\\\\" \\\\\\/><label for=\\\\\\\"shipping_method_0_free_shipping1\\\\\\\">Free shipping<\\\\\\/label>\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/ul>\\\\n\\\\t\\\\t\\\\t<\\\\\\/td>\\\\n<\\\\\\/tr>\\\\n\\\\t\\\\t<tr>\\\\n\\\\t\\\\t\\\\t<th>Total<\\\\\\/th>\\\\n\\\\t\\\\t\\\\t<td><strong><bdi>1,200.00&#2547;&nbsp;<\\\\\\/bdi><\\\\\\/strong> <\\\\\\/td>\\\\n\\\\t\\\\t<\\\\\\/tr>\\\\n\\\\t<\\\\\\/tfoot>\\\\n<\\\\\\/table>\\\\n\\\\t\\\\t\\\\t<ul>\\\\n\\\\t\\\\t\\\\t<li>\\\\n\\\\t<input id=\\\\\\\"payment_method_cod\\\\\\\" type=\\\\\\\"radio\\\\\\\" name=\\\\\\\"payment_method\\\\\\\" value=\\\\\\\"cod\\\\\\\"  checked=\'checked\' data-order_button_text=\\\\\\\"\\\\\\\" \\\\\\/>\\\\n\\\\t<label for=\\\\\\\"payment_method_cod\\\\\\\">\\\\n\\\\t\\\\t\\\\u0995\\\\u09cd\\\\u09af\\\\u09be\\\\u09b6\\\\u0985\\\\u09a8 \\\\u09a1\\\\u09c7\\\\u09b2\\\\u09bf\\\\u09ad\\\\u09be\\\\u09b0\\\\u09bf \\\\t<\\\\\\/label>\\\\n\\\\t\\\\t\\\\t<p>\\\\u09aa\\\\u09a3\\\\u09cd\\\\u09af \\\\u09b9\\\\u09be\\\\u09a4\\\\u09c7 \\\\u09aa\\\\u09c7\\\\u09df\\\\u09c7 \\\\u09aa\\\\u09c7\\\\u09ae\\\\u09c7\\\\u09a8\\\\u09cd\\\\u099f \\\\u0995\\\\u09b0\\\\u09a4\\\\u09c7 \\\\u09aa\\\\u09be\\\\u09b0\\\\u09ac\\\\u09c7\\\\u09a8<\\\\\\/p>\\\\n\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t<\\\\\\/ul>\\\\n\\\\t\\\\t<noscript>\\\\n\\\\t\\\\t\\\\tSince 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.\\\\t\\\\t\\\\t<br\\\\\\/><button type=\\\\\\\"submit\\\\\\\" name=\\\\\\\"woocommerce_checkout_update_totals\\\\\\\" value=\\\\\\\"Update totals\\\\\\\">Update totals<\\\\\\/button>\\\\n\\\\t\\\\t<\\\\\\/noscript>\\\\n\\\\t\\\\t<button type=\\\\\\\"submit\\\\\\\" name=\\\\\\\"woocommerce_checkout_place_order\\\\\\\" id=\\\\\\\"place_order\\\\\\\" value=\\\\\\\"Place Order&nbsp;&nbsp;1,200.00&#2547;&nbsp;\\\\\\\" data-value=\\\\\\\"Place Order&nbsp;&nbsp;1,200.00&#2547;&nbsp;\\\\\\\">Place Order&nbsp;&nbsp;1,200.00&#2547;&nbsp;<\\\\\\/button>\\\\n\\\\t\\\\t<input type=\\\\\\\"hidden\\\\\\\" id=\\\\\\\"woocommerce-process-checkout-nonce\\\\\\\" name=\\\\\\\"woocommerce-process-checkout-nonce\\\\\\\" value=\\\\\\\"ac9461ed14\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"_wp_http_referer\\\\\\\" value=\\\\\\\"\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\\\\\" \\\\\\/>\\\\t\\\\n<\\\\\\/form>\\\\n<!-- END CHECKOUT SHORTCODE -->\\\\n\\\\t\\\\t\\\\t<h6>\\\\u09b2\\\\u09c7\\\\u099f\\\\u09c7\\\\u09b8\\\\u09cd\\\\u099f \\\\u0986\\\\u09aa\\\\u09a1\\\\u09c7\\\\u099f \\\\u09aa\\\\u09c7\\\\u09a4\\\\u09c7 \\\\u0986\\\\u09ae\\\\u09be\\\\u09a6\\\\u09c7\\\\u09b0 \\\\u09b8\\\\u09be\\\\u09a5\\\\u09c7 \\\\u0995\\\\u09be\\\\u09a8\\\\u09c7\\\\u0995\\\\u09cd\\\\u099f \\\\u09a5\\\\u09be\\\\u0995\\\\u09c1\\\\u09a8<\\\\\\/h6>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<style>\\\\\\/*! elementor - v3.20.0 - 20-03-2024 *\\\\\\/\\\\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}<\\\\\\/style>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<a href=\\\\\\\"#\\\\\\\" target=\\\\\\\"_blank\\\\\\\" rel=\\\\\\\"noopener\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\tFacebook\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg viewBox=\\\\\\\"0 0 512 512\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/a>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<a href=\\\\\\\"#\\\\\\\" target=\\\\\\\"_blank\\\\\\\" rel=\\\\\\\"noopener\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\tInstagram\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg viewBox=\\\\\\\"0 0 448 512\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/a>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<ul>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<a href=\\\\\\\"#\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\tRefund policy \\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/a>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<a href=\\\\\\\"#\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\tPrivacy policy\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/a>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<a href=\\\\\\\"#\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\tTerms of service\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/a>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/ul>\\\\n\\\\t\\\\t\\\\t<p>Copyright \\\\u00a9 2024 Your Business Name | This website made with \\\\u2764\\\\ufe0f by <a href=\\\\\\\"https:\\\\\\/\\\\\\/digiprodwave.xyz\\\\\\/\\\\\\\">DPW<\\\\\\/a><\\\\\\/p>\\\"\\\"\"','Shirts Checkout','','trash','closed','closed','','shirts-checkout__trashed','','','2026-06-09 12:40:59','2026-06-09 06:40:59','','0','https://hypergrowth.fishgrowth.xyz/step/shirts-checkout/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1914','17','2026-06-08 21:41:02','2026-06-08 15:41:02','\"\\\"\\\"<style>\\\\\\/*! elementor - v3.20.0 - 20-03-2024 *\\\\\\/\\\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\\\\\".svg\\\\\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\\\\\/style>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<img width=\\\\\\\"500\\\\\\\" height=\\\\\\\"500\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/Test-Logo.png\\\\\\\" alt=\\\\\\\"\\\\\\\" srcset=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/Test-Logo.png 500w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/Test-Logo-300x300.png 300w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/Test-Logo-150x150.png 150w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/Test-Logo-400x400.png 400w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/elementor\\\\\\/thumbs\\\\\\/Test-Logo-qlgjn7dvi44bql5if66j7dolg9mi1ktt1m22gmqy20.png 100w\\\\\\\" sizes=\\\\\\\"(max-width: 500px) 100vw, 500px\\\\\\\" \\\\\\/>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<style>\\\\\\/*! elementor - v3.20.0 - 20-03-2024 *\\\\\\/\\\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\\\\\/style><h2>\\\\u0995\\\\u09c7\\\\u099c\\\\u09c1\\\\u09af\\\\u09bc\\\\u09be\\\\u09b2 \\\\u0986\\\\u0989\\\\u099f\\\\u09ab\\\\u09bf\\\\u099f \\\\u0985\\\\u09ab\\\\u09bf\\\\u09b8 \\\\u0985\\\\u09a5\\\\u09ac\\\\u09be \\\\u09b8\\\\u09ac \\\\u09b0\\\\u0995\\\\u09ae \\\\u09aa\\\\u09cd\\\\u09b0\\\\u09cb\\\\u0997\\\\u09cd\\\\u09b0\\\\u09be\\\\u09ae\\\\u09c7\\\\u09b0 \\\\u099c\\\\u09a8\\\\u09cd\\\\u09af \\\\u0985\\\\u09a5\\\\u09ac\\\\u09be \\\\u0995\\\\u09b2\\\\u09c7\\\\u099c \\\\u0987\\\\u0989\\\\u09a8\\\\u09bf\\\\u09ad\\\\u09be\\\\u09b0\\\\u09cd\\\\u09b8\\\\u09bf\\\\u099f\\\\u09bf \\\\u09b8\\\\u09ac \\\\u09b8\\\\u09ae\\\\u09af\\\\u09bc\\\\u09c7\\\\u09b0 \\\\u099c\\\\u09a8\\\\u09cd\\\\u09af \\\\u09ac\\\\u09c7\\\\u09b8\\\\u09cd\\\\u099f \\\\u09ac\\\\u09c7\\\\u09b7\\\\u09cd\\\\u099f \\\\u0995\\\\u09c7\\\\u099c\\\\u09c1\\\\u09df\\\\u09be\\\\u09b2 \\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f \\\\u0995\\\\u09be\\\\u09b2\\\\u09c7\\\\u0995\\\\u09b6\\\\u09a8  \\\\u099c\\\\u0997\\\\u09be\\\\u09b0 \\\\u0986\\\\u0989\\\\u099f\\\\u09ab\\\\u09bf\\\\u099f\\\\u0964 <\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2><del>\\\\u0986\\\\u0997\\\\u09c7\\\\u09b0 \\\\u09ae\\\\u09c2\\\\u09b2\\\\u09cd\\\\u09af\\\\u0983 \\\\u09e7\\\\u09ea\\\\u09e6\\\\u09e6 \\\\u099f\\\\u09be\\\\u0995\\\\u09be<\\\\\\/del><\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<link rel=\\\\\\\"stylesheet\\\\\\\" href=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/plugins\\\\\\/pro-elements\\\\\\/assets\\\\\\/css\\\\\\/widget-animated-headline.min.css\\\\\\\">\\\\t\\\\t<h3>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u0995\\\\u09c7\\\\u099c\\\\u09c1\\\\u09af\\\\u09bc\\\\u09be\\\\u09b2 \\\\u0986\\\\u0989\\\\u099f\\\\u09ab\\\\u09bf\\\\u099f \\\\u0985\\\\u09ab\\\\u09bf\\\\u09b8 \\\\u0985\\\\u09a5\\\\u09ac\\\\u09be \\\\u09b8\\\\u09ac \\\\u09b0\\\\u0995\\\\u09ae \\\\u09aa\\\\u09cd\\\\u09b0\\\\u09cb\\\\u0997\\\\u09cd\\\\u09b0\\\\u09be\\\\u09ae\\\\u09c7\\\\u09b0 \\\\u099c\\\\u09a8\\\\u09cd\\\\u09af \\\\u0985\\\\u09a5\\\\u09ac\\\\u09be \\\\u0995\\\\u09b2\\\\u09c7\\\\u099c \\\\u0987\\\\u0989\\\\u09a8\\\\u09bf\\\\u09ad\\\\u09be\\\\u09b0\\\\u09cd\\\\u09b8\\\\u09bf\\\\u099f\\\\u09bf \\\\u09b8\\\\u09ac \\\\u09b8\\\\u09ae\\\\u09af\\\\u09bc\\\\u09c7\\\\u09b0 \\\\u099c\\\\u09a8\\\\u09cd\\\\u09af \\\\u09ac\\\\u09c7\\\\u09b8\\\\u09cd\\\\u099f \\\\u0995\\\\u09ae\\\\u09cd\\\\u09ac   \\\\u0985\\\\u09ab\\\\u09be\\\\u09b0 \\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u0995\\\\u09c7\\\\u099c\\\\u09c1\\\\u09df\\\\u09be\\\\u09b2 \\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t \\\\u0995\\\\u09be\\\\u09b2\\\\u09c7\\\\u0995\\\\u09b6\\\\u09a8\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/h3>\\\\n\\\\t\\\\t\\\\t<a href=\\\\\\\"#order\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u0985\\\\u09b0\\\\u09cd\\\\u09a1\\\\u09be\\\\u09b0 \\\\u0995\\\\u09b0\\\\u09a4\\\\u09c7 \\\\u099a\\\\u09be\\\\u0987\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/a>\\\\n\\\\t\\\\thttps:\\\\\\/\\\\\\/youtu.be\\\\\\/Oj33V0ZpUkA<p>\\\\u09a6\\\\u09be\\\\u09ae\\\\u09c7 \\\\u09a8\\\\u09df, \\\\u0986\\\\u09ae\\\\u09b0\\\\u09be \\\\u09ac\\\\u09bf\\\\u09b6\\\\u09cd\\\\u09ac\\\\u09be\\\\u09b8 \\\\u0995\\\\u09b0\\\\u09bf \\\\u0997\\\\u09c1\\\\u09a8\\\\u09c7, \\\\u09ac\\\\u09bf\\\\u09b6\\\\u09cd\\\\u09ac\\\\u09be\\\\u09b8 \\\\u0995\\\\u09b0\\\\u09bf \\\\u09ae\\\\u09be\\\\u09a8\\\\u09c7\\\\u0964<\\\\\\/p>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<a href=\\\\\\\"#order\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u0985\\\\u09b0\\\\u09cd\\\\u09a1\\\\u09be\\\\u09b0 \\\\u0995\\\\u09b0\\\\u09a4\\\\u09c7 \\\\u099a\\\\u09be\\\\u0987\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/a>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<img width=\\\\\\\"1920\\\\\\\" height=\\\\\\\"2560\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0371-scaled-2.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\" srcset=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0371-scaled-2.jpg 1920w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0371-scaled-2-225x300.jpg 225w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0371-scaled-2-768x1024.jpg 768w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0371-scaled-2-1152x1536.jpg 1152w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0371-scaled-2-1536x2048.jpg 1536w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0371-scaled-2-600x800.jpg 600w\\\\\\\" sizes=\\\\\\\"(max-width: 1920px) 100vw, 1920px\\\\\\\" \\\\\\/>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>\\\\u0995\\\\u09ae\\\\u09cd\\\\u09ac \\\\u09e7 - \\\\u09e8\\\\u09e9\\\\u09e6\\\\u09e6 \\\\u099f\\\\u09be\\\\u0995\\\\u09be \\\\u200b<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<img width=\\\\\\\"600\\\\\\\" height=\\\\\\\"800\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0372-600x800-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\" srcset=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0372-600x800-1.jpg 600w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0372-600x800-1-225x300.jpg 225w\\\\\\\" sizes=\\\\\\\"(max-width: 600px) 100vw, 600px\\\\\\\" \\\\\\/>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>\\\\u0995\\\\u09ae\\\\u09cd\\\\u09ac \\\\u09e8 - \\\\u09e8\\\\u09e8\\\\u09e6\\\\u09e6 \\\\u099f\\\\u09be\\\\u0995\\\\u09be \\\\u200b<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<img width=\\\\\\\"1512\\\\\\\" height=\\\\\\\"2016\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0281-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\" srcset=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0281-1.jpg 1512w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0281-1-225x300.jpg 225w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0281-1-768x1024.jpg 768w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0281-1-1152x1536.jpg 1152w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0281-1-600x800.jpg 600w\\\\\\\" sizes=\\\\\\\"(max-width: 1512px) 100vw, 1512px\\\\\\\" \\\\\\/>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>Full Sleeve M1<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<img width=\\\\\\\"768\\\\\\\" height=\\\\\\\"1024\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0302-scaled-2-768x1024.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\" srcset=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0302-scaled-2-768x1024.jpg 768w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0302-scaled-2-225x300.jpg 225w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0302-scaled-2-1152x1536.jpg 1152w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0302-scaled-2-1536x2048.jpg 1536w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0302-scaled-2-600x800.jpg 600w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0302-scaled-2.jpg 1920w\\\\\\\" sizes=\\\\\\\"(max-width: 768px) 100vw, 768px\\\\\\\" \\\\\\/>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>Full Sleeve M2<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<img width=\\\\\\\"768\\\\\\\" height=\\\\\\\"1024\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0349-scaled-2-768x1024.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\" srcset=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0349-scaled-2-768x1024.jpg 768w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0349-scaled-2-225x300.jpg 225w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0349-scaled-2-1152x1536.jpg 1152w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0349-scaled-2-1536x2048.jpg 1536w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0349-scaled-2-600x800.jpg 600w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0349-scaled-2.jpg 1920w\\\\\\\" sizes=\\\\\\\"(max-width: 768px) 100vw, 768px\\\\\\\" \\\\\\/>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>Full Sleeve M3<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<img width=\\\\\\\"225\\\\\\\" height=\\\\\\\"300\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0249-225x300-1.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\" \\\\\\/>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>Hawaiian Shirt M4<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<img width=\\\\\\\"768\\\\\\\" height=\\\\\\\"1024\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0259-1-768x1024.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\" srcset=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0259-1-768x1024.jpg 768w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0259-1-225x300.jpg 225w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0259-1-1152x1536.jpg 1152w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0259-1-600x800.jpg 600w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0259-1.jpg 1512w\\\\\\\" sizes=\\\\\\\"(max-width: 768px) 100vw, 768px\\\\\\\" \\\\\\/>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>Hawaiian Shirt M5<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<img width=\\\\\\\"645\\\\\\\" height=\\\\\\\"1024\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/\\\\u099f\\\\u09bf\\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f-scaled-1-645x1024.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\" srcset=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/\\\\u099f\\\\u09bf\\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f-scaled-1-645x1024.jpg 645w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/\\\\u099f\\\\u09bf\\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f-scaled-1-189x300.jpg 189w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/\\\\u099f\\\\u09bf\\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f-scaled-1-768x1219.jpg 768w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/\\\\u099f\\\\u09bf\\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f-scaled-1-968x1536.jpg 968w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/\\\\u099f\\\\u09bf\\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f-scaled-1-1290x2048.jpg 1290w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/\\\\u099f\\\\u09bf\\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f-scaled-1-600x952.jpg 600w, https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/\\\\u099f\\\\u09bf\\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f-scaled-1.jpg 1613w\\\\\\\" sizes=\\\\\\\"(max-width: 645px) 100vw, 645px\\\\\\\" \\\\\\/>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>\\\\u098f\\\\u09ae\\\\u09ac\\\\u09cd\\\\u09b0\\\\u09cb\\\\u09a1\\\\u09be\\\\u09b0\\\\u09bf \\\\u09b8\\\\u09be\\\\u09a6\\\\u09be \\\\u099f\\\\u09bf-\\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t<p>\\\\u09a8\\\\u09cb\\\\u099f\\\\u0983 \\\\u0986\\\\u09b2\\\\u09be\\\\u09a6\\\\u09be \\\\u0986\\\\u09b2\\\\u09be\\\\u09a6\\\\u09be \\\\u09a1\\\\u09bf\\\\u09ad\\\\u09be\\\\u0987\\\\u09b8 \\\\u098f\\\\u09b0 \\\\u0995\\\\u09be\\\\u09b0\\\\u09a8\\\\u09c7 \\\\u09aa\\\\u09cb\\\\u09b6\\\\u09be\\\\u0995\\\\u09c7\\\\u09b0 \\\\u0995\\\\u09be\\\\u09b2\\\\u09be\\\\u09b0 \\\\u0995\\\\u09bf\\\\u099b\\\\u09c1\\\\u099f\\\\u09be \\\\u09a4\\\\u09be\\\\u09b0\\\\u09a4\\\\u09ae\\\\u09cd\\\\u09af \\\\u09a6\\\\u09c7\\\\u0996\\\\u09be \\\\u09af\\\\u09c7\\\\u09a4\\\\u09c7 \\\\u09aa\\\\u09be\\\\u09b0\\\\u09c7\\\\u0964<\\\\\\/p>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<a href=\\\\\\\"#order\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u0985\\\\u09b0\\\\u09cd\\\\u09a1\\\\u09be\\\\u09b0 \\\\u0995\\\\u09b0\\\\u09a4\\\\u09c7 \\\\u099a\\\\u09be\\\\u0987\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/a>\\\\n\\\\t\\\\t\\\\t<h2>Full Sleeve \\\\u09b8\\\\u09be\\\\u0987\\\\u099c \\\\u0997\\\\u09be\\\\u0987\\\\u09a1<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<style>\\\\\\/*! elementor - v3.20.0 - 20-03-2024 *\\\\\\/\\\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\\\\\"\\\\\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\\\\\/style>\\\\t\\\\t\\\\n\\\\t\\\\t<table><tbody><tr><th>SIZE (\\\\u09b8\\\\u09be\\\\u0987\\\\u099c)<\\\\\\/th><th>CHEST (\\\\u09ac\\\\u09c1\\\\u0995\\\\u09c7\\\\u09b0 \\\\u09ae\\\\u09be\\\\u09aa)<\\\\\\/th><th>LEANGTH (\\\\u09b2\\\\u09c7\\\\u09a8\\\\u09cd\\\\u09a5)<\\\\\\/th><\\\\\\/tr><tr><td>M<\\\\\\/td><td>42\\\\\\\"<\\\\\\/td><td>28\\\\\\\"<\\\\\\/td><\\\\\\/tr><tr><td>L<\\\\\\/td><td>44\\\\\\\"<\\\\\\/td><td>29\\\\\\\"<\\\\\\/td><\\\\\\/tr><tr><td>XL<\\\\\\/td><td>46\\\\\\\"<\\\\\\/td><td>30\\\\\\\"<\\\\\\/td><\\\\\\/tr><tr><td>XXL<\\\\\\/td><td>48\\\\\\\"<\\\\\\/td><td>41\\\\\\\"<\\\\\\/td><\\\\\\/tr><\\\\\\/tbody><\\\\\\/table>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>Hawaiian \\\\u09b8\\\\u09be\\\\u0987\\\\u099c \\\\u0997\\\\u09be\\\\u0987\\\\u09a1<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t<table><tbody><tr><th>SIZE (\\\\u09b8\\\\u09be\\\\u0987\\\\u099c)<\\\\\\/th><th>CHEST (\\\\u09ac\\\\u09c1\\\\u0995\\\\u09c7\\\\u09b0 \\\\u09ae\\\\u09be\\\\u09aa)<\\\\\\/th><th>LEANGTH (\\\\u09b2\\\\u09c7\\\\u09a8\\\\u09cd\\\\u09a5)<\\\\\\/th><\\\\\\/tr><tr><td>M<\\\\\\/td><td>42\\\\\\\"<\\\\\\/td><td>27\\\\\\\"<\\\\\\/td><\\\\\\/tr><tr><td>L<\\\\\\/td><td>44\\\\\\\"<\\\\\\/td><td>28\\\\\\\"<\\\\\\/td><\\\\\\/tr><tr><td>XL<\\\\\\/td><td>46\\\\\\\"<\\\\\\/td><td>29\\\\\\\"<\\\\\\/td><\\\\\\/tr><tr><td>XXL<\\\\\\/td><td>48\\\\\\\"<\\\\\\/td><td>30\\\\\\\"<\\\\\\/td><\\\\\\/tr><\\\\\\/tbody><\\\\\\/table>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<h3>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u0986\\\\u09ae\\\\u09be\\\\u09a6\\\\u09c7\\\\u09b0 \\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f \\\\u0995\\\\u09cd\\\\u09b0\\\\u09df \\\\u0995\\\\u09b0\\\\u09b2\\\\u09c7 \\\\u0986\\\\u09aa\\\\u09a8\\\\u09bf \\\\u0995\\\\u09bf \\\\u0995\\\\u09bf \\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u09b8\\\\u09c1\\\\u09ac\\\\u09bf\\\\u09a7\\\\u09be \\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u0997\\\\u09c1\\\\u09b2\\\\u09cb \\\\u09aa\\\\u09be\\\\u099a\\\\u09cd\\\\u099b\\\\u09c7\\\\u09a8 \\\\u098f\\\\u0996\\\\u09a8\\\\u0987 \\\\u099c\\\\u09c7\\\\u09a8\\\\u09c7 \\\\u09a8\\\\u09bf\\\\u09a8!!\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/h3>\\\\n\\\\t\\\\t\\\\t<link rel=\\\\\\\"stylesheet\\\\\\\" href=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/plugins\\\\\\/elementor\\\\\\/assets\\\\\\/css\\\\\\/widget-icon-list.min.css\\\\\\\">\\\\t\\\\t<ul>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg aria-hidden=\\\\\\\"true\\\\\\\" viewBox=\\\\\\\"0 0 512 512\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t \\\\u09b8\\\\u09be\\\\u09b0\\\\u09be \\\\u09ac\\\\u09be\\\\u0982\\\\u09b2\\\\u09be\\\\u09a6\\\\u09c7\\\\u09b6\\\\u09c7 \\\\u09b9\\\\u09cb\\\\u09ae \\\\u09a1\\\\u09c7\\\\u09b2\\\\u09bf\\\\u09ad\\\\u09be\\\\u09b0\\\\u09bf\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg aria-hidden=\\\\\\\"true\\\\\\\" viewBox=\\\\\\\"0 0 512 512\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u09b8\\\\u09ae\\\\u09cd\\\\u09aa\\\\u09c2\\\\u09b0\\\\u09cd\\\\u09a3 \\\\u0995\\\\u09c7\\\\u09b6 \\\\u0985\\\\u09a8 \\\\u09a1\\\\u09c7\\\\u09b2\\\\u09bf\\\\u09ad\\\\u09be\\\\u09b0\\\\u09bf \\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg aria-hidden=\\\\\\\"true\\\\\\\" viewBox=\\\\\\\"0 0 512 512\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u09aa\\\\u09a3\\\\u09cd\\\\u09af \\\\u09b0\\\\u09bf\\\\u09b8\\\\u09bf\\\\u09ad \\\\u0995\\\\u09b0\\\\u09be\\\\u09b0 \\\\u09b8\\\\u09ae\\\\u09df \\\\u09a6\\\\u09c7\\\\u0996\\\\u09c7 \\\\u09a8\\\\u09c7\\\\u0993\\\\u09df\\\\u09be\\\\u09b0 \\\\u09b8\\\\u09c1\\\\u09af\\\\u09cb\\\\u0997\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg aria-hidden=\\\\\\\"true\\\\\\\" viewBox=\\\\\\\"0 0 512 512\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u09b8\\\\u09be\\\\u0987\\\\u099c \\\\u09b8\\\\u09ae\\\\u09b8\\\\u09cd\\\\u09af\\\\u09be \\\\u09b9\\\\u09b2\\\\u09c7 \\\\u09ed\\\\u09e8 \\\\u0998\\\\u09a3\\\\u09cd\\\\u099f\\\\u09be\\\\u09b0 \\\\u09ae\\\\u09a7\\\\u09cd\\\\u09af\\\\u09c7 \\\\u09aa\\\\u09b0\\\\u09bf\\\\u09ac\\\\u09b0\\\\u09cd\\\\u09a4\\\\u09a8\\\\u09c7\\\\u09b0 \\\\u09b8\\\\u09c1\\\\u09af\\\\u09cb\\\\u0997\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg aria-hidden=\\\\\\\"true\\\\\\\" viewBox=\\\\\\\"0 0 512 512\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u09e8\\\\u09ea \\\\u0998\\\\u09a3\\\\u09cd\\\\u099f\\\\u09be \\\\u0995\\\\u09be\\\\u09b8\\\\u09cd\\\\u099f\\\\u09cb\\\\u09ae\\\\u09be\\\\u09b0 \\\\u0995\\\\u09c7\\\\u09df\\\\u09be\\\\u09b0 \\\\u09b8\\\\u09be\\\\u09aa\\\\u09cb\\\\u09b0\\\\u09cd\\\\u099f\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg aria-hidden=\\\\\\\"true\\\\\\\" viewBox=\\\\\\\"0 0 512 512\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\u09aa\\\\u09a3\\\\u09cd\\\\u09af \\\\u09ad\\\\u09be\\\\u09b2\\\\u09cb \\\\u09a8\\\\u09be \\\\u09b2\\\\u09be\\\\u0997\\\\u09b2\\\\u09c7 \\\\u09b0\\\\u09bf\\\\u09b0\\\\u09cd\\\\u099f\\\\u09be\\\\u09a8 \\\\u0995\\\\u09b0\\\\u09be\\\\u09b0 \\\\u09b8\\\\u09c1\\\\u09ac\\\\u09bf\\\\u09a7\\\\u09be\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/ul>\\\\n\\\\t\\\\t\\\\t<h2>\\\\u0995\\\\u09be\\\\u09b8\\\\u09cd\\\\u099f\\\\u09ae\\\\u09be\\\\u09b0 \\\\u09b0\\\\u09bf\\\\u09ad\\\\u09bf\\\\u0989<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<style>\\\\\\/*! elementor - v3.20.0 - 20-03-2024 *\\\\\\/\\\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\\\\\/ var(--e-image-carousel-slides-to-show, 3))}<\\\\\\/style>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<figure><img src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/gal-2-1.png\\\\\\\" alt=\\\\\\\"gal-2.png\\\\\\\" \\\\\\/><\\\\\\/figure><figure><img src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/gal-4-1.png\\\\\\\" alt=\\\\\\\"gal-4.png\\\\\\\" \\\\\\/><\\\\\\/figure>\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg aria-hidden=\\\\\\\"true\\\\\\\" viewBox=\\\\\\\"0 0 1000 1000\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg aria-hidden=\\\\\\\"true\\\\\\\" viewBox=\\\\\\\"0 0 1000 1000\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>\\\\u09aa\\\\u09cd\\\\u09b0\\\\u09a4\\\\u09bf\\\\u099f\\\\u09be \\\\u099c\\\\u0997\\\\u09be\\\\u09b0 \\\\u098f\\\\u09b0 \\\\u0995\\\\u09be\\\\u09aa\\\\u09dc \\\\u0987\\\\u09ae\\\\u09aa\\\\u09cb\\\\u09b0\\\\u09cd\\\\u099f\\\\u09c7\\\\u09a1\\\\u0964 \\\\u09e7\\\\u09e6\\\\u09e6 \\\\u09ad\\\\u09be\\\\u0997 \\\\u0995\\\\u099f\\\\u09a8 \\\\u09a4\\\\u09be\\\\u0987 <\\\\\\/br> \\\\u0997\\\\u09b0\\\\u09ae\\\\u09c7\\\\u09b0 \\\\u099c\\\\u09a8\\\\u09cd\\\\u09af \\\\u0996\\\\u09c1\\\\u09ac-\\\\u0987 \\\\u0986\\\\u09b0\\\\u09be\\\\u09ae\\\\u09a6\\\\u09be\\\\u09df\\\\u0995 \\\\u098f\\\\u09ac\\\\u0982 \\\\u09b0\\\\u0982 \\\\u09a8\\\\u09b7\\\\u09cd\\\\u099f \\\\u09b9\\\\u09ac\\\\u09c7 \\\\u09a8\\\\u09be \\\\u0987\\\\u09a8\\\\u09b6\\\\u09be\\\\u2014\\\\u0986\\\\u09b2\\\\u09cd\\\\u09b2\\\\u09be\\\\u09b9\\\\u0964<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>\\\\u0985\\\\u0997\\\\u09cd\\\\u09b0\\\\u09c0\\\\u09ae \\\\u0995\\\\u09cb\\\\u09a8 \\\\u099f\\\\u09be\\\\u0995\\\\u09be \\\\u09a8\\\\u09c7\\\\u0993\\\\u09df\\\\u09be \\\\u09b9\\\\u09df \\\\u09a8\\\\u09be\\\\u0964 \\\\u09aa\\\\u09cd\\\\u09b0\\\\u09a1\\\\u09be\\\\u0995\\\\u09cd\\\\u099f \\\\u09b9\\\\u09be\\\\u09a4\\\\u09c7 \\\\u09aa\\\\u09c7\\\\u09df\\\\u09c7 \\\\u09a1\\\\u09c7\\\\u09b2\\\\u09bf\\\\u09ad\\\\u09be\\\\u09b0\\\\u09bf \\\\u09ae\\\\u09cd\\\\u09af\\\\u09be\\\\u09a8\\\\u09c7\\\\u09b0 \\\\u0995\\\\u09be\\\\u099b\\\\u09c7 \\\\u099f\\\\u09be\\\\u0995\\\\u09be \\\\u09aa\\\\u09b0\\\\u09bf\\\\u09b6\\\\u09cb\\\\u09a7 \\\\u0995\\\\u09b0\\\\u09ac\\\\u09c7\\\\u09a8\\\\u0964<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<h2>\\\\u0985\\\\u09b0\\\\u09cd\\\\u09a1\\\\u09be\\\\u09b0 \\\\u0995\\\\u09b0\\\\u09a4\\\\u09c7 \\\\u09a8\\\\u09bf\\\\u099a\\\\u09c7\\\\u09b0 \\\\u09ab\\\\u09b0\\\\u09cd\\\\u09ae\\\\u099f\\\\u09bf \\\\u09aa\\\\u09c2\\\\u09b0\\\\u09a8 \\\\u0995\\\\u09b0\\\\u09c1\\\\u09a8<\\\\\\/h2>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\u09af\\\\u09c7\\\\u0995\\\\u09cb\\\\u09a8\\\\u09cb \\\\u09b8\\\\u09ae\\\\u09b8\\\\u09cd\\\\u09af\\\\u09be\\\\u09df \\\\u09b0\\\\u09bf\\\\u099f\\\\u09be\\\\u09b0\\\\u09cd\\\\u09a8 \\\\u09ac\\\\u09be \\\\u09aa\\\\u09b0\\\\u09bf\\\\u09ac\\\\u09b0\\\\u09cd\\\\u09a4\\\\u09a8 \\\\u0995\\\\u09b0\\\\u09a4\\\\u09c7 \\\\u09aa\\\\u09be\\\\u09b0\\\\u09ac\\\\u09c7\\\\u09a8  \\\\u09ed\\\\u09e8 \\\\u0998\\\\u09a8\\\\u09cd\\\\u099f\\\\u09be\\\\u09b0 \\\\u09ae\\\\u09a7\\\\u09cd\\\\u09af\\\\u09c7\\\\u0964\\\\t\\\\t\\\\n<!-- CHECKOUT SHORTCODE -->\\\\n<form name=\\\\\\\"checkout\\\\\\\" method=\\\\\\\"post\\\\\\\" action=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/checkout\\\\\\/\\\\\\\" enctype=\\\\\\\"multipart\\\\\\/form-data\\\\\\\">\\\\n\\\\t<h3 id=\\\\\\\"your_products_heading\\\\\\\"> \\\\u09b6\\\\u09be\\\\u09b0\\\\u09cd\\\\u099f \\\\u09b8\\\\u0982\\\\u0996\\\\u09cd\\\\u09af\\\\u09be \\\\u09a8\\\\u09bf\\\\u09b0\\\\u09cd\\\\u09a7\\\\u09be\\\\u09b0\\\\u09a3 \\\\u0995\\\\u09b0\\\\u09c1\\\\u09a8 <\\\\\\/h3>\\\\n\\\\t\\\\tProduct\\\\n\\\\t\\\\tQuantity\\\\n\\\\t\\\\tPrice\\\\n\\\\t<input type=\\\\\\\"checkbox\\\\\\\"\\\\n\\\\tname=\\\\\\\"wcf-multiple-sel\\\\\\\"\\\\n\\\\tvalue=\\\\\\\"414\\\\\\\"  >\\\\n\\\\t<img width=\\\\\\\"400\\\\\\\" height=\\\\\\\"400\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/demo.digiprodwave.xyz\\\\\\/wp-content\\\\\\/uploads\\\\\\/2024\\\\\\/03\\\\\\/IMG_0281-1-400x400.jpg\\\\\\\" alt=\\\\\\\"\\\\\\\" \\\\\\/>\\\\nFull Sleeve M11\\\\n\\\\t\\\\t&minus;\\\\n\\\\t\\\\t<input autocomplete=\\\\\\\"off\\\\\\\" type=\\\\\\\"number\\\\\\\" value=\\\\\\\"1\\\\\\\" step=\\\\\\\"1\\\\\\\" min=\\\\\\\"1\\\\\\\" name=\\\\\\\"wcf_qty_selection\\\\\\\" placeholder=\\\\\\\"1\\\\\\\" data-sale-limit=\\\\\\\"false\\\\\\\" title=\\\\\\\"\\\\\\\"  >\\\\n\\\\t\\\\t&plus;\\\\n\\\\t1,200.00&#2547;&nbsp;\\\\n\\\\t\\\\t<h3 id=\\\\\\\"billing_fields_heading\\\\\\\">Billing details<\\\\\\/h3>\\\\n\\\\t\\\\t<p id=\\\\\\\"billing_first_name_field\\\\\\\" data-priority=\\\\\\\"10\\\\\\\"><label for=\\\\\\\"billing_first_name\\\\\\\">\\\\u0986\\\\u09aa\\\\u09a8\\\\u09be\\\\u09b0 \\\\u09a8\\\\u09be\\\\u09ae&nbsp;<abbr title=\\\\\\\"required\\\\\\\">*<\\\\\\/abbr><\\\\\\/label><input type=\\\\\\\"text\\\\\\\" name=\\\\\\\"billing_first_name\\\\\\\" id=\\\\\\\"billing_first_name\\\\\\\" placeholder=\\\\\\\"\\\\\\\"  value=\\\\\\\"Minu Khan\\\\\\\" autocomplete=\\\\\\\"given-name\\\\\\\" \\\\\\/><\\\\\\/p><p id=\\\\\\\"billing_address_1_field\\\\\\\" data-priority=\\\\\\\"50\\\\\\\"><label for=\\\\\\\"billing_address_1\\\\\\\">\\\\u0986\\\\u09aa\\\\u09a8\\\\u09be\\\\u09b0 \\\\u09b8\\\\u09ae\\\\u09cd\\\\u09aa\\\\u09c2\\\\u09b0\\\\u09cd\\\\u09a3 \\\\u09a0\\\\u09bf\\\\u0995\\\\u09be\\\\u09a8\\\\u09be&nbsp;<abbr title=\\\\\\\"required\\\\\\\">*<\\\\\\/abbr><\\\\\\/label><input type=\\\\\\\"text\\\\\\\" name=\\\\\\\"billing_address_1\\\\\\\" id=\\\\\\\"billing_address_1\\\\\\\" placeholder=\\\\\\\"\\\\u0986\\\\u09aa\\\\u09a8\\\\u09be\\\\u09b0 \\\\u09a0\\\\u09bf\\\\u0995\\\\u09be\\\\u09a8\\\\u09be\\\\\\/\\\\u098f\\\\u09b2\\\\u09be\\\\u0995\\\\u09be\\\\u09b0 \\\\u09a8\\\\u09be\\\\u09ae, \\\\u09a5\\\\u09be\\\\u09a8\\\\u09be, \\\\u099c\\\\u09c7\\\\u09b2\\\\u09be\\\\\\\"  value=\\\\\\\"test\\\\\\\" autocomplete=\\\\\\\"address-line1\\\\\\\" \\\\\\/><\\\\\\/p><p id=\\\\\\\"billing_phone_field\\\\\\\" data-priority=\\\\\\\"100\\\\\\\"><label for=\\\\\\\"billing_phone\\\\\\\">\\\\u0986\\\\u09aa\\\\u09a8\\\\u09be\\\\u09b0 \\\\u09ab\\\\u09cb\\\\u09a8 \\\\u09a8\\\\u09be\\\\u09ae\\\\u09cd\\\\u09ac\\\\u09be\\\\u09b0&nbsp;<abbr title=\\\\\\\"required\\\\\\\">*<\\\\\\/abbr><\\\\\\/label><input type=\\\\\\\"tel\\\\\\\" name=\\\\\\\"billing_phone\\\\\\\" id=\\\\\\\"billing_phone\\\\\\\" placeholder=\\\\\\\"\\\\\\\"  value=\\\\\\\"0190\\\\\\\" autocomplete=\\\\\\\"tel\\\\\\\" \\\\\\/><\\\\\\/p><p id=\\\\\\\"billing_size_field\\\\\\\" data-priority=\\\\\\\"120\\\\\\\"><label for=\\\\\\\"billing_size_M\\\\\\\">\\\\u09b8\\\\u09be\\\\u0987\\\\u099c&nbsp;<abbr title=\\\\\\\"required\\\\\\\">*<\\\\\\/abbr><\\\\\\/label><input type=\\\\\\\"radio\\\\\\\" value=\\\\\\\"M\\\\\\\" name=\\\\\\\"billing_size\\\\\\\"  id=\\\\\\\"billing_size_M\\\\\\\" \\\\\\/><label for=\\\\\\\"billing_size_M\\\\\\\">M<\\\\\\/label><input type=\\\\\\\"radio\\\\\\\" value=\\\\\\\"L\\\\\\\" name=\\\\\\\"billing_size\\\\\\\"  id=\\\\\\\"billing_size_L\\\\\\\" \\\\\\/><label for=\\\\\\\"billing_size_L\\\\\\\">L<\\\\\\/label><input type=\\\\\\\"radio\\\\\\\" value=\\\\\\\"XL\\\\\\\" name=\\\\\\\"billing_size\\\\\\\"  id=\\\\\\\"billing_size_XL\\\\\\\" checked=\'checked\' \\\\\\/><label for=\\\\\\\"billing_size_XL\\\\\\\">XL<\\\\\\/label><input type=\\\\\\\"radio\\\\\\\" value=\\\\\\\"XXL\\\\\\\" name=\\\\\\\"billing_size\\\\\\\"  id=\\\\\\\"billing_size_XXL\\\\\\\" \\\\\\/><label for=\\\\\\\"billing_size_XXL\\\\\\\">XXL<\\\\\\/label><\\\\\\/p>\\\\t\\\\n\\\\t<input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"_wcf_flow_id\\\\\\\" value=\\\\\\\"342\\\\\\\"><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"_wcf_checkout_id\\\\\\\" value=\\\\\\\"344\\\\\\\">\\\\n\\\\t\\\\t<input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_source_type\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_referrer\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_utm_campaign\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_utm_source\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_utm_medium\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_utm_content\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_utm_id\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_utm_term\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_session_entry\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_session_start_time\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_session_pages\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_session_count\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"wc_order_attribution_user_agent\\\\\\\" value=\\\\\\\"\\\\\\\" \\\\\\/>\\\\n\\\\t\\\\t<h3 id=\\\\\\\"order_review_heading\\\\\\\">Your order<\\\\\\/h3>\\\\n\\\\t\\\\t\\\\t<table data-update-time=\\\\\\\"1711183983\\\\\\\">\\\\n\\\\t<thead>\\\\n\\\\t\\\\t<tr>\\\\n\\\\t\\\\t\\\\t<th>Product<\\\\\\/th>\\\\n\\\\t\\\\t\\\\t<th>Subtotal<\\\\\\/th>\\\\n\\\\t\\\\t<\\\\\\/tr>\\\\n\\\\t<\\\\\\/thead>\\\\n\\\\t<tbody>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<tr>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<td>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\tFull Sleeve M1&nbsp;\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t <strong>&times;&nbsp;1<\\\\\\/strong>\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/td>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<td>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<bdi>1,200.00&#2547;&nbsp;<\\\\\\/bdi>\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/td>\\\\n\\\\t\\\\t\\\\t\\\\t<\\\\\\/tr>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/tbody>\\\\n\\\\t<tfoot>\\\\n\\\\t\\\\t<tr>\\\\n\\\\t\\\\t\\\\t<th>Subtotal<\\\\\\/th>\\\\n\\\\t\\\\t\\\\t<td><bdi>1,200.00&#2547;&nbsp;<\\\\\\/bdi><\\\\\\/td>\\\\n\\\\t\\\\t<\\\\\\/tr>\\\\n\\\\t\\\\t\\\\t<tr>\\\\n\\\\t<th>Shipping<\\\\\\/th>\\\\n\\\\t<td data-title=\\\\\\\"Shipping\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<ul id=\\\\\\\"shipping_method\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"shipping_method[0]\\\\\\\" data-index=\\\\\\\"0\\\\\\\" id=\\\\\\\"shipping_method_0_free_shipping1\\\\\\\" value=\\\\\\\"free_shipping:1\\\\\\\" \\\\\\/><label for=\\\\\\\"shipping_method_0_free_shipping1\\\\\\\">Free shipping<\\\\\\/label>\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/ul>\\\\n\\\\t\\\\t\\\\t<\\\\\\/td>\\\\n<\\\\\\/tr>\\\\n\\\\t\\\\t<tr>\\\\n\\\\t\\\\t\\\\t<th>Total<\\\\\\/th>\\\\n\\\\t\\\\t\\\\t<td><strong><bdi>1,200.00&#2547;&nbsp;<\\\\\\/bdi><\\\\\\/strong> <\\\\\\/td>\\\\n\\\\t\\\\t<\\\\\\/tr>\\\\n\\\\t<\\\\\\/tfoot>\\\\n<\\\\\\/table>\\\\n\\\\t\\\\t\\\\t<ul>\\\\n\\\\t\\\\t\\\\t<li>\\\\n\\\\t<input id=\\\\\\\"payment_method_cod\\\\\\\" type=\\\\\\\"radio\\\\\\\" name=\\\\\\\"payment_method\\\\\\\" value=\\\\\\\"cod\\\\\\\"  checked=\'checked\' data-order_button_text=\\\\\\\"\\\\\\\" \\\\\\/>\\\\n\\\\t<label for=\\\\\\\"payment_method_cod\\\\\\\">\\\\n\\\\t\\\\t\\\\u0995\\\\u09cd\\\\u09af\\\\u09be\\\\u09b6\\\\u0985\\\\u09a8 \\\\u09a1\\\\u09c7\\\\u09b2\\\\u09bf\\\\u09ad\\\\u09be\\\\u09b0\\\\u09bf \\\\t<\\\\\\/label>\\\\n\\\\t\\\\t\\\\t<p>\\\\u09aa\\\\u09a3\\\\u09cd\\\\u09af \\\\u09b9\\\\u09be\\\\u09a4\\\\u09c7 \\\\u09aa\\\\u09c7\\\\u09df\\\\u09c7 \\\\u09aa\\\\u09c7\\\\u09ae\\\\u09c7\\\\u09a8\\\\u09cd\\\\u099f \\\\u0995\\\\u09b0\\\\u09a4\\\\u09c7 \\\\u09aa\\\\u09be\\\\u09b0\\\\u09ac\\\\u09c7\\\\u09a8<\\\\\\/p>\\\\n\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t<\\\\\\/ul>\\\\n\\\\t\\\\t<noscript>\\\\n\\\\t\\\\t\\\\tSince 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.\\\\t\\\\t\\\\t<br\\\\\\/><button type=\\\\\\\"submit\\\\\\\" name=\\\\\\\"woocommerce_checkout_update_totals\\\\\\\" value=\\\\\\\"Update totals\\\\\\\">Update totals<\\\\\\/button>\\\\n\\\\t\\\\t<\\\\\\/noscript>\\\\n\\\\t\\\\t<button type=\\\\\\\"submit\\\\\\\" name=\\\\\\\"woocommerce_checkout_place_order\\\\\\\" id=\\\\\\\"place_order\\\\\\\" value=\\\\\\\"Place Order&nbsp;&nbsp;1,200.00&#2547;&nbsp;\\\\\\\" data-value=\\\\\\\"Place Order&nbsp;&nbsp;1,200.00&#2547;&nbsp;\\\\\\\">Place Order&nbsp;&nbsp;1,200.00&#2547;&nbsp;<\\\\\\/button>\\\\n\\\\t\\\\t<input type=\\\\\\\"hidden\\\\\\\" id=\\\\\\\"woocommerce-process-checkout-nonce\\\\\\\" name=\\\\\\\"woocommerce-process-checkout-nonce\\\\\\\" value=\\\\\\\"ac9461ed14\\\\\\\" \\\\\\/><input type=\\\\\\\"hidden\\\\\\\" name=\\\\\\\"_wp_http_referer\\\\\\\" value=\\\\\\\"\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\\\\\" \\\\\\/>\\\\t\\\\n<\\\\\\/form>\\\\n<!-- END CHECKOUT SHORTCODE -->\\\\n\\\\t\\\\t\\\\t<h6>\\\\u09b2\\\\u09c7\\\\u099f\\\\u09c7\\\\u09b8\\\\u09cd\\\\u099f \\\\u0986\\\\u09aa\\\\u09a1\\\\u09c7\\\\u099f \\\\u09aa\\\\u09c7\\\\u09a4\\\\u09c7 \\\\u0986\\\\u09ae\\\\u09be\\\\u09a6\\\\u09c7\\\\u09b0 \\\\u09b8\\\\u09be\\\\u09a5\\\\u09c7 \\\\u0995\\\\u09be\\\\u09a8\\\\u09c7\\\\u0995\\\\u09cd\\\\u099f \\\\u09a5\\\\u09be\\\\u0995\\\\u09c1\\\\u09a8<\\\\\\/h6>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t<style>\\\\\\/*! elementor - v3.20.0 - 20-03-2024 *\\\\\\/\\\\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}<\\\\\\/style>\\\\t\\\\t\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<a href=\\\\\\\"#\\\\\\\" target=\\\\\\\"_blank\\\\\\\" rel=\\\\\\\"noopener\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\tFacebook\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg viewBox=\\\\\\\"0 0 512 512\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/a>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<a href=\\\\\\\"#\\\\\\\" target=\\\\\\\"_blank\\\\\\\" rel=\\\\\\\"noopener\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\tInstagram\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<svg viewBox=\\\\\\\"0 0 448 512\\\\\\\" xmlns=\\\\\\\"http:\\\\\\/\\\\\\/www.w3.org\\\\\\/2000\\\\\\/svg\\\\\\\"><path d=\\\\\\\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\\\\\\\"><\\\\\\/path><\\\\\\/svg>\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/a>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t<ul>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<a href=\\\\\\\"#\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\tRefund policy \\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/a>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<a href=\\\\\\\"#\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\tPrivacy policy\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/a>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<a href=\\\\\\\"#\\\\\\\">\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\tTerms of service\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/a>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/li>\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t<\\\\\\/ul>\\\\n\\\\t\\\\t\\\\t<p>Copyright \\\\u00a9 2024 Your Business Name | This website made with \\\\u2764\\\\ufe0f by <a href=\\\\\\\"https:\\\\\\/\\\\\\/digiprodwave.xyz\\\\\\/\\\\\\\">DPW<\\\\\\/a><\\\\\\/p>\\\"\\\"\"','Shirts Checkout','','inherit','closed','closed','','1913-revision-v1','','','2026-06-08 21:41:02','2026-06-08 15:41:02','','1913','https://hypergrowth.fishgrowth.xyz/?p=1914','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1915','17','2026-06-08 21:41:03','2026-06-08 15:41:03','\"<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\"','Thanks For Order','','trash','closed','closed','','thanks-for-order__trashed','','','2026-06-09 12:40:59','2026-06-09 06:40:59','','0','https://hypergrowth.fishgrowth.xyz/step/thanks-for-order/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1916','17','2026-06-08 21:41:03','2026-06-08 15:41:03','\"<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\"','Thanks For Order','','inherit','closed','closed','','1915-revision-v1','','','2026-06-08 21:41:03','2026-06-08 15:41:03','','1915','https://hypergrowth.fishgrowth.xyz/?p=1916','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1917','17','2026-06-08 21:41:03','2026-06-08 15:41:03','\"\\\"\\\"<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09beu09b0 u099cu09a8u09cdu09af u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttntt<p>u0986u09aeu09beu09a6u09c7u09b0 u098fu0995u099cu09a8 u09aau09cdu09b0u09a4u09bfu09a8u09bfu09a7u09bf u0996u09c1u09ac u09b6u09c0u0998u09cdu09b0u0987 u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09c7 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u0995u09a8u09abu09beu09b0u09cdu09ae u0995u09b0u09acu09c7u09a8u0964<\\/p>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>603<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>March 24, 2024<\\/strong>ntttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>750.00&#2547;&nbsp;<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttu0995u09c1u09dcu09aeu09c1u09dcu09c7 u09aau09c1u09b0u09beu09a8 u09a2u09beu0995u09beu09b0 u09acu09bfu0996u09cdu09afu09beu09a4 u09a8u09beu09b0u0995u09c7u09b2 <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>750.00&#2547;&nbsp;<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Shipping:<\\/th>nttttttt<td>Free shipping<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>nttt<h2>u0986u09aeu09beu09a6u09c7u09b0 u0997u09cdu09b0u09c1u09aau09c7 u09afu09c1u0995u09cdu09a4 u09b9u09b2u09c7u0987 u09e7u09e6u09e6 u099fu09beu0995u09be u09a1u09bfu09b8u0995u09beu0989u09a8u09cdu099f<\\/h2>ttntt<p>u09a8u09bfu09dfu09aeu09bfu09a4 u0986u09aau09a1u09c7u099f u09aau09c7u09a4u09c7 u0986u09aeu09beu09a6u09c7u09b0 u09abu09c7u09b8u09acu09c1u0995 u09aau09c7u0987u099c u0993 u09abu09c7u09b8u09acu09c1u0995 u0997u09cdu09b0u09c1u09aau09c7u09b0 u09b8u09beu09a5u09c7 u09afu09c1u0995u09cdu09a4 u09a5u09beu0995u09c1u09a8u0964<\\/p>ttnttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\\\"><\\/path><\\/svg>tttnttttttu0986u09aeu09beu09a6u09c7u09b0 u09abu09c7u09b8u09acu09c1u0995 u09aau09c7u099cnttttt<\\/a>nttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 640 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z\\\"><\\/path><\\/svg>tttnttttttu098fu0996u09a8u0987 u09abu09c7u09b8u09acu09c1u0995 u0997u09c1u09aau09c7 u09afu09c1u0995u09cdu09a4 u09b9u09cbu09a8nttttt<\\/a>nttt<a href=\\\"#\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">nttttttu0986u09b0u09cb u0985u09a8u09c7u0995 u09aau09cdu09b0u09a1u09beu0995u09cdu099f u09a6u09c7u0996u09a4u09c7 u09adu09bfu099cu09bfu099f u0995u09b0u09c1u09a8nttttt<\\/a>nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\" style=\\\"color:red\\\">DPW<\\/a><\\/h2>\\\"\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-13__trashed','','','2026-06-09 12:41:28','2026-06-09 06:41:28','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-13/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1918','17','2026-06-08 21:41:03','2026-06-08 15:41:03','\"\\\"\\\"<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09beu09b0 u099cu09a8u09cdu09af u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttntt<p>u0986u09aeu09beu09a6u09c7u09b0 u098fu0995u099cu09a8 u09aau09cdu09b0u09a4u09bfu09a8u09bfu09a7u09bf u0996u09c1u09ac u09b6u09c0u0998u09cdu09b0u0987 u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09c7 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u0995u09a8u09abu09beu09b0u09cdu09ae u0995u09b0u09acu09c7u09a8u0964<\\/p>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>603<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>March 24, 2024<\\/strong>ntttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>750.00&#2547;&nbsp;<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttu0995u09c1u09dcu09aeu09c1u09dcu09c7 u09aau09c1u09b0u09beu09a8 u09a2u09beu0995u09beu09b0 u09acu09bfu0996u09cdu09afu09beu09a4 u09a8u09beu09b0u0995u09c7u09b2 <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>750.00&#2547;&nbsp;<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Shipping:<\\/th>nttttttt<td>Free shipping<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>nttt<h2>u0986u09aeu09beu09a6u09c7u09b0 u0997u09cdu09b0u09c1u09aau09c7 u09afu09c1u0995u09cdu09a4 u09b9u09b2u09c7u0987 u09e7u09e6u09e6 u099fu09beu0995u09be u09a1u09bfu09b8u0995u09beu0989u09a8u09cdu099f<\\/h2>ttntt<p>u09a8u09bfu09dfu09aeu09bfu09a4 u0986u09aau09a1u09c7u099f u09aau09c7u09a4u09c7 u0986u09aeu09beu09a6u09c7u09b0 u09abu09c7u09b8u09acu09c1u0995 u09aau09c7u0987u099c u0993 u09abu09c7u09b8u09acu09c1u0995 u0997u09cdu09b0u09c1u09aau09c7u09b0 u09b8u09beu09a5u09c7 u09afu09c1u0995u09cdu09a4 u09a5u09beu0995u09c1u09a8u0964<\\/p>ttnttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\\\"><\\/path><\\/svg>tttnttttttu0986u09aeu09beu09a6u09c7u09b0 u09abu09c7u09b8u09acu09c1u0995 u09aau09c7u099cnttttt<\\/a>nttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 640 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z\\\"><\\/path><\\/svg>tttnttttttu098fu0996u09a8u0987 u09abu09c7u09b8u09acu09c1u0995 u0997u09c1u09aau09c7 u09afu09c1u0995u09cdu09a4 u09b9u09cbu09a8nttttt<\\/a>nttt<a href=\\\"#\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">nttttttu0986u09b0u09cb u0985u09a8u09c7u0995 u09aau09cdu09b0u09a1u09beu0995u09cdu099f u09a6u09c7u0996u09a4u09c7 u09adu09bfu099cu09bfu099f u0995u09b0u09c1u09a8nttttt<\\/a>nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\" style=\\\"color:red\\\">DPW<\\/a><\\/h2>\\\"\\\"\"','Thank You (Woo)','','inherit','closed','closed','','1917-revision-v1','','','2026-06-08 21:41:03','2026-06-08 15:41:03','','1917','https://hypergrowth.fishgrowth.xyz/?p=1918','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1919','17','2026-06-08 21:41:05','2026-06-08 15:41:05','','foodheavenbd','','trash','closed','closed','','foodheavenbd__trashed','','','2026-06-09 12:40:52','2026-06-09 06:40:52','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=foodheavenbd','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1920','17','2026-06-08 21:41:05','2026-06-08 15:41:05','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-16__trashed','','','2026-06-09 12:40:52','2026-06-09 06:40:52','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-16/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1921','17','2026-06-08 21:41:05','2026-06-08 15:41:05','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1920-revision-v1','','','2026-06-08 21:41:05','2026-06-08 15:41:05','','1920','https://hypergrowth.fishgrowth.xyz/?p=1921','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1922','17','2026-06-08 21:41:05','2026-06-08 15:41:05','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"512\\\" height=\\\"512\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp 512w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-100x100.webp 100w\\\" sizes=\\\"(max-width: 512px) 100vw, 512px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u0986\\u09ae\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2><s>\\u0986\\u0997\\u09c7\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\u0983 \\u09e7\\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/s><\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09b8\\u09c7\\u09b0\\u09be \\u0985\\u09ab\\u09be\\u09b0\\u0983   \\u09ea  \\u0995\\u09c7\\u099c\\u09bf\\n\\t\\t\\t\\t\\t690\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be (\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae  \\u09ab\\u09cd\\u09b0\\u09c0)\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-carousel.min.css\\\">\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\tPrevious\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\tNext\\n\\t\\t\\t<h2>\\u09aa\\u09a8\\u09cd\\u09af \\u0997\\u09cd\\u09b0\\u09b9\\u09a8 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<p>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u098f\\u09a4\\u0987 \\u0995\\u09a8\\u09ab\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u09b8 \\u09af\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u0986\\u09b6\\u09be \\u09b0\\u09be\\u0996\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09be\\u09b8\\u09be\\u09af\\u09bc \\u09af\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09a6\\u09c7\\u0996\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09a8\\u09c7\\u0995\\u09cd\\u09b8\\u099f \\u099f\\u09be\\u0987\\u09ae \\u0986\\u09ac\\u09be\\u09b0\\u09cb \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u0964\\u0964 \\n<\\/p>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"768\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/789718a0-e8ed-46d8-873e-2b748ee85020_11_11zon-1024x768.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/789718a0-e8ed-46d8-873e-2b748ee85020_11_11zon-1024x768.webp 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/789718a0-e8ed-46d8-873e-2b748ee85020_11_11zon-300x225.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/789718a0-e8ed-46d8-873e-2b748ee85020_11_11zon-768x576.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/789718a0-e8ed-46d8-873e-2b748ee85020_11_11zon-1536x1152.webp 1536w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/789718a0-e8ed-46d8-873e-2b748ee85020_11_11zon-600x450.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/789718a0-e8ed-46d8-873e-2b748ee85020_11_11zon.webp 1600w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"768\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-1024x768.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-1024x768.webp 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-300x225.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-768x576.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-600x450.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon.webp 1280w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"768\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-1024x768.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-1024x768.webp 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-300x225.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-768x576.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-1536x1152.webp 1536w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-600x450.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon.webp 1600w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"768\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-1024x768.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-1024x768.webp 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-300x225.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-768x576.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-600x450.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon.webp 1280w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"768\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8e401ee6-c68c-41fb-aff6-ce944ab496fa_5_11zon-1024x768.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8e401ee6-c68c-41fb-aff6-ce944ab496fa_5_11zon-1024x768.webp 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8e401ee6-c68c-41fb-aff6-ce944ab496fa_5_11zon-300x225.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8e401ee6-c68c-41fb-aff6-ce944ab496fa_5_11zon-768x576.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8e401ee6-c68c-41fb-aff6-ce944ab496fa_5_11zon-600x450.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8e401ee6-c68c-41fb-aff6-ce944ab496fa_5_11zon.webp 1152w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/32a32e67-661e-487e-ae08-797b800ddf78_7_11zon-1024x1024.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/32a32e67-661e-487e-ae08-797b800ddf78_7_11zon-1024x1024.webp 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/32a32e67-661e-487e-ae08-797b800ddf78_7_11zon-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/32a32e67-661e-487e-ae08-797b800ddf78_7_11zon-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/32a32e67-661e-487e-ae08-797b800ddf78_7_11zon-768x768.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/32a32e67-661e-487e-ae08-797b800ddf78_7_11zon-600x600.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/32a32e67-661e-487e-ae08-797b800ddf78_7_11zon-100x100.webp 100w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/32a32e67-661e-487e-ae08-797b800ddf78_7_11zon.webp 1280w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0995\\u09bf \\u0995\\u09bf \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u0995\\u09bf\\u09a8\\u09be \\u0989\\u099a\\u09bf\\u09ce!<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\\\"><\\/path><\\/svg>\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u0986\\u09ae\\u09b0\\u09be \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09a4\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0\\u09a4\\u09c7 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u0995\\u09b0\\u09bf \\u09b8\\u09c1\\u09a4\\u09b0\\u09be\\u0982 \\u09aa\\u09a8\\u09cd\\u09af \\u0997\\u09cd\\u09b0\\u09b9\\u09a8 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0986\\u0997\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ae\\u09cd\\u09af\\u09be\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09be\\u09b8\\u09be\\u09af\\u09bc \\u09af\\u09be\\u09ac\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09a3\\u09cd\\u09af \\u09a6\\u09c7\\u0996\\u09c7 \\u09b6\\u09c1\\u09a8\\u09c7 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b7\\u09a6 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u098f\\u0987 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ab\\u09bf \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09b0\\u0982 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8 <\\/h3>\\n\\t<input type=\\\"radio\\\"\\n\\tid=\\\"wcf-item-product-989\\\"\\n\\tname=\\\"wcf-single-sel\\\" \\n\\tvalue=\\\"989\\\"\\n\\t>\\n\\t<label for=\\\"wcf-item-product-989\\\"><\\/label>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-100x100.webp 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"240\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"243\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717966068\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t<p>Design by <a style=\\\"color: #ff0000;\\\" href=\\\"https:\\/\\/itgalaxi.com\\\">itgalaxi<\\/a><\\/p>\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-19__trashed','','','2026-06-09 12:40:52','2026-06-09 06:40:52','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-19/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1923','17','2026-06-08 21:41:05','2026-06-08 15:41:05','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"512\\\" height=\\\"512\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp 512w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-100x100.webp 100w\\\" sizes=\\\"(max-width: 512px) 100vw, 512px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u0986\\u09ae\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2><s>\\u0986\\u0997\\u09c7\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\u0983 \\u09e7\\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/s><\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09b8\\u09c7\\u09b0\\u09be \\u0985\\u09ab\\u09be\\u09b0\\u0983   \\u09ea  \\u0995\\u09c7\\u099c\\u09bf\\n\\t\\t\\t\\t\\t690\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be (\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae  \\u09ab\\u09cd\\u09b0\\u09c0)\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-carousel.min.css\\\">\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\tPrevious\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\tNext\\n\\t\\t\\t<h2>\\u09aa\\u09a8\\u09cd\\u09af \\u0997\\u09cd\\u09b0\\u09b9\\u09a8 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<p>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u098f\\u09a4\\u0987 \\u0995\\u09a8\\u09ab\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u09b8 \\u09af\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u0986\\u09b6\\u09be \\u09b0\\u09be\\u0996\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09be\\u09b8\\u09be\\u09af\\u09bc \\u09af\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09ae \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u09a6\\u09c7\\u0996\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09a8\\u09c7\\u0995\\u09cd\\u09b8\\u099f \\u099f\\u09be\\u0987\\u09ae \\u0986\\u09ac\\u09be\\u09b0\\u09cb \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u0964\\u0964 \\n<\\/p>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"768\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/789718a0-e8ed-46d8-873e-2b748ee85020_11_11zon-1024x768.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/789718a0-e8ed-46d8-873e-2b748ee85020_11_11zon-1024x768.webp 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/789718a0-e8ed-46d8-873e-2b748ee85020_11_11zon-300x225.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/789718a0-e8ed-46d8-873e-2b748ee85020_11_11zon-768x576.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/789718a0-e8ed-46d8-873e-2b748ee85020_11_11zon-1536x1152.webp 1536w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/789718a0-e8ed-46d8-873e-2b748ee85020_11_11zon-600x450.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/789718a0-e8ed-46d8-873e-2b748ee85020_11_11zon.webp 1600w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"768\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-1024x768.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-1024x768.webp 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-300x225.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-768x576.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-600x450.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon.webp 1280w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"768\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-1024x768.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-1024x768.webp 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-300x225.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-768x576.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-1536x1152.webp 1536w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-600x450.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon.webp 1600w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"768\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-1024x768.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-1024x768.webp 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-300x225.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-768x576.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon-600x450.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8b2a052e-958c-4db0-9b72-d6c98cf1f25d_4_11zon.webp 1280w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"768\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8e401ee6-c68c-41fb-aff6-ce944ab496fa_5_11zon-1024x768.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8e401ee6-c68c-41fb-aff6-ce944ab496fa_5_11zon-1024x768.webp 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8e401ee6-c68c-41fb-aff6-ce944ab496fa_5_11zon-300x225.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8e401ee6-c68c-41fb-aff6-ce944ab496fa_5_11zon-768x576.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8e401ee6-c68c-41fb-aff6-ce944ab496fa_5_11zon-600x450.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8e401ee6-c68c-41fb-aff6-ce944ab496fa_5_11zon.webp 1152w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/32a32e67-661e-487e-ae08-797b800ddf78_7_11zon-1024x1024.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/32a32e67-661e-487e-ae08-797b800ddf78_7_11zon-1024x1024.webp 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/32a32e67-661e-487e-ae08-797b800ddf78_7_11zon-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/32a32e67-661e-487e-ae08-797b800ddf78_7_11zon-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/32a32e67-661e-487e-ae08-797b800ddf78_7_11zon-768x768.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/32a32e67-661e-487e-ae08-797b800ddf78_7_11zon-600x600.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/32a32e67-661e-487e-ae08-797b800ddf78_7_11zon-100x100.webp 100w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/32a32e67-661e-487e-ae08-797b800ddf78_7_11zon.webp 1280w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0995\\u09bf \\u0995\\u09bf \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u0995\\u09bf\\u09a8\\u09be \\u0989\\u099a\\u09bf\\u09ce!<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\\\"><\\/path><\\/svg>\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u0986\\u09ae\\u09b0\\u09be \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09a4\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0\\u09a4\\u09c7 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u0995\\u09b0\\u09bf \\u09b8\\u09c1\\u09a4\\u09b0\\u09be\\u0982 \\u09aa\\u09a8\\u09cd\\u09af \\u0997\\u09cd\\u09b0\\u09b9\\u09a8 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0986\\u0997\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ae\\u09cd\\u09af\\u09be\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09be\\u09b8\\u09be\\u09af\\u09bc \\u09af\\u09be\\u09ac\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09a3\\u09cd\\u09af \\u09a6\\u09c7\\u0996\\u09c7 \\u09b6\\u09c1\\u09a8\\u09c7 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b7\\u09a6 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u098f\\u0987 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ab\\u09bf \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09b0\\u0982 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8 <\\/h3>\\n\\t<input type=\\\"radio\\\"\\n\\tid=\\\"wcf-item-product-989\\\"\\n\\tname=\\\"wcf-single-sel\\\" \\n\\tvalue=\\\"989\\\"\\n\\t>\\n\\t<label for=\\\"wcf-item-product-989\\\"><\\/label>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-100x100.webp 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"240\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"243\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717966068\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t<p>Design by <a style=\\\"color: #ff0000;\\\" href=\\\"https:\\/\\/itgalaxi.com\\\">itgalaxi<\\/a><\\/p>\"','Checkout (Woo)','','inherit','closed','closed','','1922-revision-v1','','','2026-06-08 21:41:05','2026-06-08 15:41:05','','1922','https://hypergrowth.fishgrowth.xyz/?p=1923','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1924','17','2026-06-08 21:41:13','2026-06-08 15:41:13','','Himsagor #1','','trash','closed','closed','','himsagor-1__trashed','','','2026-06-09 12:47:55','2026-06-09 06:47:55','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=himsagor-1','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1925','17','2026-06-08 21:41:13','2026-06-08 15:41:13','\"\\\"\\\"<img width=\\\"300\\\" height=\\\"184\\\" src=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/03\\/Logo-1-01-e1710439185699-300x184.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/03\\/Logo-1-01-e1710439185699-300x184.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Logo-1-01-e1710439185699-600x368-1.png 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Logo-1-01-e1710439185699-768x471-1.png 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Logo-1-01-e1710439185699.png 863w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>tttttttttttttnttt<h2>u099au09beu0981u09aau09beu0987u09a8u09acu09beu09acu0997u099eu09cdu099cu09c7u09b0 u09e7u09e6u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} u0995u09beu09b0u09cdu09acu09beu0987u09a1u09aeu09c1u0995u09cdu09a4 u09b9u09bfu09aeu09b8u09beu0997u09b0\\/u0996u09bfu09b0u09b8u09beu09aau09beu09a4 u0986u09ae<\\/h2>ttntt<p>u09acu09beu099cu09beu09b0u09c7u09b0 u0995u09beu09b0u09cdu09acu09beu0987u09a1u09afu09c1u0995u09cdu09a4 u09acu09bfu09b7 u0986u09ae u0996u09beu09acu09c7u09a8 u09a8u09beu0995u09bf u09acu09bfu09b7u09aeu09c1u0995u09cdu09a4 u0986u09ae u0996u09beu09acu09c7u09a8 u09b8u09bfu09a6u09cdu09a7u09beu09a8u09cdu09a4 u0986u09aau09a8u09beu09b0!<\\/p>https:\\/\\/youtu.be\\/XZERVqyuZrw?si=WUvAJtp97EdfBfj0ttnttt<a href=\\\"#order\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>tttnttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u0995u09cdu09b2u09bfu0995 u0995u09b0u09c1u09a8nttttt<\\/a>nttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09a8u09bfu099cu09b8u09cdu09ac u09a4u09a4u09cdu09a4u09cdu09acu09beu09acu09a7u09beu09a8u09c7 u09acu09beu0997u09beu09a8 u09a5u09c7u0995u09c7 u09b8u0982u0997u09c3u09b9u09c0u09a4nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aau09cdu09b0u09beu0995u09c3u09a4u09bfu0995u09adu09beu09acu09c7 u09aau09beu0995u09benttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09acu09beu099bu09beu0987u0995u09c3u09a4 u09b8u09c7u09b0u09be u09aeu09beu09a8u09c7u09b0nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aau09c7u09b8u099fu09bfu09b8u09beu0987u09a1 u09b0u09c7u09b8u09bfu09a1u09bfu0989 u09aeu09c1u0995u09cdu09a4nttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>u0986u09aeu09beu09a6u09c7u09b0 u09a5u09c7u0995u09c7u0987 u0995u09c7u09a8 u200du09a8u09bfu09acu09c7u09a8?<\\/h2>ttnttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b6u09a4u09adu09beu0997 u09abu09cdu09b0u09c7u09b6 u098fu09acu0982 u09adu09c7u099cu09beu09b2u09aeu09c1u0995u09cdu09a4 u0986u09aeu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09b0u09beu09b8u09b0u09bf u09acu09beu0997u09beu09a8 u09a5u09c7u0995u09c7 u09b8u0982u0997u09c3u09b9u09c0u09a4u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09b0u09beu09b8u09b0u09bf u09acu09beu0997u09beu09a8 u09a5u09c7u0995u09c7 u0986u09aau09a8u09beu09b0 u09b9u09beu09a4u09c7 u09aau09ccu0981u099bu09c7 u09a6u09c7u0993u09afu09bcu09beu09b0 u09a6u09beu09afu09bcu09bfu09a4u09cdu09ac u09a8u09bfu099au09cdu099bu09bf u0986u09aeu09b0u09beu0987u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09ae u09aau09beu09dcu09beu09b0 u09e8u09ea-u09edu09e8 u0998u09a8u09cdu099fu09beu09b0 u09aeu09a7u09cdu09afu09c7 u09a2u09beu0995u09be u0993 u09a2u09beu0995u09beu09b0 u09acu09beu09b9u09bfu09b0u09c7 u09b9u09cbu09ae u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u09b8u09c1u09acu09bfu09a7u09beu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a8u09bfu09b0u09beu09aau09a6 u098fu09acu0982 u09b8u09c1u09aeu09bfu09b7u09cdu099f u0986u09aeu0964nttttttttt<\\/li>ntttttt<\\/ul>nttttttttttttt<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/05\\/07-1-1024x1024.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/05\\/07-1-1024x1024.jpg 1024w, https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/05\\/07-1-300x300.jpg 300w, https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/05\\/07-1-150x150.jpg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/07-1-768x768-1.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/07-1-600x600-1.jpg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/07-1-100x100-1.jpg 100w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/07-1.jpg 1080w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttt<a href=\\\"#order\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>tttnttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u0995u09cdu09b2u09bfu0995 u0995u09b0u09c1u09a8nttttt<\\/a>ntttud83dudca5u0986u09aeu09beu09a6u09c7u09b0 u09b8u09aeu09cdu09aeu09beu09a8u09bfu09a4 u0995u09beu09b7u09cdu099fu09aeu09beu09b0u09c7u09b0 u09b0u09bfu09adu09bfu0989ud83dudca5ttnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>tttttttPreviousnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>tttttttNextnttt<a href=\\\"#order\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>tttnttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u0995u09cdu09b2u09bfu0995 u0995u09b0u09c1u09a8nttttt<\\/a>nttt<h2>u0986u09ae u09aau099au09a8u09b6u09c0u09b2 u09a4u09beu0987 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u0985u0997u09cdu09b0u09bfu09ae u0995u09b0u09c7 u09a6u09cdu09b0u09c1u09a4  u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8<\\/h2>ttnttttttttttttt<img width=\\\"1024\\\" height=\\\"292\\\" src=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/05\\/bbbjkj-1024x292.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/05\\/bbbjkj-1024x292.jpg 1024w, https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/05\\/bbbjkj-300x86.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/bbbjkj-768x219-1.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/bbbjkj-600x171-1.jpg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/bbbjkj.jpg 1200w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttt<h3>u09a8u09bfu099au09c7u09b0 u09a8u09beu09aeu09cdu09acu09beu09b0u09c7 u09b8u09c7u09a8u09cdu09a1 u09aeu09beu09a8u09bf u0995u09b0u09c1u09a8u0983<\\/h3>ttnttt<h2>01792-823943<\\/h2>ttnttt<h2>u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c<\\/h2>ttnttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09e7u09e6 u0995u09c7u099cu09bf u0986u09ae - u09e7u09ebu09e6u09f3nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09e8u09e6 u0995u09c7u099cu09bf u0986u09ae - u09e8u09ebu09e6u09f3nttttttttt<\\/li>ntttttt<\\/ul>ntttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u09a8u09bfu099au09c7u09b0 u09abu09b0u09cdu09aeu09c7 u0986u09aau09a8u09beu09b0 u09a8u09beu09ae, u09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be u098fu09acu0982 u09aeu09cbu09acu09beu0987u09b2 u09a8u09beu09aeu09cdu09acu09beu09b0 u09b2u09bfu0996u09c1u09a8u0964 u09a4u09beu09b0u09aau09b0 u09a8u09bfu099au09c7u09b0 u09acu09beu099fu09a8u09c7 u0995u09cdu09b2u09bfu0995 u0995u09b0u09c7 u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u0995u09a8u09abu09beu09b0u09cdu09ae u0995u09b0u09c1u09a8u0964 ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/sahabafood.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nttu0995u09beu09b0u09cdu09acu09beu0987u09a1u09aeu09c1u0995u09cdu09a4nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-814\\\"ntname=\\\"wcf-single-sel\\\"ntvalue=\\\"814\\\"nt>nt<label for=\\\"wcf-item-product-814\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/05\\/05-300x300.jpg\\\" alt=\\\"\\\" \\/>nu09b9u09bfu09aeu09b8u09beu0997u09b0 u09e8u09e6 u0995u09c7u099cu09bfntu0995u09beu09b0u09cdu09acu09beu0987u09a1u09aeu09c1u0995u09cdu09a4tntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\" title=\\\"\\\" readonly=\\\"false\\\" >ntt&plus;nt2,600.00&#2547;&nbsp;nttu0995u09beu09b0u09cdu09acu09beu0987u09a1u09aeu09c1u0995u09cdu09a4nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-816\\\"ntname=\\\"wcf-single-sel\\\"ntvalue=\\\"816\\\"nt>nt<label for=\\\"wcf-item-product-816\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/05\\/05-300x300.jpg\\\" alt=\\\"\\\" \\/>nu09b9u09bfu09aeu09b8u09beu0997u09b0 u09e7u09e6 u0995u09c7u099cu09bfntu0995u09beu09b0u09cdu09acu09beu0987u09a1u09aeu09c1u0995u09cdu09a4tntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\" title=\\\"\\\" readonly=\\\"false\\\" >ntt&plus;nt1,650.00&#2547;&nbsp;ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09aeu0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"u0986u09aau09a8u09beu09b0 u09a8u09beu09ae u09b2u09bfu0996u09c1u09a8 u098fu0996u09beu09a8u09c7...\\\"  value=\\\"Md Rayhan Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_2_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_address_2\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c1u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09beu0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_2\\\" id=\\\"billing_address_2\\\" placeholder=\\\"u098fu0996u09beu09a8u09c7 u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c1u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be u09b2u09bfu0996u09c1u09a8\\\"  value=\\\"Khilkhet Dhaka- 1229\\\" autocomplete=\\\"address-line2\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"u098fu0996u09beu09a8u09c7 u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0 u09b2u09bfu0996u09c1u09a8\\\"  value=\\\"01792823943\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><strong>Bangladesh<\\/strong><input type=\\\"hidden\\\" name=\\\"billing_country\\\" id=\\\"billing_country\\\" value=\\\"BD\\\" autocomplete=\\\"country\\\" readonly=\\\"readonly\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"wc_order_attribution_source_type\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_referrer\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_utm_campaign\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_utm_source\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_utm_medium\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_utm_content\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_utm_id\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_utm_term\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_session_entry\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_session_start_time\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_session_pages\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_session_count\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_user_agent\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"765\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"766\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1717383937\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttu09b9u09bfu09aeu09b8u09beu0997u09b0 u09e8u09e6 u0995u09c7u099cu09bf&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>2,600.00&#2547;&nbsp;<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>2,600.00&#2547;&nbsp;<\\/bdi><\\/td>ntt<\\/tr>nttt<tr>nt<th>Shipping<\\/th>nt<td data-title=\\\"Shipping\\\">nttttt<ul id=\\\"shipping_method\\\">nttttttttt<li>ntttttt<input type=\\\"radio\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_flat_rate7\\\" value=\\\"flat_rate:7\\\"  checked=\'checked\' \\/><label for=\\\"shipping_method_0_flat_rate7\\\">u09e7u09e6 u0995u09c7u099cu09bf: <bdi>150.00&#2547;&nbsp;<\\/bdi><\\/label>ttttt<\\/li>nttttttttt<li>ntttttt<input type=\\\"radio\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_flat_rate8\\\" value=\\\"flat_rate:8\\\"  \\/><label for=\\\"shipping_method_0_flat_rate8\\\">u09e8u09e6 u0995u09c7u099cu09bf: <bdi>250.00&#2547;&nbsp;<\\/bdi><\\/label>ttttt<\\/li>nttttttt<\\/ul>nttt<\\/td>n<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>2,750.00&#2547;&nbsp;<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Cash On Delivery<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"u0985u09b0u09cdu09a1u09beu09b0 u0995u09a8u09abu09beu09b0u09cdu09ae u0995u09b0u09c1u09a8\\\" data-value=\\\"u0985u09b0u09cdu09a1u09beu09b0 u0995u09a8u09abu09beu09b0u09cdu09ae u0995u09b0u09c1u09a8\\\">u0985u09b0u09cdu09a1u09beu09b0 u0995u09a8u09abu09beu09b0u09cdu09ae u0995u09b0u09c1u09a8<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"2ea84fb278\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->ntttu099cu09b0u09c1u09b0u09c0 u09aau09cdu09b0u09dfu09cbu099cu09a8u09c7 u0995u09b2 u0995u09b0u09c1u09a8 - 01983 196 929 ttnttttt<ul>nttttttt<li>nttttttttttPrivacy Policynttttttttt<\\/li>ntttttttt<li>nttttttttttt<a href=\\\"https:\\/\\/www.facebook.com\\/groups\\/1805794863172480\\\">ntttttttttttFacebook Groupnttttttttttt<\\/a>nttttttttt<\\/li>ntttttttt<li>nttttttttttt<a href=\\\"https:\\/\\/facebook.com\\/sahabafood1\\\">ntttttttttttFacebook Pagenttttttttttt<\\/a>nttttttttt<\\/li>ntttttt<\\/ul>\\\"\\\"\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-20__trashed','','','2026-06-09 12:47:55','2026-06-09 06:47:55','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-20/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1926','17','2026-06-08 21:41:19','2026-06-08 15:41:19','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 (Digital Timer Switch AC 220V ) \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09af\\u09c7\\u0995\\u09cb\\u09a8 \\u0987\\u09b2\\u09c7\\u0995\\u09cd\\u099f\\u09cd\\u09b0\\u09a8\\u09bf\\u0995\\u09cd\\u09b8 \\u09af\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b8\\u09ae\\u09df\\u09ae\\u09a4 \\u09ac\\u09a8\\u09cd\\u09a7 \\u0993 \\u099a\\u09be\\u09b2\\u09c1 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8, \\u09ac\\u09be\\u0981\\u099a\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u0985\\u09a8\\u09be\\u0995\\u09be\\u0999\\u09cd\\u0996\\u09bf\\u09a4 \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09a4\\u09c7\\u09b0 \\u0985\\u09aa\\u099a\\u09df\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\n\\t\\t\\t\\t\\t\\u09e7\\u09eb\\u09eb\\u09e6\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09e8\\u09e9{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}  \\u099b\\u09be\\u09dc\\u09c7 \\u0985\\u09ab\\u09be\\u09b0  \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\n\\t\\t\\t\\t\\t\\u09e7\\u09e7\\u09ef\\u09e6\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/428032616_122124272660149555_5864529653850465611_n-300x300.jpg\\\" alt=\\\"428032616_122124272660149555_5864529653850465611_n.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/428081984_122124272702149555_5743743261868910294_n-300x300.jpg\\\" alt=\\\"428081984_122124272702149555_5743743261868910294_n.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/428194276_122124272612149555_3814611115758490521_n-300x300.jpg\\\" alt=\\\"428194276_122124272612149555_3814611115758490521_n.jpg\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09af\\u09c7 \\u09b8\\u0995\\u09b2 \\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8\\u09c7 \\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 \\u09b8\\u09c1\\u0987\\u099a \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09c3\\u09a4 \\u098f\\u09df\\u09be\\u09b0\\u09c7\\u099f\\u09b0\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09aa\\u09be\\u09ae\\u09cd\\u09aa\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09bf\\u0995\\u09bf\\u0989\\u09b0\\u09bf\\u099f\\u09bf \\u09b2\\u09be\\u0987\\u099f\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b2\\u09be\\u0987\\u099f, \\u09ab\\u09cd\\u09af\\u09be\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09be\\u0997\\u09be\\u09a8, \\u0996\\u09be\\u09ae\\u09be\\u09b0 \\u09ac\\u09be \\u0995\\u09c3\\u09b7\\u09bf \\u09af\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09b9\\u09bf\\u099f\\u09be\\u09b0\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09bf\\u09b2 \\u09ac\\u09cb\\u09b0\\u09cd\\u09a1\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0995\\u09c1\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099f\\u09bf\\u09ad\\u09bf \\u0987\\u09a4\\u09cd\\u09af\\u09be\\u09a6\\u09bf\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=EhNJbwZ-NqU\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u0985\\u099f\\u09cb \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0\\u09c7\\u09b0\\u09b0 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u0986\\u09b0\\u09cb \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0:<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09af\\u09c7\\u0995\\u09cb\\u09a8 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09af\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u098f\\u099f\\u09bf\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be\\u09ae\\u09a4 On\\/Off \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u099f\\u09bf\\u09b0 \\u09b8\\u09be\\u09b9\\u09af\\u09cd\\u09af\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09be\\u09b0\\u09cd\\u09ae\\u09c7\\u09b0, \\u09ac\\u09be\\u09dc\\u09bf\\u09b0, \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09c7\\u09b0 \\u09ac\\u09be\\u09a4\\u09bf automitic \\u099c\\u09cd\\u09ac\\u09be\\u09b2\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09c7\\u099a \\u09aa\\u09be\\u09ae\\u09cd\\u09aa autometic \\u09ad\\u09be\\u09ac\\u09c7 \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09be\\u09b8\\u09be \\u09ac\\u09be\\u09dc\\u09bf\\u09b0 \\u09b8\\u09be\\u09ac\\u09ae\\u09be\\u09b0\\u09b8\\u09bf\\u09ac\\u09b2 \\u09aa\\u09be\\u09ae\\u09cd\\u09aa Autometic \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u09be\\u09b8\\u09cd\\u09a4\\u09be\\u09b0 \\u09ac\\u09be\\u09a4\\u09bf Autometic \\u099c\\u09cd\\u09ac\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09a8\\u09c7\\u09ad\\u09be\\u09a8\\u09cb\\u09b0 \\u0995\\u09be\\u099c\\u09c7 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tBiofloc \\u098f\\u09b0 Air pump Autometic On\\/Off \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u0995\\u09b0\\u09c7 \\u0985\\u09a4\\u09bf\\u09b0\\u09bf\\u0995\\u09cd\\u09a4 Air pump \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8 \\u09b9\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099b\\u09be\\u09a6 \\u09ac\\u09be\\u0997\\u09be\\u09a8\\u09c7 Autometic \\u09aa\\u09be\\u09a8\\u09bf \\u09a6\\u09c7\\u09ac\\u09be\\u09b0\\/\\u09b8\\u09c7\\u099a\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09aa\\u09be\\u09ae\\u09cd\\u09aa\\u09c7 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u09ae\\u099c\\u09be\\u09a8 \\u09ae\\u09be\\u09b8\\u09c7 \\u09ae\\u09b8\\u099c\\u09bf\\u09a6\\u09c7 \\u099a\\u09c7\\u09b9\\u09c7\\u09b0\\u09bf\\u09b0 \\u09b8\\u09ae\\u09df Autometic \\u09b8\\u09be\\u0987\\u09b0\\u09c7\\u09a8\\/\\u0997\\u099c\\u09b2 \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb\\u09b0 \\u0995\\u09be\\u099c\\u09c7 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09ae\\u09a4 Wifi Router On\\/Off \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ab\\u09cd\\u09b0\\u09bf\\u099c\\/\\u09b0\\u09c7\\u09ab\\u09cd\\u09b0\\u09bf\\u099c\\u09be\\u09b0\\u09c7\\u099f\\u09b0 \\u09b8\\u09ac\\u09b8\\u09ae\\u09df \\u099a\\u09b2\\u09a4\\u09c7 \\u09a5\\u09be\\u0995\\u09b2\\u09c7 \\u098f\\u099f\\u09bf\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09a8\\u09bf\\u09b0\\u09cd\\u09a6\\u09bf\\u09b8\\u09cd\\u099f \\u09b8\\u09ae\\u09df\\u09c7 On\\/Off \\u0995\\u09b0\\u09c7 \\u09ab\\u09cd\\u09b0\\u09c0\\u099c \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09af\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ab\\u09bf\\u099c \\u09a8\\u09a4\\u09c1\\u09a8\\u09c7\\u09b0 \\u09ae\\u09a4 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7 \\u0993 \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09ce \\u09ac\\u09bf\\u09b2 \\u0995\\u09ae \\u0986\\u09b8\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u09be\\u09b0\\u09be\\u09a4\\/\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09bf\\u09a8 \\/ \\u09ac\\u09c7\\u09b6\\u09c0 \\u09b8\\u09ae\\u09df \\u09a7\\u09b0\\u09c7 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u099a\\u09be\\u09b0\\u09cd\\u09af\\u09c7 \\u09b0\\u09be\\u0996\\u09b2\\u09c7 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09b8\\u09cd\\u099f \\u09ac\\u09be \\u09a6\\u09c1\\u09b0\\u09cd\\u0998\\u099f\\u09a8\\u09be \\u09b9\\u09ac\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ad\\u09be\\u09ac\\u09a8\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u099f\\u09bf\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09bf\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09df \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09c7 \\u099a\\u09be\\u09b0\\u09cd\\u09af \\u09a6\\u09c7\\u0993\\u09df\\u09be \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09be\\u09b8\\u09be, \\u09ac\\u09be\\u09dc\\u09bf\\u09b0 \\u09ac\\u09be\\u09a4\\u09bf, \\u09ab\\u09cd\\u09af\\u09be\\u09a8 \\u0987\\u09a4\\u09cd\\u09af\\u09be\\u09a6\\u09bf On\\/Off \\u0995\\u09b0\\u09be\\u09b0 \\u0995\\u09be\\u099c\\u09c7 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09be\\u09b0\\u09cd\\u099c\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09bf\\u09a4 \\u09b8\\u0995\\u09b2 \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b0 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09a8\\u09bf\\u0995\\u09cd\\u09b8 \\u09ac\\u09be\\u0987\\u0995 \\u0985\\u099f\\u09cb\\u09b0\\u09bf\\u0995\\u09b6\\u09be \\u09ad\\u09cd\\u09af\\u09be\\u09a8 \\u09a8\\u09bf\\u09b0\\u09cd\\u09a6\\u09bf\\u09b7\\u09cd\\u099f \\u099f\\u09be\\u0987\\u09ae \\u0985\\u09a8\\u09c1\\u09af\\u09be\\u09af\\u09bc\\u09c0 \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0995\\u09c1\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u0995\\u09b0\\u09be\\u09b0 \\u0995\\u09cd\\u09b7\\u09c7\\u09a4\\u09cd\\u09b0\\u09c7 \\u098f\\u0987 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 \\u09ae\\u09c7\\u09b6\\u09bf\\u09a8 \\u0996\\u09c1\\u09ac\\u0987 \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099f\\u09be\\u0987\\u09ae \\u0985\\u09a8\\u09c1\\u09af\\u09be\\u09af\\u09bc\\u09c0 \\u09b8\\u09c1\\u0987\\u099a \\u0985\\u09a8 \\u0985\\u09ab \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a5\\u09be\\u09ce \\u098f\\u09b0 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af\\u09c7 \\u09a6\\u09c8\\u09a8\\u09a8\\u09cd\\u09a6\\u09bf\\u09a8 \\u09ac\\u09b9\\u09c1\\u09b2 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09c3\\u09a4 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8\\u0997\\u09c1\\u09b2\\u09cb\\u0995\\u09c7 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09ae\\u09a4 \\u099f\\u09be\\u0987\\u09ae \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09c7 \\u099a\\u09be\\u09b2\\u09be\\u09a8\\u09cb \\u09af\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u0995\\u09cb\\u09a8 \\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8\\u0995\\u09c7 \\u09ac\\u09be\\u09b0 \\u09ac\\u09be\\u09b0 On\\/Off \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09df \\u09a8\\u09be\\u0964 \\u098f\\u099f\\u09bf\\u09a4\\u09c7 \\u098f\\u0995\\u09ac\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09b2\\u09c7\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09af\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\/\\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8\\u099f\\u09bf \\u09b8\\u09c7\\u0987 \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09be \\u09b8\\u09ae\\u09df \\u0985\\u09a8\\u09c1\\u09af\\u09be\\u09df\\u09c0 On\\/Off \\u09b9\\u09a4\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>*** \\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 ***<\\/h2>\\t\\t\\n\\t\\t<p>\\u09e7\\u09ec \\u099f\\u09bf \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u099c\\u09a8\\u0995 \\u0986\\u09b2\\u09be\\u09a6\\u09be \\u09b8\\u09ae\\u09df\\u09c7 ON\\/OFF \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964 \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09ce \\u099a\\u09b2\\u09c7 \\u0997\\u09c7\\u09b2\\u09c7\\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b8\\u09c7\\u09ad \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u0995\\u09ac\\u09be\\u09b0 \\u09b8\\u09ae\\u09df \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09b2\\u09c7 \\u09a4\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u09a8\\u09be \\u0995\\u09b0\\u09be \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u0985\\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09bf\\u09a4 \\u09a5\\u09be\\u0995\\u09c7\\u0964\\u09ae\\u09cd\\u09af\\u09be\\u09a8\\u09c1\\u09df\\u09be\\u09b2 \\u09ae\\u09c1\\u09a1\\u09c7 \\u0985\\u09a8 \\u09ac\\u09be \\u0985\\u09ab \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09a6\\u09bf\\u09a8\\u09c7 ON\\/OFF \\u09b8\\u09c7\\u099f \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\u0987\\u09a8\\u09cd\\u09b8\\u099f\\u09b2 \\u0995\\u09b0\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09b9\\u099c, \\u09aa\\u09cd\\u09b2\\u09be\\u0997 \\u09b2\\u09be\\u0997\\u09be\\u09a8\\u09cb \\u0986\\u099b\\u09c7\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 \\u09b8\\u09c1\\u0987\\u099a (Digital Timer Switch) \\u098f\\u09b0 \\u09ac\\u09bf\\u09ac\\u09b0\\u09a3\\u09c0:<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae: \\u09a1\\u09bf\\u099c\\u09bf\\u099f\\u09be\\u09b2 \\u099f\\u09be\\u0987\\u09ae\\u09be\\u09b0 \\u09b8\\u09c1\\u0987\\u099a (Digital Timer Switch)\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09a6\\u09c7\\u09b6: \\u099a\\u09be\\u09df\\u09a8\\u09be\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ad\\u09cb\\u09b2\\u09cd\\u099f\\u09c7\\u099c: \\u09e8\\u09e8\\u09e6-\\u09e8\\u09ea\\u09e6 \\u09ad\\u09cb\\u09b2\\u09cd\\u099f\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u09c7\\u099f\\u09c7\\u09a1 \\u09aa\\u09be\\u0993\\u09df\\u09be\\u09b0: \\u09e8\\u09e9\\u09e6\\u09e6 \\u0993\\u09df\\u09be\\u099f\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ab\\u09cd\\u09b0\\u09bf\\u0995\\u09c1\\u09df\\u09c7\\u09a8\\u09cd\\u09b8\\u09bf : \\u09eb\\u09e6\\u09b9\\u09be\\u09b0\\u09cd\\u099c\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u0987\\u099c: \\u09e7\\u09e6.\\u09ebx\\u09ecx\\u09ea cm\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t \\u0993\\u099c\\u09a8: \\u09e7\\u09ea\\u09eb \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b2\\u09be\\u0997 \\u099f\\u09be\\u0987\\u09aa:\\u0987 \\u0987\\u0989 \\u09aa\\u09cd\\u09b2\\u09be\\u0997\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09bf \\u09ac\\u09cd\\u09af\\u09be\\u0995\\u0986\\u09aa: \\u09e7\\u09e8 V \\u2013 \\u09ee\\u09e6mAH\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09c1\\u09ce \\u09b8\\u09be\\u09b6\\u09cd\\u09b0\\u09df\\u09c0\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tLED Display \\u098f\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u0995\\u09a8\\u09cd\\u099f\\u09cd\\u09b0\\u09cb\\u09b2 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-4-1.png\\\" alt=\\\"img-4-1.png\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-1.png\\\" alt=\\\"img-2-1.png\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-3-1.png\\\" alt=\\\"img-3-1.png\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-5-1.png\\\" alt=\\\"img-5-1.png\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-1.png\\\" alt=\\\"img-1-1.png\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8, \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u0986\\u09aa\\u09a1\\u09c7\\u099f \\u09aa\\u09c7\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09c7\\u099c\\u099f\\u09bf \\u09ab\\u09b2\\u09cb \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"https:\\/\\/www.facebook.com\\/arabelectronicgadgets\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u099c\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<a href=\\\"https:\\/\\/wa.me\\/+8801819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"182\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"185\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717965628\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;0.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;0.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;0.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;0.00\\\">Place Order&nbsp;&nbsp;&#036;0.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','inherit','closed','closed','','1905-revision-v1','','','2026-06-08 21:41:19','2026-06-08 15:41:19','','1905','https://hypergrowth.fishgrowth.xyz/?p=1926','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1927','17','2026-06-08 21:41:24','2026-06-08 15:41:24','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6, \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2 \\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964<\\/h2>\\t\\t\\n\\t\\t<p>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Thank You (Woo)','','publish','closed','closed','','thank-you-woo-14','','','2026-06-08 21:41:24','2026-06-08 15:41:24','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-14/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1928','17','2026-06-08 21:41:24','2026-06-08 15:41:24','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6, \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2 \\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964<\\/h2>\\t\\t\\n\\t\\t<p>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Thank You (Woo)','','inherit','closed','closed','','1927-revision-v1','','','2026-06-08 21:41:24','2026-06-08 15:41:24','','1927','https://hypergrowth.fishgrowth.xyz/?p=1928','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1929','17','2026-06-08 21:41:33','2026-06-08 15:41:33','','itgalaxi testing funel','','trash','closed','closed','','itgalaxi-testing-funel__trashed','','','2026-06-09 12:41:18','2026-06-09 06:41:18','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=itgalaxi-testing-funel','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1930','17','2026-06-08 21:41:33','2026-06-08 15:41:33','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-17__trashed','','','2026-06-09 12:41:18','2026-06-09 06:41:18','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-17/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1931','17','2026-06-08 21:41:33','2026-06-08 15:41:33','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1930-revision-v1','','','2026-06-08 21:41:33','2026-06-08 15:41:33','','1930','https://hypergrowth.fishgrowth.xyz/?p=1931','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1932','17','2026-06-08 21:41:33','2026-06-08 15:41:33','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>Owner away? We\'ll sit & stay.<\\/h1>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>ttnttt<a href=\\\"#\\\">nttttttour servicesnttttt<\\/a>nttt<a href=\\\"#\\\">nttttttbook nownttttt<\\/a>nttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 496 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-235.9-72.9c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3zm160 0c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3z\\\"><\\/path><\\/svg>tttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M218.92 336.39c34.89-34.89 44.2-59.7 54.05-86 10.61-28.29 21.59-57.54 61.37-97.34s69.05-50.77 97.35-61.38c23.88-9 46.64-17.68 76.79-45.37L470.81 8.91a31 31 0 0 0-40.18-2.83c-13.64 10.1-25.15 14.39-41 20.3C247 79.52 209.26 191.29 200.65 214.1c-29.75 78.83-89.55 94.68-98.72 98.09-24.86 9.26-54.73 20.38-91.07 50.36C-3 374-3.63 395 9.07 407.61l35.76 35.51C80 410.52 107 400.15 133 390.39c26.27-9.84 51.06-19.12 85.92-54zm348-232l-35.75-35.51c-35.19 32.63-62.18 43-88.25 52.79-26.26 9.85-51.06 19.16-85.95 54s-44.19 59.69-54 86C292.33 290 281.34 319.22 241.55 359s-69 50.73-97.3 61.32c-23.86 9-46.61 17.66-76.72 45.33l37.68 37.43a31 31 0 0 0 40.18 2.82c13.6-10.06 25.09-14.34 40.94-20.24 142.2-53 180-164.1 188.94-187.69C405 219.18 464.8 203.3 474 199.86c24.87-9.27 54.74-20.4 91.11-50.41 13.89-11.4 14.52-32.45 1.82-45.05z\\\"><\\/path><\\/svg>tttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-box.min.css\\\">ttntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M298.06,224,448,277.55V496a16,16,0,0,1-16,16H368a16,16,0,0,1-16-16V384H192V496a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V282.09C58.84,268.84,32,233.66,32,192a32,32,0,0,1,64,0,32.06,32.06,0,0,0,32,32ZM544,112v32a64,64,0,0,1-64,64H448v35.58L320,197.87V48c0-14.25,17.22-21.39,27.31-11.31L374.59,64h53.63c10.91,0,23.75,7.92,28.62,17.69L464,96h64A16,16,0,0,1,544,112Zm-112,0a16,16,0,1,0-16,16A16,16,0,0,0,432,112Z\\\"><\\/path><\\/svg>ttttntttt<h3>nttttttDog walkingtttttntttt<\\/h3>nttttttttt<p>nttttttLorem ipsum dolor sit amet, consectetur adipiscing elit.ttttt<\\/p>ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 496 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z\\\"><\\/path><\\/svg>ttttntttt<h3>nttttttExercisingtttttntttt<\\/h3>nttttttttt<p>nttttttLorem ipsum dolor sit amet, consectetur adipiscing elit.ttttt<\\/p>ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M288 144a110.94 110.94 0 0 0-31.24 5 55.4 55.4 0 0 1 7.24 27 56 56 0 0 1-56 56 55.4 55.4 0 0 1-27-7.24A111.71 111.71 0 1 0 288 144zm284.52 97.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400c-98.65 0-189.09-55-237.93-144C98.91 167 189.34 112 288 112s189.09 55 237.93 144C477.1 345 386.66 400 288 400z\\\"><\\/path><\\/svg>ttttntttt<h3>nttttttPet Sittingtttttntttt<\\/h3>nttttttttt<p>nttttttLorem ipsum dolor sit amet, consectetur adipiscing elit.ttttt<\\/p>ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 224c-79.41 0-192 122.76-192 200.25 0 34.9 26.81 55.75 71.74 55.75 48.84 0 81.09-25.08 120.26-25.08 39.51 0 71.85 25.08 120.26 25.08 44.93 0 71.74-20.85 71.74-55.75C448 346.76 335.41 224 256 224zm-147.28-12.61c-10.4-34.65-42.44-57.09-71.56-50.13-29.12 6.96-44.29 40.69-33.89 75.34 10.4 34.65 42.44 57.09 71.56 50.13 29.12-6.96 44.29-40.69 33.89-75.34zm84.72-20.78c30.94-8.14 46.42-49.94 34.58-93.36s-46.52-72.01-77.46-63.87-46.42 49.94-34.58 93.36c11.84 43.42 46.53 72.02 77.46 63.87zm281.39-29.34c-29.12-6.96-61.15 15.48-71.56 50.13-10.4 34.65 4.77 68.38 33.89 75.34 29.12 6.96 61.15-15.48 71.56-50.13 10.4-34.65-4.77-68.38-33.89-75.34zm-156.27 29.34c30.94 8.14 65.62-20.45 77.46-63.87 11.84-43.42-3.64-85.21-34.58-93.36s-65.62 20.45-77.46 63.87c-11.84 43.42 3.64 85.22 34.58 93.36z\\\"><\\/path><\\/svg>ttttntttt<h3>nttttttShort Term Caretttttntttt<\\/h3>nttttttttt<p>nttttttLorem ipsum dolor sit amet, consectetur adipiscing elit.ttttt<\\/p>nttt<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"1024\\\" height=\\\"683\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pete-bellis-419451-unsplash-1024x683.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pete-bellis-419451-unsplash.jpg?resize=1024{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C683&amp;ssl=1 1024w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pete-bellis-419451-unsplash.jpg?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C200&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pete-bellis-419451-unsplash.jpg?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C512&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pete-bellis-419451-unsplash.jpg?resize=1536{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1024&amp;ssl=1 1536w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pete-bellis-419451-unsplash.jpg?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C400&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pete-bellis-419451-unsplash.jpg?w=1920&amp;ssl=1 1920w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M218.92 336.39c34.89-34.89 44.2-59.7 54.05-86 10.61-28.29 21.59-57.54 61.37-97.34s69.05-50.77 97.35-61.38c23.88-9 46.64-17.68 76.79-45.37L470.81 8.91a31 31 0 0 0-40.18-2.83c-13.64 10.1-25.15 14.39-41 20.3C247 79.52 209.26 191.29 200.65 214.1c-29.75 78.83-89.55 94.68-98.72 98.09-24.86 9.26-54.73 20.38-91.07 50.36C-3 374-3.63 395 9.07 407.61l35.76 35.51C80 410.52 107 400.15 133 390.39c26.27-9.84 51.06-19.12 85.92-54zm348-232l-35.75-35.51c-35.19 32.63-62.18 43-88.25 52.79-26.26 9.85-51.06 19.16-85.95 54s-44.19 59.69-54 86C292.33 290 281.34 319.22 241.55 359s-69 50.73-97.3 61.32c-23.86 9-46.61 17.66-76.72 45.33l37.68 37.43a31 31 0 0 0 40.18 2.82c13.6-10.06 25.09-14.34 40.94-20.24 142.2-53 180-164.1 188.94-187.69C405 219.18 464.8 203.3 474 199.86c24.87-9.27 54.74-20.4 91.11-50.41 13.89-11.4 14.52-32.45 1.82-45.05z\\\"><\\/path><\\/svg>tttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 496 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z\\\"><\\/path><\\/svg>tttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/anton-darius-thesollers-590562-unsplash-qone5ms6fpksolave34091umcuclydk094kw7bu44c.jpg\\\" title=\\\"anton-darius-thesollers-590562-unsplash.jpg\\\" alt=\\\"anton-darius-thesollers-590562-unsplash.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h3><a href=\\\"#\\\">professional Pet Sitters<\\/a><\\/h3>ttnttt<h2>Finally, pet care you can trust.<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>Ut elit tellus, dolor situ00a0mattis, pulvinar dolor situ00a0leo. Dolor situ00a0tellus, luctus nec is mattis, professinall dapibus leo. Ut elit bool, luctus nec dolor sit.<\\/p>ttnttt<h3><a href=\\\"#\\\">professional Pet Sitters<\\/a><\\/h3>ttnttt<h2>Our professional trainers listen to your needs.<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>ttnttt<a href=\\\"#\\\">nttttttmeet our teamnttttt<\\/a>nttttttttttttttt<img width=\\\"680\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/s-a-r-a-h-s-h-a-r-p-973479-unsplash-680x1024-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/s-a-r-a-h-s-h-a-r-p-973479-unsplash.jpg?resize=680{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1024&amp;ssl=1 680w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/s-a-r-a-h-s-h-a-r-p-973479-unsplash.jpg?resize=199{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 199w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/s-a-r-a-h-s-h-a-r-p-973479-unsplash.jpg?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1156&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/s-a-r-a-h-s-h-a-r-p-973479-unsplash.jpg?resize=1020{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1536&amp;ssl=1 1020w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/s-a-r-a-h-s-h-a-r-p-973479-unsplash.jpg?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C903&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/s-a-r-a-h-s-h-a-r-p-973479-unsplash.jpg?w=1063&amp;ssl=1 1063w\\\" sizes=\\\"(max-width: 680px) 100vw, 680px\\\" \\/>tttttttttttttttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pete-bellis-535144-unsplash-qone5h54oryuxxg73k8ns1uo9v0lcbbragde8ytv54.jpg\\\" title=\\\"pete-bellis-535144-unsplash.jpg\\\" alt=\\\"pete-bellis-535144-unsplash.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z\\\"><\\/path><\\/svg>tttnttt<h2>Why Choose Us?<\\/h2>ttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 496 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z\\\"><\\/path><\\/svg>tttnttt<h3><a href=\\\"#\\\">Our happy clients & their humans<\\/a><\\/h3>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}<\\/style>ttntttttttLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.nttttttt<img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/anton-darius-thesollers-590562-unsplash-150x150.jpg\\\" alt=\\\"\\\" \\/>ttttttnttttttttttttttJohn DoenttttttttttttttttttttttDesignern<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1932\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1932\\\"nt>nt<label for=\\\"wcf-item-product-1932\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nProduct1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;990.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"2197\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"2200\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716584390\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttProduct&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;990.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"92fa430184\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/h2>\\\"\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-21__trashed','','','2026-06-09 12:41:18','2026-06-09 06:41:18','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-21/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1933','17','2026-06-08 21:41:34','2026-06-08 15:41:34','\"<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<p>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8<\\/p>\\t\\t\\n\\t\\t\\t<p>Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Store Checkout Thank You 02','','trash','closed','closed','','store-checkout-thank-you-02__trashed','','','2026-06-09 12:53:20','2026-06-09 06:53:20','','0','https://hypergrowth.fishgrowth.xyz/step/store-checkout-thank-you-02/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1934','17','2026-06-08 21:41:34','2026-06-08 15:41:34','\"<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<p>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8<\\/p>\\t\\t\\n\\t\\t\\t<p>Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Store Checkout Thank You 02','','inherit','closed','closed','','1933-revision-v1','','','2026-06-08 21:41:34','2026-06-08 15:41:34','','1933','https://hypergrowth.fishgrowth.xyz/?p=1934','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1935','17','2026-06-08 21:41:35','2026-06-08 15:41:35','','Japanese fusion','','trash','closed','closed','','japanese-fusion__trashed','','','2026-06-09 12:47:28','2026-06-09 06:47:28','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=japanese-fusion','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1936','17','2026-06-08 21:41:35','2026-06-08 15:41:35','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-18__trashed','','','2026-06-09 12:47:28','2026-06-09 06:47:28','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-18/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1937','17','2026-06-08 21:41:35','2026-06-08 15:41:35','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1936-revision-v1','','','2026-06-08 21:41:35','2026-06-08 15:41:35','','1936','https://hypergrowth.fishgrowth.xyz/?p=1937','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1938','17','2026-06-08 21:41:35','2026-06-08 15:41:35','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"300\\\" height=\\\"116\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/fish_publicdomain-300x116.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/fish_publicdomain.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C116&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/fish_publicdomain.png?w=500&amp;ssl=1 500w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>tttttttttttttttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>s<br>na<br>nk<br>na<br>ni<br><\\/h1>ttnttt<a href=\\\"#\\\">nttttttabout usnttttt<\\/a>nttt<a href=\\\"#\\\">nttttttlunchnttttt<\\/a>nttt<a href=\\\"#\\\">nttttttspecialsnttttt<\\/a>nttt<a href=\\\"#\\\">nttttttdinnernttttt<\\/a>nttt<a href=\\\"#\\\">nttttttdinnernttttt<\\/a>nttt<a href=\\\"#\\\">nttttttdeliverynttttt<\\/a>nttt<h5>Add Your Heading Text Here<\\/h5>ttnttt<h2>The ultimate Japanese fusion experience.<\\/h2>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>ttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 320 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z\\\"><\\/path><\\/svg>tttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.&nbsp;<\\/p><p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit.<\\/p><p><br><\\/p>ttnttt<h3>featured<\\/h3>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-widget-image-box .elementor-image-box-content{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}<\\/style><h3>Lorem ipsum dolor  $9<\\/h3><p>consectetur adipiscing elit, sed do eiusmod tempor <\\/p>ttnttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 256 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z\\\"><\\/path><\\/svg>tttnttttttall specialsnttttt<\\/a>nttt25{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} offttnttt<h2>When you order online during our Stay-at-Home promotion.<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>ttnttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 256 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z\\\"><\\/path><\\/svg>tttnttttttorder nownttttt<\\/a>nttt<style>\\/*! elementor - v3.18.0 - 20-12-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>ttnttttour guaranteettttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/p>ttnttt<h5>meet our chefs<\\/h5>ttnttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z\\\"><\\/path><\\/svg>nttttttttttttttt<img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pexels-photo-3761521-150x150.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pexels-photo-3761521.jpeg?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pexels-photo-3761521.jpeg?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pexels-photo-3761521.jpeg?resize=1024{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1015&amp;ssl=1 1024w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pexels-photo-3761521.jpeg?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C762&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pexels-photo-3761521.jpeg?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C595&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pexels-photo-3761521.jpeg?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pexels-photo-3761521.jpeg?w=1311&amp;ssl=1 1311w\\\" sizes=\\\"(max-width: 150px) 100vw, 150px\\\" \\/>tttttttttttttttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>ttnttt<h4>Ben Sakai<\\/h4>ttnttttttttttttttt<img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/chef-cropped-150x150.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/chef-cropped.png?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/chef-cropped.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/chef-cropped.png?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 150px) 100vw, 150px\\\" \\/>tttttttttttttttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>ttnttt<h3>Gerald Levign<\\/h3>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pexels-photo-1747178-qomwym6hni6utcgi0igw79aixteku83oha1ej9npss.jpeg\\\" title=\\\"pexels-photo-1747178.jpeg\\\" alt=\\\"pexels-photo-1747178.jpeg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>ttnttt<h3>Ken Sakai<\\/h3>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1932\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1932\\\"nt>nt<label for=\\\"wcf-item-product-1932\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nProduct1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;990.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"2173\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"2176\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716560726\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttProduct&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;990.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"92fa430184\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/h2>\\\"\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-22__trashed','','','2026-06-09 12:47:28','2026-06-09 06:47:28','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-22/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1939','17','2026-06-08 21:41:41','2026-06-08 15:41:41','\"\\\"\\\"<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>tttttttttt<img width=\\\"500\\\" height=\\\"500\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo.png 500w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/Test-Logo-300x300.png 300w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/Test-Logo-150x150.png 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo-400x400-1.png 400w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo-qlgjn7dvi44bql5if66j7dolg9mi1ktt1m22gmqy20.png 100w\\\" sizes=\\\"(max-width: 500px) 100vw, 500px\\\" \\/>tttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>603<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>March 24, 2024<\\/strong>ntttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>750.00&#2547;&nbsp;<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttu0995u09c1u09dcu09aeu09c1u09dcu09c7 u09aau09c1u09b0u09beu09a8 u09a2u09beu0995u09beu09b0 u09acu09bfu0996u09cdu09afu09beu09a4 u09a8u09beu09b0u0995u09c7u09b2 <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>750.00&#2547;&nbsp;<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Shipping:<\\/th>nttttttt<td>Free shipping<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>ntt<p>Copyright u00a9 2024 Your Business Name | This website made with u2764ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\\\"\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-15__trashed','','','2026-06-09 12:49:06','2026-06-09 06:49:06','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-15/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1940','17','2026-06-08 21:41:46','2026-06-08 15:41:46','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"300\\\" height=\\\"116\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/fish_publicdomain-300x116.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/fish_publicdomain.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C116&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/fish_publicdomain.png?w=500&amp;ssl=1 500w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>tttttttttttttttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>s<br>na<br>nk<br>na<br>ni<br><\\/h1>ttnttt<a href=\\\"#\\\">nttttttabout usnttttt<\\/a>nttt<a href=\\\"#\\\">nttttttlunchnttttt<\\/a>nttt<a href=\\\"#\\\">nttttttspecialsnttttt<\\/a>nttt<a href=\\\"#\\\">nttttttdinnernttttt<\\/a>nttt<a href=\\\"#\\\">nttttttdinnernttttt<\\/a>nttt<a href=\\\"#\\\">nttttttdeliverynttttt<\\/a>nttt<h5>Add Your Heading Text Here<\\/h5>ttnttt<h2>The ultimate Japanese fusion experience.<\\/h2>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>ttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 320 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z\\\"><\\/path><\\/svg>tttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.&nbsp;<\\/p><p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit.<\\/p><p><br><\\/p>ttnttt<h3>featured<\\/h3>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-widget-image-box .elementor-image-box-content{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}<\\/style><h3>Lorem ipsum dolor  $9<\\/h3><p>consectetur adipiscing elit, sed do eiusmod tempor <\\/p>ttnttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 256 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z\\\"><\\/path><\\/svg>tttnttttttall specialsnttttt<\\/a>nttt25{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} offttnttt<h2>When you order online during our Stay-at-Home promotion.<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>ttnttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 256 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z\\\"><\\/path><\\/svg>tttnttttttorder nownttttt<\\/a>nttt<style>\\/*! elementor - v3.18.0 - 20-12-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>ttnttttour guaranteettttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/p>ttnttt<h5>meet our chefs<\\/h5>ttnttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z\\\"><\\/path><\\/svg>nttttttttttttttt<img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pexels-photo-3761521-150x150.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pexels-photo-3761521.jpeg?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pexels-photo-3761521.jpeg?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pexels-photo-3761521.jpeg?resize=1024{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1015&amp;ssl=1 1024w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pexels-photo-3761521.jpeg?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C762&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pexels-photo-3761521.jpeg?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C595&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pexels-photo-3761521.jpeg?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pexels-photo-3761521.jpeg?w=1311&amp;ssl=1 1311w\\\" sizes=\\\"(max-width: 150px) 100vw, 150px\\\" \\/>tttttttttttttttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>ttnttt<h4>Ben Sakai<\\/h4>ttnttttttttttttttt<img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/chef-cropped-150x150.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/chef-cropped.png?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/chef-cropped.png?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/chef-cropped.png?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 150px) 100vw, 150px\\\" \\/>tttttttttttttttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>ttnttt<h3>Gerald Levign<\\/h3>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pexels-photo-1747178-qomwym6hni6utcgi0igw79aixteku83oha1ej9npss.jpeg\\\" title=\\\"pexels-photo-1747178.jpeg\\\" alt=\\\"pexels-photo-1747178.jpeg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>ttnttt<h3>Ken Sakai<\\/h3>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1932\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1932\\\"nt>nt<label for=\\\"wcf-item-product-1932\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nProduct1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;990.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"2173\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"2176\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716560726\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttProduct&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;990.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"92fa430184\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/h2>\\\"\"','Checkout (Woo)','','inherit','closed','closed','','1938-revision-v1','','','2026-06-08 21:41:46','2026-06-08 15:41:46','','1938','https://hypergrowth.fishgrowth.xyz/?p=1940','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1941','17','2026-06-08 21:42:04','2026-06-08 15:42:04','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>Owner away? We\'ll sit & stay.<\\/h1>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>ttnttt<a href=\\\"#\\\">nttttttour servicesnttttt<\\/a>nttt<a href=\\\"#\\\">nttttttbook nownttttt<\\/a>nttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 496 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm105.6-151.4c-25.9 8.3-64.4 13.1-105.6 13.1s-79.6-4.8-105.6-13.1c-9.8-3.1-19.4 5.3-17.7 15.3 7.9 47.1 71.3 80 123.3 80s115.3-32.9 123.3-80c1.6-9.8-7.7-18.4-17.7-15.3zm-235.9-72.9c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3zm160 0c3.5 1.1 7.4-.5 9.3-3.7l9.5-17c7.7-13.7 19.2-21.6 31.5-21.6s23.8 7.9 31.5 21.6l9.5 17c2.1 3.7 6.2 4.7 9.3 3.7 3.6-1.1 6-4.5 5.7-8.3-3.3-42.1-32.2-71.4-56-71.4s-52.7 29.3-56 71.4c-.3 3.7 2.1 7.2 5.7 8.3z\\\"><\\/path><\\/svg>tttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M218.92 336.39c34.89-34.89 44.2-59.7 54.05-86 10.61-28.29 21.59-57.54 61.37-97.34s69.05-50.77 97.35-61.38c23.88-9 46.64-17.68 76.79-45.37L470.81 8.91a31 31 0 0 0-40.18-2.83c-13.64 10.1-25.15 14.39-41 20.3C247 79.52 209.26 191.29 200.65 214.1c-29.75 78.83-89.55 94.68-98.72 98.09-24.86 9.26-54.73 20.38-91.07 50.36C-3 374-3.63 395 9.07 407.61l35.76 35.51C80 410.52 107 400.15 133 390.39c26.27-9.84 51.06-19.12 85.92-54zm348-232l-35.75-35.51c-35.19 32.63-62.18 43-88.25 52.79-26.26 9.85-51.06 19.16-85.95 54s-44.19 59.69-54 86C292.33 290 281.34 319.22 241.55 359s-69 50.73-97.3 61.32c-23.86 9-46.61 17.66-76.72 45.33l37.68 37.43a31 31 0 0 0 40.18 2.82c13.6-10.06 25.09-14.34 40.94-20.24 142.2-53 180-164.1 188.94-187.69C405 219.18 464.8 203.3 474 199.86c24.87-9.27 54.74-20.4 91.11-50.41 13.89-11.4 14.52-32.45 1.82-45.05z\\\"><\\/path><\\/svg>tttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-box.min.css\\\">ttntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M298.06,224,448,277.55V496a16,16,0,0,1-16,16H368a16,16,0,0,1-16-16V384H192V496a16,16,0,0,1-16,16H112a16,16,0,0,1-16-16V282.09C58.84,268.84,32,233.66,32,192a32,32,0,0,1,64,0,32.06,32.06,0,0,0,32,32ZM544,112v32a64,64,0,0,1-64,64H448v35.58L320,197.87V48c0-14.25,17.22-21.39,27.31-11.31L374.59,64h53.63c10.91,0,23.75,7.92,28.62,17.69L464,96h64A16,16,0,0,1,544,112Zm-112,0a16,16,0,1,0-16,16A16,16,0,0,0,432,112Z\\\"><\\/path><\\/svg>ttttntttt<h3>nttttttDog walkingtttttntttt<\\/h3>nttttttttt<p>nttttttLorem ipsum dolor sit amet, consectetur adipiscing elit.ttttt<\\/p>ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 496 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M481.5 60.3c-4.8-18.2-19.1-32.5-37.3-37.4C420.3 16.5 383 8.9 339.4 8L496 164.8c-.8-43.5-8.2-80.6-14.5-104.5zm-467 391.4c4.8 18.2 19.1 32.5 37.3 37.4 23.9 6.4 61.2 14 104.8 14.9L0 347.2c.8 43.5 8.2 80.6 14.5 104.5zM4.2 283.4L220.4 500c132.5-19.4 248.8-118.7 271.5-271.4L275.6 12C143.1 31.4 26.8 130.7 4.2 283.4zm317.3-123.6c3.1-3.1 8.2-3.1 11.3 0l11.3 11.3c3.1 3.1 3.1 8.2 0 11.3l-28.3 28.3 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-22.6 22.7 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0L248 278.6l-22.6 22.6 28.3 28.3c3.1 3.1 3.1 8.2 0 11.3l-11.3 11.3c-3.1 3.1-8.2 3.1-11.3 0l-28.3-28.3-28.3 28.3c-3.1 3.1-8.2 3.1-11.3 0l-11.3-11.3c-3.1-3.1-3.1-8.2 0-11.3l28.3-28.3-28.3-28.2c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 22.6-22.6-28.3-28.3c-3.1-3.1-3.1-8.2 0-11.3l11.3-11.3c3.1-3.1 8.2-3.1 11.3 0l28.3 28.3 28.3-28.5z\\\"><\\/path><\\/svg>ttttntttt<h3>nttttttExercisingtttttntttt<\\/h3>nttttttttt<p>nttttttLorem ipsum dolor sit amet, consectetur adipiscing elit.ttttt<\\/p>ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M288 144a110.94 110.94 0 0 0-31.24 5 55.4 55.4 0 0 1 7.24 27 56 56 0 0 1-56 56 55.4 55.4 0 0 1-27-7.24A111.71 111.71 0 1 0 288 144zm284.52 97.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400c-98.65 0-189.09-55-237.93-144C98.91 167 189.34 112 288 112s189.09 55 237.93 144C477.1 345 386.66 400 288 400z\\\"><\\/path><\\/svg>ttttntttt<h3>nttttttPet Sittingtttttntttt<\\/h3>nttttttttt<p>nttttttLorem ipsum dolor sit amet, consectetur adipiscing elit.ttttt<\\/p>ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 224c-79.41 0-192 122.76-192 200.25 0 34.9 26.81 55.75 71.74 55.75 48.84 0 81.09-25.08 120.26-25.08 39.51 0 71.85 25.08 120.26 25.08 44.93 0 71.74-20.85 71.74-55.75C448 346.76 335.41 224 256 224zm-147.28-12.61c-10.4-34.65-42.44-57.09-71.56-50.13-29.12 6.96-44.29 40.69-33.89 75.34 10.4 34.65 42.44 57.09 71.56 50.13 29.12-6.96 44.29-40.69 33.89-75.34zm84.72-20.78c30.94-8.14 46.42-49.94 34.58-93.36s-46.52-72.01-77.46-63.87-46.42 49.94-34.58 93.36c11.84 43.42 46.53 72.02 77.46 63.87zm281.39-29.34c-29.12-6.96-61.15 15.48-71.56 50.13-10.4 34.65 4.77 68.38 33.89 75.34 29.12 6.96 61.15-15.48 71.56-50.13 10.4-34.65-4.77-68.38-33.89-75.34zm-156.27 29.34c30.94 8.14 65.62-20.45 77.46-63.87 11.84-43.42-3.64-85.21-34.58-93.36s-65.62 20.45-77.46 63.87c-11.84 43.42 3.64 85.22 34.58 93.36z\\\"><\\/path><\\/svg>ttttntttt<h3>nttttttShort Term Caretttttntttt<\\/h3>nttttttttt<p>nttttttLorem ipsum dolor sit amet, consectetur adipiscing elit.ttttt<\\/p>nttt<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"1024\\\" height=\\\"683\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pete-bellis-419451-unsplash-1024x683.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pete-bellis-419451-unsplash.jpg?resize=1024{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C683&amp;ssl=1 1024w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pete-bellis-419451-unsplash.jpg?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C200&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pete-bellis-419451-unsplash.jpg?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C512&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pete-bellis-419451-unsplash.jpg?resize=1536{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1024&amp;ssl=1 1536w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pete-bellis-419451-unsplash.jpg?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C400&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pete-bellis-419451-unsplash.jpg?w=1920&amp;ssl=1 1920w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M218.92 336.39c34.89-34.89 44.2-59.7 54.05-86 10.61-28.29 21.59-57.54 61.37-97.34s69.05-50.77 97.35-61.38c23.88-9 46.64-17.68 76.79-45.37L470.81 8.91a31 31 0 0 0-40.18-2.83c-13.64 10.1-25.15 14.39-41 20.3C247 79.52 209.26 191.29 200.65 214.1c-29.75 78.83-89.55 94.68-98.72 98.09-24.86 9.26-54.73 20.38-91.07 50.36C-3 374-3.63 395 9.07 407.61l35.76 35.51C80 410.52 107 400.15 133 390.39c26.27-9.84 51.06-19.12 85.92-54zm348-232l-35.75-35.51c-35.19 32.63-62.18 43-88.25 52.79-26.26 9.85-51.06 19.16-85.95 54s-44.19 59.69-54 86C292.33 290 281.34 319.22 241.55 359s-69 50.73-97.3 61.32c-23.86 9-46.61 17.66-76.72 45.33l37.68 37.43a31 31 0 0 0 40.18 2.82c13.6-10.06 25.09-14.34 40.94-20.24 142.2-53 180-164.1 188.94-187.69C405 219.18 464.8 203.3 474 199.86c24.87-9.27 54.74-20.4 91.11-50.41 13.89-11.4 14.52-32.45 1.82-45.05z\\\"><\\/path><\\/svg>tttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 496 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M368.5 363.9l28.8-13.9c11.1 22.9 26 43.2 44.1 60.9 34-42.5 54.5-96.3 54.5-154.9 0-58.5-20.4-112.2-54.2-154.6-17.8 17.3-32.6 37.1-43.6 59.5l-28.7-14.1c12.8-26 30-49 50.8-69C375.6 34.7 315 8 248 8 181.1 8 120.5 34.6 75.9 77.7c20.7 19.9 37.9 42.9 50.7 68.8l-28.7 14.1c-11-22.3-25.7-42.1-43.5-59.4C20.4 143.7 0 197.4 0 256c0 58.6 20.4 112.3 54.4 154.7 18.2-17.7 33.2-38 44.3-61l28.8 13.9c-12.9 26.7-30.3 50.3-51.5 70.7 44.5 43.1 105.1 69.7 172 69.7 66.8 0 127.3-26.5 171.9-69.5-21.1-20.4-38.5-43.9-51.4-70.6zm-228.3-32l-30.5-9.8c14.9-46.4 12.7-93.8-.6-134l30.4-10c15 45.6 18 99.9.7 153.8zm216.3-153.4l30.4 10c-13.2 40.1-15.5 87.5-.6 134l-30.5 9.8c-17.3-54-14.3-108.3.7-153.8z\\\"><\\/path><\\/svg>tttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/anton-darius-thesollers-590562-unsplash-qone5ms6fpksolave34091umcuclydk094kw7bu44c.jpg\\\" title=\\\"anton-darius-thesollers-590562-unsplash.jpg\\\" alt=\\\"anton-darius-thesollers-590562-unsplash.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h3><a href=\\\"#\\\">professional Pet Sitters<\\/a><\\/h3>ttnttt<h2>Finally, pet care you can trust.<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>Ut elit tellus, dolor situ00a0mattis, pulvinar dolor situ00a0leo. Dolor situ00a0tellus, luctus nec is mattis, professinall dapibus leo. Ut elit bool, luctus nec dolor sit.<\\/p>ttnttt<h3><a href=\\\"#\\\">professional Pet Sitters<\\/a><\\/h3>ttnttt<h2>Our professional trainers listen to your needs.<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>ttnttt<a href=\\\"#\\\">nttttttmeet our teamnttttt<\\/a>nttttttttttttttt<img width=\\\"680\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/s-a-r-a-h-s-h-a-r-p-973479-unsplash-680x1024-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/s-a-r-a-h-s-h-a-r-p-973479-unsplash.jpg?resize=680{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1024&amp;ssl=1 680w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/s-a-r-a-h-s-h-a-r-p-973479-unsplash.jpg?resize=199{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 199w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/s-a-r-a-h-s-h-a-r-p-973479-unsplash.jpg?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1156&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/s-a-r-a-h-s-h-a-r-p-973479-unsplash.jpg?resize=1020{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1536&amp;ssl=1 1020w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/s-a-r-a-h-s-h-a-r-p-973479-unsplash.jpg?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C903&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/s-a-r-a-h-s-h-a-r-p-973479-unsplash.jpg?w=1063&amp;ssl=1 1063w\\\" sizes=\\\"(max-width: 680px) 100vw, 680px\\\" \\/>tttttttttttttttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pete-bellis-535144-unsplash-qone5h54oryuxxg73k8ns1uo9v0lcbbragde8ytv54.jpg\\\" title=\\\"pete-bellis-535144-unsplash.jpg\\\" alt=\\\"pete-bellis-535144-unsplash.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z\\\"><\\/path><\\/svg>tttnttt<h2>Why Choose Us?<\\/h2>ttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 496 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z\\\"><\\/path><\\/svg>tttnttt<h3><a href=\\\"#\\\">Our happy clients & their humans<\\/a><\\/h3>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}<\\/style>ttntttttttLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.nttttttt<img width=\\\"150\\\" height=\\\"150\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/anton-darius-thesollers-590562-unsplash-150x150.jpg\\\" alt=\\\"\\\" \\/>ttttttnttttttttttttttJohn DoenttttttttttttttttttttttDesignern<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1932\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1932\\\"nt>nt<label for=\\\"wcf-item-product-1932\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nProduct1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;990.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"2197\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"2200\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716584390\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttProduct&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;990.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"92fa430184\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/h2>\\\"\"','Checkout (Woo)','','inherit','closed','closed','','1932-revision-v1','','','2026-06-08 21:42:04','2026-06-08 15:42:04','','1932','https://hypergrowth.fishgrowth.xyz/?p=1941','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1942','17','2026-06-08 21:42:05','2026-06-08 15:42:05','\"\\\"\\\"<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<p>u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u09b8u09aeu09cdu09aau09a8u09cdu09a8 u09b9u09dfu09c7u099bu09c7u0964 u0986u09aeu09beu09a6u09c7u09b0 u098fu0995u099cu09a8 u09aau09cdu09b0u09a4u09bfu09a8u09bfu09a7u09bf u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u0995u09a5u09be u09acu09b2u09c7 u0986u09aau09a8u09beu0995u09c7 u09acu09bfu09b8u09cdu09a4u09beu09b0u09bfu09a4 u099cu09beu09a8u09bfu09dfu09c7 u09a6u09bfu09acu09c7u09a8<\\/p>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>1234<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 17, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@foodheavenbd.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;690.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttu09b8u09c1u09b8u09cdu09acu09beu09a6u09c1 u0986u09ae u09ea u0995u09c7u099cu09bf <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;690.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;690.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;690.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Bargunanttttt<p>+8801713318648<\\/p>nttttt<p>admin@foodheavenbd.com<\\/p>nttt<\\/address>n<\\/section>nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\\" style=\\\"color:red\\\">itgalaxi<\\/a><\\/h2>\\\"\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-16__trashed','','','2026-06-09 12:40:52','2026-06-09 06:40:52','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-16/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1943','17','2026-06-08 21:42:05','2026-06-08 15:42:05','\"\\\"\\\"<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<p>u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u09b8u09aeu09cdu09aau09a8u09cdu09a8 u09b9u09dfu09c7u099bu09c7u0964 u0986u09aeu09beu09a6u09c7u09b0 u098fu0995u099cu09a8 u09aau09cdu09b0u09a4u09bfu09a8u09bfu09a7u09bf u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u0995u09a5u09be u09acu09b2u09c7 u0986u09aau09a8u09beu0995u09c7 u09acu09bfu09b8u09cdu09a4u09beu09b0u09bfu09a4 u099cu09beu09a8u09bfu09dfu09c7 u09a6u09bfu09acu09c7u09a8<\\/p>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>1234<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 17, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@foodheavenbd.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;690.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttu09b8u09c1u09b8u09cdu09acu09beu09a6u09c1 u0986u09ae u09ea u0995u09c7u099cu09bf <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;690.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;690.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;690.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Bargunanttttt<p>+8801713318648<\\/p>nttttt<p>admin@foodheavenbd.com<\\/p>nttt<\\/address>n<\\/section>nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\\" style=\\\"color:red\\\">itgalaxi<\\/a><\\/h2>\\\"\\\"\"','Thank You (Woo)','','inherit','closed','closed','','1942-revision-v1','','','2026-06-08 21:42:05','2026-06-08 15:42:05','','1942','https://hypergrowth.fishgrowth.xyz/?p=1943','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1944','17','2026-06-08 21:42:10','2026-06-08 15:42:10','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964<\\/h2>\\t\\t\\n\\t\\t<p>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7<\\/p>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t\\t<h2>  Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-17__trashed','','','2026-06-09 12:39:24','2026-06-09 06:39:24','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-17/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1945','17','2026-06-08 21:42:10','2026-06-08 15:42:10','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964<\\/h2>\\t\\t\\n\\t\\t<p>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7<\\/p>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t\\t<h2>  Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Thank You (Woo)','','inherit','closed','closed','','1944-revision-v1','','','2026-06-08 21:42:10','2026-06-08 15:42:10','','1944','https://hypergrowth.fishgrowth.xyz/?p=1945','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1946','17','2026-06-08 21:42:11','2026-06-08 15:42:11','\"\\\"\\\"<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>tttttttttt<img width=\\\"500\\\" height=\\\"500\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo.png 500w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/Test-Logo-300x300.png 300w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/Test-Logo-150x150.png 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo-400x400-1.png 400w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo-qlgjn7dvi44bql5if66j7dolg9mi1ktt1m22gmqy20.png 100w\\\" sizes=\\\"(max-width: 500px) 100vw, 500px\\\" \\/>tttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>603<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>March 24, 2024<\\/strong>ntttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>750.00&#2547;&nbsp;<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttu0995u09c1u09dcu09aeu09c1u09dcu09c7 u09aau09c1u09b0u09beu09a8 u09a2u09beu0995u09beu09b0 u09acu09bfu0996u09cdu09afu09beu09a4 u09a8u09beu09b0u0995u09c7u09b2 <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>750.00&#2547;&nbsp;<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Shipping:<\\/th>nttttttt<td>Free shipping<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>ntt<p>Copyright u00a9 2024 Your Business Name | This website made with u2764ufe0f by <a style=\\\"color: red; font-weight: bold;\\\" href=\\\"https:\\/\\/digiprodwave.xyz\\\">DPW<\\/a><\\/p>\\\"\\\"\"','Thank You (Woo)','','inherit','closed','closed','','1939-revision-v1','','','2026-06-08 21:42:11','2026-06-08 15:42:11','','1939','https://hypergrowth.fishgrowth.xyz/?p=1946','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1947','17','2026-06-08 21:42:18','2026-06-08 15:42:18','','Khejur Badam Barafi','','trash','closed','closed','','khejur-badam-barafi__trashed','','','2026-06-09 12:47:05','2026-06-09 06:47:05','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=khejur-badam-barafi','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1948','17','2026-06-08 21:42:18','2026-06-08 15:42:18','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-19__trashed','','','2026-06-09 12:47:05','2026-06-09 06:47:05','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-19/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1949','17','2026-06-08 21:42:18','2026-06-08 15:42:18','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1948-revision-v1','','','2026-06-08 21:42:18','2026-06-08 15:42:18','','1948','https://hypergrowth.fishgrowth.xyz/?p=1949','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1950','17','2026-06-08 21:42:18','2026-06-08 15:42:18','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf: \\u0986\\u09a6\\u09b0\\u09c7\\u09b0 \\u09b8\\u09a8\\u09cd\\u09a4\\u09be\\u09a8, \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7 \\u09ac\\u09be\\u09ac\\u09be-\\u09ae\\u09be, \\u09a1\\u09be\\u09af\\u09bc\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09b0\\u09cb\\u0997\\u09c0 \\u0993 \\u09a1\\u09be\\u09af\\u09bc\\u09c7\\u099f\\u09b0\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf<\\/h2>\\t\\t\\n\\t\\t<p>\\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09be\\u09b0\\u0995 \\u09b8\\u09be\\u09a6\\u09be \\u099a\\u09bf\\u09a8\\u09bf \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf\\u09b0 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a8\\u09cd\\u09af\\u09be\\u099a\\u09be\\u09b0\\u09be\\u09b2 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf \\u0996\\u09c7\\u09a4\\u09c7 \\u0985\\u09ad\\u09cd\\u09af\\u09c7\\u09b8 \\u0995\\u09b0\\u09c1\\u09a8, \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u098f\\u09ac\\u0982 \\u09aa\\u09cd\\u09b0\\u09bf\\u09df\\u099c\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09c7\\u09b0 \\u09af\\u09a4\\u09cd\\u09a8\\u09c7 \\u0986\\u099c\\u0987 \\u09a8\\u09bf\\u09a8\\u00a0 \\\"\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf\\\"<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09af\\u09c7 \\u0989\\u09aa\\u09a6\\u09be\\u09a8\\u0997\\u09c1\\u09b2\\u09cb \\u09a6\\u09bf\\u09df\\u09c7 \\u09a4\\u09c8\\u09b0\\u09c0 \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u09c7\\u099b\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf!<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"830\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/shukhaddo-khejur-badam-borfi-19-1-scaled-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/shukhaddo-khejur-badam-borfi-19-1-scaled-1.webp 800w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/shukhaddo-khejur-badam-borfi-19-1-scaled-1-289x300.webp 289w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/shukhaddo-khejur-badam-borfi-19-1-scaled-1-768x797.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/shukhaddo-khejur-badam-borfi-19-1-scaled-1-600x623.webp 600w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t<p>\\u098f\\u0987 \\u09a6\\u09be\\u09b0\\u09c1\\u09a8 \\u09ae\\u099c\\u09be\\u09b0 \\u09ac\\u09b0\\u09ab\\u09bf \\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09bf\\u099c\\u09a8 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u0995\\u09df\\u09c7\\u0995 \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b0 \\u09ad\\u09be\\u09b2\\u09cb \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0, \\u0995\\u09be\\u099c\\u09c1, \\u09aa\\u09c7\\u09b8\\u09cd\\u09a4\\u09be, \\u0995\\u09be\\u09a0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u098f\\u09ac\\u0982 \\u09b8\\u09cd\\u09ac\\u09b0\\u09c7\\u09b0 \\u0998\\u09bf, \\u09b8\\u09be\\u09a6\\u09be \\u09a4\\u09bf\\u09b2 \\u09a6\\u09bf\\u09df\\u09c7 \\u09b8\\u09ac \\u09b0\\u0995\\u09ae\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09ac\\u09bf\\u09a7\\u09bf \\u09ae\\u09c7\\u09a8\\u09c7 \\u0998\\u09b0\\u09cb\\u09df\\u09be \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09bf \\u09af\\u09be \\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09b0 \\u0995\\u09be\\u09b2\\u09be\\u09b0, \\u09aa\\u09cd\\u09b0\\u09bf\\u099c\\u09be\\u09b0\\u09ad\\u09c7\\u099f\\u09bf\\u09ad \\u0993 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09b8\\u09be\\u09a6\\u09be \\u099a\\u09bf\\u09a8\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u0964<\\/p>https:\\/\\/youtu.be\\/9NYtlTXxRak\\t\\t\\n\\t\\t\\t<h2>\\u09b8\\u09c1\\u0996\\u09be\\u09a6\\u09cd\\u09af \\u098f\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf \\u098f\\u09a4\\u099f\\u09be\\u0987 \\u09ae\\u099c\\u09be\\u09a6\\u09be\\u09b0 \\u098f\\u09ac\\u0982 \\u0985\\u09a4\\u09c1\\u09b2\\u09a8\\u09c0\\u09df \\u09af\\u09c7 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7 \\u09b8\\u09ac\\u09be\\u0987  \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09ac\\u09c7  \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf!<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf \\u0995\\u09c7\\u09a8\\u09cb \\u0996\\u09be\\u0993\\u09df\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-box .elementor-image-box-content{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}<\\/style><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/elementor\\/thumbs\\/img-1-1-qpdc6zynbilfzb6slx7un7k9ikocn73umkht2msjqo.jpg\\\" title=\\\"img-1-1.jpg\\\" alt=\\\"img-1-1.jpg\\\" loading=\\\"lazy\\\" \\/><\\/figure><h3>\\u09b6\\u09be\\u09b0\\u09c0\\u09b0\\u09bf\\u0995 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7<\\/h3><p>\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0993 \\u09ac\\u09be\\u09a6\\u09be\\u09ae\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be, \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09c7\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/elementor\\/thumbs\\/img-2-scaled-1-qpdc71ubp6o0mj42ay13s736pcf32lbbatss16pre8.webp\\\" title=\\\"img-2-scaled-1.webp\\\" alt=\\\"img-2-scaled-1.webp\\\" loading=\\\"lazy\\\" \\/><\\/figure><h3>\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7<\\/h3><p>\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0993 \\u09ac\\u09be\\u09a6\\u09be\\u09ae\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u09ae\\u09bf\\u09a8\\u09be\\u09b0\\u09c7\\u09b2 \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/elementor\\/thumbs\\/img-3-qpdc7fxwjp7bgojl0m4iblj3m4hla1vacrl28c4usw.jpg\\\" title=\\\"img-3.jpg\\\" alt=\\\"img-3.jpg\\\" loading=\\\"lazy\\\" \\/><\\/figure><h3>\\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09af\\u09bc<\\/h3><p>\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0993 \\u09ac\\u09be\\u09a6\\u09be\\u09ae\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u098f\\u09ac\\u0982 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09af\\u09bc\\u0964\\n<\\/p>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"640\\\" height=\\\"480\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Khajur-barfi.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Khajur-barfi.webp 640w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Khajur-barfi-300x225.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Khajur-barfi-600x450.webp 600w\\\" sizes=\\\"(max-width: 640px) 100vw, 640px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor-pro - v3.12.1 - 02-04-2023 *\\/\\n.elementor-widget-price-list .elementor-price-list{list-style:none;padding:0;margin:0}.elementor-widget-price-list .elementor-price-list li{margin:0}.elementor-price-list li:not(:last-child){margin-bottom:20px}.elementor-price-list .elementor-price-list-image{max-width:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};flex-shrink:0;padding-right:25px}.elementor-price-list .elementor-price-list-image img{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-price-list .elementor-price-list-header,.elementor-price-list .elementor-price-list-item,.elementor-price-list .elementor-price-list-text{display:flex}.elementor-price-list .elementor-price-list-item{align-items:flex-start}.elementor-price-list .elementor-price-list-item .elementor-price-list-text{align-items:flex-start;flex-wrap:wrap;flex-grow:1}.elementor-price-list .elementor-price-list-item .elementor-price-list-header{align-items:center;flex-basis:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};font-size:19px;font-weight:600;margin-bottom:10px;justify-content:space-between}.elementor-price-list .elementor-price-list-item .elementor-price-list-title{max-width:80{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-price-list .elementor-price-list-item .elementor-price-list-price{font-weight:600}.elementor-price-list .elementor-price-list-item p.elementor-price-list-description{flex-basis:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};font-size:14px;margin:0}.elementor-price-list .elementor-price-list-item .elementor-price-list-separator{flex-grow:1;margin-left:10px;margin-right:10px;border-bottom-style:dotted;border-bottom-width:2px;height:0}.elementor-price-table{text-align:center}.elementor-price-table .elementor-price-table__header{background:var(--e-price-table-header-background-color,#555);padding:20px 0}.elementor-price-table .elementor-price-table__heading{margin:0;padding:0;line-height:1.2;font-size:24px;font-weight:600;color:#fff}.elementor-price-table .elementor-price-table__subheading{font-size:13px;font-weight:400;color:#fff}.elementor-price-table .elementor-price-table__original-price{margin-right:15px;text-decoration:line-through;font-size:.5em;line-height:1;font-weight:400;align-self:center}.elementor-price-table .elementor-price-table__original-price .elementor-price-table__currency{font-size:1em;margin:0}.elementor-price-table .elementor-price-table__price{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;flex-direction:row;color:#555;font-weight:800;font-size:65px;padding:40px 0}.elementor-price-table .elementor-price-table__price .elementor-typo-excluded{line-height:normal;letter-spacing:normal;text-transform:none;font-weight:400;font-size:medium;font-style:normal}.elementor-price-table .elementor-price-table__after-price{display:flex;flex-wrap:wrap;text-align:left;align-self:stretch;align-items:flex-start;flex-direction:column}.elementor-price-table .elementor-price-table__integer-part{line-height:.8}.elementor-price-table .elementor-price-table__currency,.elementor-price-table .elementor-price-table__fractional-part{line-height:1;font-size:.3em}.elementor-price-table .elementor-price-table__currency{margin-right:3px}.elementor-price-table .elementor-price-table__period{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};font-size:13px;font-weight:400}.elementor-price-table .elementor-price-table__features-list{list-style-type:none;margin:0;padding:0;line-height:1;color:var(--e-price-table-features-list-color)}.elementor-price-table .elementor-price-table__features-list li{font-size:14px;line-height:1;margin:0;padding:0}.elementor-price-table .elementor-price-table__features-list li .elementor-price-table__feature-inner{margin-left:15px;margin-right:15px}.elementor-price-table .elementor-price-table__features-list li:not(:first-child):before{content:\\\"\\\";display:block;border:0 solid hsla(0,0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05},47.8{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05},.3);margin:10px 12.5{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-price-table .elementor-price-table__features-list i{margin-right:10px;font-size:1.3em}.elementor-price-table .elementor-price-table__features-list svg{margin-right:10px;fill:var(--e-price-table-features-list-color);height:1.3em;width:1.3em}.elementor-price-table .elementor-price-table__features-list svg~*{vertical-align:text-top}.elementor-price-table .elementor-price-table__footer{padding:30px 0}.elementor-price-table .elementor-price-table__additional_info{margin:0;font-size:13px;line-height:1.4}.elementor-price-table__ribbon{position:absolute;top:0;left:auto;right:0;transform:rotate(90deg);width:150px;overflow:hidden;height:150px}.elementor-price-table__ribbon-inner{text-align:center;left:0;width:200{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};transform:translateY(-50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}) translateX(-50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}) translateX(35px) rotate(-45deg);margin-top:35px;font-size:13px;line-height:2;font-weight:800;text-transform:uppercase;background:#000}.elementor-price-table__ribbon.elementor-ribbon-left{transform:rotate(0);left:0;right:auto}.elementor-price-table__ribbon.elementor-ribbon-right{transform:rotate(90deg);left:auto;right:0}.elementor-widget-price-table .elementor-widget-container{overflow:hidden;background-color:#f9fafa}.e-con-inner>.elementor-widget-price-list,.e-con>.elementor-widget-price-list{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\n\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li><a href=\\\"#\\\">\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\u09eb\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09f3\\u09ed\\u09eb\\u09e6\\/=\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p>\\n\\t\\t\\t\\t\\t\\t\\t\\u09e7\\u09ee \\u09a5\\u09c7\\u0995\\u09c7 \\u09e8\\u09e8 \\u09aa\\u09bf\\u09b8 \\u09ac\\u09b0\\u09ab\\u09bf\\t\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t<\\/a><\\/li>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<li><a href=\\\"#\\\">\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09f3\\u09e7\\u09e9\\u09e6\\u09e6\\/=\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p>\\n\\t\\t\\t\\t\\t\\t\\t\\u09e9\\u09ee \\u09a5\\u09c7\\u0995\\u09c7 \\u09ea\\u09e8 \\u09aa\\u09bf\\u09b8 \\u09ac\\u09b0\\u09ab\\u09bf\\t\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t<\\/a><\\/li>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<li><a href=\\\"#\\\">\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\u09e8 \\u0995\\u09c7\\u099c\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09f3\\u09e8\\u09eb\\u09e6\\u09e6\\/=\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p>\\n\\t\\t\\t\\t\\t\\t\\t\\u09ed\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ee\\u09e6 \\u09aa\\u09bf\\u09b8 \\u09ac\\u09b0\\u09ab\\u09bf\\t\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t<\\/a><\\/li>\\t\\t\\t\\t\\t\\n\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>( \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09ab\\u09cd\\u09b0\\u09c0 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf )<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>\\n\\t<input type=\\\"checkbox\\\"\\n\\tname=\\\"wcf-multiple-sel\\\"\\n\\tvalue=\\\"989\\\"  >\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_country\\\" id=\\\"billing_country\\\" autocomplete=\\\"country\\\" data-placeholder=\\\"Select a country \\/ region&hellip;\\\" data-label=\\\"Country \\/ Region\\\"><option value=\\\"\\\">Select a country \\/ region&hellip;<\\/option><option value=\\\"AF\\\" >Afghanistan<\\/option><option value=\\\"AX\\\" >\\u00c5land 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&ccedil;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&atilde;o Tom&eacute; and Pr&iacute;ncipe<\\/option><option value=\\\"BL\\\" >Saint Barth&eacute;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\\\">\\u09b6\\u09bf\\u09aa\\u09bf\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a1\\u09a1\\u09cd\\u09b0\\u09c7\\u09b8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u099f\\u09bf \\u09b2\\u09c7\\u0996\\u09c1\\u09a8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"317\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"320\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717961850\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-23__trashed','','','2026-06-09 12:47:05','2026-06-09 06:47:05','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-23/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1951','17','2026-06-08 21:42:21','2026-06-08 15:42:21','','Khejurer Gur','','trash','closed','closed','','khejurer-gur__trashed','','','2026-06-09 12:46:32','2026-06-09 06:46:32','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=khejurer-gur','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1952','17','2026-06-08 21:42:21','2026-06-08 15:42:21','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-20__trashed','','','2026-06-09 12:46:31','2026-06-09 06:46:31','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-20/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1953','17','2026-06-08 21:42:21','2026-06-08 15:42:21','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1952-revision-v1','','','2026-06-08 21:42:21','2026-06-08 15:42:21','','1952','https://hypergrowth.fishgrowth.xyz/?p=1953','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1954','17','2026-06-08 21:42:21','2026-06-08 15:42:21','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09b6\\u09c0\\u09a4\\u09c7\\u09b0 \\u0990\\u09a4\\u09bf\\u09b9\\u09cd\\u09af \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09a1\\u09bc \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09b8\\u09c1\\u09a6\\u09c1\\u09b0 \\u099a\\u09c1\\u09af\\u09bc\\u09be\\u09a1\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b8\\u09b0\\u09cb\\u099c\\u0997\\u099e\\u09cd\\u099c \\u09a5\\u09c7\\u0995\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09b0\\u09b8 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7,\\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0997\\u09c1\\u09dc \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7 \\u09af\\u09a4\\u09cd\\u09a8 \\u09b8\\u09b9\\u0995\\u09be\\u09b0\\u09c7 \\u09aa\\u09cc\\u099b\\u09c7 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0998\\u09b0\\u09c7 \\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"720\\\" height=\\\"602\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-12-24-at-7.50.04-PM.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-12-24-at-7.50.04-PM.jpeg 720w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-12-24-at-7.50.04-PM-300x251.jpeg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-12-24-at-7.50.04-PM-600x502.jpeg 600w\\\" sizes=\\\"(max-width: 720px) 100vw, 720px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\u0998\\u09b0\\u09c7 \\u09ac\\u09b8\\u09c7 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u0996\\u09be\\u0981\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09c0 \\u0997\\u09c1\\u09dc \\u0993 \\u09a6\\u09be\\u09a8\\u09be\\u09a6\\u09be\\u09b0 \\u0997\\u09c1\\u09dc \\u09a8\\u09c7\\u09df\\u09be\\u09b0 \\u09b2\\u09cb\\u09ad\\u09a8\\u09c0\\u09df \\u09b8\\u09c1\\u09af\\u09cb\\u0997\\u0964\\t\\t\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0997\\u09c1\\u09a1\\u09bc \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u099a\\u09c7\\u09a8\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09df <\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"909\\\" height=\\\"900\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/danahh-Organic-Food-1-1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/danahh-Organic-Food-1-1.png 909w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/danahh-Organic-Food-1-1-300x297.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/danahh-Organic-Food-1-1-150x150.png 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/danahh-Organic-Food-1-1-768x760.png 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/danahh-Organic-Food-1-1-600x594.png 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/danahh-Organic-Food-1-1-100x100.png 100w\\\" sizes=\\\"(max-width: 909px) 100vw, 909px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09dc \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09a7\\u09b0\\u09a8\\u09c7 \\u09ae\\u09c1\\u0996\\u09b0\\u09cb\\u099a\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ab\\u09bf\\u09b0\\u09a8\\u09cd\\u09a8\\u09bf,\\u09aa\\u09be\\u09df\\u09c7\\u09b8,\\u0997\\u09c1\\u09dc\\u09c7\\u09b0  \\u09b6\\u09b0\\u09ac\\u09a4,\\u0997\\u09c1\\u09dc\\u09c7\\u09b0 \\u099a\\u09be,\\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u09a1\\u09bf\\u099c\\u09be\\u09b0\\u09cd\\u099f \\u0986\\u0987\\u099f\\u09c7\\u09ae \\u09a4\\u09c8\\u09b0\\u09c0 \\u09b9\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t \\u09b6\\u09c0\\u09a4\\u09c7 \\u09aa\\u09bf\\u09a0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09dc\\u09be \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u0996\\u09c1\\u09ac\\u0987 \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09df\\u0964\\u09af\\u09c7\\u09ae\\u09a8- \\u09ad\\u09be\\u09aa\\u09be \\u09aa\\u09bf\\u09a0\\u09be,\\u09aa\\u09be\\u099f\\u09bf\\u09b8\\u09be\\u09aa\\u099f\\u09be \\u09aa\\u09bf\\u09a0\\u09be,\\u09a8\\u0995\\u09b6\\u09c0 \\u09aa\\u09bf\\u09a0\\u09be, \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u09aa\\u09bf\\u09a0\\u09be,\\u0997\\u09c1\\u09dc\\u09c7\\u09b0 \\u099c\\u09bf\\u09b2\\u09be\\u09aa\\u09bf,\\u09a6\\u09c1\\u09a7-\\u09aa\\u09c1\\u09b2\\u09bf \\u09aa\\u09bf\\u09a0\\u09be,\\u0995\\u09cd\\u09b7\\u09bf\\u09dc \\u09aa\\u09bf\\u09a0\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 \\u0997\\u09c1\\u09dc \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u0985\\u099e\\u09cd\\u099a\\u09b2\\u09c7\\u09b0 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09a7\\u09b0\\u09a8\\u09c7 \\u09aa\\u09bf\\u09a0\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8 ?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u09aa\\u09cd\\u09b0\\u09bf\\u099c\\u09be\\u09b0\\u09ad\\u09c7\\u099f\\u09bf\\u09ad \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u0997\\u09c1\\u09dc \\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0997\\u09c1\\u09dc \\u099a\\u09bf\\u09a8\\u09bf , \\u09b0\\u09be\\u09b8\\u09be\\u09af\\u09bc\\u09a8\\u09bf\\u0995 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 , \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ac\\u09be\\u0987\\u0995\\u09c7 \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09bf\\u09a8\\u09cd\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09c0 \\u0997\\u09c1\\u09dc\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u0989\\u09aa\\u09ad\\u09cb\\u0997 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09c1\\u09a6\\u09c1\\u09b0 \\u099a\\u09c1\\u09af\\u09bc\\u09be\\u09a1\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b8\\u09b0\\u09cb\\u099c\\u0997\\u099e\\u09cd\\u099c \\u09a5\\u09c7\\u0995\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09b0\\u09b8 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7,\\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0997\\u09c1\\u09dc \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7 \\u09af\\u09a4\\u09cd\\u09a8 \\u09b8\\u09b9\\u0995\\u09be\\u09b0\\u09c7 \\u09aa\\u09cc\\u099b\\u09c7 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0998\\u09b0\\u09c7 \\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09aa\\u09a8\\u09bf \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09df \\u099c\\u09be\\u09a8\\u09c7\\u09a8 \\u09af\\u09c7, \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09ac\\u099b\\u09b0 \\u09b8\\u09b0\\u09cd\\u09ac\\u099a\\u09cd\\u099a \\u09b6\\u09bf\\u09a4 \\u09aa\\u09dc\\u09c7 \\u099a\\u09c1\\u09af\\u09bc\\u09be\\u09a1\\u09be\\u0999\\u09cd\\u0997\\u09be \\u099c\\u09c7\\u09b2\\u09be\\u09a4\\u09c7 \\u0964 \\u09b6\\u09bf\\u09a4 \\u09ac\\u09c7\\u09b6\\u09bf \\u09aa\\u09dc\\u09b2\\u09c7 \\u09b0\\u09b8 \\u09ad\\u09be\\u09b2\\u09c7\\u09be \\u09b9\\u09df, \\u0986\\u09b0 \\u09b0\\u09b8 \\u09af\\u09a6\\u09bf \\u0996\\u09be\\u099f\\u09bf \\u09ad\\u09be\\u09b2\\u09c7\\u09be \\u09b9\\u09df \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u0997\\u09c1\\u09dc \\u0993 \\u09ad\\u09be\\u09b2\\u09c7\\u09be \\u09b9\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09dc 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0995\\u09cd\\u09af\\u09be\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u098f\\u09ac\\u0982 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09b9\\u09be\\u0987\\u099c\\u09c7\\u09a8 \\u09ae\\u09c7\\u0987\\u09a8\\u099f\\u09c7\\u0987\\u09a8 \\u0995\\u09b0\\u09c7 \\u09ac\\u09be\\u09a8\\u09be\\u09a8\\u09cb \\u09b9\\u09df\\u0964 \\u09af\\u09be \\u0995\\u09bf\\u09a8\\u09be \\u0986\\u09aa\\u09a8\\u09bf \\u0997\\u09c1\\u09dc \\u09b9\\u09be\\u09a4\\u09c7 \\u099f\\u09c7\\u09b8\\u09cd\\u099f \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df\\u0987 \\u09ac\\u09c1\\u099d\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t \\u0986\\u09aa\\u09a8\\u09bf \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ae\\u09cd\\u09af\\u09be\\u09a8 \\u098f\\u09b0 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u099f\\u09c7\\u09b8\\u09cd\\u099f \\u0995\\u09b0\\u09c7 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09dc \\u0996\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u09aa\\u09b0 ,\\u0986\\u09aa\\u09a8\\u09bf \\u09ac\\u09b2\\u09a4\\u09c7 \\u09ac\\u09be\\u09a7\\u09cd\\u09af \\u09b9\\u09ac\\u09c7\\u09a8 ,\\u09ad\\u09be\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09a6\\u09c7\\u09b0 \\u0997\\u09c1\\u09dc \\u09a8\\u09be \\u09a8\\u09bf\\u09b2\\u09c7 \\u09ad\\u09c1\\u09b2 \\u0995\\u09b0\\u09a4\\u09be\\u09ae\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t \\u09e9 \\u0995\\u09c7\\u099c\\u09bf \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u0997\\u09c1\\u09dc\\n\\t\\t\\t\\t\\t\\u09e7\\u09eb\\u09e6\\u09e6\\/=\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h4>\\u09b8\\u09be\\u09b0\\u09be \\u09a6\\u09c7\\u09b6\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/h4>\\t\\t\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09e8.\\u09eb \\u0995\\u09c7\\u099c\\u09bf \\u09a8\\u09b2\\u09c7\\u09a8 \\u09a6\\u09be\\u09a8\\u09be\\u09a6\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\n\\t\\t\\t\\t\\t\\u09e7\\u09e8\\u09e6\\u09e6\\/=\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h4>\\u09b8\\u09be\\u09b0\\u09be \\u09a6\\u09c7\\u09b6\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/h4>\\t\\t\\n\\t\\t\\t<h2>\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u0985\\u09a5\\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09a4\\u09a5\\u09cd\\u09af \\u09a6\\u09bf\\u09df\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae \\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>\\n\\t<input type=\\\"checkbox\\\"\\n\\tname=\\\"wcf-multiple-sel\\\"\\n\\tvalue=\\\"989\\\"  >\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-100x100.webp 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_last_name_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_last_name\\\">Last name&nbsp;<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_address_1_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_company_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_company\\\">Company name&nbsp;(optional)<\\/label><input type=\\\"text\\\" name=\\\"billing_company\\\" id=\\\"billing_company\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"organization\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u099f\\u09bf \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_country\\\" id=\\\"billing_country\\\" autocomplete=\\\"country\\\" data-placeholder=\\\"Select a country \\/ region&hellip;\\\" data-label=\\\"Country \\/ Region\\\"><option value=\\\"\\\">Select a country \\/ region&hellip;<\\/option><option value=\\\"AF\\\" >Afghanistan<\\/option><option value=\\\"AX\\\" >\\u00c5land 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&ccedil;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&atilde;o Tom&eacute; and Pr&iacute;ncipe<\\/option><option value=\\\"BL\\\" >Saint Barth&eacute;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_2_field\\\" data-priority=\\\"60\\\"><label for=\\\"billing_address_2\\\">Apartment, suite, unit, etc.&nbsp;(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&nbsp;<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&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_state\\\" id=\\\"billing_state\\\" autocomplete=\\\"address-level1\\\" data-placeholder=\\\"Select an option&hellip;\\\"  data-input-classes=\\\"\\\" data-label=\\\"State\\\">\\n\\t\\t\\t\\t\\t\\t<option value=\\\"\\\">Select an option&hellip;<\\/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&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_postcode\\\" id=\\\"billing_postcode\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"postal-code\\\" \\/><\\/p><p id=\\\"billing_email_field\\\" data-priority=\\\"110\\\"><label for=\\\"billing_email\\\">Email address&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"email\\\" name=\\\"billing_email\\\" id=\\\"billing_email\\\" placeholder=\\\"\\\"  value=\\\"admin@thesmartway.xyz\\\" autocomplete=\\\"email\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"332\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"335\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717962054\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Khejurer Gur','','trash','closed','closed','','khejurer-gur__trashed','','','2026-06-09 12:46:31','2026-06-09 06:46:31','','0','https://hypergrowth.fishgrowth.xyz/step/khejurer-gur/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1955','17','2026-06-08 21:42:22','2026-06-08 15:42:22','','Khimar','','trash','closed','closed','','khimar__trashed','','','2026-06-09 12:41:08','2026-06-09 06:41:08','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=khimar','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1956','17','2026-06-08 21:42:22','2026-06-08 15:42:22','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-21__trashed','','','2026-06-09 12:41:08','2026-06-09 06:41:08','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-21/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1957','17','2026-06-08 21:42:22','2026-06-08 15:42:22','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1956-revision-v1','','','2026-06-08 21:42:22','2026-06-08 15:42:22','','1956','https://hypergrowth.fishgrowth.xyz/?p=1957','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1958','17','2026-06-08 21:42:22','2026-06-08 15:42:22','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09b9\\u09c7 \\u09ac\\u09a8\\u09bf \\u0986\\u09a6\\u09ae \\u09aa\\u09cd\\u09b0\\u09a4\\u09cd\\u09af\\u09c7\\u0995 \\u09a8\\u09be\\u09ae\\u09be\\u099c\\u09c7\\u09b0 \\u09b8\\u09ae\\u09df \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u09aa\\u09cb\\u09b6\\u09be\\u0995 \\u09aa\\u09b0\\u09bf\\u09a7\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09a8\\u09be\\u0993<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09a4\\u09cd\\u09af\\u09c7\\u0995\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u09be\\u099c \\u09b9\\u09cb\\u0995 \\u09b8\\u09b9\\u09bf\\u09b9 \\u0993 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\\"\\u0986\\u09ac\\u09be\\u09b0\\u09a8\\u09bf\\\"<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"600\\\" height=\\\"840\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/01-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/01-1.jpg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/01-1-214x300.jpg 214w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t<p>\\\"\\u0986\\u09ac\\u09be\\u09df\\u09be-\\u0987 \\u09a8\\u09be\\u0996\\u09bf\\u09b2\\\" \\u098f\\u0987 \\u09ae\\u09c1\\u09b9\\u09c2\\u09b0\\u09cd\\u09a4\\u09c7\\u09b0 \\u09b8\\u09b0\\u09cd\\u09ac\\u09be\\u09a7\\u09bf\\u0995 \\u099a\\u09be\\u09b9\\u09bf\\u09a6\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ac\\u09cb\\u09b0\\u0996\\u09be\\u0964\\u00a0\\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09ad\\u09be\\u0987\\u09b0\\u09be\\u09b2 \\u098f\\u0987 \\u09a1\\u09bf\\u099c\\u09be\\u0987\\u09a8 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u09be\\u09a4\\u09c7\\u0987 \\u09a4\\u09c8\\u09b0\\u09bf\\u0964\\u00a0\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09aa\\u09c1\\u09b0\\u09be \\u0996\\u09c1\\u09ac\\u0987 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c7\\u099b\\u09c7\\u09a8 \\u098f\\u0987 \\u09ac\\u09cb\\u09b0\\u0996\\u09be\\u099f\\u09bf\\u0964\\u00a0\\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a8 \\u098f\\u0996\\u09a8\\u0987!<\\/p>\\t\\t\\n\\t\\t\\t<h2>\\u09b8\\u09be\\u09b2\\u09be\\u09b9 \\u09b2\\u0982 \\u0996\\u09bf\\u09ae\\u09be\\u09b0 (\\u09ab\\u09cd\\u09b0\\u09c0 \\u09b8\\u09be\\u0987\\u099c)<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09a8\\u09be\\u09ae\\u09be\\u099c\\u09c7\\u09b0 \\u09aa\\u09cb\\u09b6\\u09be\\u0995 \\u09a8\\u09bf\\u09df\\u09c7 \\u099a\\u09bf\\u09a8\\u09cd\\u09a4\\u09be \\u09ae\\u09c1\\u0995\\u09cd\\u09a4, \\u09a8\\u09be\\u09ae\\u09be\\u099c\\u09c7 \\u0985\\u09b8\\u09cd\\u09ac\\u09b8\\u09cd\\u09a5\\u09bf \\u0986\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be \\u09a4\\u09be\\u0987 \\u0987\\u09ac\\u09be\\u09a6\\u09be\\u09a4 \\u09b9\\u09ac\\u09c7 \\u09a4\\u09c3\\u09aa\\u09cd\\u09a4\\u09bf\\u09ae\\u09a4, \\u09a8\\u09be\\u09ae\\u09be\\u099c\\u09c7 \\u0997\\u09b0\\u09ae \\u09b2\\u09be\\u0997\\u09be\\u09b0 \\u0995\\u09cb\\u09a8\\u0987 \\u0985\\u09ac\\u0995\\u09be\\u09b6 \\u09a8\\u09c7\\u0987\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"58c10d9\\\" data-elementor-lightbox-title=\\\"05-1.jpg\\\" data-e-action-hash=\\\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6MzU4LCJ1cmwiOiJodHRwczpcL1wvdGhlc21hcnR3YXkueHl6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wNlwvMDUtMS5qcGciLCJzbGlkZXNob3ciOiI1OGMxMGQ5In0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/05-1.jpg\\\"><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/05-1.jpg\\\" alt=\\\"05-1.jpg\\\" \\/><\\/figure><\\/a><a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"58c10d9\\\" data-elementor-lightbox-title=\\\"04-1.jpg\\\" data-e-action-hash=\\\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6MzU5LCJ1cmwiOiJodHRwczpcL1wvdGhlc21hcnR3YXkueHl6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wNlwvMDQtMS5qcGciLCJzbGlkZXNob3ciOiI1OGMxMGQ5In0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/04-1.jpg\\\"><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/04-1.jpg\\\" alt=\\\"04-1.jpg\\\" \\/><\\/figure><\\/a><a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"58c10d9\\\" data-elementor-lightbox-title=\\\"03-1.jpg\\\" data-e-action-hash=\\\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6MzYwLCJ1cmwiOiJodHRwczpcL1wvdGhlc21hcnR3YXkueHl6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wNlwvMDMtMS5qcGciLCJzbGlkZXNob3ciOiI1OGMxMGQ5In0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/03-1.jpg\\\"><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/03-1.jpg\\\" alt=\\\"03-1.jpg\\\" \\/><\\/figure><\\/a>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\n\\t\\t\\t\\t\\t\\u09e7\\u09ea\\u09e6\\u09e6\\/-\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\n\\t\\t\\t\\t\\t\\u09e7\\u09e8\\u09ef\\u09e6\\/-\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"600\\\" height=\\\"514\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/jinaanshop1-600x514-1-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/jinaanshop1-600x514-1-1.jpg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/jinaanshop1-600x514-1-1-300x257.jpg 300w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09c7\\u09a8 \\u098f\\u0987 \\u09b2\\u0982 \\u0996\\u09bf\\u09ae\\u09be\\u09b0\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0983<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09be\\u09b8\\u09be\\u09b0 \\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a8 \\u0993\\u09b0\\u09cd\\u09a8\\u09be \\u09a6\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c1\\u09b0\\u09cd\\u09a8 \\u09b8\\u09a4\\u09b0 \\u09a2\\u09be\\u0995\\u09be \\u0995\\u09b8\\u09cd\\u099f\\u0995\\u09b0\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09be\\u09a5\\u09be\\u09b0 \\u099a\\u09c1\\u09b2 \\u09ac\\u09c7\\u09b0 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09df\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u0996\\u09a8\\u09cb \\u09a5\\u09c1\\u09a4\\u09a8\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u0997\\u09b2\\u09be\\u09b0 \\u0985\\u0982\\u09b6 \\u09ac\\u09c7\\u09b0 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09df\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09b2\\u09cb\\u09df\\u09be\\u09b0\\u09c7 \\u09b0\\u09c1\\u0995\\u09c1\\/\\u09b8\\u09bf\\u099c\\u09a6\\u09be\\u09df \\u099f\\u09be\\u0996\\u09a8\\u09c1 \\u09ac\\u09c7\\u09b0 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ad\\u09be\\u09ac\\u09a8\\u09be \\u09a5\\u09be\\u0995\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2><a href=\\\"http:\\/\\/wa.me\\/01819000000\\\">\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09b9\\u09cb\\u09df\\u09be\\u099f\\u09b8\\u0986\\u09aa \\u0995\\u09b0\\u09c1\\u09a8\\u0983 01819000000<\\/a><\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"http:\\/\\/wa.me\\/8801819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995 \\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09c1\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/h2>\\t\\t\\n\\t\\t<p>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09a4\\u09c7, \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u0993 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u099f\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae\\\" \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<br \\/>\\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u0995\\u09cb\\u09a8 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u09a8\\u09be \\u09a6\\u09bf\\u09df\\u09c7\\u0987, \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7, \\u0996\\u09bf\\u09ae\\u09be\\u09b0\\u099f\\u09bf \\u09a6\\u09c7\\u0996\\u09c7 \\u09a4\\u09be\\u0981\\u09b0\\u09aa\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u0989\\u09aa\\u09ad\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/p>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\/\\u098f\\u09b2\\u09be\\u0995\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09a5\\u09be\\u09a8\\u09be, \\u099c\\u09c7\\u09b2\\u09be\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"110\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_country\\\" id=\\\"billing_country\\\" autocomplete=\\\"country\\\" data-placeholder=\\\"Select a country \\/ region&hellip;\\\" data-label=\\\"Country \\/ Region\\\"><option value=\\\"\\\">Select a country \\/ region&hellip;<\\/option><option value=\\\"AF\\\" >Afghanistan<\\/option><option value=\\\"AX\\\" >\\u00c5land 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&ccedil;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&atilde;o Tom&eacute; and Pr&iacute;ncipe<\\/option><option value=\\\"BL\\\" >Saint Barth&eacute;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>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"346\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"349\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717962274\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;0.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;0.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;0.00\\\" data-value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;0.00\\\">\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;0.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-24__trashed','','','2026-06-09 12:41:08','2026-06-09 06:41:08','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-24/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1959','17','2026-06-08 21:42:38','2026-06-08 15:42:38','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf: \\u0986\\u09a6\\u09b0\\u09c7\\u09b0 \\u09b8\\u09a8\\u09cd\\u09a4\\u09be\\u09a8, \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7 \\u09ac\\u09be\\u09ac\\u09be-\\u09ae\\u09be, \\u09a1\\u09be\\u09af\\u09bc\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09b0\\u09cb\\u0997\\u09c0 \\u0993 \\u09a1\\u09be\\u09af\\u09bc\\u09c7\\u099f\\u09b0\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf<\\/h2>\\t\\t\\n\\t\\t<p>\\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09be\\u09b0\\u0995 \\u09b8\\u09be\\u09a6\\u09be \\u099a\\u09bf\\u09a8\\u09bf \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf\\u09b0 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a8\\u09cd\\u09af\\u09be\\u099a\\u09be\\u09b0\\u09be\\u09b2 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf \\u0996\\u09c7\\u09a4\\u09c7 \\u0985\\u09ad\\u09cd\\u09af\\u09c7\\u09b8 \\u0995\\u09b0\\u09c1\\u09a8, \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u098f\\u09ac\\u0982 \\u09aa\\u09cd\\u09b0\\u09bf\\u09df\\u099c\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09c7\\u09b0 \\u09af\\u09a4\\u09cd\\u09a8\\u09c7 \\u0986\\u099c\\u0987 \\u09a8\\u09bf\\u09a8\\u00a0 \\\"\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf\\\"<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09af\\u09c7 \\u0989\\u09aa\\u09a6\\u09be\\u09a8\\u0997\\u09c1\\u09b2\\u09cb \\u09a6\\u09bf\\u09df\\u09c7 \\u09a4\\u09c8\\u09b0\\u09c0 \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u09c7\\u099b\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf!<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"830\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/shukhaddo-khejur-badam-borfi-19-1-scaled-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/shukhaddo-khejur-badam-borfi-19-1-scaled-1.webp 800w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/shukhaddo-khejur-badam-borfi-19-1-scaled-1-289x300.webp 289w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/shukhaddo-khejur-badam-borfi-19-1-scaled-1-768x797.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/shukhaddo-khejur-badam-borfi-19-1-scaled-1-600x623.webp 600w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t<p>\\u098f\\u0987 \\u09a6\\u09be\\u09b0\\u09c1\\u09a8 \\u09ae\\u099c\\u09be\\u09b0 \\u09ac\\u09b0\\u09ab\\u09bf \\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09bf\\u099c\\u09a8 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u0995\\u09df\\u09c7\\u0995 \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b0 \\u09ad\\u09be\\u09b2\\u09cb \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0, \\u0995\\u09be\\u099c\\u09c1, \\u09aa\\u09c7\\u09b8\\u09cd\\u09a4\\u09be, \\u0995\\u09be\\u09a0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u098f\\u09ac\\u0982 \\u09b8\\u09cd\\u09ac\\u09b0\\u09c7\\u09b0 \\u0998\\u09bf, \\u09b8\\u09be\\u09a6\\u09be \\u09a4\\u09bf\\u09b2 \\u09a6\\u09bf\\u09df\\u09c7 \\u09b8\\u09ac \\u09b0\\u0995\\u09ae\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09ac\\u09bf\\u09a7\\u09bf \\u09ae\\u09c7\\u09a8\\u09c7 \\u0998\\u09b0\\u09cb\\u09df\\u09be \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09bf \\u09af\\u09be \\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09b0 \\u0995\\u09be\\u09b2\\u09be\\u09b0, \\u09aa\\u09cd\\u09b0\\u09bf\\u099c\\u09be\\u09b0\\u09ad\\u09c7\\u099f\\u09bf\\u09ad \\u0993 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09b8\\u09be\\u09a6\\u09be \\u099a\\u09bf\\u09a8\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u0964<\\/p>https:\\/\\/youtu.be\\/9NYtlTXxRak\\t\\t\\n\\t\\t\\t<h2>\\u09b8\\u09c1\\u0996\\u09be\\u09a6\\u09cd\\u09af \\u098f\\u09b0 \\u09ac\\u09bf\\u0996\\u09cd\\u09af\\u09be\\u09a4 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf \\u098f\\u09a4\\u099f\\u09be\\u0987 \\u09ae\\u099c\\u09be\\u09a6\\u09be\\u09b0 \\u098f\\u09ac\\u0982 \\u0985\\u09a4\\u09c1\\u09b2\\u09a8\\u09c0\\u09df \\u09af\\u09c7 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7 \\u09b8\\u09ac\\u09be\\u0987  \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09ac\\u09c7  \\u0997\\u09cd\\u09af\\u09be\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf!<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order-form\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf \\u0995\\u09c7\\u09a8\\u09cb \\u0996\\u09be\\u0993\\u09df\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-box .elementor-image-box-content{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}<\\/style><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/elementor\\/thumbs\\/img-1-1-qpdc6zynbilfzb6slx7un7k9ikocn73umkht2msjqo.jpg\\\" title=\\\"img-1-1.jpg\\\" alt=\\\"img-1-1.jpg\\\" loading=\\\"lazy\\\" \\/><\\/figure><h3>\\u09b6\\u09be\\u09b0\\u09c0\\u09b0\\u09bf\\u0995 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7<\\/h3><p>\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0993 \\u09ac\\u09be\\u09a6\\u09be\\u09ae\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be, \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09c7\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/elementor\\/thumbs\\/img-2-scaled-1-qpdc71ubp6o0mj42ay13s736pcf32lbbatss16pre8.webp\\\" title=\\\"img-2-scaled-1.webp\\\" alt=\\\"img-2-scaled-1.webp\\\" loading=\\\"lazy\\\" \\/><\\/figure><h3>\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7<\\/h3><p>\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0993 \\u09ac\\u09be\\u09a6\\u09be\\u09ae\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u09ae\\u09bf\\u09a8\\u09be\\u09b0\\u09c7\\u09b2 \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/elementor\\/thumbs\\/img-3-qpdc7fxwjp7bgojl0m4iblj3m4hla1vacrl28c4usw.jpg\\\" title=\\\"img-3.jpg\\\" alt=\\\"img-3.jpg\\\" loading=\\\"lazy\\\" \\/><\\/figure><h3>\\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09af\\u09bc<\\/h3><p>\\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0993 \\u09ac\\u09be\\u09a6\\u09be\\u09ae\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u098f\\u09ac\\u0982 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09af\\u09bc\\u0964\\n<\\/p>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"640\\\" height=\\\"480\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Khajur-barfi.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Khajur-barfi.webp 640w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Khajur-barfi-300x225.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Khajur-barfi-600x450.webp 600w\\\" sizes=\\\"(max-width: 640px) 100vw, 640px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor-pro - v3.12.1 - 02-04-2023 *\\/\\n.elementor-widget-price-list .elementor-price-list{list-style:none;padding:0;margin:0}.elementor-widget-price-list .elementor-price-list li{margin:0}.elementor-price-list li:not(:last-child){margin-bottom:20px}.elementor-price-list .elementor-price-list-image{max-width:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};flex-shrink:0;padding-right:25px}.elementor-price-list .elementor-price-list-image img{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-price-list .elementor-price-list-header,.elementor-price-list .elementor-price-list-item,.elementor-price-list .elementor-price-list-text{display:flex}.elementor-price-list .elementor-price-list-item{align-items:flex-start}.elementor-price-list .elementor-price-list-item .elementor-price-list-text{align-items:flex-start;flex-wrap:wrap;flex-grow:1}.elementor-price-list .elementor-price-list-item .elementor-price-list-header{align-items:center;flex-basis:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};font-size:19px;font-weight:600;margin-bottom:10px;justify-content:space-between}.elementor-price-list .elementor-price-list-item .elementor-price-list-title{max-width:80{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-price-list .elementor-price-list-item .elementor-price-list-price{font-weight:600}.elementor-price-list .elementor-price-list-item p.elementor-price-list-description{flex-basis:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};font-size:14px;margin:0}.elementor-price-list .elementor-price-list-item .elementor-price-list-separator{flex-grow:1;margin-left:10px;margin-right:10px;border-bottom-style:dotted;border-bottom-width:2px;height:0}.elementor-price-table{text-align:center}.elementor-price-table .elementor-price-table__header{background:var(--e-price-table-header-background-color,#555);padding:20px 0}.elementor-price-table .elementor-price-table__heading{margin:0;padding:0;line-height:1.2;font-size:24px;font-weight:600;color:#fff}.elementor-price-table .elementor-price-table__subheading{font-size:13px;font-weight:400;color:#fff}.elementor-price-table .elementor-price-table__original-price{margin-right:15px;text-decoration:line-through;font-size:.5em;line-height:1;font-weight:400;align-self:center}.elementor-price-table .elementor-price-table__original-price .elementor-price-table__currency{font-size:1em;margin:0}.elementor-price-table .elementor-price-table__price{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;flex-direction:row;color:#555;font-weight:800;font-size:65px;padding:40px 0}.elementor-price-table .elementor-price-table__price .elementor-typo-excluded{line-height:normal;letter-spacing:normal;text-transform:none;font-weight:400;font-size:medium;font-style:normal}.elementor-price-table .elementor-price-table__after-price{display:flex;flex-wrap:wrap;text-align:left;align-self:stretch;align-items:flex-start;flex-direction:column}.elementor-price-table .elementor-price-table__integer-part{line-height:.8}.elementor-price-table .elementor-price-table__currency,.elementor-price-table .elementor-price-table__fractional-part{line-height:1;font-size:.3em}.elementor-price-table .elementor-price-table__currency{margin-right:3px}.elementor-price-table .elementor-price-table__period{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};font-size:13px;font-weight:400}.elementor-price-table .elementor-price-table__features-list{list-style-type:none;margin:0;padding:0;line-height:1;color:var(--e-price-table-features-list-color)}.elementor-price-table .elementor-price-table__features-list li{font-size:14px;line-height:1;margin:0;padding:0}.elementor-price-table .elementor-price-table__features-list li .elementor-price-table__feature-inner{margin-left:15px;margin-right:15px}.elementor-price-table .elementor-price-table__features-list li:not(:first-child):before{content:\\\"\\\";display:block;border:0 solid hsla(0,0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05},47.8{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05},.3);margin:10px 12.5{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-price-table .elementor-price-table__features-list i{margin-right:10px;font-size:1.3em}.elementor-price-table .elementor-price-table__features-list svg{margin-right:10px;fill:var(--e-price-table-features-list-color);height:1.3em;width:1.3em}.elementor-price-table .elementor-price-table__features-list svg~*{vertical-align:text-top}.elementor-price-table .elementor-price-table__footer{padding:30px 0}.elementor-price-table .elementor-price-table__additional_info{margin:0;font-size:13px;line-height:1.4}.elementor-price-table__ribbon{position:absolute;top:0;left:auto;right:0;transform:rotate(90deg);width:150px;overflow:hidden;height:150px}.elementor-price-table__ribbon-inner{text-align:center;left:0;width:200{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};transform:translateY(-50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}) translateX(-50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}) translateX(35px) rotate(-45deg);margin-top:35px;font-size:13px;line-height:2;font-weight:800;text-transform:uppercase;background:#000}.elementor-price-table__ribbon.elementor-ribbon-left{transform:rotate(0);left:0;right:auto}.elementor-price-table__ribbon.elementor-ribbon-right{transform:rotate(90deg);left:auto;right:0}.elementor-widget-price-table .elementor-widget-container{overflow:hidden;background-color:#f9fafa}.e-con-inner>.elementor-widget-price-list,.e-con>.elementor-widget-price-list{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\n\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li><a href=\\\"#\\\">\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\u09eb\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09f3\\u09ed\\u09eb\\u09e6\\/=\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p>\\n\\t\\t\\t\\t\\t\\t\\t\\u09e7\\u09ee \\u09a5\\u09c7\\u0995\\u09c7 \\u09e8\\u09e8 \\u09aa\\u09bf\\u09b8 \\u09ac\\u09b0\\u09ab\\u09bf\\t\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t<\\/a><\\/li>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<li><a href=\\\"#\\\">\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09f3\\u09e7\\u09e9\\u09e6\\u09e6\\/=\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p>\\n\\t\\t\\t\\t\\t\\t\\t\\u09e9\\u09ee \\u09a5\\u09c7\\u0995\\u09c7 \\u09ea\\u09e8 \\u09aa\\u09bf\\u09b8 \\u09ac\\u09b0\\u09ab\\u09bf\\t\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t<\\/a><\\/li>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<li><a href=\\\"#\\\">\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\u09e8 \\u0995\\u09c7\\u099c\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ac\\u09be\\u09a6\\u09be\\u09ae \\u09ac\\u09b0\\u09ab\\u09bf\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09f3\\u09e8\\u09eb\\u09e6\\u09e6\\/=\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p>\\n\\t\\t\\t\\t\\t\\t\\t\\u09ed\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ee\\u09e6 \\u09aa\\u09bf\\u09b8 \\u09ac\\u09b0\\u09ab\\u09bf\\t\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t<\\/a><\\/li>\\t\\t\\t\\t\\t\\n\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>( \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09ab\\u09cd\\u09b0\\u09c0 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf )<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>\\n\\t<input type=\\\"checkbox\\\"\\n\\tname=\\\"wcf-multiple-sel\\\"\\n\\tvalue=\\\"989\\\"  >\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_country\\\" id=\\\"billing_country\\\" autocomplete=\\\"country\\\" data-placeholder=\\\"Select a country \\/ region&hellip;\\\" data-label=\\\"Country \\/ Region\\\"><option value=\\\"\\\">Select a country \\/ region&hellip;<\\/option><option value=\\\"AF\\\" >Afghanistan<\\/option><option value=\\\"AX\\\" >\\u00c5land 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&ccedil;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&atilde;o Tom&eacute; and Pr&iacute;ncipe<\\/option><option value=\\\"BL\\\" >Saint Barth&eacute;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\\\">\\u09b6\\u09bf\\u09aa\\u09bf\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a1\\u09a1\\u09cd\\u09b0\\u09c7\\u09b8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u099f\\u09bf \\u09b2\\u09c7\\u0996\\u09c1\\u09a8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"317\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"320\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717961850\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Checkout (Woo)','','inherit','closed','closed','','1950-revision-v1','','','2026-06-08 21:42:38','2026-06-08 15:42:38','','1950','https://hypergrowth.fishgrowth.xyz/?p=1959','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1960','17','2026-06-08 21:42:46','2026-06-08 15:42:46','\"\\\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-18__trashed','','','2026-06-09 12:47:28','2026-06-09 06:47:28','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-18/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1961','17','2026-06-08 21:42:46','2026-06-08 15:42:46','\"\\\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\\\"\"','Thank You (Woo)','','inherit','closed','closed','','1960-revision-v1','','','2026-06-08 21:42:46','2026-06-08 15:42:46','','1960','https://hypergrowth.fishgrowth.xyz/?p=1961','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1962','17','2026-06-08 21:42:54','2026-06-08 15:42:54','\"\\\"\\\"<img width=\\\"300\\\" height=\\\"184\\\" src=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/03\\/Logo-1-01-e1710439185699-300x184.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/03\\/Logo-1-01-e1710439185699-300x184.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Logo-1-01-e1710439185699-600x368-1.png 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Logo-1-01-e1710439185699-768x471-1.png 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Logo-1-01-e1710439185699.png 863w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>tttttttttttttnttt<h2>u099au09beu0981u09aau09beu0987u09a8u09acu09beu09acu0997u099eu09cdu099cu09c7u09b0 u09e7u09e6u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} u0995u09beu09b0u09cdu09acu09beu0987u09a1u09aeu09c1u0995u09cdu09a4 u09b9u09bfu09aeu09b8u09beu0997u09b0\\/u0996u09bfu09b0u09b8u09beu09aau09beu09a4 u0986u09ae<\\/h2>ttntt<p>u09acu09beu099cu09beu09b0u09c7u09b0 u0995u09beu09b0u09cdu09acu09beu0987u09a1u09afu09c1u0995u09cdu09a4 u09acu09bfu09b7 u0986u09ae u0996u09beu09acu09c7u09a8 u09a8u09beu0995u09bf u09acu09bfu09b7u09aeu09c1u0995u09cdu09a4 u0986u09ae u0996u09beu09acu09c7u09a8 u09b8u09bfu09a6u09cdu09a7u09beu09a8u09cdu09a4 u0986u09aau09a8u09beu09b0!<\\/p>https:\\/\\/youtu.be\\/XZERVqyuZrw?si=WUvAJtp97EdfBfj0ttnttt<a href=\\\"#order\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>tttnttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u0995u09cdu09b2u09bfu0995 u0995u09b0u09c1u09a8nttttt<\\/a>nttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09a8u09bfu099cu09b8u09cdu09ac u09a4u09a4u09cdu09a4u09cdu09acu09beu09acu09a7u09beu09a8u09c7 u09acu09beu0997u09beu09a8 u09a5u09c7u0995u09c7 u09b8u0982u0997u09c3u09b9u09c0u09a4nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aau09cdu09b0u09beu0995u09c3u09a4u09bfu0995u09adu09beu09acu09c7 u09aau09beu0995u09benttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09acu09beu099bu09beu0987u0995u09c3u09a4 u09b8u09c7u09b0u09be u09aeu09beu09a8u09c7u09b0nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aau09c7u09b8u099fu09bfu09b8u09beu0987u09a1 u09b0u09c7u09b8u09bfu09a1u09bfu0989 u09aeu09c1u0995u09cdu09a4nttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>u0986u09aeu09beu09a6u09c7u09b0 u09a5u09c7u0995u09c7u0987 u0995u09c7u09a8 u200du09a8u09bfu09acu09c7u09a8?<\\/h2>ttnttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b6u09a4u09adu09beu0997 u09abu09cdu09b0u09c7u09b6 u098fu09acu0982 u09adu09c7u099cu09beu09b2u09aeu09c1u0995u09cdu09a4 u0986u09aeu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09b0u09beu09b8u09b0u09bf u09acu09beu0997u09beu09a8 u09a5u09c7u0995u09c7 u09b8u0982u0997u09c3u09b9u09c0u09a4u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09b0u09beu09b8u09b0u09bf u09acu09beu0997u09beu09a8 u09a5u09c7u0995u09c7 u0986u09aau09a8u09beu09b0 u09b9u09beu09a4u09c7 u09aau09ccu0981u099bu09c7 u09a6u09c7u0993u09afu09bcu09beu09b0 u09a6u09beu09afu09bcu09bfu09a4u09cdu09ac u09a8u09bfu099au09cdu099bu09bf u0986u09aeu09b0u09beu0987u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09ae u09aau09beu09dcu09beu09b0 u09e8u09ea-u09edu09e8 u0998u09a8u09cdu099fu09beu09b0 u09aeu09a7u09cdu09afu09c7 u09a2u09beu0995u09be u0993 u09a2u09beu0995u09beu09b0 u09acu09beu09b9u09bfu09b0u09c7 u09b9u09cbu09ae u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u09b8u09c1u09acu09bfu09a7u09beu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a8u09bfu09b0u09beu09aau09a6 u098fu09acu0982 u09b8u09c1u09aeu09bfu09b7u09cdu099f u0986u09aeu0964nttttttttt<\\/li>ntttttt<\\/ul>nttttttttttttt<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/05\\/07-1-1024x1024.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/05\\/07-1-1024x1024.jpg 1024w, https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/05\\/07-1-300x300.jpg 300w, https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/05\\/07-1-150x150.jpg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/07-1-768x768-1.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/07-1-600x600-1.jpg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/07-1-100x100-1.jpg 100w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/07-1.jpg 1080w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttt<a href=\\\"#order\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>tttnttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u0995u09cdu09b2u09bfu0995 u0995u09b0u09c1u09a8nttttt<\\/a>ntttud83dudca5u0986u09aeu09beu09a6u09c7u09b0 u09b8u09aeu09cdu09aeu09beu09a8u09bfu09a4 u0995u09beu09b7u09cdu099fu09aeu09beu09b0u09c7u09b0 u09b0u09bfu09adu09bfu0989ud83dudca5ttnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>tttttttPreviousnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>tttttttNextnttt<a href=\\\"#order\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>tttnttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u0995u09cdu09b2u09bfu0995 u0995u09b0u09c1u09a8nttttt<\\/a>nttt<h2>u0986u09ae u09aau099au09a8u09b6u09c0u09b2 u09a4u09beu0987 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u0985u0997u09cdu09b0u09bfu09ae u0995u09b0u09c7 u09a6u09cdu09b0u09c1u09a4  u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8<\\/h2>ttnttttttttttttt<img width=\\\"1024\\\" height=\\\"292\\\" src=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/05\\/bbbjkj-1024x292.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/05\\/bbbjkj-1024x292.jpg 1024w, https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/05\\/bbbjkj-300x86.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/bbbjkj-768x219-1.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/bbbjkj-600x171-1.jpg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/bbbjkj.jpg 1200w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttt<h3>u09a8u09bfu099au09c7u09b0 u09a8u09beu09aeu09cdu09acu09beu09b0u09c7 u09b8u09c7u09a8u09cdu09a1 u09aeu09beu09a8u09bf u0995u09b0u09c1u09a8u0983<\\/h3>ttnttt<h2>01792-823943<\\/h2>ttnttt<h2>u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c<\\/h2>ttnttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09e7u09e6 u0995u09c7u099cu09bf u0986u09ae - u09e7u09ebu09e6u09f3nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09e8u09e6 u0995u09c7u099cu09bf u0986u09ae - u09e8u09ebu09e6u09f3nttttttttt<\\/li>ntttttt<\\/ul>ntttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u09a8u09bfu099au09c7u09b0 u09abu09b0u09cdu09aeu09c7 u0986u09aau09a8u09beu09b0 u09a8u09beu09ae, u09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be u098fu09acu0982 u09aeu09cbu09acu09beu0987u09b2 u09a8u09beu09aeu09cdu09acu09beu09b0 u09b2u09bfu0996u09c1u09a8u0964 u09a4u09beu09b0u09aau09b0 u09a8u09bfu099au09c7u09b0 u09acu09beu099fu09a8u09c7 u0995u09cdu09b2u09bfu0995 u0995u09b0u09c7 u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u0995u09a8u09abu09beu09b0u09cdu09ae u0995u09b0u09c1u09a8u0964 ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/sahabafood.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nttu0995u09beu09b0u09cdu09acu09beu0987u09a1u09aeu09c1u0995u09cdu09a4nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-814\\\"ntname=\\\"wcf-single-sel\\\"ntvalue=\\\"814\\\"nt>nt<label for=\\\"wcf-item-product-814\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/05\\/05-300x300.jpg\\\" alt=\\\"\\\" \\/>nu09b9u09bfu09aeu09b8u09beu0997u09b0 u09e8u09e6 u0995u09c7u099cu09bfntu0995u09beu09b0u09cdu09acu09beu0987u09a1u09aeu09c1u0995u09cdu09a4tntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\" title=\\\"\\\" readonly=\\\"false\\\" >ntt&plus;nt2,600.00&#2547;&nbsp;nttu0995u09beu09b0u09cdu09acu09beu0987u09a1u09aeu09c1u0995u09cdu09a4nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-816\\\"ntname=\\\"wcf-single-sel\\\"ntvalue=\\\"816\\\"nt>nt<label for=\\\"wcf-item-product-816\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/05\\/05-300x300.jpg\\\" alt=\\\"\\\" \\/>nu09b9u09bfu09aeu09b8u09beu0997u09b0 u09e7u09e6 u0995u09c7u099cu09bfntu0995u09beu09b0u09cdu09acu09beu0987u09a1u09aeu09c1u0995u09cdu09a4tntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\" title=\\\"\\\" readonly=\\\"false\\\" >ntt&plus;nt1,650.00&#2547;&nbsp;ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09aeu0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"u0986u09aau09a8u09beu09b0 u09a8u09beu09ae u09b2u09bfu0996u09c1u09a8 u098fu0996u09beu09a8u09c7...\\\"  value=\\\"Md Rayhan Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_2_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_address_2\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c1u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09beu0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_2\\\" id=\\\"billing_address_2\\\" placeholder=\\\"u098fu0996u09beu09a8u09c7 u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c1u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be u09b2u09bfu0996u09c1u09a8\\\"  value=\\\"Khilkhet Dhaka- 1229\\\" autocomplete=\\\"address-line2\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"u098fu0996u09beu09a8u09c7 u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0 u09b2u09bfu0996u09c1u09a8\\\"  value=\\\"01792823943\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><strong>Bangladesh<\\/strong><input type=\\\"hidden\\\" name=\\\"billing_country\\\" id=\\\"billing_country\\\" value=\\\"BD\\\" autocomplete=\\\"country\\\" readonly=\\\"readonly\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"wc_order_attribution_source_type\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_referrer\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_utm_campaign\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_utm_source\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_utm_medium\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_utm_content\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_utm_id\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_utm_term\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_session_entry\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_session_start_time\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_session_pages\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_session_count\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_user_agent\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"765\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"766\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1717383937\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttu09b9u09bfu09aeu09b8u09beu0997u09b0 u09e8u09e6 u0995u09c7u099cu09bf&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>2,600.00&#2547;&nbsp;<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>2,600.00&#2547;&nbsp;<\\/bdi><\\/td>ntt<\\/tr>nttt<tr>nt<th>Shipping<\\/th>nt<td data-title=\\\"Shipping\\\">nttttt<ul id=\\\"shipping_method\\\">nttttttttt<li>ntttttt<input type=\\\"radio\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_flat_rate7\\\" value=\\\"flat_rate:7\\\"  checked=\'checked\' \\/><label for=\\\"shipping_method_0_flat_rate7\\\">u09e7u09e6 u0995u09c7u099cu09bf: <bdi>150.00&#2547;&nbsp;<\\/bdi><\\/label>ttttt<\\/li>nttttttttt<li>ntttttt<input type=\\\"radio\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_flat_rate8\\\" value=\\\"flat_rate:8\\\"  \\/><label for=\\\"shipping_method_0_flat_rate8\\\">u09e8u09e6 u0995u09c7u099cu09bf: <bdi>250.00&#2547;&nbsp;<\\/bdi><\\/label>ttttt<\\/li>nttttttt<\\/ul>nttt<\\/td>n<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>2,750.00&#2547;&nbsp;<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Cash On Delivery<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"u0985u09b0u09cdu09a1u09beu09b0 u0995u09a8u09abu09beu09b0u09cdu09ae u0995u09b0u09c1u09a8\\\" data-value=\\\"u0985u09b0u09cdu09a1u09beu09b0 u0995u09a8u09abu09beu09b0u09cdu09ae u0995u09b0u09c1u09a8\\\">u0985u09b0u09cdu09a1u09beu09b0 u0995u09a8u09abu09beu09b0u09cdu09ae u0995u09b0u09c1u09a8<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"2ea84fb278\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->ntttu099cu09b0u09c1u09b0u09c0 u09aau09cdu09b0u09dfu09cbu099cu09a8u09c7 u0995u09b2 u0995u09b0u09c1u09a8 - 01983 196 929 ttnttttt<ul>nttttttt<li>nttttttttttPrivacy Policynttttttttt<\\/li>ntttttttt<li>nttttttttttt<a href=\\\"https:\\/\\/www.facebook.com\\/groups\\/1805794863172480\\\">ntttttttttttFacebook Groupnttttttttttt<\\/a>nttttttttt<\\/li>ntttttttt<li>nttttttttttt<a href=\\\"https:\\/\\/facebook.com\\/sahabafood1\\\">ntttttttttttFacebook Pagenttttttttttt<\\/a>nttttttttt<\\/li>ntttttt<\\/ul>\\\"\\\"\"','Checkout (Woo)','','inherit','closed','closed','','1925-revision-v1','','','2026-06-08 21:42:54','2026-06-08 15:42:54','','1925','https://hypergrowth.fishgrowth.xyz/?p=1962','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1963','17','2026-06-08 21:42:56','2026-06-08 15:42:56','','Leap Care Mask','','trash','closed','closed','','leap-care-mask__trashed','','','2026-06-09 12:46:09','2026-06-09 06:46:09','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=leap-care-mask','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1964','17','2026-06-08 21:42:56','2026-06-08 15:42:56','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-22__trashed','','','2026-06-09 12:46:09','2026-06-09 06:46:09','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-22/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1965','17','2026-06-08 21:42:56','2026-06-08 15:42:56','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1964-revision-v1','','','2026-06-08 21:42:56','2026-06-08 15:42:56','','1964','https://hypergrowth.fishgrowth.xyz/?p=1965','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1966','17','2026-06-08 21:42:56','2026-06-08 15:42:56','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed \\u09a6\\u09bf\\u09a8\\u09c7\\u0987 \\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09ad\\u09be\\u09ac \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u0995\\u09b0\\u09c1\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a8 \\u0997\\u09cb\\u09b2\\u09be\\u09aa\\u09c0 !!<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"900\\\" height=\\\"600\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1.png 900w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1-300x200.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1-768x512.png 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1-600x400.png 600w\\\" sizes=\\\"(max-width: 900px) 100vw, 900px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u098f\\u099f\\u09bf \\u098f\\u0995\\u099f\\u09bf \\u0995\\u09cb\\u09b0\\u09bf\\u09df\\u09be\\u09a8 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"900\\\" height=\\\"600\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1.png 900w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1-300x200.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1-768x512.png 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1-600x400.png 600w\\\" sizes=\\\"(max-width: 900px) 100vw, 900px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\u09ab\\u09cd\\u09b0\\u09c0 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09b6\\u09c1\\u09a7\\u09c1\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09afhttps:\\/\\/youtu.be\\/gqLL4bWJh9U\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t<h2>\\u098f\\u0987 \\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995\\u099f\\u09bf \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"908\\\" height=\\\"221\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-2.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-2.jpg 908w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-2-300x73.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-2-768x187.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-2-600x146.jpg 600w\\\" sizes=\\\"(max-width: 908px) 100vw, 908px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a0\\u09cb\\u099f \\u09ab\\u09be\\u099f\\u09be \\u099c\\u09a8\\u09bf\\u09a4 \\u09b8\\u0995\\u09b2 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u09aa\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u09a8\\u09c7\\u09a8\\u09cd\\u099f\\u09b2\\u09c0 \\u0997\\u09cb\\u09b2\\u09be\\u09aa\\u09c0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09b0\\u09be \\u099a\\u09be\\u09ae\\u09a1\\u09bc\\u09be \\u0989\\u09a0\\u09bf\\u09af\\u09bc\\u09c7 \\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u09a3\\u09ac\\u09a8\\u09cd\\u09a4\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099b\\u09c7\\u09b2\\u09c7 \\u0993 \\u09ae\\u09c7\\u09af\\u09bc\\u09c7 \\u09b8\\u09ac\\u09be\\u0987 \\u098f\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed \\u09a6\\u09bf\\u09a8\\u09c7 \\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u09ac\\u09cd\\u09b2\\u09be\\u0995\\u09bf\\u09b6 \\u09ad\\u09be\\u09ac \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a6\\u09c0\\u09b0\\u09cd\\u0998 \\u09b8\\u09ae\\u09af\\u09bc \\u09a7\\u09b0\\u09c7 \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09b6\\u09a8 \\u09a7\\u09b0\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u09b0 \\u09ab\\u09cd\\u09b0\\u09c7\\u0997\\u09a8\\u09c7\\u09a8\\u09cd\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ae\\u09a8\\u0995\\u09c7 \\u09b8\\u09a4\\u09c7\\u099c \\u0995\\u09b0\\u09c7 \\u09a4\\u09c1\\u09b2\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a6\\u09c0\\u09b0\\u09cd\\u0998\\u09a6\\u09bf\\u09a8 \\u09b2\\u09bf\\u09aa\\u09cd\\u09b8\\u099f\\u09bf\\u0995 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0993 \\u09b8\\u09bf\\u0997\\u09be\\u09b0\\u09c7\\u099f \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u09af\\u09c7 \\u0995\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac \\u09b9\\u09af\\u09bc \\u09a4\\u09be \\u09aa\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u09a8\\u09c7\\u09a8\\u09cd\\u099f\\u09b2\\u09c0 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u099f\\u09cb\\u09b2\\u09cb\\u099c\\u09bf\\u09b8\\u09cd\\u099f \\u09a6\\u09cd\\u09ac\\u09be\\u09b0\\u09be \\u099f\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09a1 \\u09b9\\u0993\\u09af\\u09bc\\u09be\\u09af\\u09bc \\u09b8\\u09c7\\u09a8\\u09b8\\u09bf\\u099f\\u09bf\\u09ad  \\u09b8\\u09cd\\u0995\\u09bf\\u09a8\\u09c7 \\u0995\\u09cb\\u09a8\\u09b0\\u09c2\\u09aa \\u0987\\u09b0\\u09bf\\u099f\\u09c7\\u09b6\\u09a8 \\u09b8\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u0995\\u09b0\\u09c7 \\u09a8\\u09be\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"205\\\" height=\\\"250\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/strawberry-1.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0987\\u09a8\\u0997\\u09cd\\u09b0\\u09c7\\u09a1\\u09bf\\u09df\\u09c7\\u09a8\\u09cd\\u099f\\u09b8 \\u0995\\u09c0?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"205\\\" height=\\\"250\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/strawberry-1.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b2\\u09cd\\u09af\\u09be\\u09a8\\u09c7\\u0987\\u099c \\u09b2\\u09bf\\u09aa \\u09b8\\u09cd\\u09b2\\u09bf\\u09aa\\u09bf\\u0982 \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09b9\\u09b2 \\u098f\\u0995\\u099f\\u09bf \\u09b2\\u09bf\\u09ad-\\u0985\\u09a8 \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09af\\u09be  \\u09b0\\u09be\\u09a4\\u09be\\u09b0\\u09be\\u09a4\\u09bf \\u09a0\\u09cb\\u0981\\u099f\\u0995\\u09c7 \\u09aa\\u09cd\\u09b0\\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u09a6\\u09c7\\u09df \\u098f\\u09ac\\u0982 \\u09ae\\u09df\\u09b6\\u09cd\\u099a\\u09be\\u09b0\\u09be\\u0987\\u099c \\u0995\\u09b0\\u09c7\\u0964  \\u09b9\\u09be\\u0987\\u09b2\\u09c1\\u09b0\\u09cb\\u09a8\\u09bf\\u0995 \\u0985\\u09cd\\u09af\\u09be\\u09b8\\u09bf\\u09a1 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09bf\\u0982, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2  \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09af\\u09be \\u098f\\u0995\\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7  \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u0986\\u09b0\\u09cd\\u09a6\\u09cd\\u09b0\\u09a4\\u09be \\u0986\\u099f\\u0995\\u09be\\u09a4\\u09c7 \\u09ac\\u09be\\u09a7\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0987 \\u09b2\\u09bf\\u09aa \\u09b8\\u09cd\\u09b2\\u09bf\\u09aa\\u09bf\\u0982 \\u09ae\\u09be\\u09b8\\u09cd\\u0995\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u09a8\\u09b0\\u09ae \\u099f\\u09c7\\u0995\\u09cd\\u09b8\\u099a\\u09be\\u09b0 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09af\\u09be  \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09b6\\u09cb\\u09b7\\u09a3\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0998\\u09a8\\u09bf\\u09b7\\u09cd\\u09a0\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09c7 \\u09af\\u09be\\u09df\\u0964  \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f\\u09c7 \\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7, \\u09ac\\u09c7\\u09b0\\u09bf \\u09ae\\u09bf\\u0995\\u09cd\\u09b8  \\u0995\\u09ae\\u09aa\\u09cd\\u09b2\\u09c7\\u0995\\u09cd\\u09b8 \\u09b0\\u09be\\u09b8\\u09cd\\u09aa\\u09ac\\u09c7\\u09b0\\u09bf\\u09b0 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf \\u098f\\u09ac\\u0982  \\u09b8\\u09c1\\u0997\\u09a8\\u09cd\\u09a7\\u09bf \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"906\\\" height=\\\"221\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-1.jpg 906w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-1-300x73.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-1-768x187.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-1-600x146.jpg 600w\\\" sizes=\\\"(max-width: 906px) 100vw, 906px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09cd\\u09b2\\u09bf\\u0995\\u09c7\\u099f\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7,\\u09b8\\u09a8\\u09cd\\u09a7\\u09cd\\u09af\\u09be\\u09df \\u09a0\\u09cb\\u0981\\u099f\\u09c7 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09bf\\u0982 \\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09b2\\u09be\\u0997\\u09be\\u09a8 \\u098f\\u09ac\\u0982 \\u09b8\\u09be\\u09b0\\u09be\\u09b0\\u09be\\u09a4 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a6\\u09bf\\u09a8\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7 \\u0986\\u09b2\\u09a4\\u09cb \\u0995\\u09b0\\u09c7 \\u09ae\\u09c1\\u099b\\u09c1\\u09a8 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-4-1-1.jpg\\\" alt=\\\"cl-rev-4-1-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-5-1-1-1.jpg\\\" alt=\\\"cl-rev-5-1-1-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-6-1.jpg\\\" alt=\\\"cl-rev-6-1.jpg\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09b2 \\u0995\\u09b0\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"768\\\" height=\\\"185\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/new-png-1-768x185-1-1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/new-png-1-768x185-1-1.png 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/new-png-1-768x185-1-1-300x72.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/new-png-1-768x185-1-1-600x145.png 600w\\\" sizes=\\\"(max-width: 768px) 100vw, 768px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09e7\\u09e7\\u09eb\\u09e6 \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h2>\\u09b6\\u09c1\\u09a7\\u09c1\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af<\\/br>\\u09ed\\u09eb\\u09e6\\u099f\\u09be\\u0995\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u099b\\u09be\\u09dc\\u09be \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"364\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"367\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717962355\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;0.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;0.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;0.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;0.00\\\">Place Order&nbsp;&nbsp;&#036;0.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-25__trashed','','','2026-06-09 12:46:09','2026-06-09 06:46:09','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-25/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1967','17','2026-06-08 21:43:02','2026-06-08 15:43:02','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09b6\\u09c0\\u09a4\\u09c7\\u09b0 \\u0990\\u09a4\\u09bf\\u09b9\\u09cd\\u09af \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09a1\\u09bc \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09b8\\u09c1\\u09a6\\u09c1\\u09b0 \\u099a\\u09c1\\u09af\\u09bc\\u09be\\u09a1\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b8\\u09b0\\u09cb\\u099c\\u0997\\u099e\\u09cd\\u099c \\u09a5\\u09c7\\u0995\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09b0\\u09b8 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7,\\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0997\\u09c1\\u09dc \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7 \\u09af\\u09a4\\u09cd\\u09a8 \\u09b8\\u09b9\\u0995\\u09be\\u09b0\\u09c7 \\u09aa\\u09cc\\u099b\\u09c7 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0998\\u09b0\\u09c7 \\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"720\\\" height=\\\"602\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-12-24-at-7.50.04-PM.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-12-24-at-7.50.04-PM.jpeg 720w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-12-24-at-7.50.04-PM-300x251.jpeg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2023-12-24-at-7.50.04-PM-600x502.jpeg 600w\\\" sizes=\\\"(max-width: 720px) 100vw, 720px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\u0998\\u09b0\\u09c7 \\u09ac\\u09b8\\u09c7 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u0995\\u09cb\\u09af\\u09bc\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u0996\\u09be\\u0981\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09c0 \\u0997\\u09c1\\u09dc \\u0993 \\u09a6\\u09be\\u09a8\\u09be\\u09a6\\u09be\\u09b0 \\u0997\\u09c1\\u09dc \\u09a8\\u09c7\\u09df\\u09be\\u09b0 \\u09b2\\u09cb\\u09ad\\u09a8\\u09c0\\u09df \\u09b8\\u09c1\\u09af\\u09cb\\u0997\\u0964\\t\\t\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0997\\u09c1\\u09a1\\u09bc \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u099a\\u09c7\\u09a8\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09df <\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"909\\\" height=\\\"900\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/danahh-Organic-Food-1-1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/danahh-Organic-Food-1-1.png 909w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/danahh-Organic-Food-1-1-300x297.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/danahh-Organic-Food-1-1-150x150.png 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/danahh-Organic-Food-1-1-768x760.png 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/danahh-Organic-Food-1-1-600x594.png 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/danahh-Organic-Food-1-1-100x100.png 100w\\\" sizes=\\\"(max-width: 909px) 100vw, 909px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09dc \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09a7\\u09b0\\u09a8\\u09c7 \\u09ae\\u09c1\\u0996\\u09b0\\u09cb\\u099a\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ab\\u09bf\\u09b0\\u09a8\\u09cd\\u09a8\\u09bf,\\u09aa\\u09be\\u09df\\u09c7\\u09b8,\\u0997\\u09c1\\u09dc\\u09c7\\u09b0  \\u09b6\\u09b0\\u09ac\\u09a4,\\u0997\\u09c1\\u09dc\\u09c7\\u09b0 \\u099a\\u09be,\\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u09a1\\u09bf\\u099c\\u09be\\u09b0\\u09cd\\u099f \\u0986\\u0987\\u099f\\u09c7\\u09ae \\u09a4\\u09c8\\u09b0\\u09c0 \\u09b9\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t \\u09b6\\u09c0\\u09a4\\u09c7 \\u09aa\\u09bf\\u09a0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09dc\\u09be \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u0996\\u09c1\\u09ac\\u0987 \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09df\\u0964\\u09af\\u09c7\\u09ae\\u09a8- \\u09ad\\u09be\\u09aa\\u09be \\u09aa\\u09bf\\u09a0\\u09be,\\u09aa\\u09be\\u099f\\u09bf\\u09b8\\u09be\\u09aa\\u099f\\u09be \\u09aa\\u09bf\\u09a0\\u09be,\\u09a8\\u0995\\u09b6\\u09c0 \\u09aa\\u09bf\\u09a0\\u09be, \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u09aa\\u09bf\\u09a0\\u09be,\\u0997\\u09c1\\u09dc\\u09c7\\u09b0 \\u099c\\u09bf\\u09b2\\u09be\\u09aa\\u09bf,\\u09a6\\u09c1\\u09a7-\\u09aa\\u09c1\\u09b2\\u09bf \\u09aa\\u09bf\\u09a0\\u09be,\\u0995\\u09cd\\u09b7\\u09bf\\u09dc \\u09aa\\u09bf\\u09a0\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 \\u0997\\u09c1\\u09dc \\u0993 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u0985\\u099e\\u09cd\\u099a\\u09b2\\u09c7\\u09b0 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09a7\\u09b0\\u09a8\\u09c7 \\u09aa\\u09bf\\u09a0\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8 ?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u09aa\\u09cd\\u09b0\\u09bf\\u099c\\u09be\\u09b0\\u09ad\\u09c7\\u099f\\u09bf\\u09ad \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u0997\\u09c1\\u09dc \\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0997\\u09c1\\u09dc \\u099a\\u09bf\\u09a8\\u09bf , \\u09b0\\u09be\\u09b8\\u09be\\u09af\\u09bc\\u09a8\\u09bf\\u0995 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 , \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ac\\u09be\\u0987\\u0995\\u09c7 \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09bf\\u09a8\\u09cd\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09c0 \\u0997\\u09c1\\u09dc\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u0989\\u09aa\\u09ad\\u09cb\\u0997 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09c1\\u09a6\\u09c1\\u09b0 \\u099a\\u09c1\\u09af\\u09bc\\u09be\\u09a1\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b8\\u09b0\\u09cb\\u099c\\u0997\\u099e\\u09cd\\u099c \\u09a5\\u09c7\\u0995\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u09b0\\u09b8 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7,\\u09a8\\u09bf\\u099c\\u09b8\\u09cd\\u09ac \\u09a4\\u09a4\\u09cd\\u09a4\\u09cd\\u09ac\\u09be\\u09ac\\u09a7\\u09be\\u09a8\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0997\\u09c1\\u09dc \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7 \\u09af\\u09a4\\u09cd\\u09a8 \\u09b8\\u09b9\\u0995\\u09be\\u09b0\\u09c7 \\u09aa\\u09cc\\u099b\\u09c7 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0998\\u09b0\\u09c7 \\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09aa\\u09a8\\u09bf \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09df \\u099c\\u09be\\u09a8\\u09c7\\u09a8 \\u09af\\u09c7, \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09ac\\u099b\\u09b0 \\u09b8\\u09b0\\u09cd\\u09ac\\u099a\\u09cd\\u099a \\u09b6\\u09bf\\u09a4 \\u09aa\\u09dc\\u09c7 \\u099a\\u09c1\\u09af\\u09bc\\u09be\\u09a1\\u09be\\u0999\\u09cd\\u0997\\u09be \\u099c\\u09c7\\u09b2\\u09be\\u09a4\\u09c7 \\u0964 \\u09b6\\u09bf\\u09a4 \\u09ac\\u09c7\\u09b6\\u09bf \\u09aa\\u09dc\\u09b2\\u09c7 \\u09b0\\u09b8 \\u09ad\\u09be\\u09b2\\u09c7\\u09be \\u09b9\\u09df, \\u0986\\u09b0 \\u09b0\\u09b8 \\u09af\\u09a6\\u09bf \\u0996\\u09be\\u099f\\u09bf \\u09ad\\u09be\\u09b2\\u09c7\\u09be \\u09b9\\u09df \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u0997\\u09c1\\u09dc \\u0993 \\u09ad\\u09be\\u09b2\\u09c7\\u09be \\u09b9\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09dc 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0995\\u09cd\\u09af\\u09be\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u098f\\u09ac\\u0982 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09b9\\u09be\\u0987\\u099c\\u09c7\\u09a8 \\u09ae\\u09c7\\u0987\\u09a8\\u099f\\u09c7\\u0987\\u09a8 \\u0995\\u09b0\\u09c7 \\u09ac\\u09be\\u09a8\\u09be\\u09a8\\u09cb \\u09b9\\u09df\\u0964 \\u09af\\u09be \\u0995\\u09bf\\u09a8\\u09be \\u0986\\u09aa\\u09a8\\u09bf \\u0997\\u09c1\\u09dc \\u09b9\\u09be\\u09a4\\u09c7 \\u099f\\u09c7\\u09b8\\u09cd\\u099f \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09ae\\u09df\\u0987 \\u09ac\\u09c1\\u099d\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t \\u0986\\u09aa\\u09a8\\u09bf \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ae\\u09cd\\u09af\\u09be\\u09a8 \\u098f\\u09b0 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u099f\\u09c7\\u09b8\\u09cd\\u099f \\u0995\\u09b0\\u09c7 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0997\\u09c1\\u09dc \\u0996\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u09aa\\u09b0 ,\\u0986\\u09aa\\u09a8\\u09bf \\u09ac\\u09b2\\u09a4\\u09c7 \\u09ac\\u09be\\u09a7\\u09cd\\u09af \\u09b9\\u09ac\\u09c7\\u09a8 ,\\u09ad\\u09be\\u0987 \\u0986\\u09aa\\u09a8\\u09be\\u09a6\\u09c7\\u09b0 \\u0997\\u09c1\\u09dc \\u09a8\\u09be \\u09a8\\u09bf\\u09b2\\u09c7 \\u09ad\\u09c1\\u09b2 \\u0995\\u09b0\\u09a4\\u09be\\u09ae\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t \\u09e9 \\u0995\\u09c7\\u099c\\u09bf \\u09aa\\u09be\\u099f\\u09be\\u09b2\\u09bf \\u0997\\u09c1\\u09dc\\n\\t\\t\\t\\t\\t\\u09e7\\u09eb\\u09e6\\u09e6\\/=\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h4>\\u09b8\\u09be\\u09b0\\u09be \\u09a6\\u09c7\\u09b6\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/h4>\\t\\t\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09e8.\\u09eb \\u0995\\u09c7\\u099c\\u09bf \\u09a8\\u09b2\\u09c7\\u09a8 \\u09a6\\u09be\\u09a8\\u09be\\u09a6\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\n\\t\\t\\t\\t\\t\\u09e7\\u09e8\\u09e6\\u09e6\\/=\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h4>\\u09b8\\u09be\\u09b0\\u09be \\u09a6\\u09c7\\u09b6\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09e7\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/h4>\\t\\t\\n\\t\\t\\t<h2>\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u0985\\u09a5\\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09a4\\u09a5\\u09cd\\u09af \\u09a6\\u09bf\\u09df\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae \\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>\\n\\t<input type=\\\"checkbox\\\"\\n\\tname=\\\"wcf-multiple-sel\\\"\\n\\tvalue=\\\"989\\\"  >\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-100x100.webp 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_last_name_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_last_name\\\">Last name&nbsp;<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_address_1_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_company_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_company\\\">Company name&nbsp;(optional)<\\/label><input type=\\\"text\\\" name=\\\"billing_company\\\" id=\\\"billing_company\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"organization\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u099f\\u09bf \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_country\\\" id=\\\"billing_country\\\" autocomplete=\\\"country\\\" data-placeholder=\\\"Select a country \\/ region&hellip;\\\" data-label=\\\"Country \\/ Region\\\"><option value=\\\"\\\">Select a country \\/ region&hellip;<\\/option><option value=\\\"AF\\\" >Afghanistan<\\/option><option value=\\\"AX\\\" >\\u00c5land 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&ccedil;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&atilde;o Tom&eacute; and Pr&iacute;ncipe<\\/option><option value=\\\"BL\\\" >Saint Barth&eacute;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_2_field\\\" data-priority=\\\"60\\\"><label for=\\\"billing_address_2\\\">Apartment, suite, unit, etc.&nbsp;(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&nbsp;<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&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_state\\\" id=\\\"billing_state\\\" autocomplete=\\\"address-level1\\\" data-placeholder=\\\"Select an option&hellip;\\\"  data-input-classes=\\\"\\\" data-label=\\\"State\\\">\\n\\t\\t\\t\\t\\t\\t<option value=\\\"\\\">Select an option&hellip;<\\/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&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_postcode\\\" id=\\\"billing_postcode\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"postal-code\\\" \\/><\\/p><p id=\\\"billing_email_field\\\" data-priority=\\\"110\\\"><label for=\\\"billing_email\\\">Email address&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"email\\\" name=\\\"billing_email\\\" id=\\\"billing_email\\\" placeholder=\\\"\\\"  value=\\\"admin@thesmartway.xyz\\\" autocomplete=\\\"email\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"332\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"335\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717962054\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Khejurer Gur','','inherit','closed','closed','','1954-revision-v1','','','2026-06-08 21:43:02','2026-06-08 15:43:02','','1954','https://hypergrowth.fishgrowth.xyz/?p=1967','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1968','17','2026-06-08 21:43:13','2026-06-08 15:43:13','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7<\\/h1>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-19__trashed','','','2026-06-09 12:47:05','2026-06-09 06:47:05','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-19/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1969','17','2026-06-08 21:43:13','2026-06-08 15:43:13','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7<\\/h1>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Thank You (Woo)','','inherit','closed','closed','','1968-revision-v1','','','2026-06-08 21:43:13','2026-06-08 15:43:13','','1968','https://hypergrowth.fishgrowth.xyz/?p=1969','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1970','17','2026-06-08 21:43:17','2026-06-08 15:43:17','\"<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<p>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8<\\/p>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-20__trashed','','','2026-06-09 12:46:32','2026-06-09 06:46:32','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-20/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1971','17','2026-06-08 21:43:17','2026-06-08 15:43:17','\"<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<p>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8<\\/p>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Thank You (Woo)','','inherit','closed','closed','','1970-revision-v1','','','2026-06-08 21:43:17','2026-06-08 15:43:17','','1970','https://hypergrowth.fishgrowth.xyz/?p=1971','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1972','17','2026-06-08 21:43:22','2026-06-08 15:43:22','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09b9\\u09c7 \\u09ac\\u09a8\\u09bf \\u0986\\u09a6\\u09ae \\u09aa\\u09cd\\u09b0\\u09a4\\u09cd\\u09af\\u09c7\\u0995 \\u09a8\\u09be\\u09ae\\u09be\\u099c\\u09c7\\u09b0 \\u09b8\\u09ae\\u09df \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u09aa\\u09cb\\u09b6\\u09be\\u0995 \\u09aa\\u09b0\\u09bf\\u09a7\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09a8\\u09be\\u0993<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09a4\\u09cd\\u09af\\u09c7\\u0995\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u09be\\u099c \\u09b9\\u09cb\\u0995 \\u09b8\\u09b9\\u09bf\\u09b9 \\u0993 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\\"\\u0986\\u09ac\\u09be\\u09b0\\u09a8\\u09bf\\\"<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"600\\\" height=\\\"840\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/01-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/01-1.jpg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/01-1-214x300.jpg 214w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t<p>\\\"\\u0986\\u09ac\\u09be\\u09df\\u09be-\\u0987 \\u09a8\\u09be\\u0996\\u09bf\\u09b2\\\" \\u098f\\u0987 \\u09ae\\u09c1\\u09b9\\u09c2\\u09b0\\u09cd\\u09a4\\u09c7\\u09b0 \\u09b8\\u09b0\\u09cd\\u09ac\\u09be\\u09a7\\u09bf\\u0995 \\u099a\\u09be\\u09b9\\u09bf\\u09a6\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ac\\u09cb\\u09b0\\u0996\\u09be\\u0964\\u00a0\\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09ad\\u09be\\u0987\\u09b0\\u09be\\u09b2 \\u098f\\u0987 \\u09a1\\u09bf\\u099c\\u09be\\u0987\\u09a8 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u09be\\u09a4\\u09c7\\u0987 \\u09a4\\u09c8\\u09b0\\u09bf\\u0964\\u00a0\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0986\\u09aa\\u09c1\\u09b0\\u09be \\u0996\\u09c1\\u09ac\\u0987 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c7\\u099b\\u09c7\\u09a8 \\u098f\\u0987 \\u09ac\\u09cb\\u09b0\\u0996\\u09be\\u099f\\u09bf\\u0964\\u00a0\\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a8 \\u098f\\u0996\\u09a8\\u0987!<\\/p>\\t\\t\\n\\t\\t\\t<h2>\\u09b8\\u09be\\u09b2\\u09be\\u09b9 \\u09b2\\u0982 \\u0996\\u09bf\\u09ae\\u09be\\u09b0 (\\u09ab\\u09cd\\u09b0\\u09c0 \\u09b8\\u09be\\u0987\\u099c)<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09a8\\u09be\\u09ae\\u09be\\u099c\\u09c7\\u09b0 \\u09aa\\u09cb\\u09b6\\u09be\\u0995 \\u09a8\\u09bf\\u09df\\u09c7 \\u099a\\u09bf\\u09a8\\u09cd\\u09a4\\u09be \\u09ae\\u09c1\\u0995\\u09cd\\u09a4, \\u09a8\\u09be\\u09ae\\u09be\\u099c\\u09c7 \\u0985\\u09b8\\u09cd\\u09ac\\u09b8\\u09cd\\u09a5\\u09bf \\u0986\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be \\u09a4\\u09be\\u0987 \\u0987\\u09ac\\u09be\\u09a6\\u09be\\u09a4 \\u09b9\\u09ac\\u09c7 \\u09a4\\u09c3\\u09aa\\u09cd\\u09a4\\u09bf\\u09ae\\u09a4, \\u09a8\\u09be\\u09ae\\u09be\\u099c\\u09c7 \\u0997\\u09b0\\u09ae \\u09b2\\u09be\\u0997\\u09be\\u09b0 \\u0995\\u09cb\\u09a8\\u0987 \\u0985\\u09ac\\u0995\\u09be\\u09b6 \\u09a8\\u09c7\\u0987\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"58c10d9\\\" data-elementor-lightbox-title=\\\"05-1.jpg\\\" data-e-action-hash=\\\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6MzU4LCJ1cmwiOiJodHRwczpcL1wvdGhlc21hcnR3YXkueHl6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wNlwvMDUtMS5qcGciLCJzbGlkZXNob3ciOiI1OGMxMGQ5In0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/05-1.jpg\\\"><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/05-1.jpg\\\" alt=\\\"05-1.jpg\\\" \\/><\\/figure><\\/a><a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"58c10d9\\\" data-elementor-lightbox-title=\\\"04-1.jpg\\\" data-e-action-hash=\\\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6MzU5LCJ1cmwiOiJodHRwczpcL1wvdGhlc21hcnR3YXkueHl6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wNlwvMDQtMS5qcGciLCJzbGlkZXNob3ciOiI1OGMxMGQ5In0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/04-1.jpg\\\"><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/04-1.jpg\\\" alt=\\\"04-1.jpg\\\" \\/><\\/figure><\\/a><a data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"58c10d9\\\" data-elementor-lightbox-title=\\\"03-1.jpg\\\" data-e-action-hash=\\\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6MzYwLCJ1cmwiOiJodHRwczpcL1wvdGhlc21hcnR3YXkueHl6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wNlwvMDMtMS5qcGciLCJzbGlkZXNob3ciOiI1OGMxMGQ5In0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/03-1.jpg\\\"><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/03-1.jpg\\\" alt=\\\"03-1.jpg\\\" \\/><\\/figure><\\/a>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\n\\t\\t\\t\\t\\t\\u09e7\\u09ea\\u09e6\\u09e6\\/-\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\n\\t\\t\\t\\t\\t\\u09e7\\u09e8\\u09ef\\u09e6\\/-\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"600\\\" height=\\\"514\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/jinaanshop1-600x514-1-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/jinaanshop1-600x514-1-1.jpg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/jinaanshop1-600x514-1-1-300x257.jpg 300w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09c7\\u09a8 \\u098f\\u0987 \\u09b2\\u0982 \\u0996\\u09bf\\u09ae\\u09be\\u09b0\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0983<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09be\\u09b8\\u09be\\u09b0 \\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a8 \\u0993\\u09b0\\u09cd\\u09a8\\u09be \\u09a6\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c1\\u09b0\\u09cd\\u09a8 \\u09b8\\u09a4\\u09b0 \\u09a2\\u09be\\u0995\\u09be \\u0995\\u09b8\\u09cd\\u099f\\u0995\\u09b0\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09be\\u09a5\\u09be\\u09b0 \\u099a\\u09c1\\u09b2 \\u09ac\\u09c7\\u09b0 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09df\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u0996\\u09a8\\u09cb \\u09a5\\u09c1\\u09a4\\u09a8\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u0997\\u09b2\\u09be\\u09b0 \\u0985\\u0982\\u09b6 \\u09ac\\u09c7\\u09b0 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09df\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09b2\\u09cb\\u09df\\u09be\\u09b0\\u09c7 \\u09b0\\u09c1\\u0995\\u09c1\\/\\u09b8\\u09bf\\u099c\\u09a6\\u09be\\u09df \\u099f\\u09be\\u0996\\u09a8\\u09c1 \\u09ac\\u09c7\\u09b0 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ad\\u09be\\u09ac\\u09a8\\u09be \\u09a5\\u09be\\u0995\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2><a href=\\\"http:\\/\\/wa.me\\/01819000000\\\">\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09b9\\u09cb\\u09df\\u09be\\u099f\\u09b8\\u0986\\u09aa \\u0995\\u09b0\\u09c1\\u09a8\\u0983 01819000000<\\/a><\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"http:\\/\\/wa.me\\/8801819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995 \\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09c1\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/h2>\\t\\t\\n\\t\\t<p>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09a4\\u09c7, \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u0993 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u099f\\u09bf \\u09a6\\u09bf\\u09df\\u09c7 \\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae\\\" \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<br \\/>\\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u0995\\u09cb\\u09a8 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u09a8\\u09be \\u09a6\\u09bf\\u09df\\u09c7\\u0987, \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7, \\u0996\\u09bf\\u09ae\\u09be\\u09b0\\u099f\\u09bf \\u09a6\\u09c7\\u0996\\u09c7 \\u09a4\\u09be\\u0981\\u09b0\\u09aa\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u0989\\u09aa\\u09ad\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/p>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\/\\u098f\\u09b2\\u09be\\u0995\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09a5\\u09be\\u09a8\\u09be, \\u099c\\u09c7\\u09b2\\u09be\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"110\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_country\\\" id=\\\"billing_country\\\" autocomplete=\\\"country\\\" data-placeholder=\\\"Select a country \\/ region&hellip;\\\" data-label=\\\"Country \\/ Region\\\"><option value=\\\"\\\">Select a country \\/ region&hellip;<\\/option><option value=\\\"AF\\\" >Afghanistan<\\/option><option value=\\\"AX\\\" >\\u00c5land 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&ccedil;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&atilde;o Tom&eacute; and Pr&iacute;ncipe<\\/option><option value=\\\"BL\\\" >Saint Barth&eacute;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>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"346\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"349\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717962274\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;0.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;0.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;0.00\\\" data-value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;0.00\\\">\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;0.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','inherit','closed','closed','','1958-revision-v1','','','2026-06-08 21:43:22','2026-06-08 15:43:22','','1958','https://hypergrowth.fishgrowth.xyz/?p=1972','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1973','17','2026-06-08 21:43:22','2026-06-08 15:43:22','','Leap Care Mask 0`','','trash','closed','closed','','leap-care-mask-0__trashed','','','2026-06-09 12:45:37','2026-06-09 06:45:37','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=leap-care-mask-0','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1974','17','2026-06-08 21:43:22','2026-06-08 15:43:22','\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-23__trashed','','','2026-06-09 12:45:37','2026-06-09 06:45:37','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-23/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1975','17','2026-06-08 21:43:22','2026-06-08 15:43:22','\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1974-revision-v1','','','2026-06-08 21:43:22','2026-06-08 15:43:22','','1974','https://hypergrowth.fishgrowth.xyz/?p=1975','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1976','17','2026-06-08 21:43:22','2026-06-08 15:43:22','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed \\u09a6\\u09bf\\u09a8\\u09c7\\u0987 \\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09ad\\u09be\\u09ac \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u0995\\u09b0\\u09c1\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a8 \\u0997\\u09cb\\u09b2\\u09be\\u09aa\\u09c0 !!<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\u09ab\\u09cd\\u09b0\\u09c0 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09b6\\u09c1\\u09a7\\u09c1\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09afhttps:\\/\\/youtu.be\\/gqLL4bWJh9U\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t<h2>\\u098f\\u0987 \\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995\\u099f\\u09bf \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"908\\\" height=\\\"221\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-3.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-3.jpg 908w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-3-300x73.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-3-768x187.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-3-600x146.jpg 600w\\\" sizes=\\\"(max-width: 908px) 100vw, 908px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a0\\u09cb\\u099f \\u09ab\\u09be\\u099f\\u09be \\u099c\\u09a8\\u09bf\\u09a4 \\u09b8\\u0995\\u09b2 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u09aa\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u09a8\\u09c7\\u09a8\\u09cd\\u099f\\u09b2\\u09c0 \\u0997\\u09cb\\u09b2\\u09be\\u09aa\\u09c0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09b0\\u09be \\u099a\\u09be\\u09ae\\u09a1\\u09bc\\u09be \\u0989\\u09a0\\u09bf\\u09af\\u09bc\\u09c7 \\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u09a3\\u09ac\\u09a8\\u09cd\\u09a4\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099b\\u09c7\\u09b2\\u09c7 \\u0993 \\u09ae\\u09c7\\u09af\\u09bc\\u09c7 \\u09b8\\u09ac\\u09be\\u0987 \\u098f\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed \\u09a6\\u09bf\\u09a8\\u09c7 \\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u09ac\\u09cd\\u09b2\\u09be\\u0995\\u09bf\\u09b6 \\u09ad\\u09be\\u09ac \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a6\\u09c0\\u09b0\\u09cd\\u0998 \\u09b8\\u09ae\\u09af\\u09bc \\u09a7\\u09b0\\u09c7 \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09b6\\u09a8 \\u09a7\\u09b0\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u09b0 \\u09ab\\u09cd\\u09b0\\u09c7\\u0997\\u09a8\\u09c7\\u09a8\\u09cd\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ae\\u09a8\\u0995\\u09c7 \\u09b8\\u09a4\\u09c7\\u099c \\u0995\\u09b0\\u09c7 \\u09a4\\u09c1\\u09b2\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a6\\u09c0\\u09b0\\u09cd\\u0998\\u09a6\\u09bf\\u09a8 \\u09b2\\u09bf\\u09aa\\u09cd\\u09b8\\u099f\\u09bf\\u0995 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0993 \\u09b8\\u09bf\\u0997\\u09be\\u09b0\\u09c7\\u099f \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u09af\\u09c7 \\u0995\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac \\u09b9\\u09af\\u09bc \\u09a4\\u09be \\u09aa\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u09a8\\u09c7\\u09a8\\u09cd\\u099f\\u09b2\\u09c0 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u099f\\u09cb\\u09b2\\u09cb\\u099c\\u09bf\\u09b8\\u09cd\\u099f \\u09a6\\u09cd\\u09ac\\u09be\\u09b0\\u09be \\u099f\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09a1 \\u09b9\\u0993\\u09af\\u09bc\\u09be\\u09af\\u09bc \\u09b8\\u09c7\\u09a8\\u09b8\\u09bf\\u099f\\u09bf\\u09ad  \\u09b8\\u09cd\\u0995\\u09bf\\u09a8\\u09c7 \\u0995\\u09cb\\u09a8\\u09b0\\u09c2\\u09aa \\u0987\\u09b0\\u09bf\\u099f\\u09c7\\u09b6\\u09a8 \\u09b8\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u0995\\u09b0\\u09c7 \\u09a8\\u09be\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"205\\\" height=\\\"250\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/strawberry-2.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0987\\u09a8\\u0997\\u09cd\\u09b0\\u09c7\\u09a1\\u09bf\\u09df\\u09c7\\u09a8\\u09cd\\u099f\\u09b8 \\u0995\\u09c0?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"205\\\" height=\\\"250\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/strawberry-2.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b2\\u09cd\\u09af\\u09be\\u09a8\\u09c7\\u0987\\u099c \\u09b2\\u09bf\\u09aa \\u09b8\\u09cd\\u09b2\\u09bf\\u09aa\\u09bf\\u0982 \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09b9\\u09b2 \\u098f\\u0995\\u099f\\u09bf \\u09b2\\u09bf\\u09ad-\\u0985\\u09a8 \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09af\\u09be  \\u09b0\\u09be\\u09a4\\u09be\\u09b0\\u09be\\u09a4\\u09bf \\u09a0\\u09cb\\u0981\\u099f\\u0995\\u09c7 \\u09aa\\u09cd\\u09b0\\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u09a6\\u09c7\\u09df \\u098f\\u09ac\\u0982 \\u09ae\\u09df\\u09b6\\u09cd\\u099a\\u09be\\u09b0\\u09be\\u0987\\u099c \\u0995\\u09b0\\u09c7\\u0964  \\u09b9\\u09be\\u0987\\u09b2\\u09c1\\u09b0\\u09cb\\u09a8\\u09bf\\u0995 \\u0985\\u09cd\\u09af\\u09be\\u09b8\\u09bf\\u09a1 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09bf\\u0982, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2  \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09af\\u09be \\u098f\\u0995\\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7  \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u0986\\u09b0\\u09cd\\u09a6\\u09cd\\u09b0\\u09a4\\u09be \\u0986\\u099f\\u0995\\u09be\\u09a4\\u09c7 \\u09ac\\u09be\\u09a7\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0987 \\u09b2\\u09bf\\u09aa \\u09b8\\u09cd\\u09b2\\u09bf\\u09aa\\u09bf\\u0982 \\u09ae\\u09be\\u09b8\\u09cd\\u0995\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u09a8\\u09b0\\u09ae \\u099f\\u09c7\\u0995\\u09cd\\u09b8\\u099a\\u09be\\u09b0 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09af\\u09be  \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09b6\\u09cb\\u09b7\\u09a3\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0998\\u09a8\\u09bf\\u09b7\\u09cd\\u09a0\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09c7 \\u09af\\u09be\\u09df\\u0964  \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f\\u09c7 \\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7, \\u09ac\\u09c7\\u09b0\\u09bf \\u09ae\\u09bf\\u0995\\u09cd\\u09b8  \\u0995\\u09ae\\u09aa\\u09cd\\u09b2\\u09c7\\u0995\\u09cd\\u09b8 \\u09b0\\u09be\\u09b8\\u09cd\\u09aa\\u09ac\\u09c7\\u09b0\\u09bf\\u09b0 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf \\u098f\\u09ac\\u0982  \\u09b8\\u09c1\\u0997\\u09a8\\u09cd\\u09a7\\u09bf \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"906\\\" height=\\\"221\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-2.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-2.jpg 906w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-2-300x73.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-2-768x187.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-2-600x146.jpg 600w\\\" sizes=\\\"(max-width: 906px) 100vw, 906px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09cd\\u09b2\\u09bf\\u0995\\u09c7\\u099f\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7,\\u09b8\\u09a8\\u09cd\\u09a7\\u09cd\\u09af\\u09be\\u09df \\u09a0\\u09cb\\u0981\\u099f\\u09c7 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09bf\\u0982 \\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09b2\\u09be\\u0997\\u09be\\u09a8 \\u098f\\u09ac\\u0982 \\u09b8\\u09be\\u09b0\\u09be\\u09b0\\u09be\\u09a4 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a6\\u09bf\\u09a8\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7 \\u0986\\u09b2\\u09a4\\u09cb \\u0995\\u09b0\\u09c7 \\u09ae\\u09c1\\u099b\\u09c1\\u09a8 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-4-1-2.jpg\\\" alt=\\\"cl-rev-4-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-5-1-1-2.jpg\\\" alt=\\\"cl-rev-5-1-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-6-2.jpg\\\" alt=\\\"cl-rev-6.jpg\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09b2 \\u0995\\u09b0\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"768\\\" height=\\\"185\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/new-png-1-768x185-1-2.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/new-png-1-768x185-1-2.png 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/new-png-1-768x185-1-2-300x72.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/new-png-1-768x185-1-2-600x145.png 600w\\\" sizes=\\\"(max-width: 768px) 100vw, 768px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09e7\\u09e7\\u09eb\\u09e6 \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h2>\\u09b6\\u09c1\\u09a7\\u09c1\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af<\\/br>\\u09ed\\u09eb\\u09e6\\u099f\\u09be\\u0995\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u099b\\u09be\\u09dc\\u09be \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"1039\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"1042\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717966642\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-26__trashed','','','2026-06-09 12:45:37','2026-06-09 06:45:37','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-26/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1977','17','2026-06-08 21:43:25','2026-06-08 15:43:25','','loper','','trash','closed','closed','','loper__trashed','','','2026-06-09 12:45:12','2026-06-09 06:45:12','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=loper','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1978','17','2026-06-08 21:43:25','2026-06-08 15:43:25','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-24__trashed','','','2026-06-09 12:45:12','2026-06-09 06:45:12','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-24/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1979','17','2026-06-08 21:43:25','2026-06-08 15:43:25','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1978-revision-v1','','','2026-06-08 21:43:25','2026-06-08 15:43:25','','1978','https://hypergrowth.fishgrowth.xyz/?p=1979','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1980','17','2026-06-08 21:43:25','2026-06-08 15:43:25','\"\\\"\\\"<style>\\/*! elementor - v3.21.0 - 26-05-2024 *\\/n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>tttttttttt<img width=\\\"500\\\" height=\\\"500\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green_White_Modern_Natural_Cosmetic_Instagram_Post-removebg-preview.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green_White_Modern_Natural_Cosmetic_Instagram_Post-removebg-preview.png 500w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/Green_White_Modern_Natural_Cosmetic_Instagram_Post-removebg-preview-300x300.png 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/Green_White_Modern_Natural_Cosmetic_Instagram_Post-removebg-preview-150x150.png 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green_White_Modern_Natural_Cosmetic_Instagram_Post-removebg-preview-100x100-1.png 100w\\\" sizes=\\\"(max-width: 500px) 100vw, 500px\\\" \\/>tttttttttttttnttt<style>\\/*! elementor - v3.21.0 - 26-05-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>   u09a6u09c0u09b0u09cdu0998u09aeu09c7u09dfu09beu09a6u09c7 u09aau09beu09dfu09c7u09b0 u0995u09cdu09b7u09a4u09bf u09a8u09be u0995u09b0u09a4u09c7 u099au09beu0987u09b2u09c7   u099au09beu09aeu09dcu09beu09b0 u09b2u09cbu09abu09beu09b0 u099cu09c1u09a4u09be u09acu09cdu09afu09beu09acu09b9u09beu09b0 u0995u09b0u09c1u09a8 ! n<\\/h2>ttnttt<h2>u09acu09beu09afu09bcu09c1 u09aau09cdu09b0u09acu09beu09b9u09c7u09b0 u0995u09cdu09b7u09c7u09a4u09cdu09b0u09c7 u09aau09b6u09c1u09b0 u099au09beu09aeu09a1u09bcu09be u0985u09a8u09c7u0995 u09acu09c7u09b6u09bf u0995u09beu09b0u09cdu09afu0995u09b0u09c0 u0985u09a4u09bfu09b0u09bfu0995u09cdu09a4 u0998u09beu09aeu09beu09df u09a8u09be u098fu09acu0982 u09a6u09c1u09b0u09cdu0997u09a8u09cdu09a7 u099bu09dcu09beu09df u09a8u09be!n<\\/h2>ttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/jildshop.com\\/wp-content\\/plugins\\/pro-elements\\/assets\\/css\\/widget-carousel.min.css\\\">ttnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>tttttttPreviousnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>tttttttNextnttt<a href=\\\"#order-form\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<style>\\/*! elementor - v3.21.0 - 26-05-2024 *\\/n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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>ttnttt<h2>  u0985u09b0u09bfu099cu09bfu09a8u09beu09b2 u099au09beu09aeu09a1u09bcu09be  u099au09c7u09a8u09beu09b0 u0989u09aau09beu09afu09bcn<\\/h2>ttnttt<style>\\/*! elementor - v3.21.0 - 26-05-2024 *\\/n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>ttnttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\\\"><\\/path><\\/svg>nttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/jildshop.com\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">tt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttud83dudc49 u09abu09beu09dfu09beu09b0 u099fu09c7u09b8u09cdu099f u0985u09b0u09cdu09a5u09beu09ce u0986u0997u09c1u09a8u09c7 u09aau09cbu09dcu09beu09b2u09c7 u09b8u09b9u099cu09c7 u09aau09c1u09dcu09acu09c7 u09a8u09be, u0997u09b2u09acu09c7 u09a8u09be u09a5u09beu0995u09acu09c7 u0985u0995u09cdu09b7u09a4nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttud83dudc49 u09b9u09beu09a4 u09a6u09bfu09dfu09c7 u099au09beu09aa u09a6u09bfu09b2u09c7 u099au09beu09aeu09dcu09be u09b9u09b2u09c7 u09abu09beu099fu09acu09c7 u09a8u09be u0995u09bfu099bu09c1 u09b9u09acu09c7 u09a8u09be, u0986u09b0u09cdu099fu09bfu09abu09bfu09b6u09bfu09afu09bcu09beu09b2 u09b9u09b2u09c7 u09abu09c7u099fu09c7 u09afu09beu09acu09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttud83dudc49 u09a8u09beu0995u09c7u09b0 u0995u09beu099bu09c7 u09a8u09bfu09b2u09c7 u099au09beu09aeu09dcu09be u0997u09a8u09cdu09a7 u09aau09beu09acu09c7u09a8 u0986u09b0u09cdu099fu09bfu09abu09bfu09b6u09bfu09afu09bcu09beu09b2 u09b9u09b2u09c7 u0997u09a8u09cdu09a7 u09aau09beu09acu09c7u09a8 u09a8u09benttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttud83dudc49 u0995u09c3u09a4u09cdu09b0u09bfu09ae u099au09beu09aeu09dcu09be u09acu09be u09b0u09c7u0995u09cdu09b8u09bfu09a8u09c7 u09b8u09beu09a7u09beu09b0u09a3u09a4 u0995u09cbu09a8 u09a8u09be u0995u09cbu09a8 u0995u09beu09aau09dc u09acu09cdu09afu09acu09b9u09beu09b0 u0995u09b0u09c7 u09a4u09beu09b0 u0989u09aau09b0 u09aau09b2u09bfu09aeu09beu09b0 u09a6u09bfu09dfu09c7 u0995u09cbu099fu09bfu0982 u0995u09b0u09be u09b9u09dfu09c7 u09a5u09beu0995u09c7u0964 u0986u09b0 u098f u099cu09a8u09cdu09af u0995u09c3u09a4u09cdu09b0u09bfu09ae u099au09beu09aeu09dcu09beu09df u09a4u09c8u09b0u09bf u09aau09a8u09cdu09afu099fu09bf u0993u09b2u09cdu099fu09beu09b2u09c7u0987 u0995u09beu09aau09dcu09c7u09b0 u0986u09b8u09cdu09a4u09b0u09a3 u09aau09beu0993u09dfu09be u09afu09beu09dfu0964 u0995u09bfu09a8u09cdu09a4u09c1 u099au09beu09aeu09dcu09beu09b0 u09a4u09c8u09b0u09bf u09aau09a8u09cdu09afu09c7 u098fu09aeu09a8 u0995u09bfu099bu09c1 u09a6u09c7u0996u09be u09afu09beu09df u09a8u09beu0964nttttttttt<\\/li>ntttttt<\\/ul>nttt<a href=\\\"#order-form\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<h2>  u0995u09cdu09afu099cu09c1u09dfu09c7u09b2 u099cu09c1u09a4u09be u0995u09c7u09a8 u09aau09b0u09acu09c7u09a8 ?n<\\/h2>ttnttttt<ul>nttttttt<li>nttttttttttud83dudc49  u09aau09beu099eu09cdu099cu09beu09acu09c0u09b0 u09b8u09beu09a5u09c7 u09aeu09beu09a8u09beu09a8u09b8u0987nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49  u09b6u09beu09b0u09cdu099f u098fu09b0 u09b8u09beu09a5u09c7 u0987u0989u09a8u09bfu0995nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49  u09afu09c7 u0995u09cbu09a8 u0995u09beu09b2u09beu09b0u09c7u09b0 u09b8u09beu09a5u09c7 u09aeu09cdu09afu09beu099a u09b9u09afu09bcnttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49  u09a8u09bfu099cu09c7u0995u09c7 u0986u09b0u09cdu0995u09b7u09a8u09c0u09afu09bc u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49   u0987u0989u09a8u09bfu0995 u09a1u09bfu099cu09beu0987u09a8u09c7 u09a4u09c8u09b0u09bf u0995u09b0u09be u09b9u09afu09bcu09c7u099bnttttttttt<\\/li>ntttttt<\\/ul>nttt<a href=\\\"#order-form\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttttttttttttt<img width=\\\"1024\\\" height=\\\"512\\\" src=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2-1024x512.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2-1024x512.webp 1024w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2-300x150.webp 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2-768x384.webp 768w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2-1536x768.webp 1536w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2-2048x1024.webp 2048w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2-600x300.webp 600w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttt<h2>  jildshop  u09a5u09c7u0995u09c7 u0995u09c7u09a8 u09a8u09bfu09acu09c7u09a8 ?n<\\/h2>ttnttttttttttttt<img width=\\\"1024\\\" height=\\\"512\\\" src=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/1-1024x512.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/1-1024x512.webp 1024w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/1-300x150.webp 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/1-768x384.webp 768w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/1-1536x768.webp 1536w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/1-2048x1024.webp 2048w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/1-600x300.webp 600w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttt<a href=\\\"#order-form\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttttt<ul>nttttttt<li>nttttttttttud83dudc49 u09e7u09e6u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} u0985u09b0u099cu09bfu09a8u09beu09b2 u0997u09b0u09c1u09b0 u099au09beu09aeu09dcu09beu0964nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49 u09b0u09beu09acu09beu09b0 u0995u09c7u09b0u09c7u09aa u09b8u09cbu09b2u0964nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49 u09ec u09aeu09beu09b8u09c7u09b0 u0993u09dfu09beu09b0u09c7u09a8u09cdu099fu09bf u0964nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49 u09a1u0995u09cdu099fu09b0 u0987u09a8u09b8u09cbu09b2 u0987u0989u099c u0995u09b0u09be u09b9u09afu09bcu09c7u099bu09c7u0964nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a8 u0995u09cdu09afu09beu09b6 u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u0964nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49   u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u09e7 u099fu09beu0995u09beu0993 u0985u0997u09cdu09b0u09c0u09ae u09a6u09bfu09a4u09c7 u09b9u09acu09c7 u09a8u09be, u09aau09cdu09b0u09a1u09beu0995u09cdu099f u09b9u09beu09a4u09c7 u09aau09c7u09afu09bcu09c7 u099au09c7u0995 u0995u09b0u09c7 u099fu09beu0995u09be u09a6u09bfu09acu09c7u09a8u0964nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49  u09afu09a6u09bf u099cu09c1u09a4u09be u099au09beu09aeu09a1u09bcu09beu09b0 u09a8u09be u09b9u09df u09aau09cdu09b0u09aeu09beu09a3 u0995u09b0u09a4u09c7 u09aau09beu09b0u09b2u09c7 u09e7u09e6 u09b9u09beu099cu09beu09b0 u099fu09beu0995u09be u09aau09c1u09b0u09b8u09cdu0995u09beu09b0nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49  u09aau09beu09b0u09cdu09b8u09c7u09b2 u09b9u09beu09a4u09c7 u09aau09c7u09afu09bcu09c7 u09aeu09c2u09b2u09cdu09af u09aau09b0u09bfu09b6u09cbu09a7u09c7u09b0 u09b8u09c1u09acu09bfu09a7u09beu0964nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49  u099cu09c1u09a4u09beu09b0 u09b8u09beu0987u099c u09aau09beu09dfu09c7 u09a8u09be u09b9u09b2u09c7 u098fu0995u09cdu09b8u099au09c7u099eu09cdu099c u09b8u09c1u09acu09bfu09a7u09benttttttttt<\\/li>ntttttt<\\/ul>nttt<h2><a href=\\\"https:\\/\\/api.whatsapp.com\\/send?phone=+8801960552321&#038;text={b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20u0986u09aeu09bf{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20u09b2u09cbu09abu09beu09b0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20u09a8u09bfu09a4u09c7{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20u099au09beu0987{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20\\\">u09acu09bf:u09a6u09cdu09b0: u09a4u09beu09b0 u09aau09b0u09c7 u09b8u09beu0987u099c u09a8u09bfu09dfu09c7 u0995u09a8u09abu09bfu0989u099c u09b9u09b2u09c7 u098fu09b8u09cdu0995u09c7u09b2 u09acu09be u09abu09bfu09a4u09be u09aeu09c7u09aau09c7 u09aau09beu09dfu09c7u09b0 u09abu099fu09cb u09a6u09bfu09a8 <br\\/>  Whatsapp 01923529627<\\/a><\\/h2>ttnttt<a href=\\\"tel:01923529627\\\">ntttttttttCall Now nttttt<\\/a>nttt<h2>u09b8u09beu0987u099c u0997u09beu0987u09a1<\\/h2>ttnttttttttttttt<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/fb295913-fc7a-4fdc-8251-50ccde869aba-1024x1024.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/fb295913-fc7a-4fdc-8251-50ccde869aba-1024x1024.jpeg 1024w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/fb295913-fc7a-4fdc-8251-50ccde869aba-300x300.jpeg 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/fb295913-fc7a-4fdc-8251-50ccde869aba-150x150.jpeg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/fb295913-fc7a-4fdc-8251-50ccde869aba-768x768-1.jpeg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/fb295913-fc7a-4fdc-8251-50ccde869aba-600x600-1.jpeg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/fb295913-fc7a-4fdc-8251-50ccde869aba-100x100-1.jpeg 100w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/fb295913-fc7a-4fdc-8251-50ccde869aba.jpeg 1280w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttt<h2>u0986u09aeu09beu09a6u09c7u09b0 u09aau09a8u09cdu09afu09c7n<\\/h2>ttnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>tttttttPreviousnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>tttttttNextnttt<h2>u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u09a8u09bfu099au09c7u09b0 u09abu09b0u09cdu09aeu099fu09bf u09aau09c2u09b0u09a8 u0995u09b0u09c1u09a8<\\/h2>ttnttt<h2>u0995u09cbu09a8 u0995u09beu09b0u09a8u09c7 u098fu0987 u09aau09cdu09afu09beu0995u09c7u099c u0986u09aau09a8u09beu09b0 u09aau099bu09a8u09cdu09a6 u09a8u09be u09b9u09b2u09c7 u0986u09aau09a8u09bf u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u09abu09bf u09aau09cdu09b0u09a6u09beu09a8 u0995u09b0u09c7 u09b0u09bfu099fu09beu09b0u09cdu09a8 u0995u09b0u09a4u09c7 u09aau09beu09b0u09acu09c7u09a8u0964<\\/h2>ttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/jildshop.com\\/wp-content\\/plugins\\/pro-elements\\/assets\\/css\\/widget-animated-headline.min.css\\\">tt<h3>ntttttu09b0u09c7u0997u09c1u09b2u09beu09b0 u09aeu09c2u09b2u09cdu09afu0983 ntttttu09e8u09eeu09e6u09e6ntttttu099fu09beu0995u09benttttt<\\/h3>nttttt<h3>ntttttu09a1u09bfu09b8u0995u09beu0989u09a8u09cdu099f u09aeu09c2u09b2u09cdu09afu0983 ntttttu09e8u09e8u09efu09e6ntttttu099fu09beu0995u09be nttttt<\\/h3>nttt<h2>u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09abu09cdu09b0u09c0<\\/h2>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/jildshop.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> u09b0u0982 u09aau099bu09a8u09cdu09a6 u0995u09b0u09c1u09a8 <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1219\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1219\\\"nt>nt<label for=\\\"wcf-item-product-1219\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2a6d1c8a-3d0b-4cf2-b957-00754f90d682-300x300.jpeg\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2a6d1c8a-3d0b-4cf2-b957-00754f90d682-300x300.jpeg 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2a6d1c8a-3d0b-4cf2-b957-00754f90d682-150x150.jpeg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/2a6d1c8a-3d0b-4cf2-b957-00754f90d682-100x100-1.jpeg 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nNEW CASUAL SHOES  B601-  BLACK1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,290.00<\\/bdi>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1226\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1226\\\"nt>nt<label for=\\\"wcf-item-product-1226\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/02b583fc-bb59-46fd-b155-b8c6cfa235be-300x300.jpeg\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/02b583fc-bb59-46fd-b155-b8c6cfa235be-300x300.jpeg 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/02b583fc-bb59-46fd-b155-b8c6cfa235be-150x150.jpeg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/02b583fc-bb59-46fd-b155-b8c6cfa235be-768x768-1.jpeg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/02b583fc-bb59-46fd-b155-b8c6cfa235be-600x600-1.jpeg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/02b583fc-bb59-46fd-b155-b8c6cfa235be-100x100-1.jpeg 100w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/02b583fc-bb59-46fd-b155-b8c6cfa235be.jpeg 823w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nNEW CASUAL SHOES  B602 BLACK1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,290.00<\\/bdi>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1227\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1227\\\"nt>nt<label for=\\\"wcf-item-product-1227\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/000859d1-8564-4bcd-85e2-dc9fb75980ff-300x300.jpeg\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/000859d1-8564-4bcd-85e2-dc9fb75980ff-300x300.jpeg 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/000859d1-8564-4bcd-85e2-dc9fb75980ff-150x150.jpeg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/000859d1-8564-4bcd-85e2-dc9fb75980ff-100x100-1.jpeg 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nNEW CASUAL SHOES  B603 CHOCOLATE1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,290.00<\\/bdi>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1228\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1228\\\"nt>nt<label for=\\\"wcf-item-product-1228\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/8f7285fe-84db-48a8-a94e-c318af8d4dec-300x300.jpeg\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/8f7285fe-84db-48a8-a94e-c318af8d4dec-300x300.jpeg 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/8f7285fe-84db-48a8-a94e-c318af8d4dec-150x150.jpeg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8f7285fe-84db-48a8-a94e-c318af8d4dec-100x100-1.jpeg 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nNEW CASUAL SHOES  B605 MASTER1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,290.00<\\/bdi>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1229\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1229\\\"nt>nt<label for=\\\"wcf-item-product-1229\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/9461e1c9-352d-4930-bf3d-e3de92242d66-300x300.jpeg\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/9461e1c9-352d-4930-bf3d-e3de92242d66-300x300.jpeg 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/9461e1c9-352d-4930-bf3d-e3de92242d66-150x150.jpeg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9461e1c9-352d-4930-bf3d-e3de92242d66-100x100-1.jpeg 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nNEW CASUAL SHOES  B604-  DARK ASS1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,290.00<\\/bdi>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1230\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1230\\\"nt>nt<label for=\\\"wcf-item-product-1230\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/cbe3b96d-38b6-47bb-a25e-13903c7dc84b-300x300.jpeg\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/cbe3b96d-38b6-47bb-a25e-13903c7dc84b-300x300.jpeg 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/cbe3b96d-38b6-47bb-a25e-13903c7dc84b-150x150.jpeg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cbe3b96d-38b6-47bb-a25e-13903c7dc84b-100x100-1.jpeg 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nNEW CASUAL SHOES B B606  MASTER1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,290.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<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_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<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_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_test_field\\\" data-priority=\\\"120\\\"><label for=\\\"billing_test_u09e9u09ef\\\">u09b8u09beu0987u099c&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"radio\\\" value=\\\"u09e9u09ef\\\" name=\\\"billing_test\\\"  id=\\\"billing_test_u09e9u09ef\\\" \\/><label for=\\\"billing_test_u09e9u09ef\\\">u09e9u09ef<\\/label><input type=\\\"radio\\\" value=\\\"u09eau09e6\\\" name=\\\"billing_test\\\"  id=\\\"billing_test_u09eau09e6\\\" \\/><label for=\\\"billing_test_u09eau09e6\\\">u09eau09e6<\\/label><input type=\\\"radio\\\" value=\\\"u09eau09e7\\\" name=\\\"billing_test\\\"  id=\\\"billing_test_u09eau09e7\\\" \\/><label for=\\\"billing_test_u09eau09e7\\\">u09eau09e7<\\/label><input type=\\\"radio\\\" value=\\\"u09eau09e8\\\" name=\\\"billing_test\\\"  id=\\\"billing_test_u09eau09e8\\\" \\/><label for=\\\"billing_test_u09eau09e8\\\">u09eau09e8<\\/label><input type=\\\"radio\\\" value=\\\"u09eau09e9\\\" name=\\\"billing_test\\\"  id=\\\"billing_test_u09eau09e9\\\" \\/><label for=\\\"billing_test_u09eau09e9\\\">u09eau09e9<\\/label><input type=\\\"radio\\\" value=\\\"u09eau09ea\\\" name=\\\"billing_test\\\"  id=\\\"billing_test_u09eau09ea\\\" \\/><label for=\\\"billing_test_u09eau09ea\\\">u09eau09ea<\\/label><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"1177\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"1180\\\">ntt<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1717532906\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttNEW CASUAL SHOES  B601-  BLACK&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;2,290.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;2,290.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;2,290.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/jildshop.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;2,290.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;2,290.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;2,290.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"61013ba4ba\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->\\\"\\\"\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-27__trashed','','','2026-06-09 12:45:12','2026-06-09 06:45:12','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-27/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1981','17','2026-06-08 21:43:29','2026-06-08 15:43:29','\"\\\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-21__trashed','','','2026-06-09 12:41:18','2026-06-09 06:41:18','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-21/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1982','17','2026-06-08 21:43:29','2026-06-08 15:43:29','\"\\\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\\\"\"','Thank You (Woo)','','inherit','closed','closed','','1981-revision-v1','','','2026-06-08 21:43:29','2026-06-08 15:43:29','','1981','https://hypergrowth.fishgrowth.xyz/?p=1982','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1983','17','2026-06-08 21:43:34','2026-06-08 15:43:34','\"\\\"\\\"<img width=\\\"300\\\" height=\\\"184\\\" src=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/03\\/Logo-1-01-e1710439185699-300x184.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/03\\/Logo-1-01-e1710439185699-300x184.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Logo-1-01-e1710439185699-600x368-1.png 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Logo-1-01-e1710439185699-768x471-1.png 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Logo-1-01-e1710439185699.png 863w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>tttttttttttttnttt<h2>u09a7u09a8u09cdu09afu09acu09beu09a6 u09b8u09cdu09afu09beu09b0 u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0 u099fu09bf u0986u09aeu09b0u09be u09aau09c7u09dfu09c7u099bu09bf<\\/h2>ttnttt<p>u0985u09a4u09bfu09a6u09cdu09b0u09c1u09a4u0987 u0986u09aau09a8u09beu0995u09c7 u0995u09b2 u0995u09b0u09c7 u0995u09a8u09abu09beu09b0u09cdu09ae u0995u09b0u09be u09b9u09acu09c7<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>921<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>June 2, 2024<\\/strong>ntttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>2,750.00&#2547;&nbsp;<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttu09b9u09bfu09aeu09b8u09beu0997u09b0 u09e8u09e6 u0995u09c7u099cu09bf <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>2,600.00&#2547;&nbsp;<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>2,600.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Shipping:<\\/th>nttttttt<td>150.00&#2547;&nbsp;&nbsp;<small>via u09e7u09e6 u0995u09c7u099cu09bf<\\/small><\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>2,750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>ntttu099cu09b0u09c1u09b0u09c0 u09aau09cdu09b0u09dfu09cbu099cu09a8u09c7 u0995u09b2 u0995u09b0u09c1u09a8 - 01983 196 929 ttnttttt<ul>nttttttt<li>nttttttttttPrivacy Policynttttttttt<\\/li>ntttttttt<li>nttttttttttt<a href=\\\"https:\\/\\/www.facebook.com\\/groups\\/1805794863172480\\\">ntttttttttttFacebook Groupnttttttttttt<\\/a>nttttttttt<\\/li>ntttttttt<li>nttttttttttt<a href=\\\"https:\\/\\/facebook.com\\/sahabafood1\\\">ntttttttttttFacebook Pagenttttttttttt<\\/a>nttttttttt<\\/li>ntttttt<\\/ul>\\\"\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-22__trashed','','','2026-06-09 12:47:55','2026-06-09 06:47:55','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-22/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1984','17','2026-06-08 21:43:35','2026-06-08 15:43:35','','mangoraj','','publish','closed','closed','','mangorajbd','','','2026-06-09 12:35:14','2026-06-09 06:35:14','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=mangorajbd','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1985','17','2026-06-08 21:43:36','2026-06-08 15:43:36','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','publish','closed','closed','','sales-landing-25','','','2026-06-08 21:43:36','2026-06-08 15:43:36','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-25/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1986','17','2026-06-08 21:43:36','2026-06-08 15:43:36','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1985-revision-v1','','','2026-06-08 21:43:36','2026-06-08 15:43:36','','1985','https://hypergrowth.fishgrowth.xyz/?p=1986','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1987','17','2026-06-08 21:43:36','2026-06-08 15:43:36','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1448\" height=\"1086\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/62377b17-7d55-45c5-b128-b993e01ae1f7.png\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>কেমিক্যাল মুক্ত ফ্রেশ আম\n</h2>		\n			<h2><s>আগের মূল্যঃ ১৫৫০ টাকা</s></h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">		<h3>\n					সেরা অফারঃ   ৪  কেজি\n					1000\n					টাকা (ডেলিভারি চার্জ একদম  ফ্রী)\n					</h3>\n			<h2>ম্যাংগোরাজ কেন সেরা  ? \n</h2>		\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\n			<a href=\"#order-form\">\n									অর্ডার করতে চাই\n					</a>\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-carousel.min.css\">		\n							<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>							Previous\n							<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>							Next\n			<a href=\"#order-form\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>পন্য গ্রহন করার সময় চেক করে নিতে পারবেন</h2>		\n			<p>আমাদের আম নিয়ে আমরা এতই কনফিডেন্স যে আমরা আশা রাখি আমাদের আম আপনার বাসায় যাওয়ার পর আমাদের আম কোয়ালিটি দেখে আপনাকে নেক্সট টাইম আবারো করতে হবে ইনশাআল্লাহ।। \n</p>		\n													<img width=\"1024\" height=\"768\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/62377b17-7d55-45c5-b128-b993e01ae1f7.png\" alt=\"\" />													\n													<img width=\"819\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/fc721dd8-d92e-4070-a025-16757ef31f00.png\" alt=\"\" />													\n													<img width=\"1024\" height=\"768\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/62377b17-7d55-45c5-b128-b993e01ae1f7.png\" alt=\"\" />													\n			<a href=\"#order-form\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>কি কি কারণে আমাদের কাছ থেকে পণ্য  কিনা উচিৎ!</h2>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										সারা বাংলাদেশ আমরা দিচ্ছি হোম ডেলিভারিতে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										সারা বাংলাদেশ হোম ডেলিভারি চার্জ মাত্র ১০০ টাকা।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										আমরা সারা বাংলাদেশ হোম ডেলিভারীতে পন্য ডেলিভারী করি সুতরাং পন্য গ্রহন করার সময় চেক করে নিতে পারবেন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										আমাদের অর্ডার করতে আপনাকে এক টাকাও আগে অগ্রিম দিতে হবে না আমাদের ডেলিভারি ম্যান আপনার বাসায় যাবে আমাদের পণ্য দেখে শুনে তারপর মূল্য পরিষদ করবেন।\n									</li>\n						</ul>\n			<h2>আজকের অফার সমূহ</h2>		\n			<a role=\"button\">\n									অর্ডার গ্রহণ চলছে  -> হিমসাগর\n					</a>\n			<h2>\n ১০ কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a>\n</h2>		\n			<h2>২০কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a>\n</h2>		\n			<a href=\"#order\">\n									অর্ডার গ্রহণ চলছে  -> বাড়ি -৪\n					</a>\n			<h2>\n ১০ কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a>\n</h2>		\n			<h2>২০কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a></h2>		\n			<a href=\"#order\">\n									অর্ডার গ্রহণ চলছে  -> ফজলি\n					</a>\n			<h2>\n ১০ কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a>\n</h2>		\n			<h2>২০কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a></h2>		\n			<a href=\"#order\">\n									অর্ডার গ্রহণ চলছে  -> তোতাপরী \n					</a>\n			<h2>\n ১০ কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a>\n</h2>		\n			<h2>২০কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a></h2>		\n			<a href=\"#order\">\n									অর্ডার গ্রহণ চলছে  -> ল্যাংড়া \n					</a>\n			<h2>\n ১০ কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a>\n</h2>		\n			<h2>২০কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a></h2>		\n			<a href=\"#order\">\n									অর্ডার গ্রহণ চলছে  -> আম্রুপালী \n					</a>\n			<h2>\n ১০ কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a>\n</h2>		\n			<h2>২০কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a></h2>		\n			<a href=\"#order\">\n									অর্ডার গ্রহণ চলছে  -> গুটি\n					</a>\n			<h2>\n ১০ কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a>\n</h2>		\n			<h2>২০কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a></h2>		\n			<a href=\"#order\">\n									অর্ডার গ্রহণ চলছে  -> আশ্বিনা \n					</a>\n			<h2>\n ১০ কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a>\n</h2>		\n			<h2>২০কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a></h2>		\n			<h2>ডেলিভারি শর্তাবলীঃ</h2>		\n					<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										০১। ঢাকার বাইরে হোম ডেলিভারি শুধু জেলা সদরের জন্য প্রযোজ্য।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										০২। ডেলিভারির কারণে কোন পণ্যের ক্ষতি হলে তার দায়ভার কুরিয়ার কর্তৃপক্ষ বহন করবে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										৩। আম রিসিভ করার সময় গ্রাহকে পণ্যের ভিডিও ধারণ করার জন্য অনুরোধ করছি।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										৪। ওয়েবসাইট এ অর্ডারের ক্ষেত্রে শুধু Steadfast কুরিয়ারের মাধ্যমে আম সরবরাহ করা হবে। অন্যা কোন কুরিরের মাধ্যমে আম ডেলিভারি নিতে চাইলে MangoRaj এর কন্টাক্ট নাম্বারে (01733601555) ফোন করে জানানোর জন্য অনুরোধ রইলো।\n									</li>\n						</ul>\n<!-- CHECKOUT SHORTCODE -->\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নাম&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">আপনার সম্পূর্ণ ঠিকানা&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"House number and street name\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">আপনার ফোন নাম্বার&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\"  value=\"01713318648\" autocomplete=\"tel\" /></p><p id=\"billing_steadfast_field\" data-priority=\"110\"><label for=\"billing_steadfast\">কুরিয়ারের নাম&nbsp;<abbr title=\"required\">*</abbr></label><select name=\"billing_steadfast\" id=\"billing_steadfast\"  data-placeholder=\"\">\n							<option value=\"Steadfast\"  selected=\'selected\'>Steadfast</option>\n						</select></p><p id=\"billing___field\" data-priority=\"120\"><label for=\"billing__\">ডেলিভারি ধরন&nbsp;<abbr title=\"required\">*</abbr></label><select name=\"billing__\" id=\"billing__\"  data-placeholder=\"\">\n							<option value=\"পয়েন্ট ডেলিভারি\" >পয়েন্ট ডেলিভারি</option><option value=\"হোম ডেলিভারি\" >হোম ডেলিভারি</option>\n						</select></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"1984\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"1987\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780986886\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n		<p>Design by itgalaxi</p>','Checkout (Woo)','','publish','closed','closed','','checkout-woo-28','','','2026-06-09 12:34:46','2026-06-09 06:34:46','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-28/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1988','17','2026-06-08 21:43:46','2026-06-08 15:43:46','\"\\\"\\\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>tttttttttt<img width=\\\"499\\\" height=\\\"269\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-9ec36b25-759a-4e9b-8aec-a0ee40de2cab-removebg-preview.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-9ec36b25-759a-4e9b-8aec-a0ee40de2cab-removebg-preview.png 499w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/cropped-9ec36b25-759a-4e9b-8aec-a0ee40de2cab-removebg-preview-300x162.png 300w\\\" sizes=\\\"(max-width: 499px) 100vw, 499px\\\" \\/>tttttttttttttnttt<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>u0995u09c7u09aeu09bfu0995u09cdu09afu09beu09b2 u09aeu09c1u0995u09cdu09a4 u09abu09cdu09b0u09c7u09b6 u0986u09aen<\\/h2>ttnttt<h2><s>u0986u0997u09c7u09b0 u09aeu09c2u09b2u09cdu09afu0983 u09e7u09ebu09ebu09e6 u099fu09beu0995u09be<\\/s><\\/h2>ttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">tt<h3>ntttttu09b8u09c7u09b0u09be u0985u09abu09beu09b0u0983   u09ea  u0995u09c7u099cu09bfnttttt1000ntttttu099fu09beu0995u09be (u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u098fu0995u09a6u09ae  u09abu09cdu09b0u09c0)nttttt<\\/h3>nttt<h2>u09aeu09cdu09afu09beu0982u0997u09cbu09b0u09beu099c u0995u09c7u09a8 u09b8u09c7u09b0u09be  ? n<\\/h2>ttntthttps:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_Ettnttt<a href=\\\"#order-form\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-carousel.min.css\\\">ttnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>tttttttPreviousnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>tttttttNextnttt<a href=\\\"#order-form\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<h2>u09aau09a8u09cdu09af u0997u09cdu09b0u09b9u09a8 u0995u09b0u09beu09b0 u09b8u09aeu09df u099au09c7u0995 u0995u09b0u09c7 u09a8u09bfu09a4u09c7 u09aau09beu09b0u09acu09c7u09a8<\\/h2>ttnttt<p>u0986u09aeu09beu09a6u09c7u09b0 u0986u09ae u09a8u09bfu09afu09bcu09c7 u0986u09aeu09b0u09be u098fu09a4u0987 u0995u09a8u09abu09bfu09a1u09c7u09a8u09cdu09b8 u09afu09c7 u0986u09aeu09b0u09be u0986u09b6u09be u09b0u09beu0996u09bf u0986u09aeu09beu09a6u09c7u09b0 u0986u09ae u0986u09aau09a8u09beu09b0 u09acu09beu09b8u09beu09afu09bc u09afu09beu0993u09afu09bcu09beu09b0 u09aau09b0 u0986u09aeu09beu09a6u09c7u09b0 u0986u09ae u0995u09cbu09afu09bcu09beu09b2u09bfu099fu09bf u09a6u09c7u0996u09c7 u0986u09aau09a8u09beu0995u09c7 u09a8u09c7u0995u09cdu09b8u099f u099fu09beu0987u09ae u0986u09acu09beu09b0u09cb u0995u09b0u09a4u09c7 u09b9u09acu09c7 u0987u09a8u09b6u09beu0986u09b2u09cdu09b2u09beu09b9u0964u0964 n<\\/p>ttnttttttttttttt<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/985cf9ca-ef40-46d4-9289-0d542ff2c2ea_11zon-1024x1024.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/985cf9ca-ef40-46d4-9289-0d542ff2c2ea_11zon-1024x1024.webp 1024w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/985cf9ca-ef40-46d4-9289-0d542ff2c2ea_11zon-300x300.webp 300w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/985cf9ca-ef40-46d4-9289-0d542ff2c2ea_11zon-150x150.webp 150w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/985cf9ca-ef40-46d4-9289-0d542ff2c2ea_11zon-768x768.webp 768w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/985cf9ca-ef40-46d4-9289-0d542ff2c2ea_11zon-800x800.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/985cf9ca-ef40-46d4-9289-0d542ff2c2ea_11zon-700x700.webp 700w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/985cf9ca-ef40-46d4-9289-0d542ff2c2ea_11zon-100x100.webp 100w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/985cf9ca-ef40-46d4-9289-0d542ff2c2ea_11zon.webp 1080w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttttttttttttt<img width=\\\"1024\\\" height=\\\"768\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon-1024x768.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon-1024x768.webp 1024w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon-300x225.webp 300w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon-768x576.webp 768w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon-700x525.webp 700w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon.webp 1080w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttttttttttttt<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-1024x1024.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-1024x1024.webp 1024w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-300x300.webp 300w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-150x150.webp 150w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-768x768.webp 768w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-800x800.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-700x700.webp 700w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-100x100.webp 100w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon.webp 1080w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttttttttttttt<img width=\\\"1024\\\" height=\\\"768\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-1024x768.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-1024x768.webp 1024w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-300x225.webp 300w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-768x576.webp 768w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-1536x1152.webp 1536w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon-700x525.webp 700w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/9ef4fef6-3d2c-4558-b6cc-50a8a7e3f437_6_11zon.webp 1600w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttttttttttttt<img width=\\\"1024\\\" height=\\\"768\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/81437237-4bdd-451c-9445-a4dc4b629824_12_11zon-1024x768.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/81437237-4bdd-451c-9445-a4dc4b629824_12_11zon-1024x768.webp 1024w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/81437237-4bdd-451c-9445-a4dc4b629824_12_11zon-300x225.webp 300w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/81437237-4bdd-451c-9445-a4dc4b629824_12_11zon-768x576.webp 768w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/81437237-4bdd-451c-9445-a4dc4b629824_12_11zon-1536x1152.webp 1536w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/81437237-4bdd-451c-9445-a4dc4b629824_12_11zon-700x525.webp 700w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/81437237-4bdd-451c-9445-a4dc4b629824_12_11zon.webp 1600w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttttttttttttt<img width=\\\"800\\\" height=\\\"600\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon-300x225.webp 300w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon-768x576.webp 768w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon-700x525.webp 700w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>tttttttttttttnttt<a href=\\\"#order-form\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<h2>u0995u09bf u0995u09bf u0995u09beu09b0u09a3u09c7 u0986u09aeu09beu09a6u09c7u09b0 u0995u09beu099b u09a5u09c7u0995u09c7 u09aau09a3u09cdu09af  u0995u09bfu09a8u09be u0989u099au09bfu09ce!<\\/h2>ttnttt<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>ttnttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\\\"><\\/path><\\/svg>nttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">tt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09beu09b0u09be u09acu09beu0982u09b2u09beu09a6u09c7u09b6 u0986u09aeu09b0u09be u09a6u09bfu099au09cdu099bu09bf u09b9u09cbu09ae u09a1u09c7u09b2u09bfu09adu09beu09b0u09bfu09a4u09c7u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09beu09b0u09be u09acu09beu0982u09b2u09beu09a6u09c7u09b6 u09b9u09cbu09ae u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u09aeu09beu09a4u09cdu09b0 u09e7u09e6u09e6 u099fu09beu0995u09beu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09aeu09b0u09be u09b8u09beu09b0u09be u09acu09beu0982u09b2u09beu09a6u09c7u09b6 u09b9u09cbu09ae u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0u09a4u09c7 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u0995u09b0u09bf u09b8u09c1u09a4u09b0u09beu0982 u09aau09a8u09cdu09af u0997u09cdu09b0u09b9u09a8 u0995u09b0u09beu09b0 u09b8u09aeu09df u099au09c7u0995 u0995u09b0u09c7 u09a8u09bfu09a4u09c7 u09aau09beu09b0u09acu09c7u09a8u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09aeu09beu09a6u09c7u09b0 u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u0986u09aau09a8u09beu0995u09c7 u098fu0995 u099fu09beu0995u09beu0993 u0986u0997u09c7 u0985u0997u09cdu09b0u09bfu09ae u09a6u09bfu09a4u09c7 u09b9u09acu09c7 u09a8u09be u0986u09aeu09beu09a6u09c7u09b0 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u09aeu09cdu09afu09beu09a8 u0986u09aau09a8u09beu09b0 u09acu09beu09b8u09beu09afu09bc u09afu09beu09acu09c7 u0986u09aeu09beu09a6u09c7u09b0 u09aau09a3u09cdu09af u09a6u09c7u0996u09c7 u09b6u09c1u09a8u09c7 u09a4u09beu09b0u09aau09b0 u09aeu09c2u09b2u09cdu09af u09aau09b0u09bfu09b7u09a6 u0995u09b0u09acu09c7u09a8u0964nttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>u0986u099cu0995u09c7u09b0 u0985u09abu09beu09b0 u09b8u09aeu09c2u09b9<\\/h2>ttnttt<a role=\\\"button\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0997u09cdu09b0u09b9u09a3 u099au09b2u099bu09c7  -> u09b9u09bfu09aeu09b8u09beu0997u09b0nttttt<\\/a>nttt<h2>n u09e7u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f   u09e7---- u099fu09beu0995u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8 <\\/a>n<\\/h2>ttnttt<h2>u09e8u09e6u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f   u09e7---- u099fu09beu0995u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8 <\\/a>n<\\/h2>ttnttt<a href=\\\"#order\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0997u09cdu09b0u09b9u09a3 u099au09b2u099bu09c7  -> u09acu09beu09a1u09bcu09bf -u09eanttttt<\\/a>nttt<h2>n u09e7u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f   u09e7---- u099fu09beu0995u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8 <\\/a>n<\\/h2>ttnttt<h2>u09e8u09e6u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f   u09e7---- u099fu09beu0995u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8 <\\/a><\\/h2>ttnttt<a href=\\\"#order\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0997u09cdu09b0u09b9u09a3 u099au09b2u099bu09c7  -> u09abu099cu09b2u09bfnttttt<\\/a>nttt<h2>n u09e7u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f   u09e7---- u099fu09beu0995u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8 <\\/a>n<\\/h2>ttnttt<h2>u09e8u09e6u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f   u09e7---- u099fu09beu0995u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8 <\\/a><\\/h2>ttnttt<a href=\\\"#order\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0997u09cdu09b0u09b9u09a3 u099au09b2u099bu09c7  -> u09a4u09cbu09a4u09beu09aau09b0u09c0 nttttt<\\/a>nttt<h2>n u09e7u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f   u09e7---- u099fu09beu0995u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8 <\\/a>n<\\/h2>ttnttt<h2>u09e8u09e6u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f   u09e7---- u099fu09beu0995u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8 <\\/a><\\/h2>ttnttt<a href=\\\"#order\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0997u09cdu09b0u09b9u09a3 u099au09b2u099bu09c7  -> u09b2u09cdu09afu09beu0982u09a1u09bcu09be nttttt<\\/a>nttt<h2>n u09e7u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f   u09e7---- u099fu09beu0995u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8 <\\/a>n<\\/h2>ttnttt<h2>u09e8u09e6u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f   u09e7---- u099fu09beu0995u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8 <\\/a><\\/h2>ttnttt<a href=\\\"#order\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0997u09cdu09b0u09b9u09a3 u099au09b2u099bu09c7  -> u0986u09aeu09cdu09b0u09c1u09aau09beu09b2u09c0 nttttt<\\/a>nttt<h2>n u09e7u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f   u09e7---- u099fu09beu0995u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8 <\\/a>n<\\/h2>ttnttt<h2>u09e8u09e6u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f   u09e7---- u099fu09beu0995u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8 <\\/a><\\/h2>ttnttt<a href=\\\"#order\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0997u09cdu09b0u09b9u09a3 u099au09b2u099bu09c7  -> u0997u09c1u099fu09bfnttttt<\\/a>nttt<h2>n u09e7u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f   u09e7---- u099fu09beu0995u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8 <\\/a>n<\\/h2>ttnttt<h2>u09e8u09e6u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f   u09e7---- u099fu09beu0995u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8 <\\/a><\\/h2>ttnttt<a href=\\\"#order\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0997u09cdu09b0u09b9u09a3 u099au09b2u099bu09c7  -> u0986u09b6u09cdu09acu09bfu09a8u09be nttttt<\\/a>nttt<h2>n u09e7u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f   u09e7---- u099fu09beu0995u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8 <\\/a>n<\\/h2>ttnttt<h2>u09e8u09e6u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f   u09e7---- u099fu09beu0995u09be  <a style=\\\"color: #FF7400\\\" href=\\\"#order-form\\\"> u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8 <\\/a><\\/h2>ttnttt<h2>u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u09b6u09b0u09cdu09a4u09beu09acu09b2u09c0u0983<\\/h2>ttnttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\\\"><\\/path><\\/svg>nttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09e6u09e7u0964 u09a2u09beu0995u09beu09b0 u09acu09beu0987u09b0u09c7 u09b9u09cbu09ae u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u09b6u09c1u09a7u09c1 u099cu09c7u09b2u09be u09b8u09a6u09b0u09c7u09b0 u099cu09a8u09cdu09af u09aau09cdu09b0u09afu09cbu099cu09cdu09afu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09e6u09e8u0964 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bfu09b0 u0995u09beu09b0u09a3u09c7 u0995u09cbu09a8 u09aau09a3u09cdu09afu09c7u09b0 u0995u09cdu09b7u09a4u09bf u09b9u09b2u09c7 u09a4u09beu09b0 u09a6u09beu09dfu09adu09beu09b0 u0995u09c1u09b0u09bfu09dfu09beu09b0 u0995u09b0u09cdu09a4u09c3u09aau0995u09cdu09b7 u09acu09b9u09a8 u0995u09b0u09acu09c7u0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09e9u0964 u0986u09ae u09b0u09bfu09b8u09bfu09ad u0995u09b0u09beu09b0 u09b8u09aeu09df u0997u09cdu09b0u09beu09b9u0995u09c7 u09aau09a3u09cdu09afu09c7u09b0 u09adu09bfu09a1u09bfu0993 u09a7u09beu09b0u09a3 u0995u09b0u09beu09b0 u099cu09a8u09cdu09af u0985u09a8u09c1u09b0u09cbu09a7 u0995u09b0u099bu09bfu0964nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09eau0964 u0993u09dfu09c7u09acu09b8u09beu0987u099f u098f u0985u09b0u09cdu09a1u09beu09b0u09c7u09b0 u0995u09cdu09b7u09c7u09a4u09cdu09b0u09c7 u09b6u09c1u09a7u09c1 Steadfast u0995u09c1u09b0u09bfu09dfu09beu09b0u09c7u09b0 u09aeu09beu09a7u09cdu09afu09aeu09c7 u0986u09ae u09b8u09b0u09acu09b0u09beu09b9 u0995u09b0u09be u09b9u09acu09c7u0964 u0985u09a8u09cdu09afu09be u0995u09cbu09a8 u0995u09c1u09b0u09bfu09b0u09c7u09b0 u09aeu09beu09a7u09cdu09afu09aeu09c7 u0986u09ae u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u09a8u09bfu09a4u09c7 u099au09beu0987u09b2u09c7 MangoRaj u098fu09b0 u0995u09a8u09cdu099fu09beu0995u09cdu099f u09a8u09beu09aeu09cdu09acu09beu09b0u09c7 (01733601555) u09abu09cbu09a8 u0995u09b0u09c7 u099cu09beu09a8u09beu09a8u09cbu09b0 u099cu09a8u09cdu09af u0985u09a8u09c1u09b0u09cbu09a7 u09b0u0987u09b2u09cbu0964nttttttttt<\\/li>ntttttt<\\/ul>n<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/mangorajbd.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"1313\\\"  >nt<img width=\\\"800\\\" height=\\\"600\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon-300x225.webp 300w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon-768x576.webp 768w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon-700x525.webp 700w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>nu09b9u09bfu09aeu09b8u09beu0997u09b0 u09e7u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f u09e7u09ebu09e6u09e6 u099fu09beu0995u09be1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;1,500.00<\\/bdi>nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"1314\\\"  >nt<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-800x800.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-800x800.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-300x300.webp 300w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-1024x1024.webp 1024w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-150x150.webp 150w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-768x768.webp 768w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-700x700.webp 700w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-100x100.webp 100w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon.webp 1080w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>nu09b9u09bfu09aeu09b8u09beu0997u09b0 u09e8u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f u09e8u09ebu09e6u09e6 u099fu09beu0995u09be1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,500.00<\\/bdi>nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"1315\\\"  >nt<img width=\\\"800\\\" height=\\\"600\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon-300x225.webp 300w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon-768x576.webp 768w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon-700x525.webp 700w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>nu09acu09beu09a1u09bcu09bf -u09ea - u09e7u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f u09e7u09ebu09e6u09e6 u099fu09beu0995u09be1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;1,500.00<\\/bdi>nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"1317\\\"  >nt<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon-800x800.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon-800x800.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon-150x150.webp 150w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon-100x100.webp 100w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>nu09acu09beu09a1u09bcu09bf -u09ea -  u09e8u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f u09e8u09ebu09e6u09e6 u099fu09beu0995u09be1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,500.00<\\/bdi>nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"1318\\\"  >nt<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-800x800.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-800x800.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-300x300.webp 300w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-1024x1024.webp 1024w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-150x150.webp 150w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-768x768.webp 768w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-700x700.webp 700w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-100x100.webp 100w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon.webp 1080w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>nu09abu099cu09b2u09bf - u09e7u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f u09e7u09ebu09e6u09e6 u099fu09beu0995u09be1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;1,500.00<\\/bdi>nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"1320\\\"  >nt<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-800x800.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-800x800.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-300x300.webp 300w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-1024x1024.webp 1024w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-150x150.webp 150w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-768x768.webp 768w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-700x700.webp 700w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-100x100.webp 100w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon.webp 1080w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>nu09abu099cu09b2u09bf -  u09e8u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f u09e8u09ebu09e6u09e6 u099fu09beu0995u09be1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,500.00<\\/bdi>nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"1321\\\"  >nt<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon-800x800.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon-800x800.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon-150x150.webp 150w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon-100x100.webp 100w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>nu09a4u09cbu09a4u09beu09aau09c1u09b0u09c0 - u09e7u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f u09e7u09ebu09e6u09e6 u099fu09beu0995u09be1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;1,500.00<\\/bdi>nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"1323\\\"  >nt<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-800x800.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-800x800.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-300x300.webp 300w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-1024x1024.webp 1024w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-150x150.webp 150w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-768x768.webp 768w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-700x700.webp 700w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-100x100.webp 100w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon.webp 1080w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>nu09a4u09cbu09a4u09beu09aau09c1u09b0u09c0 - u09e8u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f u09e8u09ebu09e6u09e6 u099fu09beu0995u09be1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,500.00<\\/bdi>nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"1324\\\"  >nt<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/4c2ba910-e767-4f90-9005-693b3d11514d_11zon-800x800.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/4c2ba910-e767-4f90-9005-693b3d11514d_11zon-800x800.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/4c2ba910-e767-4f90-9005-693b3d11514d_11zon-150x150.webp 150w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/4c2ba910-e767-4f90-9005-693b3d11514d_11zon-100x100.webp 100w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>nu09b2u09cdu09afu09beu0982u09a1u09bcu09be - u09e7u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f u09e7u09ebu09e6u09e6 u099fu09beu0995u09be1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;1,500.00<\\/bdi>nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"1325\\\"  >nt<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/505d8080-1e90-4fe1-ab43-78b61dc3075d_11zon-800x800.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/505d8080-1e90-4fe1-ab43-78b61dc3075d_11zon-800x800.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/505d8080-1e90-4fe1-ab43-78b61dc3075d_11zon-150x150.webp 150w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/505d8080-1e90-4fe1-ab43-78b61dc3075d_11zon-100x100.webp 100w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>nu09b2u09cdu09afu09beu0982u09a1u09bcu09be - u09e8u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f u09e8u09ebu09e6u09e6 u099fu09beu0995u09be1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,500.00<\\/bdi>nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"1326\\\"  >nt<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-800x800.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-800x800.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-300x300.webp 300w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-1024x1024.webp 1024w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-150x150.webp 150w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-768x768.webp 768w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-700x700.webp 700w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-100x100.webp 100w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon.webp 1080w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>nu0986u09aeu09cdu09b0u09c1u09aau09beu09b2u09c0- u09e7u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f u09e7u09ebu09e6u09e6 u099fu09beu0995u09be1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;1,500.00<\\/bdi>nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"1327\\\"  >nt<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/505d8080-1e90-4fe1-ab43-78b61dc3075d_11zon-800x800.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/505d8080-1e90-4fe1-ab43-78b61dc3075d_11zon-800x800.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/505d8080-1e90-4fe1-ab43-78b61dc3075d_11zon-150x150.webp 150w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/505d8080-1e90-4fe1-ab43-78b61dc3075d_11zon-100x100.webp 100w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>nu0986u09aeu09cdu09b0u09c1u09aau09beu09b2u09c0- u09e8u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f u09e8u09ebu09e6u09e6 u099fu09beu0995u09be1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,500.00<\\/bdi>nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"1328\\\"  >nt<img width=\\\"800\\\" height=\\\"600\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon-300x225.webp 300w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon-768x576.webp 768w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/22a80cc8-30e3-48f8-a3fa-12ca61bc608c_11zon-700x525.webp 700w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>nu0997u09c1u099fu09bf- u09e7u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f u09e7u09ebu09e6u09e6 u099fu09beu0995u09be1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;1,500.00<\\/bdi>nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"1329\\\"  >nt<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-800x800.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-800x800.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-300x300.webp 300w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-1024x1024.webp 1024w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-150x150.webp 150w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-768x768.webp 768w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-700x700.webp 700w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon-100x100.webp 100w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/0f0afd42-8d34-4766-88b8-97b40b0d742a_11zon.webp 1080w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>nu0997u09c1u099fu09bf- u09e8u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f u09e8u09ebu09e6u09e6 u099fu09beu0995u09be1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,500.00<\\/bdi>nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"1330\\\"  >nt<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/2474edc1-3fe7-4316-bec5-98c4e21ab2ea_11zon-800x800.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/2474edc1-3fe7-4316-bec5-98c4e21ab2ea_11zon-800x800.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/2474edc1-3fe7-4316-bec5-98c4e21ab2ea_11zon-150x150.webp 150w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/2474edc1-3fe7-4316-bec5-98c4e21ab2ea_11zon-100x100.webp 100w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>nu0986u09b6u09cdu09acu09bfu09a8u09be u09e7u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f u09e7u09ebu09e6u09e6 u099fu09beu0995u09be1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;1,500.00<\\/bdi>nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"1331\\\"  >nt<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon-800x800.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon-800x800.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon-150x150.webp 150w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/8a12f7f7-b99b-4119-a1d5-2ef5691e26a6_11zon-100x100.webp 100w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>nu0986u09b6u09cdu09acu09bfu09a8u09be - u09e8u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f u09e8u09ebu09e6u09e6 u099fu09beu0995u09be1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,500.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"1210\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"1213\\\">ntt<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1717317302\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttu09b9u09bfu09aeu09b8u09beu0997u09b0 u09e7u09e6 u0995u09c7u099cu09bf u0995u09cdu09afu09beu09b0u09c7u099f u09e7u09ebu09e6u09e6 u099fu09beu0995u09be&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;1,500.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;1,500.00<\\/bdi><\\/td>ntt<\\/tr>nttt<tr>nt<th>Shipping<\\/th>nt<td data-title=\\\"Shipping\\\">nttttt<ul id=\\\"shipping_method\\\">nttttttttt<li>ntttttt<input type=\\\"radio\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_flat_rate2\\\" value=\\\"flat_rate:2\\\"  checked=\'checked\' \\/><label for=\\\"shipping_method_0_flat_rate2\\\">In Dhaka: <bdi>&#2547;&nbsp;210.00<\\/bdi><\\/label>ttttt<\\/li>nttttttttt<li>ntttttt<input type=\\\"radio\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_flat_rate3\\\" value=\\\"flat_rate:3\\\"  \\/><label for=\\\"shipping_method_0_flat_rate3\\\">Out Of Dhaka: <bdi>&#2547;&nbsp;260.00<\\/bdi><\\/label>ttttt<\\/li>nttttttt<\\/ul>nttt<\\/td>n<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;1,710.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,710.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,710.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;1,710.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6e015c770c\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->ntt<p>Design by itgalaxi<\\/p>\\\"\\\"\"','Checkout (Woo)','','inherit','closed','closed','','1987-revision-v1','','','2026-06-08 21:43:46','2026-06-08 15:43:46','','1987','https://hypergrowth.fishgrowth.xyz/?p=1988','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1989','17','2026-06-08 21:43:52','2026-06-08 15:43:52','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>Congratulations , Your Order Has Been Received Successfully <\\/h2>\\t\\t\\n\\t\\t<p>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u099c\\u09c7 \\u09b2\\u09be\\u0987\\u0995 \\u09a6\\u09bf\\u09df\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u0982\\u0997\\u09c7\\u0987 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01303832348\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<a href=\\\"#\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\tlike our page\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<p>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-23__trashed','','','2026-06-09 12:41:08','2026-06-09 06:41:08','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-23/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1990','17','2026-06-08 21:43:53','2026-06-08 15:43:53','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>Congratulations , Your Order Has Been Received Successfully <\\/h2>\\t\\t\\n\\t\\t<p>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u099c\\u09c7 \\u09b2\\u09be\\u0987\\u0995 \\u09a6\\u09bf\\u09df\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u0982\\u0997\\u09c7\\u0987 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01303832348\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<a href=\\\"#\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\tlike our page\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<p>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Thank You (Woo)','','inherit','closed','closed','','1989-revision-v1','','','2026-06-08 21:43:53','2026-06-08 15:43:53','','1989','https://hypergrowth.fishgrowth.xyz/?p=1990','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1991','17','2026-06-08 21:44:04','2026-06-08 15:44:04','\"\\\"\\\"<img width=\\\"300\\\" height=\\\"184\\\" src=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/03\\/Logo-1-01-e1710439185699-300x184.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/sahabafood.com\\/wp-content\\/uploads\\/2024\\/03\\/Logo-1-01-e1710439185699-300x184.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Logo-1-01-e1710439185699-600x368-1.png 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Logo-1-01-e1710439185699-768x471-1.png 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Logo-1-01-e1710439185699.png 863w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>tttttttttttttnttt<h2>u09a7u09a8u09cdu09afu09acu09beu09a6 u09b8u09cdu09afu09beu09b0 u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0 u099fu09bf u0986u09aeu09b0u09be u09aau09c7u09dfu09c7u099bu09bf<\\/h2>ttnttt<p>u0985u09a4u09bfu09a6u09cdu09b0u09c1u09a4u0987 u0986u09aau09a8u09beu0995u09c7 u0995u09b2 u0995u09b0u09c7 u0995u09a8u09abu09beu09b0u09cdu09ae u0995u09b0u09be u09b9u09acu09c7<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>921<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>June 2, 2024<\\/strong>ntttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>2,750.00&#2547;&nbsp;<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttu09b9u09bfu09aeu09b8u09beu0997u09b0 u09e8u09e6 u0995u09c7u099cu09bf <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>2,600.00&#2547;&nbsp;<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>2,600.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Shipping:<\\/th>nttttttt<td>150.00&#2547;&nbsp;&nbsp;<small>via u09e7u09e6 u0995u09c7u099cu09bf<\\/small><\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>2,750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>ntttu099cu09b0u09c1u09b0u09c0 u09aau09cdu09b0u09dfu09cbu099cu09a8u09c7 u0995u09b2 u0995u09b0u09c1u09a8 - 01983 196 929 ttnttttt<ul>nttttttt<li>nttttttttttPrivacy Policynttttttttt<\\/li>ntttttttt<li>nttttttttttt<a href=\\\"https:\\/\\/www.facebook.com\\/groups\\/1805794863172480\\\">ntttttttttttFacebook Groupnttttttttttt<\\/a>nttttttttt<\\/li>ntttttttt<li>nttttttttttt<a href=\\\"https:\\/\\/facebook.com\\/sahabafood1\\\">ntttttttttttFacebook Pagenttttttttttt<\\/a>nttttttttt<\\/li>ntttttt<\\/ul>\\\"\\\"\"','Thank You (Woo)','','inherit','closed','closed','','1983-revision-v1','','','2026-06-08 21:44:04','2026-06-08 15:44:04','','1983','https://hypergrowth.fishgrowth.xyz/?p=1991','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1992','17','2026-06-08 21:44:06','2026-06-08 15:44:06','','Mehedi Hare Pack','','publish','closed','closed','','mehedi-hare-pack','','','2026-06-08 21:44:06','2026-06-08 15:44:06','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=mehedi-hare-pack','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1993','17','2026-06-08 21:44:06','2026-06-08 15:44:06','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','publish','closed','closed','','sales-landing-26','','','2026-06-08 21:44:06','2026-06-08 15:44:06','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-26/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1994','17','2026-06-08 21:44:06','2026-06-08 15:44:06','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1993-revision-v1','','','2026-06-08 21:44:06','2026-06-08 15:44:06','','1993','https://hypergrowth.fishgrowth.xyz/?p=1994','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1995','17','2026-06-08 21:44:06','2026-06-08 15:44:06','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"819\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ae207ae6-4f6e-4149-ac5c-901975502708.png\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>১০০০+ মানুষের চুল পাকা, চুল পড়া, চুলে খুশকি সমস্যার সমাধান করেছে \"মেহেদী হেয়ার প্যাক\"\n</h2>		\n		<p>চুলের সব সমস্যার সমাধান রয়েছে প্রাকৃতিক মেহেদি মিক্সিং হেয়ার প্যাকে</p>		\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n													<img width=\"819\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ae207ae6-4f6e-4149-ac5c-901975502708.png\" alt=\"\" />													\n			<h2>রাসূলুল্লাহ (সা.) বলেন, যে ব্যক্তি চুলে কালো কলপ ব্যবহার করবে আল্লাহতায়ালা\nকিয়ামতের দিন তার চেহারা কালো করে দিবেন।</h2>		\n			<h5>তুহফাতুল আহওয়াযি: ৫/৩৫৫</h5>		\n			<h2>এই মেহেদি হেয়ার প্যাক ব্যবহার করলে চুলের যে সমস্যার সমাধান হবে</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										চুল পাকা বন্ধ করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										চুল গোড়া শক্তিশালি করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										চুল হেলদি করে।\n									</li>\n						</ul>\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										চুলে মেহেদি দিলে ভালো ঘুম হয়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										চুল সাইনি, সিল্কি করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										অর্ডার করতে ক্লিক করুন\n									</li>\n						</ul>\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>চুল পাকা, চুল পড়া, চুলের খুশকি, চুল রুক্ষ হওয়ার সব সমস্যার যদি প্রাকৃতিক ভাবে সমাধান করতে চান? কোন পার্শ্ব-প্রতিক্রিয়া ছাড়া তাহলে এখনি অর্ডার করুন প্রাকৃতিক মেহেদি মিক্সিং হেয়ার প্যাক।\n</h2>		\n													<img width=\"819\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ae207ae6-4f6e-4149-ac5c-901975502708.png\" alt=\"\" />													\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>কেন আপনার চুলে কলফ ব্যবহার না করে মেহেদি ব্যবহার করা উচিত?</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										কলফ করলে চুল ঝড়ে পড়ে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										কলফ করলে চুল রুক্ষ শুষ্ক হয়ে যায়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										কলফ করলে চুল আরো বেশি পরিমানে পেকে যায়।\n									</li>\n						</ul>\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										চুলে মেহেদি দিলে ভালো ঘুম হয়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										চুল সাইনি, সিল্কি করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										অর্ডার করতে ক্লিক করুন\n									</li>\n						</ul>\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>আমাদের থেকে কেন নিবেন?</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										আমরাই প্রথম বাংলাদেশ সমর্পুন ন্যাচারাল গাছের মেহেদি দিচ্ছি\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										আমাদের মেহেদী পাতা গুড়াতে  কোন কেমিক্যাল নেই\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										আমরা শুধু মেহেদি পাতায় দিচ্ছি না এর সাথে প্রাকৃতিক শিকাকাই, আমলকি গুড়া মিক্সিং করে  দিচ্ছি\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										আমাদের হেয়ার প্যাকটি নিরাপদ হালাল এবং শতশত কাস্টমার এই হেয়ার প্যাক ব্যবহার করে উপকার পাচ্ছে \n									</li>\n						</ul>\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>শত শত মানুষের উপকার পাওয়ার রিভিউ আমাদের ফেসবুক পেইজে আছে। তার মধ্যে থেকে কিছু রিভিউ এখানে দেয়া হলঃ</h2>		\n													<img width=\"1024\" height=\"683\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/a1ff130e-64cc-495f-bbb2-34ee8b7c01ed.png\" alt=\"\" />													\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">		<h3>\n					৪০০ গ্রামের রেগুলার মূল্য\n					১২০০\n					টাকা\n					</h3>\n			<h2>অফার মূল্য ৮৫০ টাকা</h2>		\n			<h2>(ফ্রি হোম ডেলিভারি!!)</h2>		\n			<h2>অর্ডার করতে নিচের ফর্মে আপনার নাম, পূর্ণ ঠিকানা এবং মোবাইল নাম্বার লিখুন। <br>তারপর নিচে Order Now বাটনে ক্লিক করে আপনার অর্ডারটি সম্পন্ন করুন।</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নাম&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><input type=\"hidden\" id=\"billing_country\" name=\"billing_country\" value=\"BD\" /> <p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">ঠিকানা&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_billing__________new_field_field\" data-priority=\"50\"><label for=\"billing_billing__________new_field\">নতুন ফিল্ড&nbsp;(optional)</label><input type=\"text\" name=\"billing_billing__________new_field\" id=\"billing_billing__________new_field\" placeholder=\"\"  value=\"\"  /></p><input type=\"hidden\" id=\"billing_city\" name=\"billing_city\" value=\"Dhaka\" /> <input type=\"hidden\" id=\"billing_state\" name=\"billing_state\" value=\"BD-02\" /> <p id=\"billing_postcode_field\" data-priority=\"90\"><label for=\"billing_postcode\">Postcode / ZIP&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_postcode\" id=\"billing_postcode\" placeholder=\"\"  value=\"8700\" autocomplete=\"postal-code\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">মোবাইল নাম্বার&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"1992\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"1995\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780986456\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n			<h2> Copyright © 2024  Busness Name | This website made with ❤️ by <a href=\"https://itgalaxi.com/\" style=\"color:red\"><b> The Smart Way</b></a></h2>','Checkout (Woo)','','publish','closed','closed','','checkout-woo-29','','','2026-06-09 12:27:36','2026-06-09 06:27:36','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-29/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1996','17','2026-06-08 21:44:10','2026-06-08 15:44:10','','mille','','publish','closed','closed','','mille','','','2026-06-08 21:44:10','2026-06-08 15:44:10','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=mille','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1997','17','2026-06-08 21:44:11','2026-06-08 15:44:11','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','publish','closed','closed','','sales-landing-27','','','2026-06-08 21:44:11','2026-06-08 15:44:11','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-27/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1998','17','2026-06-08 21:44:11','2026-06-08 15:44:11','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','1997-revision-v1','','','2026-06-08 21:44:11','2026-06-08 15:44:11','','1997','https://hypergrowth.fishgrowth.xyz/?p=1998','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('1999','17','2026-06-08 21:44:11','2026-06-08 15:44:11','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1448\" height=\"1086\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Rosemary Mint Scalp & Hair Strengthening Oil</h2>		\n		<p><strong>Rosemary:</strong> Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\" alt=\"6bc023ee-89a7-49f0-9c6d-b49eee2fb990\" /></figure><figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/e956d34a-1cbf-46e3-a049-ab86322c876a.png\" alt=\"e956d34a-1cbf-46e3-a049-ab86322c876a\" /></figure>			\n													<img width=\"819\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/e956d34a-1cbf-46e3-a049-ab86322c876a.png\" alt=\"\" />													\n			<h2>Use for daily hair care or specialized scalp treatments</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n													<img width=\"1024\" height=\"768\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\" alt=\"\" />													\n			<h2>Features more than 30 essential oils and extracts\n</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n													<img width=\"819\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/e956d34a-1cbf-46e3-a049-ab86322c876a.png\" alt=\"\" />													\n			<h2>Helps improve length retention\n</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n			<h2>Call if necessary or click the button below to call</h2>		\n			<a href=\"https://wa.me/+8801819000000\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\"></path></svg>			\n									+971 50 278 0363\n					</a>\n			<h2>Why take from us?</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} authentic product\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Our products will stop your hair loss\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Helps in hair growth\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Infused with Biotin\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Features more than 30 essential oils and extracts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Delivery is free all over the UAE\n									</li>\n						</ul>\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n			<h2>Key Ingredients:\n</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										Rosemary: Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										Mint: Invigorates scalp\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										Biotin: Nourishes hair follicles, improving strength, and elasticity. Glycine Soja (Soybean) Oil, Ricinus Communis (Castor) Seed Oil, Rosmarinus Officinalis (Rosemary) Leaf Oil, Simmondsia Chinensis (Jojoba) Seed Oil, Mentha Piperita (Peppermint) Oil, Eucalyptus Globolus (Eucalyptus) Leaf Oil, Menthol, Melalueca Alternifolia (Tea Tree) Leaf Oil, Cocos Nucifera (Coconut) Oil, Equisetum Arvense (Horsetail) Extract, Aloe Barbadensis Extract, Lavandula Angustifolia (Lavender) Oil, Triticum Vulgare (Wheat) Germ Oil, Carthamus Tinctorius (Safflower) Seed Oil, Oenothera Biennis (Evening Primrose) Oil, Vitis Vinifera (Grape) Seed Oil, Benzyl Nicotinate, Prunus Amygdalus Dulcis (Sweet Almond) Oil, Oryza Sativa (Rice) Bran Oil, Tocopheryl Acetate, Biotin, Arctium Lappa (Burdock) Root Extract, Glycerin, Apium Graveolens (Celery) Seed Extract, Cholecalciferol (Vitamin D), Ascorbic Acid, Ocimum, Basilicum (Basil) Oil, Pogostemon Cablin (Patchouli) Oil, Salvia Officinalis (Sage) Oil, Silica, Urtica Dioica (Nettle) Extract\n									</li>\n						</ul>\n			<h2>Reviews of respected customers</h2>		\n													<img width=\"1024\" height=\"768\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\" alt=\"\" />													\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n			<h2>Fill the form below to order</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n	<h3 id=\"your_products_heading\"> Determine the quantity </h3>\n	<input type=\"radio\"\n	id=\"wcf-item-product-2123\"\n	name=\"wcf-single-sel\"\n	value=\"2123\"\n	>\n	<label for=\"wcf-item-product-2123\"></label>\n	<img width=\"300\" height=\"232\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/01.png\" alt=\"\" />\ntest Product1\n		&minus;\n		<input autocomplete=\"off\" type=\"number\" value=\"1\" step=\"1\" min=\"1\" name=\"wcf_qty_selection\" placeholder=\"1\" data-sale-limit=\"false\"  title=\"\"  >\n		&plus;\n	&#2547;&nbsp;900\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">Your Name&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"Your Name\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><input type=\"hidden\" id=\"billing_country\" name=\"billing_country\" value=\"BD\" /> <p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">City &amp; Area&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"City &amp; Area\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><input type=\"hidden\" id=\"billing_city\" name=\"billing_city\" value=\"Dhaka\" /> <input type=\"hidden\" id=\"billing_state\" name=\"billing_state\" value=\"BD-02\" /> <p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">Your phone number&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"Your phone number\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"1996\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"1999\">\n		<h3>Shipping</h3>\n							<ul id=\"shipping_method\">\n											<li>\n							<input type=\"hidden\" name=\"shipping_method[0]\" data-index=\"0\" id=\"wcf_shipping_method_0_free_shipping3\" value=\"free_shipping:3\" /><label for=\"wcf_shipping_method_0_free_shipping3\">Free shipping</label>						</li>\n									</ul>\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780986515\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n						<tr>\n					<td>\n						test Product&nbsp;						 <strong>&times;&nbsp;1</strong>											</td>\n					<td>\n						<bdi>&#2547;&nbsp;900</bdi>					</td>\n				</tr>\n					</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;900</bdi></td>\n		</tr>\n						<tr>\n	<th>Shipping</th>\n	<td data-title=\"Shipping\">\n					<ul id=\"shipping_method\">\n									<li>\n						<input type=\"hidden\" name=\"shipping_method[0]\" data-index=\"0\" id=\"shipping_method_0_free_shipping3\" value=\"free_shipping:3\" /><label for=\"shipping_method_0_free_shipping3\">Free shipping</label>					</li>\n							</ul>\n			</td>\n</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;900</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\n			<ul>\n			<li>\n	<input id=\"payment_method_cod\" type=\"radio\" name=\"payment_method\" value=\"cod\"  checked=\'checked\' 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&nbsp;&nbsp;&#2547;&nbsp;900\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;900\">Place Order&nbsp;&nbsp;&#2547;&nbsp;900</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n			<h2>Delivery is free all over the UAE</h2>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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>		\n		<p>Copyright © 2024 Your Busness Name | This website made with ❤️ by itgalaxi</p>','Checkout (Woo)','','publish','closed','closed','','checkout-woo-30','','','2026-06-09 12:28:35','2026-06-09 06:28:35','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-30/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2000','17','2026-06-08 21:44:11','2026-06-08 15:44:11','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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>Rosemary Mint Scalp & Hair Strengthening Oil<\\/h2>ttntt<p><strong>Rosemary:<\\/strong>u00a0Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.<\\/p>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>ttntttttttt<figure><img src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/Pink-Minimalist-Podium-Lipstick-Display-Instagram-Post.webp\\\" alt=\\\"Pink Minimalist Podium Lipstick Display Instagram Post\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/Red-and-Pink-Cute-Beauty-Serum-Instagram-Post.webp\\\" alt=\\\"Red and Pink Cute Beauty Serum Instagram Post\\\" \\/><\\/figure>tttnttttttttttttttt<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/Red-and-Pink-Cute-Beauty-Serum-Instagram-Post-1024x1024.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/Red-and-Pink-Cute-Beauty-Serum-Instagram-Post.webp?resize=1024{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1024&amp;ssl=1 1024w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/Red-and-Pink-Cute-Beauty-Serum-Instagram-Post.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/Red-and-Pink-Cute-Beauty-Serum-Instagram-Post.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/Red-and-Pink-Cute-Beauty-Serum-Instagram-Post.webp?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C768&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/Red-and-Pink-Cute-Beauty-Serum-Instagram-Post.webp?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C600&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/Red-and-Pink-Cute-Beauty-Serum-Instagram-Post.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/Red-and-Pink-Cute-Beauty-Serum-Instagram-Post.webp?w=1080&amp;ssl=1 1080w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttttnttt<h2>Use for daily hair care or specialized scalp treatments<\\/h2>ttnttt<a href=\\\"#order\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>tttnttttttOrder Now nttttt<\\/a>nttttttttttttttt<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/White-and-Pink-Modern-New-Product-Serum-Sale-Instagram-Post-1024x1024.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/White-and-Pink-Modern-New-Product-Serum-Sale-Instagram-Post.webp?resize=1024{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1024&amp;ssl=1 1024w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/White-and-Pink-Modern-New-Product-Serum-Sale-Instagram-Post.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/White-and-Pink-Modern-New-Product-Serum-Sale-Instagram-Post.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/White-and-Pink-Modern-New-Product-Serum-Sale-Instagram-Post.webp?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C768&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/White-and-Pink-Modern-New-Product-Serum-Sale-Instagram-Post.webp?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C600&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/White-and-Pink-Modern-New-Product-Serum-Sale-Instagram-Post.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/White-and-Pink-Modern-New-Product-Serum-Sale-Instagram-Post.webp?w=1080&amp;ssl=1 1080w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttttnttt<h2>Features more than 30 essential oils and extractsn<\\/h2>ttnttt<a href=\\\"#order\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>tttnttttttOrder Now nttttt<\\/a>nttttttttttttttt<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/Pink-Minimalist-Podium-Lipstick-Display-Instagram-Post-1024x1024.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/Pink-Minimalist-Podium-Lipstick-Display-Instagram-Post.webp?resize=1024{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C1024&amp;ssl=1 1024w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/Pink-Minimalist-Podium-Lipstick-Display-Instagram-Post.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/Pink-Minimalist-Podium-Lipstick-Display-Instagram-Post.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/Pink-Minimalist-Podium-Lipstick-Display-Instagram-Post.webp?resize=768{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C768&amp;ssl=1 768w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/Pink-Minimalist-Podium-Lipstick-Display-Instagram-Post.webp?resize=600{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C600&amp;ssl=1 600w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/Pink-Minimalist-Podium-Lipstick-Display-Instagram-Post.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/Pink-Minimalist-Podium-Lipstick-Display-Instagram-Post.webp?w=1080&amp;ssl=1 1080w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttttnttt<h2>Helps improve length retentionn<\\/h2>ttnttt<a href=\\\"#order\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>tttnttttttOrder Now nttttt<\\/a>nttt<h2>Call if necessary or click the button below to call<\\/h2>ttnttt<a href=\\\"https:\\/\\/wa.me\\/+8801819000000\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\\\"><\\/path><\\/svg>tttntttttt+971 50 278 0363nttttt<\\/a>nttt<h2>Why take from us?<\\/h2>ttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">tt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>ttttttntttttttttt100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} authentic productnttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>ttttttnttttttttttOur products will stop your hair lossnttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>ttttttnttttttttttHelps in hair growthnttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>ttttttnttttttttttInfused with Biotinnttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>ttttttnttttttttttFeatures more than 30 essential oils and extractsnttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>ttttttnttttttttttDelivery is free all over the UAEnttttttttt<\\/li>ntttttt<\\/ul>nttt<a href=\\\"#order\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>tttnttttttOrder Now nttttt<\\/a>nttt<h2>Key Ingredients:n<\\/h2>ttnttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttRosemary: Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttMint: Invigorates scalpnttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>ttttttnttttttttttBiotin: Nourishes hair follicles, improving strength, and elasticity. Glycine Soja (Soybean) Oil, Ricinus Communis (Castor) Seed Oil, Rosmarinus Officinalis (Rosemary) Leaf Oil, Simmondsia Chinensis (Jojoba) Seed Oil, Mentha Piperita (Peppermint) Oil, Eucalyptus Globolus (Eucalyptus) Leaf Oil, Menthol, Melalueca Alternifolia (Tea Tree) Leaf Oil, Cocos Nucifera (Coconut) Oil, Equisetum Arvense (Horsetail) Extract, Aloe Barbadensis Extract, Lavandula Angustifolia (Lavender) Oil, Triticum Vulgare (Wheat) Germ Oil, Carthamus Tinctorius (Safflower) Seed Oil, Oenothera Biennis (Evening Primrose) Oil, Vitis Vinifera (Grape) Seed Oil, Benzyl Nicotinate, Prunus Amygdalus Dulcis (Sweet Almond) Oil, Oryza Sativa (Rice) Bran Oil, Tocopheryl Acetate, Biotin, Arctium Lappa (Burdock) Root Extract, Glycerin, Apium Graveolens (Celery) Seed Extract, Cholecalciferol (Vitamin D), Ascorbic Acid, Ocimum, Basilicum (Basil) Oil, Pogostemon Cablin (Patchouli) Oil, Salvia Officinalis (Sage) Oil, Silica, Urtica Dioica (Nettle) Extractnttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>Reviews of respected customers<\\/h2>ttnttt<a href=\\\"#order\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>tttnttttttOrder Now nttttt<\\/a>nttt<h2>Fill the form below to order<\\/h2>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Determine the quantity <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1932\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1932\\\"nt>nt<label for=\\\"wcf-item-product-1932\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nProduct1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;990.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">Your Name&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"Your Name\\\"  value=\\\"\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">City &amp; Area&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"City &amp; Area\\\"  value=\\\"\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_address_2_field\\\" data-priority=\\\"60\\\"><label for=\\\"billing_address_2\\\">Building Name &amp; Room Number&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_2\\\" id=\\\"billing_address_2\\\" placeholder=\\\"Building Name &amp; Room Number\\\"  value=\\\"\\\" autocomplete=\\\"address-line2\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">Your phone number&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"Your phone number\\\"  value=\\\"\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"1913\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"1916\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716444264\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttProduct&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;990.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_bacs\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"bacs\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_bacs\\\">nttDirect bank transfer t<\\/label>nttt<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>nt<\\/li>n<li>nt<input id=\\\"payment_method_cheque\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cheque\\\"  data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cheque\\\">nttCheck payments t<\\/label>nttt<p>Please send a check to Store Name, Store Street, Store Town, Store State \\/ County, Store Postcode.<\\/p>nt<\\/li>n<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"11dbe5f550\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2>Delivery is free all over the UAE<\\/h2>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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>ttntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\"','Checkout (Woo)','','inherit','closed','closed','','1999-revision-v1','','','2026-06-08 21:44:11','2026-06-08 15:44:11','','1999','https://hypergrowth.fishgrowth.xyz/?p=2000','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2001','17','2026-06-08 21:44:26','2026-06-08 15:44:26','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09e7\\u09e6\\u09e6\\u09e6+ \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u099a\\u09c1\\u09b2 \\u09aa\\u09be\\u0995\\u09be, \\u099a\\u09c1\\u09b2 \\u09aa\\u09dc\\u09be, \\u099a\\u09c1\\u09b2\\u09c7 \\u0996\\u09c1\\u09b6\\u0995\\u09bf \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u0995\\u09b0\\u09c7\\u099b\\u09c7 \\\"\\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09c0 \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\\"\\n<\\/h2>\\t\\t\\n\\t\\t<p>\\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u09b8\\u09ac \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09ae\\u09bf\\u0995\\u09cd\\u09b8\\u09bf\\u0982 \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"682\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-04-at-10.27.30-AM-1024x682-1.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-04-at-10.27.30-AM-1024x682-1.jpeg 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-04-at-10.27.30-AM-1024x682-1-300x200.jpeg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-04-at-10.27.30-AM-1024x682-1-768x512.jpeg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-04-at-10.27.30-AM-1024x682-1-600x400.jpeg 600w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u09b0\\u09be\\u09b8\\u09c2\\u09b2\\u09c1\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 (\\u09b8\\u09be.) \\u09ac\\u09b2\\u09c7\\u09a8, \\u09af\\u09c7 \\u09ac\\u09cd\\u09af\\u0995\\u09cd\\u09a4\\u09bf \\u099a\\u09c1\\u09b2\\u09c7 \\u0995\\u09be\\u09b2\\u09cb \\u0995\\u09b2\\u09aa \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7 \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09a4\\u09be\\u09df\\u09be\\u09b2\\u09be\\n\\u0995\\u09bf\\u09df\\u09be\\u09ae\\u09a4\\u09c7\\u09b0 \\u09a6\\u09bf\\u09a8 \\u09a4\\u09be\\u09b0 \\u099a\\u09c7\\u09b9\\u09be\\u09b0\\u09be \\u0995\\u09be\\u09b2\\u09cb \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h5>\\u09a4\\u09c1\\u09b9\\u09ab\\u09be\\u09a4\\u09c1\\u09b2 \\u0986\\u09b9\\u0993\\u09df\\u09be\\u09af\\u09bf: \\u09eb\\/\\u09e9\\u09eb\\u09eb<\\/h5>\\t\\t\\n\\t\\t\\t<h2>\\u098f\\u0987 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09b2\\u09c7 \\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u09af\\u09c7 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09c1\\u09b2 \\u09aa\\u09be\\u0995\\u09be \\u09ac\\u09a8\\u09cd\\u09a7 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09c1\\u09b2 \\u0997\\u09cb\\u09dc\\u09be \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09bf \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09c1\\u09b2 \\u09b9\\u09c7\\u09b2\\u09a6\\u09bf \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09c1\\u09b2\\u09c7 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09a6\\u09bf\\u09b2\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb \\u0998\\u09c1\\u09ae \\u09b9\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09c1\\u09b2 \\u09b8\\u09be\\u0987\\u09a8\\u09bf, \\u09b8\\u09bf\\u09b2\\u09cd\\u0995\\u09bf \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u099a\\u09c1\\u09b2 \\u09aa\\u09be\\u0995\\u09be, \\u099a\\u09c1\\u09b2 \\u09aa\\u09dc\\u09be, \\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u0996\\u09c1\\u09b6\\u0995\\u09bf, \\u099a\\u09c1\\u09b2 \\u09b0\\u09c1\\u0995\\u09cd\\u09b7 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09ac \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u09af\\u09a6\\u09bf \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09be\\u09a7\\u09be\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u09a8? \\u0995\\u09cb\\u09a8 \\u09aa\\u09be\\u09b0\\u09cd\\u09b6\\u09cd\\u09ac-\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u0995\\u09cd\\u09b0\\u09bf\\u09df\\u09be \\u099b\\u09be\\u09dc\\u09be \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u098f\\u0996\\u09a8\\u09bf \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09ae\\u09bf\\u0995\\u09cd\\u09b8\\u09bf\\u0982 \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"682\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-04-at-10.27.30-AM-1024x682-1.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-04-at-10.27.30-AM-1024x682-1.jpeg 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-04-at-10.27.30-AM-1024x682-1-300x200.jpeg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-04-at-10.27.30-AM-1024x682-1-768x512.jpeg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-02-04-at-10.27.30-AM-1024x682-1-600x400.jpeg 600w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0995\\u09c7\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099a\\u09c1\\u09b2\\u09c7 \\u0995\\u09b2\\u09ab \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09a8\\u09be \\u0995\\u09b0\\u09c7 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u0989\\u099a\\u09bf\\u09a4?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09b2\\u09ab \\u0995\\u09b0\\u09b2\\u09c7 \\u099a\\u09c1\\u09b2 \\u099d\\u09dc\\u09c7 \\u09aa\\u09dc\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09b2\\u09ab \\u0995\\u09b0\\u09b2\\u09c7 \\u099a\\u09c1\\u09b2 \\u09b0\\u09c1\\u0995\\u09cd\\u09b7 \\u09b6\\u09c1\\u09b7\\u09cd\\u0995 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09b2\\u09ab \\u0995\\u09b0\\u09b2\\u09c7 \\u099a\\u09c1\\u09b2 \\u0986\\u09b0\\u09cb \\u09ac\\u09c7\\u09b6\\u09bf \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8\\u09c7 \\u09aa\\u09c7\\u0995\\u09c7 \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09c1\\u09b2\\u09c7 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09a6\\u09bf\\u09b2\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb \\u0998\\u09c1\\u09ae \\u09b9\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09c1\\u09b2 \\u09b8\\u09be\\u0987\\u09a8\\u09bf, \\u09b8\\u09bf\\u09b2\\u09cd\\u0995\\u09bf \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6 \\u09b8\\u09ae\\u09b0\\u09cd\\u09aa\\u09c1\\u09a8 \\u09a8\\u09cd\\u09af\\u09be\\u099a\\u09be\\u09b0\\u09be\\u09b2 \\u0997\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09c0 \\u09aa\\u09be\\u09a4\\u09be \\u0997\\u09c1\\u09a1\\u09bc\\u09be\\u09a4\\u09c7  \\u0995\\u09cb\\u09a8 \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u09a8\\u09c7\\u0987\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09b0\\u09be \\u09b6\\u09c1\\u09a7\\u09c1 \\u09ae\\u09c7\\u09b9\\u09c7\\u09a6\\u09bf \\u09aa\\u09be\\u09a4\\u09be\\u09af\\u09bc \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u09a8\\u09be \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09b6\\u09bf\\u0995\\u09be\\u0995\\u09be\\u0987, \\u0986\\u09ae\\u09b2\\u0995\\u09bf \\u0997\\u09c1\\u09a1\\u09bc\\u09be \\u09ae\\u09bf\\u0995\\u09cd\\u09b8\\u09bf\\u0982 \\u0995\\u09b0\\u09c7  \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u09c7\\u09df\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u099f\\u09bf \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09b9\\u09be\\u09b2\\u09be\\u09b2 \\u098f\\u09ac\\u0982 \\u09b6\\u09a4\\u09b6\\u09a4 \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u098f\\u0987 \\u09b9\\u09c7\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u0989\\u09aa\\u0995\\u09be\\u09b0 \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09b6\\u09a4 \\u09b6\\u09a4 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0 \\u09aa\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u0987\\u099c\\u09c7 \\u0986\\u099b\\u09c7\\u0964 \\u09a4\\u09be\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09bf\\u099b\\u09c1 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989 \\u098f\\u0996\\u09be\\u09a8\\u09c7 \\u09a6\\u09c7\\u09df\\u09be \\u09b9\\u09b2\\u0983<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-3-1-1.jpg\\\" alt=\\\"cl-rev-3-1-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-5-1-2.jpg\\\" alt=\\\"cl-rev-5-1-2.jpg\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09ea\\u09e6\\u09e6 \\u0997\\u09cd\\u09b0\\u09be\\u09ae\\u09c7\\u09b0 \\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\n\\t\\t\\t\\t\\t\\u09e7\\u09e8\\u09e6\\u09e6\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h2>\\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09ee\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<h2>(\\u09ab\\u09cd\\u09b0\\u09bf \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf!!)<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 <br>\\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Order Now \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_last_name_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_last_name\\\">Last name&nbsp;<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_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_company_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_company\\\">Company name&nbsp;(optional)<\\/label><input type=\\\"text\\\" name=\\\"billing_company\\\" id=\\\"billing_company\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"organization\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_billing__________new_field_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_billing__________new_field\\\">\\u09a8\\u09a4\\u09c1\\u09a8 \\u09ab\\u09bf\\u09b2\\u09cd\\u09a1&nbsp;(optional)<\\/label><input type=\\\"text\\\" name=\\\"billing_billing__________new_field\\\" id=\\\"billing_billing__________new_field\\\" placeholder=\\\"\\\"  value=\\\"\\\"  \\/><\\/p><p id=\\\"billing_address_2_field\\\" data-priority=\\\"60\\\"><label for=\\\"billing_address_2\\\">Apartment, suite, unit, etc.&nbsp;(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&nbsp;<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&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_state\\\" id=\\\"billing_state\\\" autocomplete=\\\"address-level1\\\" data-placeholder=\\\"Select an option&hellip;\\\"  data-input-classes=\\\"\\\" data-label=\\\"State\\\">\\n\\t\\t\\t\\t\\t\\t<option value=\\\"\\\">Select an option&hellip;<\\/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&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_postcode\\\" id=\\\"billing_postcode\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"postal-code\\\" \\/><\\/p><p id=\\\"billing_email_field\\\" data-priority=\\\"110\\\"><label for=\\\"billing_email\\\">Email address&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"email\\\" name=\\\"billing_email\\\" id=\\\"billing_email\\\" placeholder=\\\"\\\"  value=\\\"admin@thesmartway.xyz\\\" autocomplete=\\\"email\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"449\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"452\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717962558\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','inherit','closed','closed','','1995-revision-v1','','','2026-06-08 21:44:26','2026-06-08 15:44:26','','1995','https://hypergrowth.fishgrowth.xyz/?p=2001','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2002','17','2026-06-08 21:44:41','2026-06-08 15:44:41','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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>u09a7u09a8u09cdu09afu09acu09beu09a6, u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2 u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h2>ttntt<p>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09bfu09b0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7u0964<\\/p>ttnttt<p>No completed or processing order found to show the order details form demo.<\\/p>ttnttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/h2>\\\"\"','Thank You (Woo)','','publish','closed','closed','','thank-you-woo-24','','','2026-06-08 21:44:41','2026-06-08 15:44:41','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-24/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2003','17','2026-06-08 21:44:41','2026-06-08 15:44:41','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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>u09a7u09a8u09cdu09afu09acu09beu09a6, u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2 u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h2>ttntt<p>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09bfu09b0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7u0964<\\/p>ttnttt<p>No completed or processing order found to show the order details form demo.<\\/p>ttnttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/h2>\\\"\"','Thank You (Woo)','','inherit','closed','closed','','2002-revision-v1','','','2026-06-08 21:44:41','2026-06-08 15:44:41','','2002','https://hypergrowth.fishgrowth.xyz/?p=2003','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2004','17','2026-06-08 21:44:51','2026-06-08 15:44:51','\"\\\"\\\"<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<p>u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u09b8u09aeu09cdu09aau09a8u09cdu09a8 u09b9u09dfu09c7u099bu09c7u0964 u0986u09aeu09beu09a6u09c7u09b0 u098fu0995u099cu09a8 u09aau09cdu09b0u09a4u09bfu09a8u09bfu09a7u09bf u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u0995u09a5u09be u09acu09b2u09c7 u0986u09aau09a8u09beu0995u09c7 u09acu09bfu09b8u09cdu09a4u09beu09b0u09bfu09a4 u099cu09beu09a8u09bfu09dfu09c7 u09a6u09bfu09acu09c7u09a8<\\/p>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>1234<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 17, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@foodheavenbd.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;690.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttu09b8u09c1u09b8u09cdu09acu09beu09a6u09c1 u0986u09ae u09ea u0995u09c7u099cu09bf <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;690.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;690.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;690.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Bargunanttttt<p>+8801713318648<\\/p>nttttt<p>admin@foodheavenbd.com<\\/p>nttt<\\/address>n<\\/section>nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\\" style=\\\"color:red\\\">itgalaxi<\\/a><\\/h2>\\\"\\\"\"','Thank You (Woo)','','publish','closed','closed','','thank-you-woo-25','','','2026-06-08 21:44:51','2026-06-08 15:44:51','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-25/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2005','17','2026-06-08 21:44:51','2026-06-08 15:44:51','\"\\\"\\\"<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<p>u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u09b8u09aeu09cdu09aau09a8u09cdu09a8 u09b9u09dfu09c7u099bu09c7u0964 u0986u09aeu09beu09a6u09c7u09b0 u098fu0995u099cu09a8 u09aau09cdu09b0u09a4u09bfu09a8u09bfu09a7u09bf u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u0995u09a5u09be u09acu09b2u09c7 u0986u09aau09a8u09beu0995u09c7 u09acu09bfu09b8u09cdu09a4u09beu09b0u09bfu09a4 u099cu09beu09a8u09bfu09dfu09c7 u09a6u09bfu09acu09c7u09a8<\\/p>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>1234<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 17, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@foodheavenbd.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;690.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttu09b8u09c1u09b8u09cdu09acu09beu09a6u09c1 u0986u09ae u09ea u0995u09c7u099cu09bf <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;690.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;690.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;690.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Bargunanttttt<p>+8801713318648<\\/p>nttttt<p>admin@foodheavenbd.com<\\/p>nttt<\\/address>n<\\/section>nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\\" style=\\\"color:red\\\">itgalaxi<\\/a><\\/h2>\\\"\\\"\"','Thank You (Woo)','','inherit','closed','closed','','2004-revision-v1','','','2026-06-08 21:44:51','2026-06-08 15:44:51','','2004','https://hypergrowth.fishgrowth.xyz/?p=2005','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2006','17','2026-06-08 21:44:51','2026-06-08 15:44:51','\"\\\"\\\"<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/mangorajbd.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> u09b9u09bfu09aeu09b8u09beu0997u09b0 <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1282\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1282\\\"nt>nt<label for=\\\"wcf-item-product-1282\\\"><\\/label>nt<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/2474edc1-3fe7-4316-bec5-98c4e21ab2ea_11zon-800x800.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/2474edc1-3fe7-4316-bec5-98c4e21ab2ea_11zon-800x800.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/2474edc1-3fe7-4316-bec5-98c4e21ab2ea_11zon-150x150.webp 150w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/2474edc1-3fe7-4316-bec5-98c4e21ab2ea_11zon-100x100.webp 100w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>nu09b9u09bfu09aeu09b8u09beu0997u09b0 u09e7u09e6 u0995u09c7u099cu09bf u09e7u09e6u09e6 u099fu09beu0995u09be u09e8u09e6 u0995u09c7u099cu09bf u09e8u09e6 u099fu09beu0995u09be1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;950.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae u09b2u09bfu0996u09c1u09a8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"u0986u09aau09a8u09beu09b0 u09a8u09beu09ae u09b2u09bfu0996u09c1u09a8\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09aeu09cbu09acu09beu0987u09b2 u09a8u09beu09aeu09cdu09acu09beu09b0 u09b2u09bfu0996u09c1u09a8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"u0986u09aau09a8u09beu09b0 u09aeu09cbu09acu09beu0987u09b2 u09a8u09beu09aeu09cdu09acu09beu09b0 u09b2u09bfu0996u09c1u09a8\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"60\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be u09b2u09bfu0996u09c1u09a8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be u09b2u09bfu0996u09c1u09a8\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"1210\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"1301\\\">ntt<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716720711\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttu09b9u09bfu09aeu09b8u09beu0997u09b0 u09e7u09e6 u0995u09c7u099cu09bf u09e7u09e6u09e6 u099fu09beu0995u09be u09e8u09e6 u0995u09c7u099cu09bf u09e8u09e6 u099fu09beu0995u09be&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;950.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;950.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;950.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;950.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;950.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;950.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"1fe9a146b9\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->\\\"\\\"\"','হিমসাগর','','publish','closed','closed','','{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c0','','','2026-06-08 21:44:52','2026-06-08 15:44:52','','0','https://hypergrowth.fishgrowth.xyz/step/{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}e0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}a6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}b9{b979c83bd9','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2007','17','2026-06-08 21:44:51','2026-06-08 15:44:51','\"\\\"\\\"<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<p>u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u09b8u09aeu09cdu09aau09a8u09cdu09a8 u09b9u09dfu09c7u099bu09c7u0964 u0986u09aeu09beu09a6u09c7u09b0 u098fu0995u099cu09a8 u09aau09cdu09b0u09a4u09bfu09a8u09bfu09a7u09bf u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u0995u09a5u09be u09acu09b2u09c7 u0986u09aau09a8u09beu0995u09c7 u09acu09bfu09b8u09cdu09a4u09beu09b0u09bfu09a4 u099cu09beu09a8u09bfu09dfu09c7 u09a6u09bfu09acu09c7u09a8<\\/p>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>341<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>March 21, 2024<\\/strong>ntttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>3,150.00&#2547;&nbsp;<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttTiibaby rocking chair with music and vibration <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>3,150.00&#2547;&nbsp;<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>3,150.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Shipping:<\\/th>nttttttt<td>Free shipping<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>3,150.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>nttt<h2>Copyright u00a9 2024 Your Business Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\" style=\\\"color:red\\\">DPW<\\/a><\\/h2>\\\"\\\"\"','Thank You (Woo)','','publish','closed','closed','','thank-you-woo-26','','','2026-06-08 21:44:51','2026-06-08 15:44:51','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-26/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2008','17','2026-06-08 21:44:51','2026-06-08 15:44:51','\"\\\"\\\"<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<p>u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u09b8u09aeu09cdu09aau09a8u09cdu09a8 u09b9u09dfu09c7u099bu09c7u0964 u0986u09aeu09beu09a6u09c7u09b0 u098fu0995u099cu09a8 u09aau09cdu09b0u09a4u09bfu09a8u09bfu09a7u09bf u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u0995u09a5u09be u09acu09b2u09c7 u0986u09aau09a8u09beu0995u09c7 u09acu09bfu09b8u09cdu09a4u09beu09b0u09bfu09a4 u099cu09beu09a8u09bfu09dfu09c7 u09a6u09bfu09acu09c7u09a8<\\/p>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>341<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>March 21, 2024<\\/strong>ntttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>3,150.00&#2547;&nbsp;<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttTiibaby rocking chair with music and vibration <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>3,150.00&#2547;&nbsp;<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>3,150.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Shipping:<\\/th>nttttttt<td>Free shipping<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>3,150.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>nttt<h2>Copyright u00a9 2024 Your Business Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\" style=\\\"color:red\\\">DPW<\\/a><\\/h2>\\\"\\\"\"','Thank You (Woo)','','inherit','closed','closed','','2007-revision-v1','','','2026-06-08 21:44:51','2026-06-08 15:44:51','','2007','https://hypergrowth.fishgrowth.xyz/?p=2008','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2009','17','2026-06-08 21:44:52','2026-06-08 15:44:52','\"\\\"\\\"<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/mangorajbd.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> u09b9u09bfu09aeu09b8u09beu0997u09b0 <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1282\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1282\\\"nt>nt<label for=\\\"wcf-item-product-1282\\\"><\\/label>nt<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/2474edc1-3fe7-4316-bec5-98c4e21ab2ea_11zon-800x800.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/2474edc1-3fe7-4316-bec5-98c4e21ab2ea_11zon-800x800.webp 800w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/2474edc1-3fe7-4316-bec5-98c4e21ab2ea_11zon-150x150.webp 150w, https:\\/\\/mangorajbd.com\\/wp-content\\/uploads\\/2024\\/05\\/2474edc1-3fe7-4316-bec5-98c4e21ab2ea_11zon-100x100.webp 100w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>nu09b9u09bfu09aeu09b8u09beu0997u09b0 u09e7u09e6 u0995u09c7u099cu09bf u09e7u09e6u09e6 u099fu09beu0995u09be u09e8u09e6 u0995u09c7u099cu09bf u09e8u09e6 u099fu09beu0995u09be1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;950.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae u09b2u09bfu0996u09c1u09a8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"u0986u09aau09a8u09beu09b0 u09a8u09beu09ae u09b2u09bfu0996u09c1u09a8\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09aeu09cbu09acu09beu0987u09b2 u09a8u09beu09aeu09cdu09acu09beu09b0 u09b2u09bfu0996u09c1u09a8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"u0986u09aau09a8u09beu09b0 u09aeu09cbu09acu09beu0987u09b2 u09a8u09beu09aeu09cdu09acu09beu09b0 u09b2u09bfu0996u09c1u09a8\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"60\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be u09b2u09bfu0996u09c1u09a8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be u09b2u09bfu0996u09c1u09a8\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"1210\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"1301\\\">ntt<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716720711\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttu09b9u09bfu09aeu09b8u09beu0997u09b0 u09e7u09e6 u0995u09c7u099cu09bf u09e7u09e6u09e6 u099fu09beu0995u09be u09e8u09e6 u0995u09c7u099cu09bf u09e8u09e6 u099fu09beu0995u09be&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;950.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;950.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;950.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;950.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;950.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;950.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"1fe9a146b9\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->\\\"\\\"\"','হিমসাগর','','inherit','closed','closed','','2006-revision-v1','','','2026-06-08 21:44:52','2026-06-08 15:44:52','','2006','https://hypergrowth.fishgrowth.xyz/?p=2009','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2010','17','2026-06-08 21:44:54','2026-06-08 15:44:54','','Moringa Powder','','publish','closed','closed','','moringa-powder','','','2026-06-08 21:44:54','2026-06-08 15:44:54','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=moringa-powder','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2011','17','2026-06-08 21:44:54','2026-06-08 15:44:54','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','publish','closed','closed','','sales-landing-28','','','2026-06-08 21:44:54','2026-06-08 15:44:54','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-28/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2012','17','2026-06-08 21:44:54','2026-06-08 15:44:54','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','2011-revision-v1','','','2026-06-08 21:44:54','2026-06-08 15:44:54','','2011','https://hypergrowth.fishgrowth.xyz/?p=2012','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2013','17','2026-06-08 21:44:54','2026-06-08 15:44:54','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be  \\u0986\\u09aa\\u09a8\\u09bf \\u0993 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b6\\u09bf\\u09b6\\u09c1\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u201c\\u09b8\\u09c1\\u09aa\\u09be\\u09b0\\u09ab\\u09c1\\u09a1\\u201d<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be \\u098f\\u0995\\u099f\\u09be \\u09b8\\u09c1\\u09aa\\u09be\\u09b0\\u09ab\\u09c1\\u09a1, \\u098f\\u099f\\u09bf\\u0995\\u09c7 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u09b0 \\u0986\\u09a7\\u09be\\u09b0\\u0993 \\u09ac\\u09b2\\u09be \\u09b9\\u09df\\u0964 \\u098f\\u099f\\u09be \\u09b9\\u09b0\\u09ae\\u09cb\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09b2\\u09c7\\u09a8\\u09cd\\u09b8, \\u09a1\\u09be\\u0987\\u099c\\u09c7\\u09b6\\u09a8 \\u0993 \\u09ae\\u09c7\\u099f\\u09be\\u09ac\\u09b2\\u09bf\\u099c\\u09ae\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u099f\\u09be \\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u0993 \\u099a\\u09c1\\u09b2\\u09c7\\u0993 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0985\\u09a8\\u09c7\\u0995 \\u0997\\u09c1\\u09a8\\u0964 <\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=PVtsUmS2TjY\\t\\t\\n\\t\\t\\t<h2>\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09bf\\u09b6\\u09c1\\u09a6\\u09c7\\u09b0 \\u0985\\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09cd\\u09a4\\u09a8\\u09cd\\u09af\\u09a6\\u09be\\u09a8\\u0995\\u09be\\u09b0\\u09c0 \\u09ae\\u09be\\u09df\\u09c7\\u09a6\\u09c7\\u09b0 \\u09ac\\u09c1\\u0995\\u09c7\\u09b0 \\u09a6\\u09c1\\u09a7 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0989\\u099a\\u09cd\\u099a \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b0\\u09c1\\u099a\\u09bf \\u09ab\\u09c7\\u09b0\\u09be\\u09df\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09bf\\u09ae\\u09bf\\u09df\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09a8\\u09cd\\u09a7\\u09a4\\u09cd\\u09ac \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09df\\u09b8\\u09c7\\u09b0 \\u099b\\u09be\\u09aa \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09b8\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t \\u09b9\\u09be\\u09b0\\u09cd\\u099f \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0993\\u099c\\u09a8 \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09bf\\u09a1\\u09a8\\u09bf \\u0993 \\u09b2\\u09bf\\u09ad\\u09be\\u09b0 \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0997\\u09cd\\u09af\\u09be\\u09b8\\u09cd\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09c1\\u09b2 \\u09aa\\u09dc\\u09be \\u09ac\\u09a8\\u09cd\\u09a7 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09c1\\u0996\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u0993 \\u09ae\\u09c7\\u09b8\\u09cd\\u09a4\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/moringa-powder-100-gm.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/moringa-powder-100-gm.webp 1000w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/moringa-powder-100-gm-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/moringa-powder-100-gm-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/moringa-powder-100-gm-768x768.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/moringa-powder-100-gm-600x600.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/moringa-powder-100-gm-100x100.webp 100w\\\" sizes=\\\"(max-width: 1000px) 100vw, 1000px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u0985\\u09a5\\u09ac\\u09be \\u0986\\u09b6\\u09c7\\u09aa\\u09be\\u09b6\\u09c7 \\u0995\\u09cb\\u09a5\\u09be\\u0993 \\u09af\\u09a6\\u09bf \\u09b8\\u099c\\u09a8\\u09c7 \\u0997\\u09be\\u099b \\u09a5\\u09be\\u0995\\u09c7 \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u09b8\\u09c7\\u0996\\u09be\\u09a8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09be\\u09a4\\u09be \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0996\\u09be\\u09a6\\u09cd\\u09af \\u09a4\\u09be\\u09b2\\u09bf\\u0995\\u09be\\u09df \\u098f\\u099f\\u09be \\u09b0\\u09be\\u0996\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u0964 \\u09b8\\u09c7\\u099f\\u09be \\u09b8\\u09ae\\u09cd\\u09ad\\u09ac \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a4\\u09be \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0993 \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be\\u0964 <\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u0996\\u09be\\u09ac\\u09c7\\u09a8 \\u0993 \\u09b6\\u09bf\\u09b6\\u09c1\\u09a6\\u09c7\\u09b0\\u0993 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09ac\\u09c7\\u09a8  <\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ab\\u09b2 \\u0985\\u09a5\\u09ac\\u09be \\u09ab\\u09b2\\u09c7\\u09b0 \\u099c\\u09c1\\u09b8 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09b2 \\u0985\\u09a5\\u09ac\\u09be \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u0995\\u09b0\\u09be \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ad\\u09b0\\u09cd\\u09a4\\u09be \\u09ac\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u09be\\u09b8\\u09b0\\u09bf \\u099c\\u09c1\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09be\\u099b, \\u09ae\\u09be\\u0982\\u09b8 \\u0985\\u09a5\\u09ac\\u09be \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09a4\\u09b0\\u0995\\u09be\\u09b0\\u09c0\\u09a4\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a8\\u09c1\\u09a1\\u09c1\\u09b2\\u09b8 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09a7\\u09c1 \\u09a6\\u09bf\\u09df\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09b2\\u09c7\\u09b0 \\u09ac\\u09dc\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u09c1\\u099f\\u09bf \\u0985\\u09a5\\u09ac\\u09be \\u099a\\u09be\\u09aa\\u099f\\u09bf \\u09ac\\u09be\\u09a8\\u09be\\u09a8\\u09cb\\u09b0 \\u09b8\\u09ae\\u09df \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 <\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09b8\\u09cd\\u09a5\\u09be \\u09b0\\u09be\\u0996\\u09c1\\u09a8 \\u0986\\u09b8\\u09cd\\u09a5\\u09be\\u09df \\u09a5\\u09be\\u0995\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0993 \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09a3\\u09cd\\u09af \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u09ab\\u09c7\\u09b0\\u09a4 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09a4\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0996\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u09a8\\u09bf\\u09df\\u09ae\\u09b8\\u09b9 \\u09b0\\u09c7\\u09b8\\u09bf\\u09aa\\u09bf \\u0985\\u09a8\\u09b2\\u09be\\u0987\\u09a8\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"471\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"474\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717921605\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"93b5769a18\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','publish','closed','closed','','checkout-woo-31','','','2026-06-08 21:44:55','2026-06-08 15:44:55','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-31/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2014','17','2026-06-08 21:44:55','2026-06-08 15:44:55','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be  \\u0986\\u09aa\\u09a8\\u09bf \\u0993 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b6\\u09bf\\u09b6\\u09c1\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u201c\\u09b8\\u09c1\\u09aa\\u09be\\u09b0\\u09ab\\u09c1\\u09a1\\u201d<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be \\u098f\\u0995\\u099f\\u09be \\u09b8\\u09c1\\u09aa\\u09be\\u09b0\\u09ab\\u09c1\\u09a1, \\u098f\\u099f\\u09bf\\u0995\\u09c7 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u09b0 \\u0986\\u09a7\\u09be\\u09b0\\u0993 \\u09ac\\u09b2\\u09be \\u09b9\\u09df\\u0964 \\u098f\\u099f\\u09be \\u09b9\\u09b0\\u09ae\\u09cb\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09b2\\u09c7\\u09a8\\u09cd\\u09b8, \\u09a1\\u09be\\u0987\\u099c\\u09c7\\u09b6\\u09a8 \\u0993 \\u09ae\\u09c7\\u099f\\u09be\\u09ac\\u09b2\\u09bf\\u099c\\u09ae\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u099f\\u09be \\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u0993 \\u099a\\u09c1\\u09b2\\u09c7\\u0993 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u099b\\u09be\\u09dc\\u09be\\u0993 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0985\\u09a8\\u09c7\\u0995 \\u0997\\u09c1\\u09a8\\u0964 <\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=PVtsUmS2TjY\\t\\t\\n\\t\\t\\t<h2>\\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09bf\\u09b6\\u09c1\\u09a6\\u09c7\\u09b0 \\u0985\\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09cd\\u09a4\\u09a8\\u09cd\\u09af\\u09a6\\u09be\\u09a8\\u0995\\u09be\\u09b0\\u09c0 \\u09ae\\u09be\\u09df\\u09c7\\u09a6\\u09c7\\u09b0 \\u09ac\\u09c1\\u0995\\u09c7\\u09b0 \\u09a6\\u09c1\\u09a7 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0989\\u099a\\u09cd\\u099a \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b0\\u09c1\\u099a\\u09bf \\u09ab\\u09c7\\u09b0\\u09be\\u09df\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09bf\\u09ae\\u09bf\\u09df\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09a8\\u09cd\\u09a7\\u09a4\\u09cd\\u09ac \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09df\\u09b8\\u09c7\\u09b0 \\u099b\\u09be\\u09aa \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09b8\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t \\u09b9\\u09be\\u09b0\\u09cd\\u099f \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0993\\u099c\\u09a8 \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09bf\\u09a1\\u09a8\\u09bf \\u0993 \\u09b2\\u09bf\\u09ad\\u09be\\u09b0 \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0997\\u09cd\\u09af\\u09be\\u09b8\\u09cd\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09c1\\u09b2 \\u09aa\\u09dc\\u09be \\u09ac\\u09a8\\u09cd\\u09a7 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09c1\\u0996\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u0993 \\u09ae\\u09c7\\u09b8\\u09cd\\u09a4\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/moringa-powder-100-gm.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/moringa-powder-100-gm.webp 1000w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/moringa-powder-100-gm-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/moringa-powder-100-gm-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/moringa-powder-100-gm-768x768.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/moringa-powder-100-gm-600x600.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/moringa-powder-100-gm-100x100.webp 100w\\\" sizes=\\\"(max-width: 1000px) 100vw, 1000px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u0985\\u09a5\\u09ac\\u09be \\u0986\\u09b6\\u09c7\\u09aa\\u09be\\u09b6\\u09c7 \\u0995\\u09cb\\u09a5\\u09be\\u0993 \\u09af\\u09a6\\u09bf \\u09b8\\u099c\\u09a8\\u09c7 \\u0997\\u09be\\u099b \\u09a5\\u09be\\u0995\\u09c7 \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u09b8\\u09c7\\u0996\\u09be\\u09a8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09be\\u09a4\\u09be \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0996\\u09be\\u09a6\\u09cd\\u09af \\u09a4\\u09be\\u09b2\\u09bf\\u0995\\u09be\\u09df \\u098f\\u099f\\u09be \\u09b0\\u09be\\u0996\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u0964 \\u09b8\\u09c7\\u099f\\u09be \\u09b8\\u09ae\\u09cd\\u09ad\\u09ac \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a4\\u09be \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0993 \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09b8\\u099c\\u09a8\\u09c7 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be\\u0964 <\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u0996\\u09be\\u09ac\\u09c7\\u09a8 \\u0993 \\u09b6\\u09bf\\u09b6\\u09c1\\u09a6\\u09c7\\u09b0\\u0993 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09ac\\u09c7\\u09a8  <\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ab\\u09b2 \\u0985\\u09a5\\u09ac\\u09be \\u09ab\\u09b2\\u09c7\\u09b0 \\u099c\\u09c1\\u09b8 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09b2 \\u0985\\u09a5\\u09ac\\u09be \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u0995\\u09b0\\u09be \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ad\\u09b0\\u09cd\\u09a4\\u09be \\u09ac\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u09be\\u09b8\\u09b0\\u09bf \\u099c\\u09c1\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09be\\u099b, \\u09ae\\u09be\\u0982\\u09b8 \\u0985\\u09a5\\u09ac\\u09be \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09a4\\u09b0\\u0995\\u09be\\u09b0\\u09c0\\u09a4\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a8\\u09c1\\u09a1\\u09c1\\u09b2\\u09b8 \\u098f\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09a7\\u09c1 \\u09a6\\u09bf\\u09df\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09b2\\u09c7\\u09b0 \\u09ac\\u09dc\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u09c1\\u099f\\u09bf \\u0985\\u09a5\\u09ac\\u09be \\u099a\\u09be\\u09aa\\u099f\\u09bf \\u09ac\\u09be\\u09a8\\u09be\\u09a8\\u09cb\\u09b0 \\u09b8\\u09ae\\u09df \\u09ae\\u09bf\\u0995\\u09cd\\u09b8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 <\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09b8\\u09cd\\u09a5\\u09be \\u09b0\\u09be\\u0996\\u09c1\\u09a8 \\u0986\\u09b8\\u09cd\\u09a5\\u09be\\u09df \\u09a5\\u09be\\u0995\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0993 \\u09ac\\u09be\\u099b\\u09be\\u0987\\u0995\\u09c3\\u09a4 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u0997\\u09c1\\u09dc\\u09be\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09a3\\u09cd\\u09af \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09aa\\u09b0\\u09bf\\u09b6\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u09ab\\u09c7\\u09b0\\u09a4 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf\\u09a4\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0996\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u09a8\\u09bf\\u09df\\u09ae\\u09b8\\u09b9 \\u09b0\\u09c7\\u09b8\\u09bf\\u09aa\\u09bf \\u0985\\u09a8\\u09b2\\u09be\\u0987\\u09a8\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"471\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"474\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717921605\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"93b5769a18\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','inherit','closed','closed','','2013-revision-v1','','','2026-06-08 21:44:55','2026-06-08 15:44:55','','2013','https://hypergrowth.fishgrowth.xyz/?p=2014','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2015','17','2026-06-08 21:44:58','2026-06-08 15:44:58','','Moringa Powder 02','','publish','closed','closed','','moringa-powder-02','','','2026-06-08 21:44:58','2026-06-08 15:44:58','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=moringa-powder-02','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2016','17','2026-06-08 21:44:58','2026-06-08 15:44:58','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','publish','closed','closed','','sales-landing-29','','','2026-06-08 21:44:58','2026-06-08 15:44:58','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-29/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2017','17','2026-06-08 21:44:58','2026-06-08 15:44:58','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','2016-revision-v1','','','2026-06-08 21:44:58','2026-06-08 15:44:58','','2016','https://hypergrowth.fishgrowth.xyz/?p=2017','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2018','17','2026-06-08 21:44:58','2026-06-08 15:44:58','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1122\" height=\"1402\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/1aa282a8-e97b-45cb-9fe4-c4e7411a5986.png\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>সজনে পাতার গুড়া  আপনি ও আপনার শিশুর জন্য “সুপারফুড”</h2>		\n			<h2>সজনে পাতা একটা সুপারফুড, এটিকে পুষ্টির আধারও বলা হয়। এটা হরমোন ব্যালেন্স, ডাইজেশন ও মেটাবলিজমে কাজ করে থাকে। এটা স্কিন ও চুলেও কাজ করে। এছাড়াও সজনে পাতার অনেক গুন। </h2>		\n			<a href=\"#order\">\n									অডার করতে চাই\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-9-2026-11_23_18-AM.png\" alt=\"ChatGPT Image Jun 9, 2026, 11_23_18 AM\" /></figure><figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/1aa282a8-e97b-45cb-9fe4-c4e7411a5986.png\" alt=\"1aa282a8-e97b-45cb-9fe4-c4e7411a5986\" /></figure>			\n						<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>					\n						<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>					\n			<h2>সজনে পাতার উপকারিতা</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										শিশুদের অপুষ্টি দূর করে \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										স্তন্যদানকারী মায়েদের বুকের দুধ বৃদ্ধি করে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										উচ্চ রক্তচাপ নিয়ন্ত্রণে রাখে \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										খাবারের রুচি ফেরায়\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										অ্যানিমিয়া দূর করে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										ডায়াবেটিস নিয়ন্ত্রণে রাখে \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										অন্ধত্ব দূর করতে সহায়তা করে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										বয়সের ছাপ দূর করে\n									</li>\n						</ul>\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										ক্যান্সার প্রতিরোধে সাহায্য করে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										 হার্ট ভালো রাখে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										ওজন কমাতে সহায়তা করে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										কিডনি ও লিভার ভালো রাখে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										রোগ প্রতিরোধ ক্ষমতা বৃদ্ধি করে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										গ্যাস্ট্রিক নিয়ন্ত্রণে রাখে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										চুল পড়া বন্ধ করে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										মুখের কালো দাগ ও মেস্তা দূর করে \n									</li>\n						</ul>\n			<h2>আপনার নিজের অথবা আশেপাশে কোথাও যদি সজনে গাছ থাকে তাহলে সেখান থেকে পাতা সংগ্রহ করে নিয়মিত আপনার পরিবারের খাদ্য তালিকায় এটা রাখা প্রয়োজন। সেটা সম্ভব না হলে সজনে পাতার গুড়া সংগ্রহ করে তা খেতে পারেন। আমাদের কাছে পাবেন সম্পূর্ণ প্রাকৃতিক ও বাছাইকৃত সজনে পাতার গুড়া। </h2>		\n													<img width=\"1122\" height=\"1402\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/1aa282a8-e97b-45cb-9fe4-c4e7411a5986.png\" alt=\"\" />													\n			<a href=\"#order\">\n									অডার করতে চাই\n					</a>\n			<h2>কিভাবে খাবেন ও শিশুদেরও খাওয়াবেন  </h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\"></path></svg>						\n										ফল অথবা ফলের জুস এর সাথে মিক্স করে খাওয়াতে পারেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\"></path></svg>						\n										ডাল অথবা রান্না করা যে কোন খাবারের সাথে মিক্স করে দিতে পারেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\"></path></svg>						\n										ভর্তা বানিয়ে খেতে পারেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\"></path></svg>						\n										সরাসরি জুস করে খেতে পারেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\"></path></svg>						\n										মাছ, মাংস অথবা যে কোন তরকারীতে মিক্স করতে পারেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\"></path></svg>						\n										নুডুলস এর সাথে মিক্স করে খাওয়াতে পারেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\"></path></svg>						\n										মধু দিয়ে মিক্স করে খাওয়াতে পারেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\"></path></svg>						\n										ডালের বড়ার সাথে মিক্স করে দিতে পারেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\"></path></svg>						\n										রুটি অথবা চাপটি বানানোর সময় মিক্স করতে পারেন\n									</li>\n						</ul>\n			<h2>প্রয়োজনে কল করুন </h2>		\n			<a href=\"tel:01819000000\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>			\n									01819000000\n					</a>\n			<h2>আস্থা রাখুন আস্থায় থাকুন</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										আমাদের কাছে পাবেন সম্পূর্ণ প্রাকৃতিক ও বাছাইকৃত পাতার গুড়া\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										পণ্য হাতে পেয়ে মূল্য পরিশোধ করতে পারবেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										পছন্দ না হলে ফেরত বা পরিবর্তন করতে পারবেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										সারাদেশে ক্যাশ অন ডেলিভারিতে পণ্য সংগ্রহ করতে পারবেন \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										খাওয়ার নিয়মসহ রেসিপি অনলাইনে প্রদান করা হবে \n									</li>\n						</ul>\n			<h2>অর্ডার করতে নিচের ফর্মটি পূরণ করুন</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<ul role=\"alert\">\n			<li>\n			No product is selected. Please select products from the  checkout meta settings   to continue.		</li>\n	</ul>\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নাম&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">আপনার সম্পূর্ণ ঠিকানা&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"House number and street name\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">আপনার ফোন নাম্বার&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"2015\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"2018\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780985615\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n			<h2> Copyright © 2024  Busness Name | This website made with ❤️ by <a href=\"https://itgalaxi.com/\" style=\"color:red\"><b> The Smart Way</b></a></h2>','Checkout (Woo)','','publish','closed','closed','','checkout-woo-32','','','2026-06-09 12:14:01','2026-06-09 06:14:01','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-32/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2019','17','2026-06-08 21:44:58','2026-06-08 15:44:58','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp 472w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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>u09b8u099cu09a8u09c7 u09aau09beu09a4u09beu09b0 u0997u09c1u09dcu09be  u0986u09aau09a8u09bf u0993 u0986u09aau09a8u09beu09b0 u09b6u09bfu09b6u09c1u09b0 u099cu09a8u09cdu09af u201cu09b8u09c1u09aau09beu09b0u09abu09c1u09a1u201d<\\/h2>ttnttt<h2>u09b8u099cu09a8u09c7 u09aau09beu09a4u09be u098fu0995u099fu09be u09b8u09c1u09aau09beu09b0u09abu09c1u09a1, u098fu099fu09bfu0995u09c7 u09aau09c1u09b7u09cdu099fu09bfu09b0 u0986u09a7u09beu09b0u0993 u09acu09b2u09be u09b9u09dfu0964 u098fu099fu09be u09b9u09b0u09aeu09cbu09a8 u09acu09cdu09afu09beu09b2u09c7u09a8u09cdu09b8, u09a1u09beu0987u099cu09c7u09b6u09a8 u0993 u09aeu09c7u099fu09beu09acu09b2u09bfu099cu09aeu09c7 u0995u09beu099c u0995u09b0u09c7 u09a5u09beu0995u09c7u0964 u098fu099fu09be u09b8u09cdu0995u09bfu09a8 u0993 u099au09c1u09b2u09c7u0993 u0995u09beu099c u0995u09b0u09c7u0964 u098fu099bu09beu09dcu09beu0993 u09b8u099cu09a8u09c7 u09aau09beu09a4u09beu09b0 u0985u09a8u09c7u0995 u0997u09c1u09a8u0964 <\\/h2>ttnttt<a href=\\\"#order\\\">nttttttu0985u09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>ttntttttttt<figure><img src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/a4973b1235e381d03cca3995a58e11c5.jpg_750x750.jpg_.webp\\\" alt=\\\"a4973b1235e381d03cca3995a58e11c5.jpg_750x750.jpg_\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/100-organic-dry-moringa-leaf-powder-500x500-1.webp\\\" alt=\\\"100-organic-dry-moringa-leaf-powder-500x500\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/moringa-leaves-500x500-1.webp\\\" alt=\\\"moringa-leaves-500x500\\\" \\/><\\/figure>tttntttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>tttttntttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>tttttnttt<h2>u09b8u099cu09a8u09c7 u09aau09beu09a4u09beu09b0 u0989u09aau0995u09beu09b0u09bfu09a4u09be<\\/h2>ttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">tt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b6u09bfu09b6u09c1u09a6u09c7u09b0 u0985u09aau09c1u09b7u09cdu099fu09bf u09a6u09c2u09b0 u0995u09b0u09c7 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09cdu09a4u09a8u09cdu09afu09a6u09beu09a8u0995u09beu09b0u09c0 u09aeu09beu09dfu09c7u09a6u09c7u09b0 u09acu09c1u0995u09c7u09b0 u09a6u09c1u09a7 u09acu09c3u09a6u09cdu09a7u09bf u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0989u099au09cdu099a u09b0u0995u09cdu09a4u099au09beu09aa u09a8u09bfu09dfu09a8u09cdu09a4u09cdu09b0u09a3u09c7 u09b0u09beu0996u09c7 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0996u09beu09acu09beu09b0u09c7u09b0 u09b0u09c1u099au09bf u09abu09c7u09b0u09beu09dfnttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0985u09cdu09afu09beu09a8u09bfu09aeu09bfu09dfu09be u09a6u09c2u09b0 u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09a1u09beu09dfu09beu09acu09c7u099fu09bfu09b8 u09a8u09bfu09dfu09a8u09cdu09a4u09cdu09b0u09a3u09c7 u09b0u09beu0996u09c7 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0985u09a8u09cdu09a7u09a4u09cdu09ac u09a6u09c2u09b0 u0995u09b0u09a4u09c7 u09b8u09b9u09beu09dfu09a4u09be u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09acu09dfu09b8u09c7u09b0 u099bu09beu09aa u09a6u09c2u09b0 u0995u09b0u09c7nttttttttt<\\/li>ntttttt<\\/ul>nttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0995u09cdu09afu09beu09a8u09cdu09b8u09beu09b0 u09aau09cdu09b0u09a4u09bfu09b0u09cbu09a7u09c7 u09b8u09beu09b9u09beu09afu09cdu09af u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttntttttttttt u09b9u09beu09b0u09cdu099f u09adu09beu09b2u09cb u09b0u09beu0996u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0993u099cu09a8 u0995u09aeu09beu09a4u09c7 u09b8u09b9u09beu09dfu09a4u09be u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0995u09bfu09a1u09a8u09bf u0993 u09b2u09bfu09adu09beu09b0 u09adu09beu09b2u09cb u09b0u09beu0996u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b0u09cbu0997 u09aau09cdu09b0u09a4u09bfu09b0u09cbu09a7 u0995u09cdu09b7u09aeu09a4u09be u09acu09c3u09a6u09cdu09a7u09bf u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0997u09cdu09afu09beu09b8u09cdu099fu09cdu09b0u09bfu0995 u09a8u09bfu09dfu09a8u09cdu09a4u09cdu09b0u09a3u09c7 u09b0u09beu0996u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu099au09c1u09b2 u09aau09dcu09be u09acu09a8u09cdu09a7 u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aeu09c1u0996u09c7u09b0 u0995u09beu09b2u09cb u09a6u09beu0997 u0993 u09aeu09c7u09b8u09cdu09a4u09be u09a6u09c2u09b0 u0995u09b0u09c7 nttttttttt<\\/li>ntttttt<\\/ul>nttttttttttttttt<img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/moringa-powder-100-gm.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/moringa-powder-100-gm.webp 1000w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/moringa-powder-100-gm-300x300.webp 300w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/moringa-powder-100-gm-150x150.webp 150w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/moringa-powder-100-gm-768x768.webp 768w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/moringa-powder-100-gm-600x600.webp 600w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/moringa-powder-100-gm-100x100.webp 100w\\\" sizes=\\\"(max-width: 1000px) 100vw, 1000px\\\" \\/>tttttttttttttttnttt<h2>u0986u09aau09a8u09beu09b0 u09a8u09bfu099cu09c7u09b0 u0985u09a5u09acu09be u0986u09b6u09c7u09aau09beu09b6u09c7 u0995u09cbu09a5u09beu0993 u09afu09a6u09bf u09b8u099cu09a8u09c7 u0997u09beu099b u09a5u09beu0995u09c7 u09a4u09beu09b9u09b2u09c7 u09b8u09c7u0996u09beu09a8 u09a5u09c7u0995u09c7 u09aau09beu09a4u09be u09b8u0982u0997u09cdu09b0u09b9 u0995u09b0u09c7 u09a8u09bfu09dfu09aeu09bfu09a4 u0986u09aau09a8u09beu09b0 u09aau09b0u09bfu09acu09beu09b0u09c7u09b0 u0996u09beu09a6u09cdu09af u09a4u09beu09b2u09bfu0995u09beu09df u098fu099fu09be u09b0u09beu0996u09be u09aau09cdu09b0u09dfu09cbu099cu09a8u0964 u09b8u09c7u099fu09be u09b8u09aeu09cdu09adu09ac u09a8u09be u09b9u09b2u09c7 u09b8u099cu09a8u09c7 u09aau09beu09a4u09beu09b0 u0997u09c1u09dcu09be u09b8u0982u0997u09cdu09b0u09b9 u0995u09b0u09c7 u09a4u09be u0996u09c7u09a4u09c7 u09aau09beu09b0u09c7u09a8u0964 u0986u09aeu09beu09a6u09c7u09b0 u0995u09beu099bu09c7 u09aau09beu09acu09c7u09a8 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09aau09cdu09b0u09beu0995u09c3u09a4u09bfu0995 u0993 u09acu09beu099bu09beu0987u0995u09c3u09a4 u09b8u099cu09a8u09c7 u09aau09beu09a4u09beu09b0 u0997u09c1u09dcu09beu0964 <\\/h2>ttnttt<a href=\\\"#order\\\">nttttttu0985u09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<h2>u0995u09bfu09adu09beu09acu09c7 u0996u09beu09acu09c7u09a8 u0993 u09b6u09bfu09b6u09c1u09a6u09c7u09b0u0993 u0996u09beu0993u09dfu09beu09acu09c7u09a8  <\\/h2>ttnttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu09abu09b2 u0985u09a5u09acu09be u09abu09b2u09c7u09b0 u099cu09c1u09b8 u098fu09b0 u09b8u09beu09a5u09c7 u09aeu09bfu0995u09cdu09b8 u0995u09b0u09c7 u0996u09beu0993u09dfu09beu09a4u09c7 u09aau09beu09b0u09c7u09a8nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu09a1u09beu09b2 u0985u09a5u09acu09be u09b0u09beu09a8u09cdu09a8u09be u0995u09b0u09be u09afu09c7 u0995u09cbu09a8 u0996u09beu09acu09beu09b0u09c7u09b0 u09b8u09beu09a5u09c7 u09aeu09bfu0995u09cdu09b8 u0995u09b0u09c7 u09a6u09bfu09a4u09c7 u09aau09beu09b0u09c7u09a8nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu09adu09b0u09cdu09a4u09be u09acu09beu09a8u09bfu09dfu09c7 u0996u09c7u09a4u09c7 u09aau09beu09b0u09c7u09a8nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09b0u09beu09b8u09b0u09bf u099cu09c1u09b8 u0995u09b0u09c7 u0996u09c7u09a4u09c7 u09aau09beu09b0u09c7u09a8nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aeu09beu099b, u09aeu09beu0982u09b8 u0985u09a5u09acu09be u09afu09c7 u0995u09cbu09a8 u09a4u09b0u0995u09beu09b0u09c0u09a4u09c7 u09aeu09bfu0995u09cdu09b8 u0995u09b0u09a4u09c7 u09aau09beu09b0u09c7u09a8nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu09a8u09c1u09a1u09c1u09b2u09b8 u098fu09b0 u09b8u09beu09a5u09c7 u09aeu09bfu0995u09cdu09b8 u0995u09b0u09c7 u0996u09beu0993u09dfu09beu09a4u09c7 u09aau09beu09b0u09c7u09a8nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aeu09a7u09c1 u09a6u09bfu09dfu09c7 u09aeu09bfu0995u09cdu09b8 u0995u09b0u09c7 u0996u09beu0993u09dfu09beu09a4u09c7 u09aau09beu09b0u09c7u09a8nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu09a1u09beu09b2u09c7u09b0 u09acu09dcu09beu09b0 u09b8u09beu09a5u09c7 u09aeu09bfu0995u09cdu09b8 u0995u09b0u09c7 u09a6u09bfu09a4u09c7 u09aau09beu09b0u09c7u09a8nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b0u09c1u099fu09bf u0985u09a5u09acu09be u099au09beu09aau099fu09bf u09acu09beu09a8u09beu09a8u09cbu09b0 u09b8u09aeu09df u09aeu09bfu0995u09cdu09b8 u0995u09b0u09a4u09c7 u09aau09beu09b0u09c7u09a8nttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>u09aau09cdu09b0u09dfu09cbu099cu09a8u09c7 u0995u09b2 u0995u09b0u09c1u09a8 <\\/h2>ttnttt<a href=\\\"tel:01819000000\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>tttntttttt01819000000nttttt<\\/a>nttt<h2>u0986u09b8u09cdu09a5u09be u09b0u09beu0996u09c1u09a8 u0986u09b8u09cdu09a5u09beu09df u09a5u09beu0995u09c1u09a8<\\/h2>ttnttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09aeu09beu09a6u09c7u09b0 u0995u09beu099bu09c7 u09aau09beu09acu09c7u09a8 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09aau09cdu09b0u09beu0995u09c3u09a4u09bfu0995 u0993 u09acu09beu099bu09beu0987u0995u09c3u09a4 u09aau09beu09a4u09beu09b0 u0997u09c1u09dcu09benttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aau09a3u09cdu09af u09b9u09beu09a4u09c7 u09aau09c7u09dfu09c7 u09aeu09c2u09b2u09cdu09af u09aau09b0u09bfu09b6u09cbu09a7 u0995u09b0u09a4u09c7 u09aau09beu09b0u09acu09c7u09a8nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aau099bu09a8u09cdu09a6 u09a8u09be u09b9u09b2u09c7 u09abu09c7u09b0u09a4 u09acu09be u09aau09b0u09bfu09acu09b0u09cdu09a4u09a8 u0995u09b0u09a4u09c7 u09aau09beu09b0u09acu09c7u09a8nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09beu09b0u09beu09a6u09c7u09b6u09c7 u0995u09cdu09afu09beu09b6 u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bfu09a4u09c7 u09aau09a3u09cdu09af u09b8u0982u0997u09cdu09b0u09b9 u0995u09b0u09a4u09c7 u09aau09beu09b0u09acu09c7u09a8 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0996u09beu0993u09dfu09beu09b0 u09a8u09bfu09dfu09aeu09b8u09b9 u09b0u09c7u09b8u09bfu09aau09bf u0985u09a8u09b2u09beu0987u09a8u09c7 u09aau09cdu09b0u09a6u09beu09a8 u0995u09b0u09be u09b9u09acu09c7 nttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u09a8u09bfu099au09c7u09b0 u09abu09b0u09cdu09aeu099fu09bf u09aau09c2u09b0u09a3 u0995u09b0u09c1u09a8<\\/h2>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"2398\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"2401\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1717866988\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>nttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;0.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;0.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"f74226cb34\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2> Copyright u00a9 2024  Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\\\"\"','Checkout (Woo)','','inherit','closed','closed','','2018-revision-v1','','','2026-06-08 21:44:58','2026-06-08 15:44:58','','2018','https://hypergrowth.fishgrowth.xyz/?p=2019','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2020','17','2026-06-08 21:45:02','2026-06-08 15:45:02','','Mustard Oil','','trash','closed','closed','','mustard-oil__trashed','','','2026-06-09 12:06:57','2026-06-09 06:06:57','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=mustard-oil','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2021','17','2026-06-08 21:45:02','2026-06-08 15:45:02','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-30__trashed','','','2026-06-09 12:06:57','2026-06-09 06:06:57','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-30/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2022','17','2026-06-08 21:45:02','2026-06-08 15:45:02','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','2021-revision-v1','','','2026-06-08 21:45:02','2026-06-08 15:45:02','','2021','https://hypergrowth.fishgrowth.xyz/?p=2022','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2023','17','2026-06-08 21:45:02','2026-06-08 15:45:02','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2<\\/h2>\\t\\t\\n\\t\\t<p>\\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u0990\\u09a4\\u09bf\\u09b9\\u09cd\\u09af\\u09ac\\u09be\\u09b9\\u09c0 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09be\\u099c\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09b0\\u09cd\\u09a4\\u09be, \\u09ae\\u09c1\\u09a1\\u09bc\\u09bf \\u09ae\\u09be\\u0996\\u09be \\u098f\\u09ac\\u0982 \\u0986\\u099a\\u09be\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0995\\u09cb\\u09a8 \\u09ac\\u09bf\\u0995\\u09b2\\u09cd\\u09aa \\u09a8\\u09c7\\u0987\\u0964 \\u0986\\u09ae\\u09b0\\u09be \\u0985\\u09a8\\u09c7\\u0995\\u09c7\\u0987 \\u098f\\u0987 \\u09a4\\u09c7\\u09b2 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09b2\\u09c7\\u0993 \\u098f\\u09b0 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3 \\u098f\\u09ac\\u0982 \\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be\\u09a8\\u09cb \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0997\\u09c1\\u09a3\\u0997\\u09a4 \\u09ae\\u09be\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u09a4\\u09c7\\u09ae\\u09a8 \\u0985\\u09ac\\u0997\\u09a4 \\u09a8\\u0987\\u0964 \\u09a4\\u09be\\u0987 \\u0986\\u09ae\\u09b0\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u09b8\\u09c7\\u099b\\u09bf \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/elementor\\/thumbs\\/food1-1-qpdd4gztdloco1t76mluflrjfgphfl6eirghpnkyvc.png\\\" title=\\\"food1.png\\\" alt=\\\"food1.png\\\" loading=\\\"lazy\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09c3\\u09b7\\u09be\\u09a3 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1\\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09a4\\u09c7 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993\\u099f\\u09bf \\u09a6\\u09c7\\u0996\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0995\\u09c7\\u09a8 \\u0996\\u09be\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t<p>\\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u098f\\u0995 \\u0985\\u09a8\\u09cd\\u09af\\u09a4\\u09ae \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09af\\u09bc \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u0964 \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09ab\\u09c1\\u09b2 \\u09af\\u09c7\\u09ae\\u09a8 \\u09b8\\u09cc\\u09a8\\u09cd\\u09a6\\u09b0\\u09cd\\u09af \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09b8\\u09c7 \\u09a4\\u09c7\\u09ae\\u09a8\\u09bf \\u09b8\\u09b0\\u09bf\\u09b7\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09a4\\u09c7\\u09b2 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09a6\\u09c1 \\u0995\\u09b0\\u09c7\\u0964 \\u0985\\u09a8\\u09c7\\u0995 \\u09af\\u09c1\\u0997 \\u0986\\u0997\\u09c7 \\u09a5\\u09c7\\u0995\\u09c7\\u0987 \\u09ac\\u09be\\u0999\\u09be\\u09b2\\u09bf\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u09b8\\u09b9 \\u09ad\\u09b0\\u09cd\\u09a4\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u099a\\u09b2\\u09a8 \\u0986\\u099b\\u09c7\\u0964 \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7\\u09a4 \\u09a4\\u09c7\\u09b2 \\u09ac\\u09b2\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09c2\\u09b0\\u09cd\\u09ac\\u09aa\\u09c1\\u09b0\\u09c1\\u09b7\\u0997\\u09a3 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u0995\\u09c7\\u0987 \\u09ac\\u09c1\\u099d\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u09af\\u09be\\u0987\\u09b9\\u09cb\\u0995, \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09af\\u09c1\\u0997\\u09c7 \\u09ac\\u09be\\u099c\\u09be\\u09b0\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09a8 \\u09b0\\u0995\\u09ae\\u09c7\\u09b0 \\u09a4\\u09c7\\u09b2 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be \\u0997\\u09c7\\u09b2\\u09c7\\u0993 \\u0997\\u09be\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u0996\\u09be \\u098f\\u09ac\\u0982 \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be\\u09b0 \\u0995\\u09be\\u099c\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc \\u098f\\u09ae\\u09a8 \\u09b8\\u09b9\\u099c \\u09b2\\u09cb\\u09ad\\u09cd\\u09af \\u09a4\\u09c7\\u09b2 \\u0986\\u09b0 \\u09a6\\u09cd\\u09ac\\u09bf\\u09a4\\u09c0\\u09af\\u09bc\\u099f\\u09bf \\u09a8\\u09c7\\u0987\\u0964 \\u098f\\u0987 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u099a\\u09be\\u09b9\\u09bf\\u09a6\\u09be \\u098f\\u09a4 \\u09ac\\u099b\\u09b0 \\u09a7\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09b2\\u09bf\\u09a4 \\u0986\\u099b\\u09c7\\u0964<\\/p><p>\\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3\\u09a4 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u098f\\u09a4 \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09af\\u09bc\\u09a4\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a7\\u09be\\u09a8 \\u0995\\u09be\\u09b0\\u09a3 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u098f\\u09ac\\u0982 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3\\u0964 \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7 \\u0995\\u09b0\\u09c7 \\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be\\u09a8\\u09cb \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u098f\\u09ac\\u0982 \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u09b6\\u09bf \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0\\u0964 \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c7\\u09b2 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09a7\\u09c1\\u09a8\\u09bf\\u0995 \\u09aa\\u09cd\\u09b0\\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf\\u09b0 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u0998\\u09be\\u09a8\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u0964 \\u098f\\u09a4\\u09c7 \\u0989\\u099a\\u09cd\\u099a \\u099a\\u09be\\u09aa \\u098f\\u09ac\\u0982 \\u09a4\\u09be\\u09aa\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c7\\u09b2 \\u09a8\\u09bf\\u0983\\u09b8\\u09b0\\u09a3 \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u0964 \\u09aa\\u09cd\\u09b0\\u0995\\u09cd\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u099f\\u09bf \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09b9\\u099c\\u09b8\\u09be\\u09a7\\u09cd\\u09af \\u098f\\u09ac\\u0982 \\u09af\\u09be\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09bf\\u0995 \\u09b9\\u09b2\\u09c7\\u0993 \\u098f\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09a4\\u09c7\\u09b2 \\u0997\\u09c1\\u09a3\\u0997\\u09a4 \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u09a6\\u09bf\\u0995 \\u09a5\\u09c7\\u0995\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09a8\\u09bf\\u09ae\\u09cd\\u09a8 \\u09aa\\u09b0\\u09cd\\u09af\\u09be\\u09af\\u09bc\\u09c7\\u09b0 \\u09b9\\u09af\\u09bc\\u0964<\\/p><p>\\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09bf\\u0995\\u09c7 \\u098f\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u098f\\u0995\\u09a6\\u09ae \\u09ad\\u09be\\u09b2\\u09cb \\u09b9\\u09af\\u09bc \\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09a6\\u09c7\\u0996\\u09a4\\u09c7 \\u0985\\u09a8\\u09c7\\u0995\\u099f\\u09be \\u0987\\u099e\\u09cd\\u099c\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09b2\\u09c1\\u09ac\\u09cd\\u09b0\\u09bf\\u0995\\u09c7\\u09a8\\u09cd\\u099f \\u09ac\\u09be \\u09ae\\u09ac\\u09bf\\u09b2\\u09c7\\u09b0 \\u09ae\\u09a4 \\u09a6\\u09c7\\u0996\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964 \\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09bf\\u0995\\u09c7 \\u0995\\u09ae \\u09a4\\u09be\\u09aa\\u09c7 \\u0985\\u09b0\\u09cd\\u09a5\\u09be\\u09ce \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u09a4\\u09c7 \\u0995\\u09be\\u09a0\\u09c7\\u09b0 \\u0998\\u09be\\u09a8\\u09bf \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09a4\\u09c7\\u09b2 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09b2 \\u0986\\u09a6\\u09b0\\u09cd\\u09b6 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u0964 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u0987 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09a4\\u09c7\\u09b2 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0993 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u09b9\\u09af\\u09bc\\u0964 \\u09a4\\u09be\\u099b\\u09be\\u09a1\\u09bc\\u09be \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u098f\\u09ac\\u0982 \\u09b0\\u0982 \\u098f\\u0995\\u09a6\\u09ae \\u099f\\u09aa \\u0995\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u09af\\u09bc\\u0964 \\u098f\\u0996\\u09be\\u09a8\\u09c7 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf \\u09ac\\u09b2\\u09a4\\u09c7 \\u0995\\u09be\\u09a0\\u09c7\\u09b0 \\u0998\\u09be\\u09a8\\u09bf\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u0995\\u09ae \\u09a4\\u09be\\u09aa\\u09c7 \\u09a4\\u09c7\\u09b2 \\u09a8\\u09bf\\u0983\\u09b8\\u09b0\\u09a3 \\u0995\\u09b0\\u09be\\u0995\\u09c7 \\u09ac\\u09c1\\u099d\\u09be\\u09af\\u09bc\\u0964<\\/p><p>\\u09ae\\u09cb\\u099f\\u0995\\u09a5\\u09be, \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a7\\u09be\\u09a8 \\u0989\\u09a6\\u09cd\\u09a6\\u09c7\\u09b6\\u09cd\\u09af \\u09b9\\u09b2 \\u098f\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u0989\\u09aa\\u09ad\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u098f\\u09ac\\u0982 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u0998\\u09be\\u09a8\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09af\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc \\u09a4\\u09be \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u0993 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09a6\\u09c1 \\u09b9\\u09af\\u09bc \\u09a8\\u09be\\u0964 \\u098f\\u0987 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09ac\\u09be \\u0995\\u09be\\u09a0\\u09c7\\u09b0 \\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u099a\\u09be\\u09b9\\u09bf\\u09a6\\u09be \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u09b6\\u09bf\\u0964 \\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09bf\\u0995\\u09c7 \\u098f\\u0987 \\u09a4\\u09c7\\u09b2 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09af\\u09be \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c7\\u0995 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09be\\u09b0\\u09c0\\u09b0\\u09bf\\u0995 \\u09ac\\u09cd\\u09af\\u09a5\\u09be \\u0995\\u09ae\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09b8\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c0\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a0\\u09be\\u09a8\\u09cd\\u09a1\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b9\\u09be\\u09b0\\u09cd\\u099f \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09a8\\u09b8\\u09cd\\u0995\\u09cd\\u09b0\\u09bf\\u09a8 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09b0\\u09c0\\u09b0 \\u099a\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09ac\\u099c\\u09be\\u09af\\u09bc \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u0995\\u09cd\\u09a4 \\u09b8\\u099e\\u09cd\\u099a\\u09be\\u09b2\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u09ac\\u09cd\\u09af\\u09be\\u0995\\u099f\\u09c7\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09b2 \\u0993 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u09ab\\u09be\\u0999\\u09cd\\u0997\\u09be\\u09b2 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8\\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09cd\\u09ae\\u09c3\\u09a4\\u09bf\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09be\\u0987\\u0997\\u09cd\\u09b0\\u09c7\\u09a8\\u09c7\\u09b0 \\u0995\\u09b7\\u09cd\\u099f \\u0995\\u09ae\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0993\\u099c\\u09a8 \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"720\\\" height=\\\"720\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1.png 720w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-300x300.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-150x150.png 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-600x600.png 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-100x100.png 100w\\\" sizes=\\\"(max-width: 720px) 100vw, 720px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0998\\u09be\\u09a8\\u09bf \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09c7?<\\/h2>\\t\\t\\n\\t\\t<p>\\u0998\\u09be\\u09a8\\u09bf \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09a8\\u09be\\u09a4\\u09a8\\u09c0 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u0964 \\u0995\\u09be\\u09b0\\u09a3 \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u0985\\u09b2\\u09cd\\u09aa \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u098f\\u09ac\\u0982 \\u0985\\u09b2\\u09cd\\u09aa \\u09aa\\u09b0\\u09bf\\u09b6\\u09cd\\u09b0\\u09ae\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964 \\u09a4\\u09ac\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u09a4\\u09c7 \\u0998\\u09be\\u09a8\\u09bf \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09a4\\u09c7\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09b2\\u09c7 \\u0995\\u09bf\\u099b\\u09c1 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf \\u09ae\\u09c7\\u09a8\\u09c7 \\u099a\\u09b2\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964 \\u09a4\\u09cb \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be \\u09b6\\u09c1\\u0995\\u09bf\\u09af\\u09bc\\u09c7 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09b8\\u09c7\\u09b8 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb \\u0993\\u099c\\u09a8 \\u0995\\u09b0\\u09c7 \\u09aa\\u09c2\\u09b0\\u09cd\\u09ac \\u09aa\\u09cd\\u09b0\\u09b8\\u09cd\\u09a4\\u09c1\\u09a4\\u09bf \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964<\\/p><p>\\u098f\\u09b0\\u09aa\\u09b0 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb \\u09aa\\u09bf\\u09b7\\u09c7 \\u09a8\\u09c7\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u09af\\u09c7\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964 \\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3\\u09a4 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u0995\\u09b2 \\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0995\\u09be\\u09a0 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7\\u0987 \\u0998\\u09be\\u09a8\\u09bf \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964 \\u09a4\\u09ac\\u09c7 \\u09a4\\u09c7\\u0981\\u09a4\\u09c1\\u09b2 \\u0995\\u09be\\u09a0\\u09c7\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u0998\\u09be\\u09a8\\u09bf \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u0989\\u099a\\u09cd\\u099a \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u0964\\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a6\\u09be\\u09a8\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u09af\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb \\u0998\\u09be\\u09a8\\u09bf\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u0997\\u09b0\\u09c1\\u09b0 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af\\u09c7 \\u0998\\u09be\\u09a8\\u09bf\\u09b0 \\u09b9\\u09be\\u09a4\\u09b2 \\u09a7\\u09c0\\u09b0 \\u0997\\u09a4\\u09bf\\u09a4\\u09c7 \\u0998\\u09c1\\u09b0\\u09be\\u09a8\\u09cb \\u09b9\\u09af\\u09bc\\u0964 \\u0995\\u09be\\u09b0\\u09a3 \\u09af\\u09a6\\u09bf \\u0989\\u099a\\u09cd\\u099a \\u0997\\u09a4\\u09bf\\u09a4\\u09c7 \\u0998\\u09c1\\u09b0\\u09be\\u09a8\\u09cb \\u09b9\\u09af\\u09bc \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u09a4\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09a4\\u09be\\u09aa \\u09b8\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u0995\\u09b0\\u09ac\\u09c7 \\u09af\\u09be \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0997\\u09c1\\u09a3\\u0997\\u09a4 \\u09ae\\u09be\\u09a8 \\u09a8\\u09b7\\u09cd\\u099f \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09bf\\u0995\\u09c7 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u09b0 \\u0989\\u09b2\\u0999\\u09cd\\u0998\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964<\\/p><p>\\u09af\\u09be\\u0987\\u09b9\\u09cb\\u0995, \\u098f\\u09ad\\u09be\\u09ac\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u09b9\\u09be\\u09a4\\u09b2 \\u0998\\u09c1\\u09b0\\u09be\\u09a8\\u09cb\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a6\\u09be\\u09a8\\u09be \\u09a7\\u09c0\\u09b0\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u09aa\\u09bf\\u09b7\\u09a4\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7 \\u098f\\u09ac\\u0982 \\u09a4\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u098f\\u0995\\u099f\\u09c1 \\u098f\\u0995\\u099f\\u09c1 \\u0995\\u09b0\\u09c7 \\u09b0\\u09b8 \\u09ac\\u09c7\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u0964 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0\\u09a4\\u09c7 \\u09b8\\u09c7\\u0987 \\u09b0\\u09b8 \\u09ab\\u09bf\\u09b2\\u099f\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a4\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c7\\u09b2 \\u0986\\u09b2\\u09be\\u09a6\\u09be \\u0995\\u09b0\\u09c7 \\u09a4\\u09be \\u09ac\\u09be\\u099c\\u09be\\u09b0\\u099c\\u09be\\u09a4 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"720\\\" height=\\\"720\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1.png 720w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-300x300.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-150x150.png 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-600x600.png 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-100x100.png 100w\\\" sizes=\\\"(max-width: 720px) 100vw, 720px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1\\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09eb \\u09b2\\u09bf\\u099f\\u09be\\u09b0\\n\\t\\t\\t\\t\\t\\u09e7\\u09e9\\u09e6\\u09e6\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h2>\\u09b8\\u09c0\\u09ae\\u09bf\\u09a4 \\u09b8\\u09ae\\u09df\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0989\\u09aa\\u09b0 \\u0995\\u09c7\\u09a8 \\u0986\\u09b8\\u09cd\\u09a5\\u09be \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u09a8!<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7, \\u09a6\\u09c7\\u0996\\u09c7 \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09a8\\u09c7\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09a3\\u09cd\\u09af \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0996\\u09be\\u099f\\u09bf, \\u0985\\u09a5\\u09c7\\u09a8\\u099f\\u09bf\\u0995, \\u09ad\\u09c7\\u099c\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b7\\u09cd\\u09a0\\u09be\\u09a8 \\u0989\\u09b2\\u09be\\u09ae\\u09be\\u09df\\u09c7 \\u0995\\u09c7\\u09b0\\u09be\\u09ae \\u09a6\\u09cd\\u09ac\\u09be\\u09b0\\u09be \\u09aa\\u09b0\\u09bf\\u099a\\u09be\\u09b2\\u09bf\\u09a4 \\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09aa\\u09a8\\u09be\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09df\\u09a4\\u09be \\u098f\\u0987 \\u09af\\u09c7, \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b7\\u09cd\\u09a0\\u09be\\u09a8 \\u0995\\u0996\\u09a8\\u09cb\\u0987 \\u09ad\\u09c7\\u099c\\u09be\\u09b2 \\u09aa\\u09a3\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7 \\u09a8\\u09be \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09bf\\u09a4!\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01962890890\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01962890890\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b2\\u09c7\\u09b8 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8!<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>\\n\\t<input type=\\\"radio\\\"\\n\\tid=\\\"wcf-item-product-989\\\"\\n\\tname=\\\"wcf-single-sel\\\" \\n\\tvalue=\\\"989\\\"\\n\\t>\\n\\t<label for=\\\"wcf-item-product-989\\\"><\\/label>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-100x100.webp 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"479\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"482\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717922254\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\\" data-value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\\">\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"93b5769a18\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-33__trashed','','','2026-06-09 12:06:57','2026-06-09 06:06:57','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-33/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2024','17','2026-06-08 21:45:10','2026-06-08 15:45:10','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7<\\/h1>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Thank You (Woo)','','publish','closed','closed','','thank-you-woo-27','','','2026-06-08 21:45:10','2026-06-08 15:45:10','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-27/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2025','17','2026-06-08 21:45:10','2026-06-08 15:45:10','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7<\\/h1>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Thank You (Woo)','','inherit','closed','closed','','2024-revision-v1','','','2026-06-08 21:45:10','2026-06-08 15:45:10','','2024','https://hypergrowth.fishgrowth.xyz/?p=2025','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2026','17','2026-06-08 21:45:16','2026-06-08 15:45:16','','Panjabi','','trash','closed','closed','','panjabi__trashed','','','2026-06-09 12:06:21','2026-06-09 06:06:21','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=panjabi','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2027','17','2026-06-08 21:45:16','2026-06-08 15:45:16','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0985\\u09b0\\u099c\\u09bf\\u09a8\\u09be\\u09b2\\n\\t\\t\\t\\t\\tSequence \\u09b2\\u09be\\u0995\\u09cd\\u09b8\\u09be\\u09b0\\u09bf  \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf\\n\\t\\t\\t\\t\\t\\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09ab\\u09bf\\u09b8 \\u09ac\\u09be \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u0985\\u09a8\\u09c1\\u09b7\\u09cd\\u09a0\\u09be\\u09a8\\u09c7 \\u09af\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09b8\\u09c7\\u09b0\\u09be \\u099a\\u09df\\u09c7\\u099c \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-carousel.min.css\\\">\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\tPrevious\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\tNext\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u098f\\u099f\\u09be \\u0996\\u09c1\\u09ac\\u0987 \\u09b8\\u09ab\\u099f \\u0993 \\u0997\\u09cd\\u09b2\\u09c7\\u099c\\u09bf \\u0995\\u09be\\u09aa\\u09dc\\u09c7\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u0993\\u09df\\u09be\\u09df \\u09aa\\u09b0\\u09a4\\u09c7 \\u0996\\u09c1\\u09ac\\u0987 \\u0986\\u09b0\\u09be\\u09ae\\u09a6\\u09be\\u09df\\u0995<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09e7 \\u09aa\\u09bf\\u09b8\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0  \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09e8\\u09e6\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t(\\u09e8\\u09ed\\u09ee\\u09e6 \\u099f\\u09be\\u0995\\u09be)\\n\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09e8  \\u09aa\\u09bf\\u09b8\\u09c7\\u09b0 \\u0995\\u09ae\\u09cd\\u09ac\\u09cb \\u0985\\u09ab\\u09be\\u09b0  \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09e9\\u09ef\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t(\\u09ea\\u09ed\\u09ee\\u09e6 \\u099f\\u09be\\u0995\\u09be)\\n\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 Sequence Luxurious \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf \\u0995\\u09cd\\u09b0\\u09df \\u0995\\u09b0\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u0995\\u09bf \\u0995\\u09bf \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 <\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0996\\u09c1\\u09ac\\u0987 \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u09b8\\u09c7\\u09b2\\u09be\\u0987 \\u09ab\\u09bf\\u09a8\\u09bf\\u09b6\\u09bf\\u0982\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0995\\u099f\\u09a8 \\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09bf\\u0995\\u09cd\\u09b8\\u09c7\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0997\\u09cd\\u09af\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09c7\\u099f\\u09be\\u09b2 \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09b8\\u09cd\\u09a8\\u09cd\\u09af\\u09be\\u09aa \\u09ac\\u09be\\u099f\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u098f\\u0995\\u099a\\u09c7\\u099e\\u09cd\\u099c \\u09aa\\u09b2\\u09bf\\u09b8\\u09bf \\u098f\\u09ad\\u09c7\\u09b2\\u098f\\u09ac\\u09c7\\u09b2\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u0996\\u09c1\\u09ac \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c\\u09bf\\u0982\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09b8\\u09be\\u0987\\u099c \\u0997\\u09be\\u0987\\u09a1<\\/h2>\\t\\t\\n\\t\\t<style>\\ntable, tr, th, td{\\nborder: 1px solid black;\\n}\\n<\\/style>\\n<table>\\n<tbody>\\n<tr>\\n<th style=\\\"text-align: left; color: red;\\\">\\u00a0SIZE\\u00a0 (\\u09ae\\u09be\\u09aa)<\\/th>\\n<th style=\\\"text-align: left; color: red;\\\">\\u09b2\\u0982<\\/th>\\n<th style=\\\"text-align: left; color: red;\\\">\\u09ac\\u09c1\\u0995\\u09c7\\u09b0 \\u09ae\\u09be\\u09aa<\\/th>\\n<\\/tr>\\n<tr>\\n<td>\\u09e9\\u09ee\\/S<\\/td>\\n<td>\\u09e9\\u09ee<\\/td>\\n<td>\\u09ea\\u09e6\\\"<\\/td>\\n<\\/tr>\\n<tr>\\n<td>\\u09ea\\u09e6\\/M<\\/td>\\n<td>\\u09ea\\u09e6<\\/td>\\n<td>\\u09ea\\u09e8\\\"<\\/td>\\n<\\/tr>\\n<tr>\\n<td>\\u09ea\\u09e8\\/L<\\/td>\\n<td>\\u09ea\\u09e8<\\/td>\\n<td>\\u09ea\\u09ea\\\"<\\/td>\\n<\\/tr>\\n<tr>\\n<td>\\u09ea\\u09ea\\/XL<\\/td>\\n<td>\\u09ea\\u09ea<\\/td>\\n<td>\\u09ea\\u09ec\\\"<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\\t\\t\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a8  \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be,\\u09b8\\u09be\\u0987\\u099c \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0 \\u09b2\\u09bf\\u0996\\u09c7 \\n\\t\\t\\t\\t\\tPlace Order\\n\\t\\t\\t\\t\\t\\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h2>\\u09af\\u09c7\\u0995\\u09cb\\u09a8\\u09cb \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing____________________field\\\" data-priority=\\\"90\\\"><label for=\\\"billing___________________\\\">\\u09b8\\u09be\\u0987\\u099c \\u0995\\u09cb\\u09a8\\u099f\\u09be \\u09b2\\u09be\\u0997\\u09ac\\u09c7??&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"number\\\" name=\\\"billing___________________\\\" id=\\\"billing___________________\\\" placeholder=\\\"\\\"  value=\\\"\\\" min=\\\"0\\\" max=\\\"0\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"110\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"498\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"499\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u0995\\u09cb\\u09a8\\u099f\\u09be \\u0995\\u09cb\\u09a8\\u099f\\u09be \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8 \\u09a8\\u09bf\\u099a \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8   <\\/h3>\\n\\t<input type=\\\"radio\\\"\\n\\tid=\\\"wcf-item-product-989\\\"\\n\\tname=\\\"wcf-single-sel\\\" \\n\\tvalue=\\\"989\\\"\\n\\t>\\n\\t<label for=\\\"wcf-item-product-989\\\"><\\/label>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-100x100.webp 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717922379\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;900.00\\\">\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"93b5769a18\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01303832348\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-34__trashed','','','2026-06-09 12:06:21','2026-06-09 06:06:21','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-34/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2028','17','2026-06-08 21:45:17','2026-06-08 15:45:17','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0985\\u09b0\\u099c\\u09bf\\u09a8\\u09be\\u09b2\\n\\t\\t\\t\\t\\tSequence \\u09b2\\u09be\\u0995\\u09cd\\u09b8\\u09be\\u09b0\\u09bf  \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf\\n\\t\\t\\t\\t\\t\\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09ab\\u09bf\\u09b8 \\u09ac\\u09be \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u0985\\u09a8\\u09c1\\u09b7\\u09cd\\u09a0\\u09be\\u09a8\\u09c7 \\u09af\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09b8\\u09c7\\u09b0\\u09be \\u099a\\u09df\\u09c7\\u099c \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-carousel.min.css\\\">\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\tPrevious\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\tNext\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u098f\\u099f\\u09be \\u0996\\u09c1\\u09ac\\u0987 \\u09b8\\u09ab\\u099f \\u0993 \\u0997\\u09cd\\u09b2\\u09c7\\u099c\\u09bf \\u0995\\u09be\\u09aa\\u09dc\\u09c7\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u0993\\u09df\\u09be\\u09df \\u09aa\\u09b0\\u09a4\\u09c7 \\u0996\\u09c1\\u09ac\\u0987 \\u0986\\u09b0\\u09be\\u09ae\\u09a6\\u09be\\u09df\\u0995<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09e7 \\u09aa\\u09bf\\u09b8\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0  \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09e8\\u09e6\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t(\\u09e8\\u09ed\\u09ee\\u09e6 \\u099f\\u09be\\u0995\\u09be)\\n\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09e8  \\u09aa\\u09bf\\u09b8\\u09c7\\u09b0 \\u0995\\u09ae\\u09cd\\u09ac\\u09cb \\u0985\\u09ab\\u09be\\u09b0  \\u09ae\\u09c2\\u09b2\\u09cd\\u09af \\u09e9\\u09ef\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t(\\u09ea\\u09ed\\u09ee\\u09e6 \\u099f\\u09be\\u0995\\u09be)\\n\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 Sequence Luxurious \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09aa\\u09be\\u099e\\u09cd\\u099c\\u09be\\u09ac\\u09bf \\u0995\\u09cd\\u09b0\\u09df \\u0995\\u09b0\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u0995\\u09bf \\u0995\\u09bf \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 <\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0996\\u09c1\\u09ac\\u0987 \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u09b8\\u09c7\\u09b2\\u09be\\u0987 \\u09ab\\u09bf\\u09a8\\u09bf\\u09b6\\u09bf\\u0982\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0995\\u099f\\u09a8 \\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09bf\\u0995\\u09cd\\u09b8\\u09c7\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u0997\\u09cd\\u09af\\u09b0\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09c7\\u099f\\u09be\\u09b2 \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u09b8\\u09cd\\u09a8\\u09cd\\u09af\\u09be\\u09aa \\u09ac\\u09be\\u099f\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u098f\\u0995\\u099a\\u09c7\\u099e\\u09cd\\u099c \\u09aa\\u09b2\\u09bf\\u09b8\\u09bf \\u098f\\u09ad\\u09c7\\u09b2\\u098f\\u09ac\\u09c7\\u09b2\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u0996\\u09c1\\u09ac \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u09aa\\u09cd\\u09af\\u09be\\u0995\\u09c7\\u099c\\u09bf\\u0982\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09b8\\u09be\\u0987\\u099c \\u0997\\u09be\\u0987\\u09a1<\\/h2>\\t\\t\\n\\t\\t<style>\\ntable, tr, th, td{\\nborder: 1px solid black;\\n}\\n<\\/style>\\n<table>\\n<tbody>\\n<tr>\\n<th style=\\\"text-align: left; color: red;\\\">\\u00a0SIZE\\u00a0 (\\u09ae\\u09be\\u09aa)<\\/th>\\n<th style=\\\"text-align: left; color: red;\\\">\\u09b2\\u0982<\\/th>\\n<th style=\\\"text-align: left; color: red;\\\">\\u09ac\\u09c1\\u0995\\u09c7\\u09b0 \\u09ae\\u09be\\u09aa<\\/th>\\n<\\/tr>\\n<tr>\\n<td>\\u09e9\\u09ee\\/S<\\/td>\\n<td>\\u09e9\\u09ee<\\/td>\\n<td>\\u09ea\\u09e6\\\"<\\/td>\\n<\\/tr>\\n<tr>\\n<td>\\u09ea\\u09e6\\/M<\\/td>\\n<td>\\u09ea\\u09e6<\\/td>\\n<td>\\u09ea\\u09e8\\\"<\\/td>\\n<\\/tr>\\n<tr>\\n<td>\\u09ea\\u09e8\\/L<\\/td>\\n<td>\\u09ea\\u09e8<\\/td>\\n<td>\\u09ea\\u09ea\\\"<\\/td>\\n<\\/tr>\\n<tr>\\n<td>\\u09ea\\u09ea\\/XL<\\/td>\\n<td>\\u09ea\\u09ea<\\/td>\\n<td>\\u09ea\\u09ec\\\"<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\\t\\t\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a8  \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be,\\u09b8\\u09be\\u0987\\u099c \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0 \\u09b2\\u09bf\\u0996\\u09c7 \\n\\t\\t\\t\\t\\tPlace Order\\n\\t\\t\\t\\t\\t\\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h2>\\u09af\\u09c7\\u0995\\u09cb\\u09a8\\u09cb \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing____________________field\\\" data-priority=\\\"90\\\"><label for=\\\"billing___________________\\\">\\u09b8\\u09be\\u0987\\u099c \\u0995\\u09cb\\u09a8\\u099f\\u09be \\u09b2\\u09be\\u0997\\u09ac\\u09c7??&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"number\\\" name=\\\"billing___________________\\\" id=\\\"billing___________________\\\" placeholder=\\\"\\\"  value=\\\"\\\" min=\\\"0\\\" max=\\\"0\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"110\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"498\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"499\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u0995\\u09cb\\u09a8\\u099f\\u09be \\u0995\\u09cb\\u09a8\\u099f\\u09be \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8 \\u09a8\\u09bf\\u099a \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8   <\\/h3>\\n\\t<input type=\\\"radio\\\"\\n\\tid=\\\"wcf-item-product-989\\\"\\n\\tname=\\\"wcf-single-sel\\\" \\n\\tvalue=\\\"989\\\"\\n\\t>\\n\\t<label for=\\\"wcf-item-product-989\\\"><\\/label>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-100x100.webp 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717922379\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;900.00\\\">\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"93b5769a18\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01303832348\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','inherit','closed','closed','','2027-revision-v1','','','2026-06-08 21:45:17','2026-06-08 15:45:17','','2027','https://hypergrowth.fishgrowth.xyz/?p=2028','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2029','17','2026-06-08 21:45:23','2026-06-08 15:45:23','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed \\u09a6\\u09bf\\u09a8\\u09c7\\u0987 \\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09ad\\u09be\\u09ac \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u0995\\u09b0\\u09c1\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a8 \\u0997\\u09cb\\u09b2\\u09be\\u09aa\\u09c0 !!<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\u09ab\\u09cd\\u09b0\\u09c0 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09b6\\u09c1\\u09a7\\u09c1\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09afhttps:\\/\\/youtu.be\\/gqLL4bWJh9U\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t<h2>\\u098f\\u0987 \\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995\\u099f\\u09bf \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"908\\\" height=\\\"221\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-3.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-3.jpg 908w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-3-300x73.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-3-768x187.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-3-600x146.jpg 600w\\\" sizes=\\\"(max-width: 908px) 100vw, 908px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a0\\u09cb\\u099f \\u09ab\\u09be\\u099f\\u09be \\u099c\\u09a8\\u09bf\\u09a4 \\u09b8\\u0995\\u09b2 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u09aa\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u09a8\\u09c7\\u09a8\\u09cd\\u099f\\u09b2\\u09c0 \\u0997\\u09cb\\u09b2\\u09be\\u09aa\\u09c0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09b0\\u09be \\u099a\\u09be\\u09ae\\u09a1\\u09bc\\u09be \\u0989\\u09a0\\u09bf\\u09af\\u09bc\\u09c7 \\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u09a3\\u09ac\\u09a8\\u09cd\\u09a4\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099b\\u09c7\\u09b2\\u09c7 \\u0993 \\u09ae\\u09c7\\u09af\\u09bc\\u09c7 \\u09b8\\u09ac\\u09be\\u0987 \\u098f\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed \\u09a6\\u09bf\\u09a8\\u09c7 \\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u09ac\\u09cd\\u09b2\\u09be\\u0995\\u09bf\\u09b6 \\u09ad\\u09be\\u09ac \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a6\\u09c0\\u09b0\\u09cd\\u0998 \\u09b8\\u09ae\\u09af\\u09bc \\u09a7\\u09b0\\u09c7 \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09b6\\u09a8 \\u09a7\\u09b0\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u09b0 \\u09ab\\u09cd\\u09b0\\u09c7\\u0997\\u09a8\\u09c7\\u09a8\\u09cd\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ae\\u09a8\\u0995\\u09c7 \\u09b8\\u09a4\\u09c7\\u099c \\u0995\\u09b0\\u09c7 \\u09a4\\u09c1\\u09b2\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a6\\u09c0\\u09b0\\u09cd\\u0998\\u09a6\\u09bf\\u09a8 \\u09b2\\u09bf\\u09aa\\u09cd\\u09b8\\u099f\\u09bf\\u0995 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0993 \\u09b8\\u09bf\\u0997\\u09be\\u09b0\\u09c7\\u099f \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u09af\\u09c7 \\u0995\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac \\u09b9\\u09af\\u09bc \\u09a4\\u09be \\u09aa\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u09a8\\u09c7\\u09a8\\u09cd\\u099f\\u09b2\\u09c0 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u099f\\u09cb\\u09b2\\u09cb\\u099c\\u09bf\\u09b8\\u09cd\\u099f \\u09a6\\u09cd\\u09ac\\u09be\\u09b0\\u09be \\u099f\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09a1 \\u09b9\\u0993\\u09af\\u09bc\\u09be\\u09af\\u09bc \\u09b8\\u09c7\\u09a8\\u09b8\\u09bf\\u099f\\u09bf\\u09ad  \\u09b8\\u09cd\\u0995\\u09bf\\u09a8\\u09c7 \\u0995\\u09cb\\u09a8\\u09b0\\u09c2\\u09aa \\u0987\\u09b0\\u09bf\\u099f\\u09c7\\u09b6\\u09a8 \\u09b8\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u0995\\u09b0\\u09c7 \\u09a8\\u09be\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"205\\\" height=\\\"250\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/strawberry-2.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0987\\u09a8\\u0997\\u09cd\\u09b0\\u09c7\\u09a1\\u09bf\\u09df\\u09c7\\u09a8\\u09cd\\u099f\\u09b8 \\u0995\\u09c0?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"205\\\" height=\\\"250\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/strawberry-2.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b2\\u09cd\\u09af\\u09be\\u09a8\\u09c7\\u0987\\u099c \\u09b2\\u09bf\\u09aa \\u09b8\\u09cd\\u09b2\\u09bf\\u09aa\\u09bf\\u0982 \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09b9\\u09b2 \\u098f\\u0995\\u099f\\u09bf \\u09b2\\u09bf\\u09ad-\\u0985\\u09a8 \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09af\\u09be  \\u09b0\\u09be\\u09a4\\u09be\\u09b0\\u09be\\u09a4\\u09bf \\u09a0\\u09cb\\u0981\\u099f\\u0995\\u09c7 \\u09aa\\u09cd\\u09b0\\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u09a6\\u09c7\\u09df \\u098f\\u09ac\\u0982 \\u09ae\\u09df\\u09b6\\u09cd\\u099a\\u09be\\u09b0\\u09be\\u0987\\u099c \\u0995\\u09b0\\u09c7\\u0964  \\u09b9\\u09be\\u0987\\u09b2\\u09c1\\u09b0\\u09cb\\u09a8\\u09bf\\u0995 \\u0985\\u09cd\\u09af\\u09be\\u09b8\\u09bf\\u09a1 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09bf\\u0982, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2  \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09af\\u09be \\u098f\\u0995\\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7  \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u0986\\u09b0\\u09cd\\u09a6\\u09cd\\u09b0\\u09a4\\u09be \\u0986\\u099f\\u0995\\u09be\\u09a4\\u09c7 \\u09ac\\u09be\\u09a7\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0987 \\u09b2\\u09bf\\u09aa \\u09b8\\u09cd\\u09b2\\u09bf\\u09aa\\u09bf\\u0982 \\u09ae\\u09be\\u09b8\\u09cd\\u0995\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u09a8\\u09b0\\u09ae \\u099f\\u09c7\\u0995\\u09cd\\u09b8\\u099a\\u09be\\u09b0 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09af\\u09be  \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09b6\\u09cb\\u09b7\\u09a3\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0998\\u09a8\\u09bf\\u09b7\\u09cd\\u09a0\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09c7 \\u09af\\u09be\\u09df\\u0964  \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f\\u09c7 \\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7, \\u09ac\\u09c7\\u09b0\\u09bf \\u09ae\\u09bf\\u0995\\u09cd\\u09b8  \\u0995\\u09ae\\u09aa\\u09cd\\u09b2\\u09c7\\u0995\\u09cd\\u09b8 \\u09b0\\u09be\\u09b8\\u09cd\\u09aa\\u09ac\\u09c7\\u09b0\\u09bf\\u09b0 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf \\u098f\\u09ac\\u0982  \\u09b8\\u09c1\\u0997\\u09a8\\u09cd\\u09a7\\u09bf \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"906\\\" height=\\\"221\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-2.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-2.jpg 906w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-2-300x73.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-2-768x187.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-2-600x146.jpg 600w\\\" sizes=\\\"(max-width: 906px) 100vw, 906px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09cd\\u09b2\\u09bf\\u0995\\u09c7\\u099f\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7,\\u09b8\\u09a8\\u09cd\\u09a7\\u09cd\\u09af\\u09be\\u09df \\u09a0\\u09cb\\u0981\\u099f\\u09c7 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09bf\\u0982 \\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09b2\\u09be\\u0997\\u09be\\u09a8 \\u098f\\u09ac\\u0982 \\u09b8\\u09be\\u09b0\\u09be\\u09b0\\u09be\\u09a4 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a6\\u09bf\\u09a8\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7 \\u0986\\u09b2\\u09a4\\u09cb \\u0995\\u09b0\\u09c7 \\u09ae\\u09c1\\u099b\\u09c1\\u09a8 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-4-1-2.jpg\\\" alt=\\\"cl-rev-4-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-5-1-1-2.jpg\\\" alt=\\\"cl-rev-5-1-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-6-2.jpg\\\" alt=\\\"cl-rev-6.jpg\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09b2 \\u0995\\u09b0\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"768\\\" height=\\\"185\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/new-png-1-768x185-1-2.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/new-png-1-768x185-1-2.png 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/new-png-1-768x185-1-2-300x72.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/new-png-1-768x185-1-2-600x145.png 600w\\\" sizes=\\\"(max-width: 768px) 100vw, 768px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09e7\\u09e7\\u09eb\\u09e6 \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h2>\\u09b6\\u09c1\\u09a7\\u09c1\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af<\\/br>\\u09ed\\u09eb\\u09e6\\u099f\\u09be\\u0995\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u099b\\u09be\\u09dc\\u09be \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"1039\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"1042\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717966642\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','inherit','closed','closed','','1976-revision-v1','','','2026-06-08 21:45:23','2026-06-08 15:45:23','','1976','https://hypergrowth.fishgrowth.xyz/?p=2029','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2030','17','2026-06-08 21:45:23','2026-06-08 15:45:23','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>			\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>ধন্যবাদ</h1>		\n			<h1>অভিনন্দন !!! আপনার অর্ডারটি সফলভাবে গৃহীত হয়েছে।</h1>		\n			<h1>খুব শিগ্রই পন্য ডেলিভারী জন্য আপনার সাথে যোগাযোগ করা হবে</h1>		\n						<p>Thank you. Your order has been received.</p>\n						<ul>\n				<li>\n					Order number:					<strong>2131</strong>\n				</li>\n				<li>\n					Date:						<strong>June 9, 2026</strong>\n									</li>\n									<li>\n						Email:						<strong>admin_codex@example.local</strong>\n					</li>\n				<li>\n					Total:					<strong><bdi>&#2547;&nbsp;900</bdi></strong>\n				</li>\n									<li>\n						Payment method:													<strong>Cash on delivery</strong>\n											</li>\n			</ul>\n							<section>\n							<h2>Order details</h2>\n				<table>\n					<thead>\n				<tr>\n					<th>Product</th>\n					<th>Total</th>\n				</tr>\n			</thead>\n					<tbody>\n				<tr>\n	<td>\n		test Product <strong>&times;&nbsp;1</strong>	</td>\n	<td>\n		<bdi>&#2547;&nbsp;900</bdi>	</td>\n</tr>\n				</tbody>\n				<tfoot>\n									<tr>\n						<th scope=\"row\">Subtotal:</th>\n													<td>&#2547;&nbsp;900</td>\n					</tr>\n										<tr>\n						<th scope=\"row\">Shipping:</th>\n													<td>Free shipping</td>\n					</tr>\n										<tr>\n						<th scope=\"row\">Payment method:</th>\n													<td>Cash on delivery</td>\n					</tr>\n										<tr>\n						<th scope=\"row\">Total:</th>\n													<td>&#2547;&nbsp;900</td>\n					</tr>\n													</tbody>\n				<tfoot>\n							</tbody>\n		</table>\n			</section>\n<section>\n	<section>\n	<h2>Billing address</h2>\n	<address>\n		Md.A<br />Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna<br />Dhaka<br />Barguna\n					<p>01713318648</p>\n					<p>admin_codex@example.local</p>\n			</address>\n		<!-- /.col-1 -->\n			<h2>Shipping address</h2>\n			<address>\n				Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna<br />Dhaka<br />Barguna\n							</address>\n		<!-- /.col-2 -->\n	</section><!-- /.col2-set -->\n</section>\n		 Copyright © 2024  Busness Name | This website made with ❤️ by <a href=\"https://itgalaxi.com/\" style=\"color:red\"><b> The Smart Way</b></a>','Thank You (Woo)','','publish','closed','closed','','thank-you-woo-28','','','2026-06-09 12:14:36','2026-06-09 06:14:36','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-28/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2031','17','2026-06-08 21:45:23','2026-06-08 15:45:23','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp 472w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt Copyright u00a9 2024  Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\\\"\"','Thank You (Woo)','','inherit','closed','closed','','2030-revision-v1','','','2026-06-08 21:45:23','2026-06-08 15:45:23','','2030','https://hypergrowth.fishgrowth.xyz/?p=2031','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2032','17','2026-06-08 21:45:27','2026-06-08 15:45:27','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed \\u09a6\\u09bf\\u09a8\\u09c7\\u0987 \\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09ad\\u09be\\u09ac \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u0995\\u09b0\\u09c1\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a8 \\u0997\\u09cb\\u09b2\\u09be\\u09aa\\u09c0 !!<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"900\\\" height=\\\"600\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1.png 900w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1-300x200.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1-768x512.png 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1-600x400.png 600w\\\" sizes=\\\"(max-width: 900px) 100vw, 900px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u098f\\u099f\\u09bf \\u098f\\u0995\\u099f\\u09bf \\u0995\\u09cb\\u09b0\\u09bf\\u09df\\u09be\\u09a8 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"900\\\" height=\\\"600\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1.png 900w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1-300x200.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1-768x512.png 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Flag_of_South_Korea-1-1-600x400.png 600w\\\" sizes=\\\"(max-width: 900px) 100vw, 900px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\u09ab\\u09cd\\u09b0\\u09c0 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09b6\\u09c1\\u09a7\\u09c1\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09afhttps:\\/\\/youtu.be\\/gqLL4bWJh9U\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t<h2>\\u098f\\u0987 \\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995\\u099f\\u09bf \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"908\\\" height=\\\"221\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-2.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-2.jpg 908w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-2-300x73.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-2-768x187.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-1-2-600x146.jpg 600w\\\" sizes=\\\"(max-width: 908px) 100vw, 908px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a0\\u09cb\\u099f \\u09ab\\u09be\\u099f\\u09be \\u099c\\u09a8\\u09bf\\u09a4 \\u09b8\\u0995\\u09b2 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u09aa\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u09a8\\u09c7\\u09a8\\u09cd\\u099f\\u09b2\\u09c0 \\u0997\\u09cb\\u09b2\\u09be\\u09aa\\u09c0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09b0\\u09be \\u099a\\u09be\\u09ae\\u09a1\\u09bc\\u09be \\u0989\\u09a0\\u09bf\\u09af\\u09bc\\u09c7 \\u09a0\\u09cb\\u099f\\u0995\\u09c7 \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u09a3\\u09ac\\u09a8\\u09cd\\u09a4\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099b\\u09c7\\u09b2\\u09c7 \\u0993 \\u09ae\\u09c7\\u09af\\u09bc\\u09c7 \\u09b8\\u09ac\\u09be\\u0987 \\u098f\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed \\u09a6\\u09bf\\u09a8\\u09c7 \\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u09ac\\u09cd\\u09b2\\u09be\\u0995\\u09bf\\u09b6 \\u09ad\\u09be\\u09ac \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a6\\u09c0\\u09b0\\u09cd\\u0998 \\u09b8\\u09ae\\u09af\\u09bc \\u09a7\\u09b0\\u09c7 \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09b6\\u09a8 \\u09a7\\u09b0\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u09b0 \\u09ab\\u09cd\\u09b0\\u09c7\\u0997\\u09a8\\u09c7\\u09a8\\u09cd\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ae\\u09a8\\u0995\\u09c7 \\u09b8\\u09a4\\u09c7\\u099c \\u0995\\u09b0\\u09c7 \\u09a4\\u09c1\\u09b2\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a6\\u09c0\\u09b0\\u09cd\\u0998\\u09a6\\u09bf\\u09a8 \\u09b2\\u09bf\\u09aa\\u09cd\\u09b8\\u099f\\u09bf\\u0995 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0993 \\u09b8\\u09bf\\u0997\\u09be\\u09b0\\u09c7\\u099f \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a0\\u09cb\\u099f\\u09c7\\u09b0 \\u09af\\u09c7 \\u0995\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac \\u09b9\\u09af\\u09bc \\u09a4\\u09be \\u09aa\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u09a8\\u09c7\\u09a8\\u09cd\\u099f\\u09b2\\u09c0 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09b0\\u09cd\\u09ae\\u09be\\u099f\\u09cb\\u09b2\\u09cb\\u099c\\u09bf\\u09b8\\u09cd\\u099f \\u09a6\\u09cd\\u09ac\\u09be\\u09b0\\u09be \\u099f\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09a1 \\u09b9\\u0993\\u09af\\u09bc\\u09be\\u09af\\u09bc \\u09b8\\u09c7\\u09a8\\u09b8\\u09bf\\u099f\\u09bf\\u09ad  \\u09b8\\u09cd\\u0995\\u09bf\\u09a8\\u09c7 \\u0995\\u09cb\\u09a8\\u09b0\\u09c2\\u09aa \\u0987\\u09b0\\u09bf\\u099f\\u09c7\\u09b6\\u09a8 \\u09b8\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u0995\\u09b0\\u09c7 \\u09a8\\u09be\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"205\\\" height=\\\"250\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/strawberry-1.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0987\\u09a8\\u0997\\u09cd\\u09b0\\u09c7\\u09a1\\u09bf\\u09df\\u09c7\\u09a8\\u09cd\\u099f\\u09b8 \\u0995\\u09c0?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"205\\\" height=\\\"250\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/strawberry-1.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b2\\u09cd\\u09af\\u09be\\u09a8\\u09c7\\u0987\\u099c \\u09b2\\u09bf\\u09aa \\u09b8\\u09cd\\u09b2\\u09bf\\u09aa\\u09bf\\u0982 \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09b9\\u09b2 \\u098f\\u0995\\u099f\\u09bf \\u09b2\\u09bf\\u09ad-\\u0985\\u09a8 \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09af\\u09be  \\u09b0\\u09be\\u09a4\\u09be\\u09b0\\u09be\\u09a4\\u09bf \\u09a0\\u09cb\\u0981\\u099f\\u0995\\u09c7 \\u09aa\\u09cd\\u09b0\\u09b6\\u09be\\u09a8\\u09cd\\u09a4\\u09bf \\u09a6\\u09c7\\u09df \\u098f\\u09ac\\u0982 \\u09ae\\u09df\\u09b6\\u09cd\\u099a\\u09be\\u09b0\\u09be\\u0987\\u099c \\u0995\\u09b0\\u09c7\\u0964  \\u09b9\\u09be\\u0987\\u09b2\\u09c1\\u09b0\\u09cb\\u09a8\\u09bf\\u0995 \\u0985\\u09cd\\u09af\\u09be\\u09b8\\u09bf\\u09a1 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09bf\\u0982, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2  \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09af\\u09be \\u098f\\u0995\\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7  \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u0986\\u09b0\\u09cd\\u09a6\\u09cd\\u09b0\\u09a4\\u09be \\u0986\\u099f\\u0995\\u09be\\u09a4\\u09c7 \\u09ac\\u09be\\u09a7\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zM140 300h116v70.9c0 10.7 13 16.1 20.5 8.5l114.3-114.9c4.7-4.7 4.7-12.2 0-16.9l-114.3-115c-7.6-7.6-20.5-2.2-20.5 8.5V212H140c-6.6 0-12 5.4-12 12v64c0 6.6 5.4 12 12 12z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0987 \\u09b2\\u09bf\\u09aa \\u09b8\\u09cd\\u09b2\\u09bf\\u09aa\\u09bf\\u0982 \\u09ae\\u09be\\u09b8\\u09cd\\u0995\\u09c7 \\u098f\\u0995\\u099f\\u09bf \\u09a8\\u09b0\\u09ae \\u099f\\u09c7\\u0995\\u09cd\\u09b8\\u099a\\u09be\\u09b0 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09af\\u09be  \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09b6\\u09cb\\u09b7\\u09a3\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a0\\u09cb\\u0981\\u099f\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0998\\u09a8\\u09bf\\u09b7\\u09cd\\u09a0\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09c7 \\u09af\\u09be\\u09df\\u0964  \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u098f\\u09ac\\u0982 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f\\u09c7 \\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7, \\u09ac\\u09c7\\u09b0\\u09bf \\u09ae\\u09bf\\u0995\\u09cd\\u09b8  \\u0995\\u09ae\\u09aa\\u09cd\\u09b2\\u09c7\\u0995\\u09cd\\u09b8 \\u09b0\\u09be\\u09b8\\u09cd\\u09aa\\u09ac\\u09c7\\u09b0\\u09bf\\u09b0 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0 \\u09ae\\u09bf\\u09b7\\u09cd\\u099f\\u09bf \\u098f\\u09ac\\u0982  \\u09b8\\u09c1\\u0997\\u09a8\\u09cd\\u09a7\\u09bf \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"906\\\" height=\\\"221\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-1.jpg 906w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-1-300x73.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-1-768x187.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/img-2-1-600x146.jpg 600w\\\" sizes=\\\"(max-width: 906px) 100vw, 906px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09cd\\u09b2\\u09bf\\u0995\\u09c7\\u099f\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7,\\u09b8\\u09a8\\u09cd\\u09a7\\u09cd\\u09af\\u09be\\u09df \\u09a0\\u09cb\\u0981\\u099f\\u09c7 \\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u09bf\\u0982 \\u09b2\\u09bf\\u09aa \\u09ae\\u09be\\u09b8\\u09cd\\u0995 \\u09b2\\u09be\\u0997\\u09be\\u09a8 \\u098f\\u09ac\\u0982 \\u09b8\\u09be\\u09b0\\u09be\\u09b0\\u09be\\u09a4 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a6\\u09bf\\u09a8\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7 \\u0986\\u09b2\\u09a4\\u09cb \\u0995\\u09b0\\u09c7 \\u09ae\\u09c1\\u099b\\u09c1\\u09a8 \\u09ac\\u09be \\u09aa\\u09b0\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09b0\\u09bf\\u09ad\\u09bf\\u0989<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-4-1-1.jpg\\\" alt=\\\"cl-rev-4-1-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-5-1-1-1.jpg\\\" alt=\\\"cl-rev-5-1-1-1.jpg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cl-rev-6-1.jpg\\\" alt=\\\"cl-rev-6-1.jpg\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09b2 \\u0995\\u09b0\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01819000000\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"768\\\" height=\\\"185\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/new-png-1-768x185-1-1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/new-png-1-768x185-1-1.png 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/new-png-1-768x185-1-1-300x72.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/new-png-1-768x185-1-1-600x145.png 600w\\\" sizes=\\\"(max-width: 768px) 100vw, 768px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09e7\\u09e7\\u09eb\\u09e6 \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h2>\\u09b6\\u09c1\\u09a7\\u09c1\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u0986\\u099c\\u0995\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af<\\/br>\\u09ed\\u09eb\\u09e6\\u099f\\u09be\\u0995\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u099b\\u09be\\u09dc\\u09be \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"364\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"367\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717962355\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;0.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;0.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;0.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;0.00\\\">Place Order&nbsp;&nbsp;&#036;0.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"6264dba344\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','inherit','closed','closed','','1966-revision-v1','','','2026-06-08 21:45:27','2026-06-08 15:45:27','','1966','https://hypergrowth.fishgrowth.xyz/?p=2032','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2033','17','2026-06-08 21:45:37','2026-06-08 15:45:37','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>Congratulations , Your Order Has Been Received Successfully <\\/h2>\\t\\t\\n\\t\\t<p>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u099c\\u09c7 \\u09b2\\u09be\\u0987\\u0995 \\u09a6\\u09bf\\u09df\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u0982\\u0997\\u09c7\\u0987 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01303832348\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<a href=\\\"#\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\tlike our page\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<p>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-29__trashed','','','2026-06-09 12:06:21','2026-06-09 06:06:21','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-29/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2034','17','2026-06-08 21:45:37','2026-06-08 15:45:37','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>Congratulations , Your Order Has Been Received Successfully <\\/h2>\\t\\t\\n\\t\\t<p>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u09b8\\u09cd\\u099f\\u09ae\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ab\\u09c7\\u09b8\\u09ac\\u09c1\\u0995 \\u09aa\\u09c7\\u099c\\u09c7 \\u09b2\\u09be\\u0987\\u0995 \\u09a6\\u09bf\\u09df\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u0982\\u0997\\u09c7\\u0987 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01303832348\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<a href=\\\"#\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\tlike our page\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<p>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Thank You (Woo)','','inherit','closed','closed','','2033-revision-v1','','','2026-06-08 21:45:37','2026-06-08 15:45:37','','2033','https://hypergrowth.fishgrowth.xyz/?p=2034','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2035','17','2026-06-08 21:45:37','2026-06-08 15:45:37','','pizza template Copy','','trash','closed','closed','','pizza-template-copy__trashed','','','2026-06-09 12:07:18','2026-06-09 06:07:18','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=pizza-template-copy','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2036','17','2026-06-08 21:45:37','2026-06-08 15:45:37','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-31__trashed','','','2026-06-09 12:07:18','2026-06-09 06:07:18','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-31/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2037','17','2026-06-08 21:45:37','2026-06-08 15:45:37','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','2036-revision-v1','','','2026-06-08 21:45:37','2026-06-08 15:45:37','','2036','https://hypergrowth.fishgrowth.xyz/?p=2037','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2038','17','2026-06-08 21:45:37','2026-06-08 15:45:37','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>big bbq<\\/h1>ttnttt<h2>cheeseburger & fries<\\/h2>ttnttt<h2>20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} OFF Family Meals<\\/h2>ttnttt<a href=\\\"#order\\\">nttttttOrder Nownttttt<\\/a>nttt<h2>best bbq in town<\\/h2>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<\\/p>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-widget-image-box .elementor-image-box-content{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}<\\/style><figure><img width=\\\"1200\\\" height=\\\"1019\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/image-from-rawpixel-id-1200206-png.png\\\" alt=\\\"\\\" \\/><\\/figure><h4>burgers<\\/h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>ttnttt<figure><img width=\\\"1200\\\" height=\\\"759\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/image-from-rawpixel-id-1200242-png.png\\\" alt=\\\"\\\" \\/><\\/figure><h4>specialities<\\/h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>ttnttt<figure><img width=\\\"1200\\\" height=\\\"869\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/image-from-rawpixel-id-410628-jpeg.png\\\" alt=\\\"\\\" \\/><\\/figure><h4>family deals<\\/h4><p>Lorem ipsum dolor sit amet, consectetur.<\\/p>ttnttt<figure><img width=\\\"916\\\" height=\\\"1199\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/image-from-rawpixel-id-1200212-png.png\\\" alt=\\\"\\\" \\/><\\/figure><h4>drinks<\\/h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"72\\\" height=\\\"72\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cow.png\\\" alt=\\\"\\\" \\/>tttttttttttttttntttt768 555-5555ttttntt<p>34th &amp; Douglas Ave. Minneapolis<\\/p><p>Open hours:<\\/p><p>Tues - Satu00a0 2pm - 2am<\\/p><p>Sun -u00a0 Mon 12pm - 12pm<\\/p>ttnttt<h2>20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} Off BIG Family Meals<\\/h2>ttnttt<h2>New family deals to go.<\\/h2>ttnttt<a href=\\\"#\\\">nttttttget deliverynttttt<\\/a>nttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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>ttnttt<h2>our specialties<\\/h2>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cooked-chicken-on-white-plate-2673353-qomt3kvzscti27h0l4dzmxmvwirwnh74h43xddh77c.jpg\\\" title=\\\"cooked-chicken-on-white-plate-2673353.jpg\\\" alt=\\\"cooked-chicken-on-white-plate-2673353.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h4>$9.99<\\/h4>ttnttt<h2>BBq chicken &amp; Gumbo<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.u00a0<\\/p>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ham-and-bacon-burger-2983098-qomt3npicuxd11cx4nlvcex9ooe0akibhi2dt7d0oo.jpg\\\" title=\\\"ham-and-bacon-burger-2983098.jpg\\\" alt=\\\"ham-and-bacon-burger-2983098.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h4>$9.99<\\/h4>ttnttt<h2>BBQ Bacon burger<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.u00a0<\\/p>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/barbecue-bbq-beef-cooked-410648-qomt3rgv472ibh7gip8dmdz427vh5cx8u0obqb7fzs.jpg\\\" title=\\\"barbecue-bbq-beef-cooked-410648.jpg\\\" alt=\\\"barbecue-bbq-beef-cooked-410648.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h4>$14.99<\\/h4>ttnttt<h2>signature bbq ribs<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.u00a0<\\/p>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/burger-with-spinach-and-cheese-1199956-qomt3uadop6dab3d28g9bv9hudhksg8fuems6539h4.jpg\\\" title=\\\"burger-with-spinach-and-cheese-1199956.jpg\\\" alt=\\\"burger-with-spinach-and-cheese-1199956.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h4>$9.99<\\/h4>ttnttt<h2>signatue bbq burger<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.u00a0<\\/p>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/white-cream-on-white-bowl-1633525-qomt3x3w97a894z9lro51cjvmj3ofjjmusl8lyz2yg.jpg\\\" title=\\\"white-cream-on-white-bowl-1633525.jpg\\\" alt=\\\"white-cream-on-white-bowl-1633525.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h4>$14.99<\\/h4>ttnttt<h2>signature bbq ribs<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.u00a0<\\/p>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pexels-photo-106343-qomt3yzkmvcswcwjashe6c2staueuxr3j1w7kiwam0.jpeg\\\" title=\\\"pexels-photo-106343.jpeg\\\" alt=\\\"pexels-photo-106343.jpeg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h4>$9.99<\\/h4>ttnttt<h2>hot bbq wings<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.u00a0<\\/p>ttnttt<h2>big independence day summer party<\\/h2>ttnttt<h2>July 4th  2pm - 2am<\\/h2>ttnttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z\\\"><\\/path><\\/svg>tttnttttttview detailsnttttt<\\/a>nttttfavoritesttttnttt<figure><img width=\\\"300\\\" height=\\\"207\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/123-300x207.jpg\\\" alt=\\\"\\\" \\/><\\/figure><h4>BBQ Burger & Beer  <\\/h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>ttnttt<figure><img width=\\\"300\\\" height=\\\"200\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/barbecue-84671_1280-300x200.jpg\\\" alt=\\\"\\\" \\/><\\/figure><h4>BBQebabs <\\/h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>ttnttt<figure><img width=\\\"300\\\" height=\\\"253\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pexels-photo-291528-300x253.jpeg\\\" alt=\\\"\\\" \\/><\\/figure><h4>Auntie\'s Fudge Cake<\\/h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>ttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-carousel.min.css\\\">ttnttttttThis is my new favorite BBQ restaurant! Five stars and highly recommended!tttttntttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/allef-vinicius-152195-unsplash.png\\\" alt=\\\"Anna\\\">ntttttttt<cite>AnnaFoodie Magazine<\\/cite>tttnttttttThose burgers are best in town! My favorite place definitely!tttttntttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/angello-lopez-138917-unsplash.png\\\" alt=\\\"Jonathan\\\">ntttttttt<cite>JonathanTimeout<\\/cite>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}<\\/style>ttnttttt<a target=\\\"_blank\\\" rel=\\\"noopener\\\">nttttttFacebookntttttt<svg viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\\\"><\\/path><\\/svg>ttttt<\\/a>nttttt<a target=\\\"_blank\\\" rel=\\\"noopener\\\">nttttttTwitterntttttt<svg viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\\\"><\\/path><\\/svg>ttttt<\\/a>nttttt<a target=\\\"_blank\\\" rel=\\\"noopener\\\">nttttttYoutubentttttt<svg viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\\\"><\\/path><\\/svg>ttttt<\\/a>nttttkeep up with usttttnttt<a href=\\\"#\\\">nttttttget deliverynttttt<\\/a>nttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">tt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256.55 8C116.52 8 8 110.34 8 248.57c0 72.3 29.71 134.78 78.07 177.94 8.35 7.51 6.63 11.86 8.05 58.23A19.92 19.92 0 0 0 122 502.31c52.91-23.3 53.59-25.14 62.56-22.7C337.85 521.8 504 423.7 504 248.57 504 110.34 396.59 8 256.55 8zm149.24 185.13l-73 115.57a37.37 37.37 0 0 1-53.91 9.93l-58.08-43.47a15 15 0 0 0-18 0l-78.37 59.44c-10.46 7.93-24.16-4.6-17.11-15.67l73-115.57a37.36 37.36 0 0 1 53.91-9.93l58.06 43.46a15 15 0 0 0 18 0l78.41-59.38c10.44-7.98 24.14 4.54 17.09 15.62z\\\"><\\/path><\\/svg>ttttttnttttttttttfacebooknttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 640 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 96a48 48 0 1 0-48-48 48 48 0 0 0 48 48zm-4 121a31.9 31.9 0 0 0 20 7h64a32 32 0 0 0 0-64h-52.78L356 103a31.94 31.94 0 0 0-40.81.68l-112 96a32 32 0 0 0 3.08 50.92L288 305.12V416a32 32 0 0 0 64 0V288a32 32 0 0 0-14.25-26.62l-41.36-27.57 58.25-49.92zm116 39a128 128 0 1 0 128 128 128 128 0 0 0-128-128zm0 192a64 64 0 1 1 64-64 64 64 0 0 1-64 64zM128 256a128 128 0 1 0 128 128 128 128 0 0 0-128-128zm0 192a64 64 0 1 1 64-64 64 64 0 0 1-64 64z\\\"><\\/path><\\/svg>ttttttnttttttttttvoltnttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z\\\"><\\/path><\\/svg>ttttttnttttttttttdeliveritnttttttttt<\\/li>ntttttt<\\/ul>n<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1932\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1932\\\"nt>nt<label for=\\\"wcf-item-product-1932\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nProduct1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;990.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"2136\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"2139\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716556844\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttProduct&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;990.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"92fa430184\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/h2>\\\"\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-35__trashed','','','2026-06-09 12:07:18','2026-06-09 06:07:18','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-35/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2039','17','2026-06-08 21:45:42','2026-06-08 15:45:42','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2<\\/h2>\\t\\t\\n\\t\\t<p>\\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u0990\\u09a4\\u09bf\\u09b9\\u09cd\\u09af\\u09ac\\u09be\\u09b9\\u09c0 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\u0964 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09ad\\u09be\\u099c\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09b0\\u09cd\\u09a4\\u09be, \\u09ae\\u09c1\\u09a1\\u09bc\\u09bf \\u09ae\\u09be\\u0996\\u09be \\u098f\\u09ac\\u0982 \\u0986\\u099a\\u09be\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0995\\u09cb\\u09a8 \\u09ac\\u09bf\\u0995\\u09b2\\u09cd\\u09aa \\u09a8\\u09c7\\u0987\\u0964 \\u0986\\u09ae\\u09b0\\u09be \\u0985\\u09a8\\u09c7\\u0995\\u09c7\\u0987 \\u098f\\u0987 \\u09a4\\u09c7\\u09b2 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09b2\\u09c7\\u0993 \\u098f\\u09b0 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3 \\u098f\\u09ac\\u0982 \\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be\\u09a8\\u09cb \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0997\\u09c1\\u09a3\\u0997\\u09a4 \\u09ae\\u09be\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u09a4\\u09c7\\u09ae\\u09a8 \\u0985\\u09ac\\u0997\\u09a4 \\u09a8\\u0987\\u0964 \\u09a4\\u09be\\u0987 \\u0986\\u09ae\\u09b0\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u09b8\\u09c7\\u099b\\u09bf \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/elementor\\/thumbs\\/food1-1-qpdd4gztdloco1t76mluflrjfgphfl6eirghpnkyvc.png\\\" title=\\\"food1.png\\\" alt=\\\"food1.png\\\" loading=\\\"lazy\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09c3\\u09b7\\u09be\\u09a3 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1\\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u09b8\\u09ae\\u09cd\\u09aa\\u09b0\\u09cd\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09a4\\u09c7 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993\\u099f\\u09bf \\u09a6\\u09c7\\u0996\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\\t\\t\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0995\\u09c7\\u09a8 \\u0996\\u09be\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t<p>\\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a6\\u09c7\\u09b6\\u09c7\\u09b0 \\u098f\\u0995 \\u0985\\u09a8\\u09cd\\u09af\\u09a4\\u09ae \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09af\\u09bc \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u09a8\\u09be\\u09ae\\u0964 \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09ab\\u09c1\\u09b2 \\u09af\\u09c7\\u09ae\\u09a8 \\u09b8\\u09cc\\u09a8\\u09cd\\u09a6\\u09b0\\u09cd\\u09af \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09b8\\u09c7 \\u09a4\\u09c7\\u09ae\\u09a8\\u09bf \\u09b8\\u09b0\\u09bf\\u09b7\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09a4\\u09c7\\u09b2 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09a6\\u09c1 \\u0995\\u09b0\\u09c7\\u0964 \\u0985\\u09a8\\u09c7\\u0995 \\u09af\\u09c1\\u0997 \\u0986\\u0997\\u09c7 \\u09a5\\u09c7\\u0995\\u09c7\\u0987 \\u09ac\\u09be\\u0999\\u09be\\u09b2\\u09bf\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u09b8\\u09b9 \\u09ad\\u09b0\\u09cd\\u09a4\\u09be \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u099a\\u09b2\\u09a8 \\u0986\\u099b\\u09c7\\u0964 \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7\\u09a4 \\u09a4\\u09c7\\u09b2 \\u09ac\\u09b2\\u09a4\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09c2\\u09b0\\u09cd\\u09ac\\u09aa\\u09c1\\u09b0\\u09c1\\u09b7\\u0997\\u09a3 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u0995\\u09c7\\u0987 \\u09ac\\u09c1\\u099d\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u09af\\u09be\\u0987\\u09b9\\u09cb\\u0995, \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09af\\u09c1\\u0997\\u09c7 \\u09ac\\u09be\\u099c\\u09be\\u09b0\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09a8 \\u09b0\\u0995\\u09ae\\u09c7\\u09b0 \\u09a4\\u09c7\\u09b2 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be \\u0997\\u09c7\\u09b2\\u09c7\\u0993 \\u0997\\u09be\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u0996\\u09be \\u098f\\u09ac\\u0982 \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be\\u09b0 \\u0995\\u09be\\u099c\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc \\u098f\\u09ae\\u09a8 \\u09b8\\u09b9\\u099c \\u09b2\\u09cb\\u09ad\\u09cd\\u09af \\u09a4\\u09c7\\u09b2 \\u0986\\u09b0 \\u09a6\\u09cd\\u09ac\\u09bf\\u09a4\\u09c0\\u09af\\u09bc\\u099f\\u09bf \\u09a8\\u09c7\\u0987\\u0964 \\u098f\\u0987 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u099a\\u09be\\u09b9\\u09bf\\u09a6\\u09be \\u098f\\u09a4 \\u09ac\\u099b\\u09b0 \\u09a7\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09b2\\u09bf\\u09a4 \\u0986\\u099b\\u09c7\\u0964<\\/p><p>\\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3\\u09a4 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u098f\\u09a4 \\u099c\\u09a8\\u09aa\\u09cd\\u09b0\\u09bf\\u09af\\u09bc\\u09a4\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a7\\u09be\\u09a8 \\u0995\\u09be\\u09b0\\u09a3 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u098f\\u09ac\\u0982 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3\\u0964 \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7 \\u0995\\u09b0\\u09c7 \\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be\\u09a8\\u09cb \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u098f\\u09ac\\u0982 \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u09b6\\u09bf \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0995\\u09b0\\u0964 \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c7\\u09b2 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09a7\\u09c1\\u09a8\\u09bf\\u0995 \\u09aa\\u09cd\\u09b0\\u09af\\u09c1\\u0995\\u09cd\\u09a4\\u09bf\\u09b0 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u0998\\u09be\\u09a8\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u0964 \\u098f\\u09a4\\u09c7 \\u0989\\u099a\\u09cd\\u099a \\u099a\\u09be\\u09aa \\u098f\\u09ac\\u0982 \\u09a4\\u09be\\u09aa\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c7\\u09b2 \\u09a8\\u09bf\\u0983\\u09b8\\u09b0\\u09a3 \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u0964 \\u09aa\\u09cd\\u09b0\\u0995\\u09cd\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u099f\\u09bf \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09b9\\u099c\\u09b8\\u09be\\u09a7\\u09cd\\u09af \\u098f\\u09ac\\u0982 \\u09af\\u09be\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09bf\\u0995 \\u09b9\\u09b2\\u09c7\\u0993 \\u098f\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09a4\\u09c7\\u09b2 \\u0997\\u09c1\\u09a3\\u0997\\u09a4 \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u09a6\\u09bf\\u0995 \\u09a5\\u09c7\\u0995\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09a8\\u09bf\\u09ae\\u09cd\\u09a8 \\u09aa\\u09b0\\u09cd\\u09af\\u09be\\u09af\\u09bc\\u09c7\\u09b0 \\u09b9\\u09af\\u09bc\\u0964<\\/p><p>\\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09bf\\u0995\\u09c7 \\u098f\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u098f\\u0995\\u09a6\\u09ae \\u09ad\\u09be\\u09b2\\u09cb \\u09b9\\u09af\\u09bc \\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09a6\\u09c7\\u0996\\u09a4\\u09c7 \\u0985\\u09a8\\u09c7\\u0995\\u099f\\u09be \\u0987\\u099e\\u09cd\\u099c\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09b2\\u09c1\\u09ac\\u09cd\\u09b0\\u09bf\\u0995\\u09c7\\u09a8\\u09cd\\u099f \\u09ac\\u09be \\u09ae\\u09ac\\u09bf\\u09b2\\u09c7\\u09b0 \\u09ae\\u09a4 \\u09a6\\u09c7\\u0996\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964 \\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09bf\\u0995\\u09c7 \\u0995\\u09ae \\u09a4\\u09be\\u09aa\\u09c7 \\u0985\\u09b0\\u09cd\\u09a5\\u09be\\u09ce \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u09a4\\u09c7 \\u0995\\u09be\\u09a0\\u09c7\\u09b0 \\u0998\\u09be\\u09a8\\u09bf \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09a4\\u09c7\\u09b2 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09b2 \\u0986\\u09a6\\u09b0\\u09cd\\u09b6 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u0964 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u0987 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09a4\\u09c7\\u09b2 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0993 \\u0996\\u09be\\u0981\\u099f\\u09bf \\u09b9\\u09af\\u09bc\\u0964 \\u09a4\\u09be\\u099b\\u09be\\u09a1\\u09bc\\u09be \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u098f\\u09ac\\u0982 \\u09b0\\u0982 \\u098f\\u0995\\u09a6\\u09ae \\u099f\\u09aa \\u0995\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u09af\\u09bc\\u0964 \\u098f\\u0996\\u09be\\u09a8\\u09c7 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf \\u09ac\\u09b2\\u09a4\\u09c7 \\u0995\\u09be\\u09a0\\u09c7\\u09b0 \\u0998\\u09be\\u09a8\\u09bf\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u0995\\u09ae \\u09a4\\u09be\\u09aa\\u09c7 \\u09a4\\u09c7\\u09b2 \\u09a8\\u09bf\\u0983\\u09b8\\u09b0\\u09a3 \\u0995\\u09b0\\u09be\\u0995\\u09c7 \\u09ac\\u09c1\\u099d\\u09be\\u09af\\u09bc\\u0964<\\/p><p>\\u09ae\\u09cb\\u099f\\u0995\\u09a5\\u09be, \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a7\\u09be\\u09a8 \\u0989\\u09a6\\u09cd\\u09a6\\u09c7\\u09b6\\u09cd\\u09af \\u09b9\\u09b2 \\u098f\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09a6 \\u0989\\u09aa\\u09ad\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u098f\\u09ac\\u0982 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u0998\\u09be\\u09a8\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09af\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc \\u09a4\\u09be \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u0993 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09a6\\u09c1 \\u09b9\\u09af\\u09bc \\u09a8\\u09be\\u0964 \\u098f\\u0987 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09ac\\u09be \\u0995\\u09be\\u09a0\\u09c7\\u09b0 \\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u099a\\u09be\\u09b9\\u09bf\\u09a6\\u09be \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09c7\\u09b6\\u09bf\\u0964 \\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09bf\\u0995\\u09c7 \\u098f\\u0987 \\u09a4\\u09c7\\u09b2 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09af\\u09be \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c7\\u0995 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09be\\u09b0\\u09c0\\u09b0\\u09bf\\u0995 \\u09ac\\u09cd\\u09af\\u09a5\\u09be \\u0995\\u09ae\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09b8\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c0\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a0\\u09be\\u09a8\\u09cd\\u09a1\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b9\\u09be\\u09b0\\u09cd\\u099f \\u09ad\\u09be\\u09b2\\u09cb \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09a8\\u09b8\\u09cd\\u0995\\u09cd\\u09b0\\u09bf\\u09a8 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09b0\\u09c0\\u09b0 \\u099a\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u09b8\\u09c1\\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09ac\\u099c\\u09be\\u09af\\u09bc \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u0995\\u09cd\\u09a4 \\u09b8\\u099e\\u09cd\\u099a\\u09be\\u09b2\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u09ac\\u09cd\\u09af\\u09be\\u0995\\u099f\\u09c7\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09b2 \\u0993 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u09ab\\u09be\\u0999\\u09cd\\u0997\\u09be\\u09b2 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8\\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09cd\\u09ae\\u09c3\\u09a4\\u09bf\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09be\\u0987\\u0997\\u09cd\\u09b0\\u09c7\\u09a8\\u09c7\\u09b0 \\u0995\\u09b7\\u09cd\\u099f \\u0995\\u09ae\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0993\\u099c\\u09a8 \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"720\\\" height=\\\"720\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1.png 720w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-300x300.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-150x150.png 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-600x600.png 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-100x100.png 100w\\\" sizes=\\\"(max-width: 720px) 100vw, 720px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0998\\u09be\\u09a8\\u09bf \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0995\\u09bf\\u09ad\\u09be\\u09ac\\u09c7 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09c7?<\\/h2>\\t\\t\\n\\t\\t<p>\\u0998\\u09be\\u09a8\\u09bf \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09a8\\u09be\\u09a4\\u09a8\\u09c0 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u0964 \\u0995\\u09be\\u09b0\\u09a3 \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u0987\\u09b2\\u09c7\\u0995\\u099f\\u09cd\\u09b0\\u09bf\\u0995 \\u09a1\\u09bf\\u09ad\\u09be\\u0987\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u0985\\u09b2\\u09cd\\u09aa \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u098f\\u09ac\\u0982 \\u0985\\u09b2\\u09cd\\u09aa \\u09aa\\u09b0\\u09bf\\u09b6\\u09cd\\u09b0\\u09ae\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964 \\u09a4\\u09ac\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u09a4\\u09c7 \\u0998\\u09be\\u09a8\\u09bf \\u09ad\\u09be\\u0999\\u09cd\\u0997\\u09be \\u09a4\\u09c7\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09b2\\u09c7 \\u0995\\u09bf\\u099b\\u09c1 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf \\u09ae\\u09c7\\u09a8\\u09c7 \\u099a\\u09b2\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964 \\u09a4\\u09cb \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be \\u09b6\\u09c1\\u0995\\u09bf\\u09af\\u09bc\\u09c7 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09b8\\u09c7\\u09b8 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb \\u0993\\u099c\\u09a8 \\u0995\\u09b0\\u09c7 \\u09aa\\u09c2\\u09b0\\u09cd\\u09ac \\u09aa\\u09cd\\u09b0\\u09b8\\u09cd\\u09a4\\u09c1\\u09a4\\u09bf \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964<\\/p><p>\\u098f\\u09b0\\u09aa\\u09b0 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb \\u09aa\\u09bf\\u09b7\\u09c7 \\u09a8\\u09c7\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u09af\\u09c7\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964 \\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3\\u09a4 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u0995\\u09b2 \\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0995\\u09be\\u09a0 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7\\u0987 \\u0998\\u09be\\u09a8\\u09bf \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964 \\u09a4\\u09ac\\u09c7 \\u09a4\\u09c7\\u0981\\u09a4\\u09c1\\u09b2 \\u0995\\u09be\\u09a0\\u09c7\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u0998\\u09be\\u09a8\\u09bf \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u0989\\u099a\\u09cd\\u099a \\u09ae\\u09be\\u09a8\\u09c7\\u09b0 \\u09a4\\u09c7\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09b9\\u09af\\u09bc\\u0964\\u0998\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a6\\u09be\\u09a8\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09c7 \\u09af\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u09b8\\u09c7\\u0997\\u09c1\\u09b2\\u09cb \\u0998\\u09be\\u09a8\\u09bf\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u0997\\u09b0\\u09c1\\u09b0 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af\\u09c7 \\u0998\\u09be\\u09a8\\u09bf\\u09b0 \\u09b9\\u09be\\u09a4\\u09b2 \\u09a7\\u09c0\\u09b0 \\u0997\\u09a4\\u09bf\\u09a4\\u09c7 \\u0998\\u09c1\\u09b0\\u09be\\u09a8\\u09cb \\u09b9\\u09af\\u09bc\\u0964 \\u0995\\u09be\\u09b0\\u09a3 \\u09af\\u09a6\\u09bf \\u0989\\u099a\\u09cd\\u099a \\u0997\\u09a4\\u09bf\\u09a4\\u09c7 \\u0998\\u09c1\\u09b0\\u09be\\u09a8\\u09cb \\u09b9\\u09af\\u09bc \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u09a4\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09a4\\u09be\\u09aa \\u09b8\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u0995\\u09b0\\u09ac\\u09c7 \\u09af\\u09be \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0997\\u09c1\\u09a3\\u0997\\u09a4 \\u09ae\\u09be\\u09a8 \\u09a8\\u09b7\\u09cd\\u099f \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u0985\\u09a8\\u09cd\\u09af\\u09a6\\u09bf\\u0995\\u09c7 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1 \\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf\\u09b0 \\u0989\\u09b2\\u0999\\u09cd\\u0998\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964<\\/p><p>\\u09af\\u09be\\u0987\\u09b9\\u09cb\\u0995, \\u098f\\u09ad\\u09be\\u09ac\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u09b9\\u09be\\u09a4\\u09b2 \\u0998\\u09c1\\u09b0\\u09be\\u09a8\\u09cb\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a6\\u09be\\u09a8\\u09be \\u09a7\\u09c0\\u09b0\\u09c7 \\u09a7\\u09c0\\u09b0\\u09c7 \\u09aa\\u09bf\\u09b7\\u09a4\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7 \\u098f\\u09ac\\u0982 \\u09a4\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u098f\\u0995\\u099f\\u09c1 \\u098f\\u0995\\u099f\\u09c1 \\u0995\\u09b0\\u09c7 \\u09b0\\u09b8 \\u09ac\\u09c7\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\u0964 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0\\u09a4\\u09c7 \\u09b8\\u09c7\\u0987 \\u09b0\\u09b8 \\u09ab\\u09bf\\u09b2\\u099f\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a4\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09c7\\u09b2 \\u0986\\u09b2\\u09be\\u09a6\\u09be \\u0995\\u09b0\\u09c7 \\u09a4\\u09be \\u09ac\\u09be\\u099c\\u09be\\u09b0\\u099c\\u09be\\u09a4 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"720\\\" height=\\\"720\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1.png 720w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-300x300.png 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-150x150.png 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-600x600.png 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/food1-100x100.png 100w\\\" sizes=\\\"(max-width: 720px) 100vw, 720px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09cb\\u09b2\\u09cd\\u09a1\\u09aa\\u09cd\\u09b0\\u09c7\\u09b8 \\u09b8\\u09b0\\u09bf\\u09b7\\u09be\\u09b0 \\u09a4\\u09c7\\u09b2\\u09c7\\u09b0 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09eb \\u09b2\\u09bf\\u099f\\u09be\\u09b0\\n\\t\\t\\t\\t\\t\\u09e7\\u09e9\\u09e6\\u09e6\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h2>\\u09b8\\u09c0\\u09ae\\u09bf\\u09a4 \\u09b8\\u09ae\\u09df\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0989\\u09aa\\u09b0 \\u0995\\u09c7\\u09a8 \\u0986\\u09b8\\u09cd\\u09a5\\u09be \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u09a8!<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7, \\u09a6\\u09c7\\u0996\\u09c7 \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09a8\\u09c7\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09a3\\u09cd\\u09af \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u0996\\u09be\\u099f\\u09bf, \\u0985\\u09a5\\u09c7\\u09a8\\u099f\\u09bf\\u0995, \\u09ad\\u09c7\\u099c\\u09be\\u09b2 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b7\\u09cd\\u09a0\\u09be\\u09a8 \\u0989\\u09b2\\u09be\\u09ae\\u09be\\u09df\\u09c7 \\u0995\\u09c7\\u09b0\\u09be\\u09ae \\u09a6\\u09cd\\u09ac\\u09be\\u09b0\\u09be \\u09aa\\u09b0\\u09bf\\u099a\\u09be\\u09b2\\u09bf\\u09a4 \\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09aa\\u09a8\\u09be\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09df\\u09a4\\u09be \\u098f\\u0987 \\u09af\\u09c7, \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b7\\u09cd\\u09a0\\u09be\\u09a8 \\u0995\\u0996\\u09a8\\u09cb\\u0987 \\u09ad\\u09c7\\u099c\\u09be\\u09b2 \\u09aa\\u09a3\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7 \\u09a8\\u09be \\u09b6\\u09a4\\u09ad\\u09be\\u0997 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09bf\\u09a4!\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01962890890\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01962890890\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b2\\u09c7\\u09b8 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8!<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>\\n\\t<input type=\\\"radio\\\"\\n\\tid=\\\"wcf-item-product-989\\\"\\n\\tname=\\\"wcf-single-sel\\\" \\n\\tvalue=\\\"989\\\"\\n\\t>\\n\\t<label for=\\\"wcf-item-product-989\\\"><\\/label>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-100x100.webp 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"479\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"482\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717922254\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\\" data-value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\\">\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"93b5769a18\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','inherit','closed','closed','','2023-revision-v1','','','2026-06-08 21:45:42','2026-06-08 15:45:42','','2023','https://hypergrowth.fishgrowth.xyz/?p=2039','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2040','17','2026-06-08 21:45:51','2026-06-08 15:45:51','','Red Rice','','trash','closed','closed','','red-rice__trashed','','','2026-06-09 12:04:18','2026-06-09 06:04:18','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=red-rice','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2041','17','2026-06-08 21:45:51','2026-06-08 15:45:51','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-32__trashed','','','2026-06-09 12:04:17','2026-06-09 06:04:17','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-32/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2042','17','2026-06-08 21:45:51','2026-06-08 15:45:51','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','2041-revision-v1','','','2026-06-08 21:45:51','2026-06-08 15:45:51','','2041','https://hypergrowth.fishgrowth.xyz/?p=2042','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2043','17','2026-06-08 21:45:51','2026-06-08 15:45:51','\"<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0993\\u099c\\u09a8 \\u09b9\\u09cd\\u09b0\\u09be\\u09b8\\u09c7, \\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7, \\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09a4\\u09c7, \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0987\\u09ae\\u09cb\\u09a8\\u09bf\\u099f\\u09bf \\u098f\\u09ac\\u0982 \\u098f\\u09a8\\u09be\\u09b0\\u09cd\\u099c\\u09bf \\u09b8\\u09be\\u09aa\\u09cb\\u09b0\\u09cd\\u099f\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\\n\\t\\t\\t\\t\\t \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\\n\\t\\t\\t\\t\\t \\u09b9\\u09cb\\u0995 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0986\\u09ae\\u09be\\u09b0 \\u09a8\\u09bf\\u09a4\\u09cd\\u09af \\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t<p>\\u0995\\u09bf\\u09b6\\u09cb\\u09b0\\u0997\\u099e\\u09cd\\u099c\\u09c7\\u09b0 \\u09b9\\u09be\\u0993\\u09b0 \\u0985\\u099e\\u09cd\\u099a\\u09b2 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09c3\\u09a4 \\u098f\\u0987 \\u099a\\u09be\\u09b2 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c1\\u09b0\\u09cd\\u09a8 \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2, \\u09b0\\u0982 \\u09ac\\u09bf\\u09b9\\u09c0\\u09a8, \\u09b9\\u09be\\u09ab \\u0993 \\u09ab\\u09c1\\u09b2 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7\\u0964 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09be\\u09b0 \\u09aa\\u09b0 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2 \\u0997\\u09c1\\u09b2\\u09cb \\u099d\\u09c7\\u09a1\\u09bc\\u09c7 \\u09aa\\u09b0\\u09bf\\u09b8\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09b0\\u09cb\\u09a6\\u09c7 \\u09b6\\u09c1\\u0995\\u09bf\\u09af\\u09bc\\u09c7 \\u09ab\\u09c1\\u09a1 \\u0997\\u09cd\\u09b0\\u09c7\\u09a1 \\u09aa\\u09b2\\u09bf\\u09a4\\u09c7 \\u09aa\\u09c7\\u0995\\u09c7\\u099f \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964 \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0986\\u0989\\u09b6 \\u099c\\u09be\\u09a4\\u09c0\\u09df \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2 \\u0986\\u099b\\u09c7\\u0964 \\u0995\\u09cd\\u09b0\\u09df \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\u09b2\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0985\\u09a5\\u09ac\\u09be \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/p>https:\\/\\/youtu.be\\/Wuls05qIKuU?si=V87zAjhQ8Da7GyZ_\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\\u09c7\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0985\\u09a4\\u09bf\\u09b0\\u09bf\\u0995\\u09cd\\u09a4 \\u0993\\u099c\\u09a8 \\u09b9\\u09cd\\u09b0\\u09be\\u09b8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0987\\u09ae\\u09cb\\u09a8\\u09bf\\u099f\\u09bf \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u099c\\u09c7\\u09b0 \\u098f\\u09a8\\u09be\\u09b0\\u09cd\\u099c\\u09bf \\u09a6\\u09c7\\u09df\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0985\\u09a4\\u09bf\\u09b0\\u09bf\\u0995\\u09cd\\u09a4 \\u0993\\u099c\\u09a8 \\u09b9\\u09cd\\u09b0\\u09be\\u09b8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0987\\u09ae\\u09cb\\u09a8\\u09bf\\u099f\\u09bf \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u099c\\u09c7\\u09b0 \\u098f\\u09a8\\u09be\\u09b0\\u09cd\\u099c\\u09bf \\u09a6\\u09c7\\u09df\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1\\\" height=\\\"1\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-18-at-8.51.17-PM.jpeg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09a8 \\u09a7\\u09be\\u09a8\\u09c7\\u09b0 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1\\\" height=\\\"1\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-18-at-8.54.29-PM.jpeg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u0989\\u09b6 \\u09a7\\u09be\\u09a8\\u09c7\\u09b0 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2<\\/h2>\\t\\t\\n\\t\\t<p>\\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a8\\u09a4 \\u09ad\\u09be\\u09a4 \\u0996\\u09be\\u0987\\u0964 \\u09ad\\u09be\\u09a4\\u0987 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a7\\u09be\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u0964 \\u09ad\\u09be\\u09a4 \\u099b\\u09be\\u09dc\\u09be \\u0986\\u09ae\\u09b0\\u09be \\u09ac\\u09be\\u0999\\u09be\\u09b2\\u09bf\\u09b0\\u09be \\u0985\\u099a\\u09b2, \\u098f\\u0995\\u09a5\\u09be \\u09ae\\u09cb\\u099f\\u09c7\\u0993 \\u09ae\\u09bf\\u09a5\\u09cd\\u09af\\u09be \\u09a8\\u09af\\u09bc\\u0964 \\u0986\\u09b0 \\u09ad\\u09be\\u09a4 \\u09af\\u09c7\\u09b9\\u09c7\\u09a4\\u09c1 \\u0996\\u09c7\\u09a4\\u09c7\\u0987 \\u09b9\\u09ac\\u09c7, \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u0995\\u09c7\\u09a8\\u09a8\\u09be \\u0986\\u09ae\\u09b0\\u09be \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\\u09c7\\u09b0 \\u09ad\\u09be\\u09a4\\u0987 \\u0996\\u09be\\u0987\\u0964 \\u0995\\u09be\\u09b0\\u09a3 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\\u09c7\\u09b0 \\u09ad\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09a6\\u09be \\u099a\\u09be\\u09b2\\u09c7\\u09b0 \\u09ad\\u09be\\u09a4\\u09c7\\u09b0 \\u09a4\\u09c1\\u09b2\\u09a8\\u09be\\u09af\\u09bc \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7\\u0964 \\u09af\\u09c7\\u09ae\\u09a8 :- \\u0986\\u09af\\u09bc\\u09b0\\u09a8, \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u098f\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u0993 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u098f\\u09b0 \\u09ae\\u09a4\\u09cb \\u09a8\\u09be\\u09a8\\u09be\\u09a8 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8\\u0964 \\u09af\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09be\\u09a8\\u09ac\\u09a6\\u09c7\\u09b9\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0996\\u09c1\\u09ac\\u0987 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae\\u09a4 \\u09a7\\u09be\\u09a8\\u099f\\u09be \\u09b9\\u09be\\u0993\\u09dc \\u0993 \\u099a\\u09b0 \\u0985\\u099e\\u09cd\\u099a\\u09b2 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a4\\u09be\\u09b0\\u09aa\\u09b0\\u09c7 \\u09a7\\u09be\\u09a8\\u099f\\u09be\\u0995\\u09c7 \\u09b8\\u09bf\\u09a6\\u09cd\\u09a7 \\u0995\\u09b0\\u09bf\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09bf\\u09a6\\u09cd\\u09a7 \\u0995\\u09b0\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09cb\\u09b2\\u09be\\u09df \\u09b6\\u09cb\\u0995\\u09be\\u09a4\\u09c7 \\u09a6\\u09bf\\u09df\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09a7\\u09be\\u09a8\\u099f\\u09be\\u0995\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09c7\\u09b2\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u099a\\u09be\\u09b2\\u09c7 \\u09b0\\u09c2\\u09aa\\u09be\\u09a8\\u09cd\\u09a4\\u09b0 \\u0995\\u09b0\\u09bf\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u0986\\u09ae\\u09b0\\u09be \\u0995\\u09cb\\u09a8\\u09cb \\u0985\\u099f\\u09cb \\u09b0\\u09be\\u0987\\u09b8 \\u09ae\\u09c7\\u09b2 \\u09ac\\u09be \\u09ae\\u09cd\\u09af\\u09be\\u09b6\\u09bf\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09bf \\u09a8\\u09be\\u0964 \\u09ab\\u09b2\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u099a\\u09be\\u09b2\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09a8\\u09b7\\u09cd\\u099f \\u09b9\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>\\n\\t<input type=\\\"checkbox\\\"\\n\\tname=\\\"wcf-multiple-sel\\\"\\n\\tvalue=\\\"989\\\"  >\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-100x100.webp 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"558\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"561\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717922888\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"93b5769a18\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-36__trashed','','','2026-06-09 12:04:17','2026-06-09 06:04:17','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-36/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2044','17','2026-06-08 21:45:52','2026-06-08 15:45:52','\"<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0993\\u099c\\u09a8 \\u09b9\\u09cd\\u09b0\\u09be\\u09b8\\u09c7, \\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7, \\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09a4\\u09c7, \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0987\\u09ae\\u09cb\\u09a8\\u09bf\\u099f\\u09bf \\u098f\\u09ac\\u0982 \\u098f\\u09a8\\u09be\\u09b0\\u09cd\\u099c\\u09bf \\u09b8\\u09be\\u09aa\\u09cb\\u09b0\\u09cd\\u099f\\u09b0 \\u099c\\u09a8\\u09cd\\u09af\\n\\t\\t\\t\\t\\t \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\\n\\t\\t\\t\\t\\t \\u09b9\\u09cb\\u0995 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0986\\u09ae\\u09be\\u09b0 \\u09a8\\u09bf\\u09a4\\u09cd\\u09af \\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t<p>\\u0995\\u09bf\\u09b6\\u09cb\\u09b0\\u0997\\u099e\\u09cd\\u099c\\u09c7\\u09b0 \\u09b9\\u09be\\u0993\\u09b0 \\u0985\\u099e\\u09cd\\u099a\\u09b2 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09c3\\u09a4 \\u098f\\u0987 \\u099a\\u09be\\u09b2 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c1\\u09b0\\u09cd\\u09a8 \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2, \\u09b0\\u0982 \\u09ac\\u09bf\\u09b9\\u09c0\\u09a8, \\u09b9\\u09be\\u09ab \\u0993 \\u09ab\\u09c1\\u09b2 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7\\u0964 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09be\\u09b0 \\u09aa\\u09b0 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2 \\u0997\\u09c1\\u09b2\\u09cb \\u099d\\u09c7\\u09a1\\u09bc\\u09c7 \\u09aa\\u09b0\\u09bf\\u09b8\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09b0\\u09cb\\u09a6\\u09c7 \\u09b6\\u09c1\\u0995\\u09bf\\u09af\\u09bc\\u09c7 \\u09ab\\u09c1\\u09a1 \\u0997\\u09cd\\u09b0\\u09c7\\u09a1 \\u09aa\\u09b2\\u09bf\\u09a4\\u09c7 \\u09aa\\u09c7\\u0995\\u09c7\\u099f \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964 \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0986\\u0989\\u09b6 \\u099c\\u09be\\u09a4\\u09c0\\u09df \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2 \\u0986\\u099b\\u09c7\\u0964 \\u0995\\u09cd\\u09b0\\u09df \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\u09b2\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0985\\u09a5\\u09ac\\u09be \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/p>https:\\/\\/youtu.be\\/Wuls05qIKuU?si=V87zAjhQ8Da7GyZ_\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\\u09c7\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0985\\u09a4\\u09bf\\u09b0\\u09bf\\u0995\\u09cd\\u09a4 \\u0993\\u099c\\u09a8 \\u09b9\\u09cd\\u09b0\\u09be\\u09b8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0987\\u09ae\\u09cb\\u09a8\\u09bf\\u099f\\u09bf \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u099c\\u09c7\\u09b0 \\u098f\\u09a8\\u09be\\u09b0\\u09cd\\u099c\\u09bf \\u09a6\\u09c7\\u09df\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0985\\u09a4\\u09bf\\u09b0\\u09bf\\u0995\\u09cd\\u09a4 \\u0993\\u099c\\u09a8 \\u09b9\\u09cd\\u09b0\\u09be\\u09b8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09df\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c7\\u09b0 \\u099d\\u09c1\\u0981\\u0995\\u09bf \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09b0\\u09be\\u0996\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u0987\\u09ae\\u09cb\\u09a8\\u09bf\\u099f\\u09bf \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u099c\\u09c7\\u09b0 \\u098f\\u09a8\\u09be\\u09b0\\u09cd\\u099c\\u09bf \\u09a6\\u09c7\\u09df\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1\\\" height=\\\"1\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-18-at-8.51.17-PM.jpeg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09a8 \\u09a7\\u09be\\u09a8\\u09c7\\u09b0 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1\\\" height=\\\"1\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-18-at-8.54.29-PM.jpeg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u0989\\u09b6 \\u09a7\\u09be\\u09a8\\u09c7\\u09b0 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2<\\/h2>\\t\\t\\n\\t\\t<p>\\u0986\\u09ae\\u09b0\\u09be \\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a8\\u09a4 \\u09ad\\u09be\\u09a4 \\u0996\\u09be\\u0987\\u0964 \\u09ad\\u09be\\u09a4\\u0987 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a7\\u09be\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u0964 \\u09ad\\u09be\\u09a4 \\u099b\\u09be\\u09dc\\u09be \\u0986\\u09ae\\u09b0\\u09be \\u09ac\\u09be\\u0999\\u09be\\u09b2\\u09bf\\u09b0\\u09be \\u0985\\u099a\\u09b2, \\u098f\\u0995\\u09a5\\u09be \\u09ae\\u09cb\\u099f\\u09c7\\u0993 \\u09ae\\u09bf\\u09a5\\u09cd\\u09af\\u09be \\u09a8\\u09af\\u09bc\\u0964 \\u0986\\u09b0 \\u09ad\\u09be\\u09a4 \\u09af\\u09c7\\u09b9\\u09c7\\u09a4\\u09c1 \\u0996\\u09c7\\u09a4\\u09c7\\u0987 \\u09b9\\u09ac\\u09c7, \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u0995\\u09c7\\u09a8\\u09a8\\u09be \\u0986\\u09ae\\u09b0\\u09be \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\\u09c7\\u09b0 \\u09ad\\u09be\\u09a4\\u0987 \\u0996\\u09be\\u0987\\u0964 \\u0995\\u09be\\u09b0\\u09a3 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2\\u09c7\\u09b0 \\u09ad\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09a6\\u09be \\u099a\\u09be\\u09b2\\u09c7\\u09b0 \\u09ad\\u09be\\u09a4\\u09c7\\u09b0 \\u09a4\\u09c1\\u09b2\\u09a8\\u09be\\u09af\\u09bc \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7\\u0964 \\u09af\\u09c7\\u09ae\\u09a8 :- \\u0986\\u09af\\u09bc\\u09b0\\u09a8, \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u098f\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u0993 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u098f\\u09b0 \\u09ae\\u09a4\\u09cb \\u09a8\\u09be\\u09a8\\u09be\\u09a8 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8\\u0964 \\u09af\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09be\\u09a8\\u09ac\\u09a6\\u09c7\\u09b9\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0996\\u09c1\\u09ac\\u0987 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09c7\\u09a8 \\u09b2\\u09be\\u09b2 \\u099a\\u09be\\u09b2 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae\\u09a4 \\u09a7\\u09be\\u09a8\\u099f\\u09be \\u09b9\\u09be\\u0993\\u09dc \\u0993 \\u099a\\u09b0 \\u0985\\u099e\\u09cd\\u099a\\u09b2 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b8\\u0982\\u0997\\u09cd\\u09b0\\u09b9 \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a4\\u09be\\u09b0\\u09aa\\u09b0\\u09c7 \\u09a7\\u09be\\u09a8\\u099f\\u09be\\u0995\\u09c7 \\u09b8\\u09bf\\u09a6\\u09cd\\u09a7 \\u0995\\u09b0\\u09bf\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09bf\\u09a6\\u09cd\\u09a7 \\u0995\\u09b0\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09cb\\u09b2\\u09be\\u09df \\u09b6\\u09cb\\u0995\\u09be\\u09a4\\u09c7 \\u09a6\\u09bf\\u09df\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09a7\\u09be\\u09a8\\u099f\\u09be\\u0995\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09ae\\u09c7\\u09b2\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u099a\\u09be\\u09b2\\u09c7 \\u09b0\\u09c2\\u09aa\\u09be\\u09a8\\u09cd\\u09a4\\u09b0 \\u0995\\u09b0\\u09bf\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u0986\\u09ae\\u09b0\\u09be \\u0995\\u09cb\\u09a8\\u09cb \\u0985\\u099f\\u09cb \\u09b0\\u09be\\u0987\\u09b8 \\u09ae\\u09c7\\u09b2 \\u09ac\\u09be \\u09ae\\u09cd\\u09af\\u09be\\u09b6\\u09bf\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09bf \\u09a8\\u09be\\u0964 \\u09ab\\u09b2\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u099a\\u09be\\u09b2\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09a8\\u09b7\\u09cd\\u099f \\u09b9\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>\\n\\t<input type=\\\"checkbox\\\"\\n\\tname=\\\"wcf-multiple-sel\\\"\\n\\tvalue=\\\"989\\\"  >\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-100x100.webp 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"558\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"561\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717922888\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"93b5769a18\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','inherit','closed','closed','','2043-revision-v1','','','2026-06-08 21:45:52','2026-06-08 15:45:52','','2043','https://hypergrowth.fishgrowth.xyz/?p=2044','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2045','17','2026-06-08 21:45:55','2026-06-08 15:45:55','\"\\\"\\\"<style>\\/*! elementor - v3.21.0 - 26-05-2024 *\\/n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>tttttttttt<img width=\\\"500\\\" height=\\\"500\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green_White_Modern_Natural_Cosmetic_Instagram_Post-removebg-preview.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green_White_Modern_Natural_Cosmetic_Instagram_Post-removebg-preview.png 500w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/Green_White_Modern_Natural_Cosmetic_Instagram_Post-removebg-preview-300x300.png 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/Green_White_Modern_Natural_Cosmetic_Instagram_Post-removebg-preview-150x150.png 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green_White_Modern_Natural_Cosmetic_Instagram_Post-removebg-preview-100x100-1.png 100w\\\" sizes=\\\"(max-width: 500px) 100vw, 500px\\\" \\/>tttttttttttttnttt<style>\\/*! elementor - v3.21.0 - 26-05-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>   u09a6u09c0u09b0u09cdu0998u09aeu09c7u09dfu09beu09a6u09c7 u09aau09beu09dfu09c7u09b0 u0995u09cdu09b7u09a4u09bf u09a8u09be u0995u09b0u09a4u09c7 u099au09beu0987u09b2u09c7   u099au09beu09aeu09dcu09beu09b0 u09b2u09cbu09abu09beu09b0 u099cu09c1u09a4u09be u09acu09cdu09afu09beu09acu09b9u09beu09b0 u0995u09b0u09c1u09a8 ! n<\\/h2>ttnttt<h2>u09acu09beu09afu09bcu09c1 u09aau09cdu09b0u09acu09beu09b9u09c7u09b0 u0995u09cdu09b7u09c7u09a4u09cdu09b0u09c7 u09aau09b6u09c1u09b0 u099au09beu09aeu09a1u09bcu09be u0985u09a8u09c7u0995 u09acu09c7u09b6u09bf u0995u09beu09b0u09cdu09afu0995u09b0u09c0 u0985u09a4u09bfu09b0u09bfu0995u09cdu09a4 u0998u09beu09aeu09beu09df u09a8u09be u098fu09acu0982 u09a6u09c1u09b0u09cdu0997u09a8u09cdu09a7 u099bu09dcu09beu09df u09a8u09be!n<\\/h2>ttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/jildshop.com\\/wp-content\\/plugins\\/pro-elements\\/assets\\/css\\/widget-carousel.min.css\\\">ttnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>tttttttPreviousnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>tttttttNextnttt<a href=\\\"#order-form\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<style>\\/*! elementor - v3.21.0 - 26-05-2024 *\\/n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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>ttnttt<h2>  u0985u09b0u09bfu099cu09bfu09a8u09beu09b2 u099au09beu09aeu09a1u09bcu09be  u099au09c7u09a8u09beu09b0 u0989u09aau09beu09afu09bcn<\\/h2>ttnttt<style>\\/*! elementor - v3.21.0 - 26-05-2024 *\\/n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>ttnttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\\\"><\\/path><\\/svg>nttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/jildshop.com\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">tt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttud83dudc49 u09abu09beu09dfu09beu09b0 u099fu09c7u09b8u09cdu099f u0985u09b0u09cdu09a5u09beu09ce u0986u0997u09c1u09a8u09c7 u09aau09cbu09dcu09beu09b2u09c7 u09b8u09b9u099cu09c7 u09aau09c1u09dcu09acu09c7 u09a8u09be, u0997u09b2u09acu09c7 u09a8u09be u09a5u09beu0995u09acu09c7 u0985u0995u09cdu09b7u09a4nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttud83dudc49 u09b9u09beu09a4 u09a6u09bfu09dfu09c7 u099au09beu09aa u09a6u09bfu09b2u09c7 u099au09beu09aeu09dcu09be u09b9u09b2u09c7 u09abu09beu099fu09acu09c7 u09a8u09be u0995u09bfu099bu09c1 u09b9u09acu09c7 u09a8u09be, u0986u09b0u09cdu099fu09bfu09abu09bfu09b6u09bfu09afu09bcu09beu09b2 u09b9u09b2u09c7 u09abu09c7u099fu09c7 u09afu09beu09acu09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttud83dudc49 u09a8u09beu0995u09c7u09b0 u0995u09beu099bu09c7 u09a8u09bfu09b2u09c7 u099au09beu09aeu09dcu09be u0997u09a8u09cdu09a7 u09aau09beu09acu09c7u09a8 u0986u09b0u09cdu099fu09bfu09abu09bfu09b6u09bfu09afu09bcu09beu09b2 u09b9u09b2u09c7 u0997u09a8u09cdu09a7 u09aau09beu09acu09c7u09a8 u09a8u09benttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttud83dudc49 u0995u09c3u09a4u09cdu09b0u09bfu09ae u099au09beu09aeu09dcu09be u09acu09be u09b0u09c7u0995u09cdu09b8u09bfu09a8u09c7 u09b8u09beu09a7u09beu09b0u09a3u09a4 u0995u09cbu09a8 u09a8u09be u0995u09cbu09a8 u0995u09beu09aau09dc u09acu09cdu09afu09acu09b9u09beu09b0 u0995u09b0u09c7 u09a4u09beu09b0 u0989u09aau09b0 u09aau09b2u09bfu09aeu09beu09b0 u09a6u09bfu09dfu09c7 u0995u09cbu099fu09bfu0982 u0995u09b0u09be u09b9u09dfu09c7 u09a5u09beu0995u09c7u0964 u0986u09b0 u098f u099cu09a8u09cdu09af u0995u09c3u09a4u09cdu09b0u09bfu09ae u099au09beu09aeu09dcu09beu09df u09a4u09c8u09b0u09bf u09aau09a8u09cdu09afu099fu09bf u0993u09b2u09cdu099fu09beu09b2u09c7u0987 u0995u09beu09aau09dcu09c7u09b0 u0986u09b8u09cdu09a4u09b0u09a3 u09aau09beu0993u09dfu09be u09afu09beu09dfu0964 u0995u09bfu09a8u09cdu09a4u09c1 u099au09beu09aeu09dcu09beu09b0 u09a4u09c8u09b0u09bf u09aau09a8u09cdu09afu09c7 u098fu09aeu09a8 u0995u09bfu099bu09c1 u09a6u09c7u0996u09be u09afu09beu09df u09a8u09beu0964nttttttttt<\\/li>ntttttt<\\/ul>nttt<a href=\\\"#order-form\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<h2>  u0995u09cdu09afu099cu09c1u09dfu09c7u09b2 u099cu09c1u09a4u09be u0995u09c7u09a8 u09aau09b0u09acu09c7u09a8 ?n<\\/h2>ttnttttt<ul>nttttttt<li>nttttttttttud83dudc49  u09aau09beu099eu09cdu099cu09beu09acu09c0u09b0 u09b8u09beu09a5u09c7 u09aeu09beu09a8u09beu09a8u09b8u0987nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49  u09b6u09beu09b0u09cdu099f u098fu09b0 u09b8u09beu09a5u09c7 u0987u0989u09a8u09bfu0995nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49  u09afu09c7 u0995u09cbu09a8 u0995u09beu09b2u09beu09b0u09c7u09b0 u09b8u09beu09a5u09c7 u09aeu09cdu09afu09beu099a u09b9u09afu09bcnttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49  u09a8u09bfu099cu09c7u0995u09c7 u0986u09b0u09cdu0995u09b7u09a8u09c0u09afu09bc u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49   u0987u0989u09a8u09bfu0995 u09a1u09bfu099cu09beu0987u09a8u09c7 u09a4u09c8u09b0u09bf u0995u09b0u09be u09b9u09afu09bcu09c7u099bnttttttttt<\\/li>ntttttt<\\/ul>nttt<a href=\\\"#order-form\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttttttttttttt<img width=\\\"1024\\\" height=\\\"512\\\" src=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2-1024x512.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2-1024x512.webp 1024w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2-300x150.webp 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2-768x384.webp 768w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2-1536x768.webp 1536w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2-2048x1024.webp 2048w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2-600x300.webp 600w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttt<h2>  jildshop  u09a5u09c7u0995u09c7 u0995u09c7u09a8 u09a8u09bfu09acu09c7u09a8 ?n<\\/h2>ttnttttttttttttt<img width=\\\"1024\\\" height=\\\"512\\\" src=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/1-1024x512.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/1-1024x512.webp 1024w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/1-300x150.webp 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/1-768x384.webp 768w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/1-1536x768.webp 1536w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/1-2048x1024.webp 2048w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/1-600x300.webp 600w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttt<a href=\\\"#order-form\\\">ntttttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttttt<ul>nttttttt<li>nttttttttttud83dudc49 u09e7u09e6u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} u0985u09b0u099cu09bfu09a8u09beu09b2 u0997u09b0u09c1u09b0 u099au09beu09aeu09dcu09beu0964nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49 u09b0u09beu09acu09beu09b0 u0995u09c7u09b0u09c7u09aa u09b8u09cbu09b2u0964nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49 u09ec u09aeu09beu09b8u09c7u09b0 u0993u09dfu09beu09b0u09c7u09a8u09cdu099fu09bf u0964nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49 u09a1u0995u09cdu099fu09b0 u0987u09a8u09b8u09cbu09b2 u0987u0989u099c u0995u09b0u09be u09b9u09afu09bcu09c7u099bu09c7u0964nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a8 u0995u09cdu09afu09beu09b6 u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u0964nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49   u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u09e7 u099fu09beu0995u09beu0993 u0985u0997u09cdu09b0u09c0u09ae u09a6u09bfu09a4u09c7 u09b9u09acu09c7 u09a8u09be, u09aau09cdu09b0u09a1u09beu0995u09cdu099f u09b9u09beu09a4u09c7 u09aau09c7u09afu09bcu09c7 u099au09c7u0995 u0995u09b0u09c7 u099fu09beu0995u09be u09a6u09bfu09acu09c7u09a8u0964nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49  u09afu09a6u09bf u099cu09c1u09a4u09be u099au09beu09aeu09a1u09bcu09beu09b0 u09a8u09be u09b9u09df u09aau09cdu09b0u09aeu09beu09a3 u0995u09b0u09a4u09c7 u09aau09beu09b0u09b2u09c7 u09e7u09e6 u09b9u09beu099cu09beu09b0 u099fu09beu0995u09be u09aau09c1u09b0u09b8u09cdu0995u09beu09b0nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49  u09aau09beu09b0u09cdu09b8u09c7u09b2 u09b9u09beu09a4u09c7 u09aau09c7u09afu09bcu09c7 u09aeu09c2u09b2u09cdu09af u09aau09b0u09bfu09b6u09cbu09a7u09c7u09b0 u09b8u09c1u09acu09bfu09a7u09beu0964nttttttttt<\\/li>ntttttttt<li>nttttttttttud83dudc49  u099cu09c1u09a4u09beu09b0 u09b8u09beu0987u099c u09aau09beu09dfu09c7 u09a8u09be u09b9u09b2u09c7 u098fu0995u09cdu09b8u099au09c7u099eu09cdu099c u09b8u09c1u09acu09bfu09a7u09benttttttttt<\\/li>ntttttt<\\/ul>nttt<h2><a href=\\\"https:\\/\\/api.whatsapp.com\\/send?phone=+8801960552321&#038;text={b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20u0986u09aeu09bf{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20u09b2u09cbu09abu09beu09b0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20u09a8u09bfu09a4u09c7{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20u099au09beu0987{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}20\\\">u09acu09bf:u09a6u09cdu09b0: u09a4u09beu09b0 u09aau09b0u09c7 u09b8u09beu0987u099c u09a8u09bfu09dfu09c7 u0995u09a8u09abu09bfu0989u099c u09b9u09b2u09c7 u098fu09b8u09cdu0995u09c7u09b2 u09acu09be u09abu09bfu09a4u09be u09aeu09c7u09aau09c7 u09aau09beu09dfu09c7u09b0 u09abu099fu09cb u09a6u09bfu09a8 <br\\/>  Whatsapp 01923529627<\\/a><\\/h2>ttnttt<a href=\\\"tel:01923529627\\\">ntttttttttCall Now nttttt<\\/a>nttt<h2>u09b8u09beu0987u099c u0997u09beu0987u09a1<\\/h2>ttnttttttttttttt<img width=\\\"1024\\\" height=\\\"1024\\\" src=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/fb295913-fc7a-4fdc-8251-50ccde869aba-1024x1024.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/fb295913-fc7a-4fdc-8251-50ccde869aba-1024x1024.jpeg 1024w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/fb295913-fc7a-4fdc-8251-50ccde869aba-300x300.jpeg 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/fb295913-fc7a-4fdc-8251-50ccde869aba-150x150.jpeg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/fb295913-fc7a-4fdc-8251-50ccde869aba-768x768-1.jpeg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/fb295913-fc7a-4fdc-8251-50ccde869aba-600x600-1.jpeg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/fb295913-fc7a-4fdc-8251-50ccde869aba-100x100-1.jpeg 100w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/fb295913-fc7a-4fdc-8251-50ccde869aba.jpeg 1280w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttt<h2>u0986u09aeu09beu09a6u09c7u09b0 u09aau09a8u09cdu09afu09c7n<\\/h2>ttnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>tttttttPreviousnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>tttttttNextnttt<h2>u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u09a8u09bfu099au09c7u09b0 u09abu09b0u09cdu09aeu099fu09bf u09aau09c2u09b0u09a8 u0995u09b0u09c1u09a8<\\/h2>ttnttt<h2>u0995u09cbu09a8 u0995u09beu09b0u09a8u09c7 u098fu0987 u09aau09cdu09afu09beu0995u09c7u099c u0986u09aau09a8u09beu09b0 u09aau099bu09a8u09cdu09a6 u09a8u09be u09b9u09b2u09c7 u0986u09aau09a8u09bf u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u09abu09bf u09aau09cdu09b0u09a6u09beu09a8 u0995u09b0u09c7 u09b0u09bfu099fu09beu09b0u09cdu09a8 u0995u09b0u09a4u09c7 u09aau09beu09b0u09acu09c7u09a8u0964<\\/h2>ttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/jildshop.com\\/wp-content\\/plugins\\/pro-elements\\/assets\\/css\\/widget-animated-headline.min.css\\\">tt<h3>ntttttu09b0u09c7u0997u09c1u09b2u09beu09b0 u09aeu09c2u09b2u09cdu09afu0983 ntttttu09e8u09eeu09e6u09e6ntttttu099fu09beu0995u09benttttt<\\/h3>nttttt<h3>ntttttu09a1u09bfu09b8u0995u09beu0989u09a8u09cdu099f u09aeu09c2u09b2u09cdu09afu0983 ntttttu09e8u09e8u09efu09e6ntttttu099fu09beu0995u09be nttttt<\\/h3>nttt<h2>u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09abu09cdu09b0u09c0<\\/h2>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/jildshop.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> u09b0u0982 u09aau099bu09a8u09cdu09a6 u0995u09b0u09c1u09a8 <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1219\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1219\\\"nt>nt<label for=\\\"wcf-item-product-1219\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2a6d1c8a-3d0b-4cf2-b957-00754f90d682-300x300.jpeg\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2a6d1c8a-3d0b-4cf2-b957-00754f90d682-300x300.jpeg 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/2a6d1c8a-3d0b-4cf2-b957-00754f90d682-150x150.jpeg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/2a6d1c8a-3d0b-4cf2-b957-00754f90d682-100x100-1.jpeg 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nNEW CASUAL SHOES  B601-  BLACK1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,290.00<\\/bdi>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1226\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1226\\\"nt>nt<label for=\\\"wcf-item-product-1226\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/02b583fc-bb59-46fd-b155-b8c6cfa235be-300x300.jpeg\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/02b583fc-bb59-46fd-b155-b8c6cfa235be-300x300.jpeg 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/02b583fc-bb59-46fd-b155-b8c6cfa235be-150x150.jpeg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/02b583fc-bb59-46fd-b155-b8c6cfa235be-768x768-1.jpeg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/02b583fc-bb59-46fd-b155-b8c6cfa235be-600x600-1.jpeg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/02b583fc-bb59-46fd-b155-b8c6cfa235be-100x100-1.jpeg 100w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/02b583fc-bb59-46fd-b155-b8c6cfa235be.jpeg 823w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nNEW CASUAL SHOES  B602 BLACK1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,290.00<\\/bdi>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1227\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1227\\\"nt>nt<label for=\\\"wcf-item-product-1227\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/000859d1-8564-4bcd-85e2-dc9fb75980ff-300x300.jpeg\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/000859d1-8564-4bcd-85e2-dc9fb75980ff-300x300.jpeg 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/000859d1-8564-4bcd-85e2-dc9fb75980ff-150x150.jpeg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/000859d1-8564-4bcd-85e2-dc9fb75980ff-100x100-1.jpeg 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nNEW CASUAL SHOES  B603 CHOCOLATE1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,290.00<\\/bdi>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1228\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1228\\\"nt>nt<label for=\\\"wcf-item-product-1228\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/8f7285fe-84db-48a8-a94e-c318af8d4dec-300x300.jpeg\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/8f7285fe-84db-48a8-a94e-c318af8d4dec-300x300.jpeg 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/8f7285fe-84db-48a8-a94e-c318af8d4dec-150x150.jpeg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/8f7285fe-84db-48a8-a94e-c318af8d4dec-100x100-1.jpeg 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nNEW CASUAL SHOES  B605 MASTER1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,290.00<\\/bdi>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1229\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1229\\\"nt>nt<label for=\\\"wcf-item-product-1229\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/9461e1c9-352d-4930-bf3d-e3de92242d66-300x300.jpeg\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/9461e1c9-352d-4930-bf3d-e3de92242d66-300x300.jpeg 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/9461e1c9-352d-4930-bf3d-e3de92242d66-150x150.jpeg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/9461e1c9-352d-4930-bf3d-e3de92242d66-100x100-1.jpeg 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nNEW CASUAL SHOES  B604-  DARK ASS1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,290.00<\\/bdi>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1230\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1230\\\"nt>nt<label for=\\\"wcf-item-product-1230\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/cbe3b96d-38b6-47bb-a25e-13903c7dc84b-300x300.jpeg\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/cbe3b96d-38b6-47bb-a25e-13903c7dc84b-300x300.jpeg 300w, https:\\/\\/jildshop.com\\/wp-content\\/uploads\\/2024\\/06\\/cbe3b96d-38b6-47bb-a25e-13903c7dc84b-150x150.jpeg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cbe3b96d-38b6-47bb-a25e-13903c7dc84b-100x100-1.jpeg 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nNEW CASUAL SHOES B B606  MASTER1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;2,290.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<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_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<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_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_test_field\\\" data-priority=\\\"120\\\"><label for=\\\"billing_test_u09e9u09ef\\\">u09b8u09beu0987u099c&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"radio\\\" value=\\\"u09e9u09ef\\\" name=\\\"billing_test\\\"  id=\\\"billing_test_u09e9u09ef\\\" \\/><label for=\\\"billing_test_u09e9u09ef\\\">u09e9u09ef<\\/label><input type=\\\"radio\\\" value=\\\"u09eau09e6\\\" name=\\\"billing_test\\\"  id=\\\"billing_test_u09eau09e6\\\" \\/><label for=\\\"billing_test_u09eau09e6\\\">u09eau09e6<\\/label><input type=\\\"radio\\\" value=\\\"u09eau09e7\\\" name=\\\"billing_test\\\"  id=\\\"billing_test_u09eau09e7\\\" \\/><label for=\\\"billing_test_u09eau09e7\\\">u09eau09e7<\\/label><input type=\\\"radio\\\" value=\\\"u09eau09e8\\\" name=\\\"billing_test\\\"  id=\\\"billing_test_u09eau09e8\\\" \\/><label for=\\\"billing_test_u09eau09e8\\\">u09eau09e8<\\/label><input type=\\\"radio\\\" value=\\\"u09eau09e9\\\" name=\\\"billing_test\\\"  id=\\\"billing_test_u09eau09e9\\\" \\/><label for=\\\"billing_test_u09eau09e9\\\">u09eau09e9<\\/label><input type=\\\"radio\\\" value=\\\"u09eau09ea\\\" name=\\\"billing_test\\\"  id=\\\"billing_test_u09eau09ea\\\" \\/><label for=\\\"billing_test_u09eau09ea\\\">u09eau09ea<\\/label><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"1177\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"1180\\\">ntt<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1717532906\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttNEW CASUAL SHOES  B601-  BLACK&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;2,290.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;2,290.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;2,290.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/jildshop.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;2,290.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;2,290.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;2,290.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"61013ba4ba\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->\\\"\\\"\"','Checkout (Woo)','','inherit','closed','closed','','1980-revision-v1','','','2026-06-08 21:45:55','2026-06-08 15:45:55','','1980','https://hypergrowth.fishgrowth.xyz/?p=2045','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2046','17','2026-06-08 21:46:07','2026-06-08 15:46:07','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7<\\/h1>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-30__trashed','','','2026-06-09 12:04:17','2026-06-09 06:04:17','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-30/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2047','17','2026-06-08 21:46:07','2026-06-08 15:46:07','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7<\\/h1>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Thank You (Woo)','','inherit','closed','closed','','2046-revision-v1','','','2026-06-08 21:46:07','2026-06-08 15:46:07','','2046','https://hypergrowth.fishgrowth.xyz/?p=2047','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2048','17','2026-06-08 21:46:13','2026-06-08 15:46:13','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7<\\/h1>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-31__trashed','','','2026-06-09 12:45:37','2026-06-09 06:45:37','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-31/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2049','17','2026-06-08 21:46:13','2026-06-08 15:46:13','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7<\\/h1>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Thank You (Woo)','','inherit','closed','closed','','2048-revision-v1','','','2026-06-08 21:46:13','2026-06-08 15:46:13','','2048','https://hypergrowth.fishgrowth.xyz/?p=2049','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2050','17','2026-06-08 21:46:13','2026-06-08 15:46:13','','Rice Skin Beauty Serum','','publish','closed','closed','','rice-skin-beauty-serum','','','2026-06-08 21:46:13','2026-06-08 15:46:13','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=rice-skin-beauty-serum','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2051','17','2026-06-08 21:46:13','2026-06-08 15:46:13','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','publish','closed','closed','','sales-landing-33','','','2026-06-08 21:46:13','2026-06-08 15:46:13','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-33/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2052','17','2026-06-08 21:46:13','2026-06-08 15:46:13','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','2051-revision-v1','','','2026-06-08 21:46:13','2026-06-08 15:46:13','','2051','https://hypergrowth.fishgrowth.xyz/?p=2052','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2053','17','2026-06-08 21:46:13','2026-06-08 15:46:13','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Rice Skin Beauty Serum 15ML</h2>		\n		<p>ব্রনের কারনে ত্বকে গর্তের মতো হয়, আর একে pores বলে। আর এই pores দূর করতে সবচেয়ে বেস্ট হলো Rice Serum. এটা শুধু pores remove করে না, স্কিনটাইট ও গ্লোয়িং করে Damage Skin Repair করে।</p>		\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"768\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/c5ce835e-4872-4d7f-a060-1717ee012280.png\" alt=\"\" />													\n		<p>ব্রনের কারনে ত্বকে গর্তের মতো হয়ে, আর একে pores বলে। আর এই pores দূর করতে সবচেয়ে Best হলো Rice Serum. এটি ছেলে মেয়ে সবাই ব্যবহার করতে পারবে। কোণ প্রকার সাইড ইফেক্ট নেই।</p>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">		<h3>\n					মাত্র ৭*দি*নে চেহারায় কমবে\n					৫*বছ*র\n				</h3>\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>রাইস সিরাম কেন ব্যবহার করবেন?</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										আপনার ত্বক ফর্সা,উজ্জল,গ্লোয়িং করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										ত্বকের পোর মিনিমাইজ করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										ত্বক মসৃণ করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										ত্বকের কালো দাগ দূর করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										ত্বকে পুষ্টি যোগায়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										ড্রাই ত্বক ময়েশ্চারাইজ করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										কোরিয়ান মেয়েদের মত স্কিনকে গ্লাসস্ক্রিন করবে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										সারাদিন আপনার ত্বককে টানটান রাখে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										সূর্যের ক্ষতিকর প্রভাব থেকে ত্বক রক্ষা করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										ত্বক প্রদাহ থেকে বাচায়।\n									</li>\n						</ul>\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>ব্যবহারের পদ্ধতি</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z\"></path></svg>						\n										সিরামের ২/৩ ফোঁটা হাতে নিয়ে আঙ্গুল দিয়ে হালকা Dabbing motion এ massage করবেন।\n									</li>\n						</ul>\n													<img width=\"1024\" height=\"768\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/c5ce835e-4872-4d7f-a060-1717ee012280.png\" alt=\"\" />													\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>অর্ডার করতে নিচের ফর্মটি সঠিক ভাবে পুরন করুন।</h2>		\n						<a href=\"tel:01819000000\">\n					<h3>\n					ফোনে অর্ডার করুন: \n					01819000000\n				</h3>\n		</a>		\n<!-- CHECKOUT SHORTCODE -->\n<ul role=\"alert\">\n			<li>\n			No product is selected. Please select products from the  checkout meta settings   to continue.		</li>\n	</ul>\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নাম&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">আপনার সম্পূর্ণ ঠিকানা&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"House number and street name\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">আপনার ফোন নাম্বার&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"2050\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"2053\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780985141\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n			<h2> Copyright © 2024  Busness Name | This website made with ❤️ by <a href=\"https://itgalaxi.com/\" style=\"color:red\"><b> The Smart Way</b></a></h2>','Rice Skin Beauty Serum','','publish','closed','closed','','rice-skin-beauty-serum','','','2026-06-09 12:05:41','2026-06-09 06:05:41','','0','https://hypergrowth.fishgrowth.xyz/step/rice-skin-beauty-serum/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2054','17','2026-06-08 21:46:23','2026-06-08 15:46:23','\"\\\"\\\"<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>tttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/logo-2-1.png\\\" title=\\\"\\\" alt=\\\"\\\" loading=\\\"lazy\\\" \\/>tttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2 u09b9u09dfu09c7u099bu09c7<\\/h2>ttntt<p>u09aau09a3u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u09b8u0982u0995u09cdu09b0u09beu09a8u09cdu09a4 u09aau09cdu09b0u09dfu09cbu099cu09a8u09c7 u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7u0964<\\/p>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>603<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>March 24, 2024<\\/strong>ntttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>750.00&#2547;&nbsp;<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttu0995u09c1u09dcu09aeu09c1u09dcu09c7 u09aau09c1u09b0u09beu09a8 u09a2u09beu0995u09beu09b0 u09acu09bfu0996u09cdu09afu09beu09a4 u09a8u09beu09b0u0995u09c7u09b2 <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>750.00&#2547;&nbsp;<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Shipping:<\\/th>nttttttt<td>Free shipping<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>\\\"\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-32__trashed','','','2026-06-09 12:06:57','2026-06-09 06:06:57','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-32/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2055','17','2026-06-08 21:46:24','2026-06-08 15:46:24','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>Rice Skin Beauty Serum 15ML<\\/h2>\\t\\t\\n\\t\\t<p>\\u09ac\\u09cd\\u09b0\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u0997\\u09b0\\u09cd\\u09a4\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b9\\u09df, \\u0986\\u09b0 \\u098f\\u0995\\u09c7 pores \\u09ac\\u09b2\\u09c7\\u0964 \\u0986\\u09b0 \\u098f\\u0987 pores \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09ac\\u099a\\u09c7\\u09df\\u09c7 \\u09ac\\u09c7\\u09b8\\u09cd\\u099f \\u09b9\\u09b2\\u09cb\\u00a0Rice Serum. \\u098f\\u099f\\u09be \\u09b6\\u09c1\\u09a7\\u09c1 pores remove \\u0995\\u09b0\\u09c7 \\u09a8\\u09be, \\u09b8\\u09cd\\u0995\\u09bf\\u09a8\\u099f\\u09be\\u0987\\u099f \\u0993 \\u0997\\u09cd\\u09b2\\u09cb\\u09df\\u09bf\\u0982 \\u0995\\u09b0\\u09c7 Damage Skin Repair \\u0995\\u09b0\\u09c7\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"268\\\" height=\\\"300\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/why-268x300-1-1.jpg\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t<p>\\u09ac\\u09cd\\u09b0\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u0997\\u09b0\\u09cd\\u09a4\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b9\\u09df\\u09c7, \\u0986\\u09b0 \\u098f\\u0995\\u09c7 pores \\u09ac\\u09b2\\u09c7\\u0964 \\u0986\\u09b0 \\u098f\\u0987 pores \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09ac\\u099a\\u09c7\\u09df\\u09c7 Best \\u09b9\\u09b2\\u09cb Rice Serum. \\u098f\\u099f\\u09bf \\u099b\\u09c7\\u09b2\\u09c7 \\u09ae\\u09c7\\u09df\\u09c7 \\u09b8\\u09ac\\u09be\\u0987 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u0964 \\u0995\\u09cb\\u09a3 \\u09aa\\u09cd\\u09b0\\u0995\\u09be\\u09b0 \\u09b8\\u09be\\u0987\\u09a1 \\u0987\\u09ab\\u09c7\\u0995\\u09cd\\u099f \\u09a8\\u09c7\\u0987\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ed*\\u09a6\\u09bf*\\u09a8\\u09c7 \\u099a\\u09c7\\u09b9\\u09be\\u09b0\\u09be\\u09df \\u0995\\u09ae\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\u09eb*\\u09ac\\u099b*\\u09b0\\n\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09b0\\u09be\\u0987\\u09b8 \\u09b8\\u09bf\\u09b0\\u09be\\u09ae \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a4\\u09cd\\u09ac\\u0995 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be,\\u0989\\u099c\\u09cd\\u099c\\u09b2,\\u0997\\u09cd\\u09b2\\u09cb\\u09df\\u09bf\\u0982 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09aa\\u09cb\\u09b0 \\u09ae\\u09bf\\u09a8\\u09bf\\u09ae\\u09be\\u0987\\u099c \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a4\\u09cd\\u09ac\\u0995 \\u09ae\\u09b8\\u09c3\\u09a3 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf \\u09af\\u09cb\\u0997\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09cd\\u09b0\\u09be\\u0987 \\u09a4\\u09cd\\u09ac\\u0995 \\u09ae\\u09af\\u09bc\\u09c7\\u09b6\\u09cd\\u099a\\u09be\\u09b0\\u09be\\u0987\\u099c \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09cb\\u09b0\\u09bf\\u09af\\u09bc\\u09be\\u09a8 \\u09ae\\u09c7\\u09af\\u09bc\\u09c7\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a4 \\u09b8\\u09cd\\u0995\\u09bf\\u09a8\\u0995\\u09c7 \\u0997\\u09cd\\u09b2\\u09be\\u09b8\\u09b8\\u09cd\\u0995\\u09cd\\u09b0\\u09bf\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09b0\\u09be\\u09a6\\u09bf\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a4\\u09cd\\u09ac\\u0995\\u0995\\u09c7 \\u099f\\u09be\\u09a8\\u099f\\u09be\\u09a8 \\u09b0\\u09be\\u0996\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09c2\\u09b0\\u09cd\\u09af\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf\\u0995\\u09b0 \\u09aa\\u09cd\\u09b0\\u09ad\\u09be\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a4\\u09cd\\u09ac\\u0995 \\u09aa\\u09cd\\u09b0\\u09a6\\u09be\\u09b9 \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09be\\u099a\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09bf\\u09b0\\u09be\\u09ae\\u09c7\\u09b0 \\u09e8\\/\\u09e9 \\u09ab\\u09cb\\u0981\\u099f\\u09be \\u09b9\\u09be\\u09a4\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u0999\\u09cd\\u0997\\u09c1\\u09b2 \\u09a6\\u09bf\\u09df\\u09c7 \\u09b9\\u09be\\u09b2\\u0995\\u09be Dabbing motion \\u098f massage \\u0995\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1024\\\" height=\\\"634\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/real-1024x634-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/real-1024x634-1.jpg 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/real-1024x634-1-300x186.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/real-1024x634-1-768x476.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/real-1024x634-1-600x371.jpg 600w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995 \\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09c1\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t<a href=\\\"tel:01819000000\\\">\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8: \\n\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t<\\/h3>\\n\\t\\t<\\/a>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"580\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"583\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717923061\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;0.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;0.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;0.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;0.00\\\">Place Order&nbsp;&nbsp;&#036;0.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"93b5769a18\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Rice Skin Beauty Serum','','inherit','closed','closed','','2053-revision-v1','','','2026-06-08 21:46:24','2026-06-08 15:46:24','','2053','https://hypergrowth.fishgrowth.xyz/?p=2055','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2056','17','2026-06-08 21:46:24','2026-06-08 15:46:24','','Rocking Chair 03','','trash','closed','closed','','rocking-chair-03__trashed','','','2026-06-09 12:06:48','2026-06-09 06:06:48','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=rocking-chair-03','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2057','17','2026-06-08 21:46:24','2026-06-08 15:46:24','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-34__trashed','','','2026-06-09 12:06:48','2026-06-09 06:06:48','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-34/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2058','17','2026-06-08 21:46:24','2026-06-08 15:46:24','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','2057-revision-v1','','','2026-06-08 21:46:24','2026-06-08 15:46:24','','2057','https://hypergrowth.fishgrowth.xyz/?p=2058','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2059','17','2026-06-08 21:46:24','2026-06-08 15:46:24','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u099f\\u09bf\\u0986\\u0987\\u09ac\\u09c7\\u09ac\\u09bf \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09af\\u09bc\\u09be\\u09b0 <\\/br>\\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0989\\u099c\\u09bf\\u0995 \\u098f\\u09ac\\u0982 \\u09ad\\u09be\\u0987\\u09ac\\u09cd\\u09b0\\u09c7\\u09b6\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099b\\u09cb\\u099f \\u09ac\\u09be\\u09ac\\u09c1 \\u0986\\u099b\\u09c7 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u09ac\\u09be\\u09ac\\u09c1\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u0987 \\u09ac\\u09c7\\u09ac\\u09bf \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0 \\u09a8\\u09be\\u0987 \\u09a4\\u09be\\u09b0 \\u09ae\\u09be\\u09a8\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ae\\u09c2\\u09b2\\u09cd\\u09af <del>\\u09e9\\u09eb\\u09e6\\u09e6<\\/del> \\u09e9\\u09e7\\u09eb\\u09e6\\/=<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/youtu.be\\/2qd1FrD5hDc?si=WRP7h784cUsAcyYb\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09af\\u09c7 \\u09eb\\u099f\\u09bf \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a4\\u09cd\\u09af\\u09c7\\u0995 \\u09ae\\u09be\\u09df\\u09c7\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ac\\u09c7\\u09ac\\u09bf \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0  \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09a6\\u09b0\\u0995\\u09be\\u09b0\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u0995\\u09c7  \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0\\u09c7 \\u09ac\\u09b8\\u09be\\u09b2\\u09c7 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be \\u0995\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u0995\\u09b0\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u0995\\u09c7 \\u0995\\u09cb\\u09b2\\u09c7 \\u09a8\\u09c7\\u0993\\u09df\\u09be\\u09b0 \\u09b2\\u09cb\\u0995 \\u09a8\\u09be \\u09a5\\u09be\\u0995\\u09b2\\u09c7 \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0\\u09c7 \\u09ac\\u09b8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09b8\\u09b9\\u099c\\u09c7 \\u09af\\u09c7 \\u0995\\u09a8\\u09cb \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a6\\u09c0\\u09b0\\u09cd\\u0998\\u0995\\u09cd\\u09b7\\u09a3  \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u0995\\u09c7 \\u0995\\u09cb\\u09b2\\u09c7 \\u09a8\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09b9\\u09be\\u09b8\\u09bf\\u0996\\u09c1\\u09b6\\u09bf \\u0993 \\u0986\\u09a8\\u09a8\\u09cd\\u09a6\\u09c7 \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09b8\\u09ac\\u09b8\\u09ae\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09be \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be-\\u09ac\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u0995\\u09b0\\u09be\\u09b8\\u09b9 \\u09af\\u09c7 \\u0995\\u09cb\\u09a8\\u09cb \\u09b9\\u09be\\u09a4\\u09c7\\u09b0 \\u0995\\u09be\\u099c \\u0985\\u09a4\\u09bf  \\u09b8\\u09b9\\u099c\\u09c7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09aa\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u0998\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09b2\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09af\\u09c7 \\u09b8\\u0995\\u09b2 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u09b0\\u09be \\u098f\\u0995\\u099f\\u09c1 \\u09b0\\u09bf\\u09b2\\u09be\\u0995\\u09cd\\u09b8 \\u09a5\\u09be\\u0995\\u09a4\\u09c7 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c7 \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u0987 \\u09aa\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u098f\\u09b0 \\u09ac\\u09bf\\u0995\\u09b2\\u09cd\\u09aa \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ab\\u09bf\\u099a\\u09be\\u09b0\\u09b8<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09a7\\u09c1\\u09a8\\u09bf\\u0995, \\u099f\\u09c7\\u0995\\u09b8\\u0987 \\u09ab\\u09cd\\u09b0\\u09c7\\u09ae\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09bf\\u09b0 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af\\u09c7 \\u099a\\u09be\\u09b2\\u09bf\\u09a4\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09af\\u09bc \\u09a6\\u09c1\\u0987\\u099f\\u09bf \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u09aa\\u09bf\\u0999\\u09cd\\u0995 \\u098f\\u09ac\\u0982 \\u09b8\\u09cd\\u0995\\u09be\\u0987 \\u09ac\\u09cd\\u09b2\\u09c1\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09aa\\u09b8\\u09be\\u09b0\\u09a3\\u09af\\u09cb\\u0997\\u09cd\\u09af \\u0996\\u09c7\\u09b2\\u09a8\\u09be \\u09ac\\u09be\\u09b0, \\u099d\\u09c1\\u09b2\\u09a8\\u09cd\\u09a4 \\u0996\\u09c7\\u09b2\\u09a8\\u09be\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be \\u09aa\\u09be \\u09a8\\u09be\\u09dc\\u09be\\u099a\\u09be\\u09dc\\u09be \\u0995\\u09b0\\u09b2\\u09c7 \\u098f\\u099f\\u09be\\u0993 (\\u09a6\\u09c1\\u09b2\\u09a4\\u09c7) \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09bf\\u0989\\u099c\\u09bf\\u0995\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u0995\\u09bf\\u0982 \\u09ae\\u09cb\\u09b6\\u09a8 \\u0993 \\u09b8\\u09be\\u09a5\\u09c7 \\u0996\\u09c7\\u09b2\\u09a8\\u09be \\u09b0\\u09df\\u09c7\\u099b\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a \\u09a7\\u09be\\u09b0\\u09a8 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09e7\\u09ee \\u0995\\u09c7\\u099c\\u09bf\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09ae\\u09ce\\u0995\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09aa\\u09a8\\u09cd\\u09af \\u09af\\u09be \\u09a6\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be \\u0986\\u09a8\\u09a8\\u09cd\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0996\\u09c7\\u09b2\\u09be \\u0995\\u09b0\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u099b\\u09ac\\u09bf\\u09b0 \\u09a8\\u09cd\\u09af\\u09be\\u09df \\u09ac\\u0995\\u09cd\\u09b8 \\u0986\\u0995\\u09be\\u09b0\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09cc\\u099b\\u09be\\u09ac\\u09c7\\n<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/b40afdc3-30df-40c0-9ef7-d90752f27b32-1-1.jpeg\\\" alt=\\\"b40afdc3-30df-40c0-9ef7-d90752f27b32-1-1.jpeg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5ca50362-b638-4037-b24b-ae7b756c6b31-1-1.jpeg\\\" alt=\\\"5ca50362-b638-4037-b24b-ae7b756c6b31-1-1.jpeg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5fc978a5-f7af-44e6-bcab-45e09618e8b0-1-1.jpeg\\\" alt=\\\"5fc978a5-f7af-44e6-bcab-45e09618e8b0-1-1.jpeg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/16c597b6-87d5-4901-8eb9-9fddd661ce0f-1-1.jpeg\\\" alt=\\\"16c597b6-87d5-4901-8eb9-9fddd661ce0f-1-1.jpeg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/53523eea-a33e-4b86-98b0-cecde95804f3-1-1.jpeg\\\" alt=\\\"53523eea-a33e-4b86-98b0-cecde95804f3-1-1.jpeg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/caedf3b0-f245-4b59-be34-2f5656caf24c-1-1-1.jpeg\\\" alt=\\\"caedf3b0-f245-4b59-be34-2f5656caf24c-1-1.jpeg\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t<p>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09a8\\u09cd\\u09af \\u098f\\u09ae\\u09a8 \\u09ac\\u0995\\u09cd\\u09b8 \\u0986\\u0995\\u09be\\u09b0\\u09c7 \\u09af\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993 \\u09a6\\u09c7\\u0996\\u09c7 \\u09b8\\u09c7\\u099f\\u09bf\\u0982 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7, \\u0996\\u09c1\\u09ac\\u0987 \\u09b8\\u09b9\\u099c \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8, \\u09a8\\u09be \\u09aa\\u09be\\u09b0\\u09b2\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8, \\u0986\\u09ae\\u09b0\\u09be \\u09ac\\u09c1\\u099d\\u09be\\u09df \\u09a6\\u09bf\\u09ac\\u09cb\\u0964<\\/p>https:\\/\\/youtu.be\\/Flp4yJNYcUs?si=60hWH_FNfVl_q3aL\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09c7\\u09ac\\u09c0 \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0 \\u09b8\\u09c7\\u099f\\u09bf\\u0982 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09af\\u09c7\\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8 - 01554462725\\n<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01819000000\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u09b9\\u09be\\u0987 \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u099f\\u09c7\\u0995\\u09b8\\u0987 \\u09ac\\u09c7\\u09ac\\u09bf \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0  \\u09b8\\u09ac\\u09be\\u09b0\\u099a\\u09c7\\u09df\\u09c7 \\u0995\\u09ae \\u09a6\\u09be\\u09ae\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u099a\\u09be\\u09a8 \\u09a4\\u09ac\\u09c7 \\u098f\\u0996\\u09a8\\u09bf \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_country\\\" id=\\\"billing_country\\\" autocomplete=\\\"country\\\" data-placeholder=\\\"Select a country \\/ region&hellip;\\\" data-label=\\\"Country \\/ Region\\\"><option value=\\\"\\\">Select a country \\/ region&hellip;<\\/option><option value=\\\"AF\\\" >Afghanistan<\\/option><option value=\\\"AX\\\" >\\u00c5land 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&ccedil;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&atilde;o Tom&eacute; and Pr&iacute;ncipe<\\/option><option value=\\\"BL\\\" >Saint Barth&eacute;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_city_field\\\" data-priority=\\\"70\\\"><label for=\\\"billing_city\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_city\\\" id=\\\"billing_city\\\" placeholder=\\\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\\"  value=\\\"\\\" autocomplete=\\\"address-level2\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"01717-XXXXXX\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing__________________field\\\" data-priority=\\\"120\\\"><label for=\\\"billing__________________\\u09aa\\u09bf\\u0982\\u0995 \\u0995\\u09be\\u09b2\\u09be\\u09b0\\\">\\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"radio\\\" value=\\\"\\u09aa\\u09bf\\u0982\\u0995 \\u0995\\u09be\\u09b2\\u09be\\u09b0\\\" name=\\\"billing_________________\\\"  id=\\\"billing__________________\\u09aa\\u09bf\\u0982\\u0995 \\u0995\\u09be\\u09b2\\u09be\\u09b0\\\" \\/><label for=\\\"billing__________________\\u09aa\\u09bf\\u0982\\u0995 \\u0995\\u09be\\u09b2\\u09be\\u09b0\\\">\\u09aa\\u09bf\\u0982\\u0995 \\u0995\\u09be\\u09b2\\u09be\\u09b0<\\/label><input type=\\\"radio\\\" value=\\\"\\u09ac\\u09cd\\u09b2\\u09c1 \\u0995\\u09be\\u09b2\\u09be\\u09b0\\\" name=\\\"billing_________________\\\"  id=\\\"billing__________________\\u09ac\\u09cd\\u09b2\\u09c1 \\u0995\\u09be\\u09b2\\u09be\\u09b0\\\" \\/><label for=\\\"billing__________________\\u09ac\\u09cd\\u09b2\\u09c1 \\u0995\\u09be\\u09b2\\u09be\\u09b0\\\">\\u09ac\\u09cd\\u09b2\\u09c1 \\u0995\\u09be\\u09b2\\u09be\\u09b0<\\/label><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"609\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"612\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717923350\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"93b5769a18\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Ibaby toddler rocker baby rocking chair','','trash','closed','closed','','ibaby-toddler-rocker-baby-rocking-chair__trashed','','','2026-06-09 12:06:48','2026-06-09 06:06:48','','0','https://hypergrowth.fishgrowth.xyz/step/ibaby-toddler-rocker-baby-rocking-chair/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2060','17','2026-06-08 21:46:27','2026-06-08 15:46:27','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7<\\/h1>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-33__trashed','','','2026-06-09 12:46:09','2026-06-09 06:46:09','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-33/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2061','17','2026-06-08 21:46:27','2026-06-08 15:46:27','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7<\\/h1>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Thank You (Woo)','','inherit','closed','closed','','2060-revision-v1','','','2026-06-08 21:46:27','2026-06-08 15:46:27','','2060','https://hypergrowth.fishgrowth.xyz/?p=2061','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2062','17','2026-06-08 21:46:33','2026-06-08 15:46:33','\"\\\"\\\"<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>tttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/logo-2-1.png\\\" title=\\\"\\\" alt=\\\"\\\" loading=\\\"lazy\\\" \\/>tttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2 u09b9u09dfu09c7u099bu09c7<\\/h2>ttntt<p>u09aau09a3u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u09b8u0982u0995u09cdu09b0u09beu09a8u09cdu09a4 u09aau09cdu09b0u09dfu09cbu099cu09a8u09c7 u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7u0964<\\/p>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>603<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>March 24, 2024<\\/strong>ntttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>750.00&#2547;&nbsp;<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttu0995u09c1u09dcu09aeu09c1u09dcu09c7 u09aau09c1u09b0u09beu09a8 u09a2u09beu0995u09beu09b0 u09acu09bfu0996u09cdu09afu09beu09a4 u09a8u09beu09b0u0995u09c7u09b2 <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>750.00&#2547;&nbsp;<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Shipping:<\\/th>nttttttt<td>Free shipping<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>u0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>750.00&#2547;&nbsp;<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>\\\"\\\"\"','Thank You (Woo)','','inherit','closed','closed','','2054-revision-v1','','','2026-06-08 21:46:33','2026-06-08 15:46:33','','2054','https://hypergrowth.fishgrowth.xyz/?p=2062','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2063','17','2026-06-08 21:46:38','2026-06-08 15:46:38','','saikaling service 04','','trash','closed','closed','','saikaling-service-04__trashed','','','2026-06-09 11:26:24','2026-06-09 05:26:24','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=saikaling-service-04','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2064','17','2026-06-08 21:46:38','2026-06-08 15:46:38','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','trash','closed','closed','','sales-landing-35__trashed','','','2026-06-09 11:26:24','2026-06-09 05:26:24','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-35/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2065','17','2026-06-08 21:46:38','2026-06-08 15:46:38','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','2064-revision-v1','','','2026-06-08 21:46:38','2026-06-08 15:46:38','','2064','https://hypergrowth.fishgrowth.xyz/?p=2065','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2066','17','2026-06-08 21:46:38','2026-06-08 15:46:38','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u0986u09aeu09beu09a6u09c7u09b0 u09b8u09c7u09acu09beu09b8u09aeu09c2u09b9<\\/h1>ttnttt<h2>u09b8u09beu0987u09a8 u0986u09aa u0995u09b0u09c1u09a8 u098fu09acu0982 u09b8u09aeu09b8u09cdu09a4 u09a7u09b0u09a3u09c7u09b0 u09aau09b0u09bfu09b7u09c7u09acu09beu0997u09c1u09b2u09bfu09a4u09c7 u099bu09beu09a1u09bc u09aau09beu09a8!<\\/h2>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/crankset-red-qoljhjnqnb4mmkp50by2uf55zkxerfbptzc3n1pwxs.png\\\" title=\\\"crankset-red.png\\\" alt=\\\"crankset-red.png\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h2><a href=\\\"#\\\">u09acu09c7u09b8u09bfu0995 u09b8u09beu09b0u09cdu09adu09bfu09b8<\\/a><\\/h2>ttntt<p>u09b8u09c7u09a1 u0987u0989u099f, u0985u09a8u09cdu09a1 u0987u09aeu09a8u09bfu09b8 u0987u09b8u09cdu099f<br \\/>natus error u09acu09b8u09c7 voluptatem<br \\/>accusantium doloremque<br \\/>laudantium<\\/p>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/chain-red-qoljhljeuu66b14uclgsea37vq2v1jfu0qpo0bk4qo.png\\\" title=\\\"chain-red.png\\\" alt=\\\"chain-red.png\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h2><a href=\\\"#\\\">u09b8u09cdu099fu09cdu09afu09beu09a8u09cdu09a1u09beu09b0u09cdu09a1 u09b8u09beu09b0u09cdu09adu09bfu09b8<\\/a><\\/h2>ttntt<p>u09b8u09c7u09a1 u0987u0989u099f, u0985u09a8u09cdu09a1 u0987u09aeu09a8u09bfu09b8 u0987u09b8u09cdu099f<br \\/>natus error u09acu09b8u09c7 voluptatem<br \\/>accusantium doloremque<br \\/>laudantium<\\/p>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/fix-red-qoljhmh96231qs6f7e3abo5ijgiyzto0op9vw9ymm8.png\\\" title=\\\"fix-red.png\\\" alt=\\\"fix-red.png\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h2><a href=\\\"#\\\">u09aau09cdu09b0u09bfu09aeu09bfu09afu09bcu09beu09ae u09aau09b0u09bfu09b7u09c7u09acu09be<\\/a><\\/h2>ttntt<p>u09b8u09c7u09a1 u0987u0989u099f, u0985u09a8u09cdu09a1 u0987u09aeu09a8u09bfu09b8 u0987u09b8u09cdu099f<br \\/>natus error u09acu09b8u09c7 voluptatem<br \\/>accusantium doloremque<br \\/>laudantium<\\/p>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/gear-red-qoljhocxk5xzi6l11lpnhf2f5040t4wn0ofb486z9c.png\\\" title=\\\"gear-red.png\\\" alt=\\\"gear-red.png\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h2><a href=\\\"#\\\">u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09aau09cdu09afu09beu0995 u09aau09b0u09bfu09b7u09c7u09acu09be<\\/a><\\/h2>ttntt<p>u09b8u09c7u09a1 u0987u0989u099f, u0985u09a8u09cdu09a1 u0987u09aeu09a8u09bfu09b8 u0987u09b8u09cdu099f<br \\/>natus error u09acu09b8u09c7 voluptatem<br \\/>accusantium doloremque<br \\/>laudantium<\\/p>ttnttt<h2>u0995u09bfu09adu09beu09acu09c7 ...<\\/h2>ttntttttttttttttttt<a href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/daniel-llorente-K7yTmKG7kac-unsplash.jpg\\\" data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-title=\\\"daniel-llorente-K7yTmKG7kac-unsplash.jpg\\\" data-e-action-hash=\\\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6IjIwNTYiLCJ1cmwiOiJodHRwczpcL1wvaXRnYWxheGkuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wNVwvZGFuaWVsLWxsb3JlbnRlLUs3eVRtS0c3a2FjLXVuc3BsYXNoLmpwZyJ9\\\">nttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/daniel-llorente-K7yTmKG7kac-unsplash-qoljhpaxzz4tabzffk4of53gbwpkaer63qtpwqkx9g.jpg\\\" title=\\\"daniel-llorente-K7yTmKG7kac-unsplash.jpg\\\" alt=\\\"daniel-llorente-K7yTmKG7kac-unsplash.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttt<\\/a>nttt<h3>u0995u09bfu09adu09beu09acu09c7 u098fu0995u099fu09bf u09b8u09beu0987u0995u09c7u09b2 u099fu09beu09afu09bcu09beu09b0 u09abu09cbu09b2u09beu09a8<\\/h3>ttntt<p>Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.u200bu200b<\\/p>ttnttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\\\"><\\/path><\\/svg>tttnttttttMore Infonttttt<\\/a>ntttttttttttttttt<a href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/bicycle-breaks-exercise-professional-6946.jpg\\\" data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-title=\\\"bicycle-breaks-exercise-professional-6946.jpg\\\" data-e-action-hash=\\\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6IjIwNTciLCJ1cmwiOiJodHRwczpcL1wvaXRnYWxheGkuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wNVwvYmljeWNsZS1icmVha3MtZXhlcmNpc2UtcHJvZmVzc2lvbmFsLTY5NDYuanBnIn0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D\\\">nttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/bicycle-breaks-exercise-professional-6946-qoljht2arb9ykrtytlr6p45apg715763g9fntufckk.jpg\\\" title=\\\"bicycle-breaks-exercise-professional-6946.jpg\\\" alt=\\\"bicycle-breaks-exercise-professional-6946.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttt<\\/a>nttt<h3>u09b9u09cdu09afu09beu09a8u09cdu09a1u09c7u09b2u09acu09beu09b0u0997u09c1u09b2u09bf u0995u09c0u09adu09beu09acu09c7 u09aeu09cbu09a1u09bcu09beu09a8u09cb u09afu09beu09afu09bc<\\/h3>ttnttSed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.u200bu200bttnttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\\\"><\\/path><\\/svg>tttnttttttMore Infonttttt<\\/a>ntttttttttttttttt<a href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/john-nzoka-dhoAzw-NGk4-unsplash.jpg\\\" data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-title=\\\"john-nzoka-dhoAzw-NGk4-unsplash.jpg\\\" data-e-action-hash=\\\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6IjIwNTgiLCJ1cmwiOiJodHRwczpcL1wvaXRnYWxheGkuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wNVwvam9obi1uem9rYS1kaG9BenctTkdrNC11bnNwbGFzaC5qcGcifQ{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D\\\">nttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/john-nzoka-dhoAzw-NGk4-unsplash-qoljhvvtbtdtjlpvd4z2elfohlt4sahagne49ob61w.jpg\\\" title=\\\"john-nzoka-dhoAzw-NGk4-unsplash.jpg\\\" alt=\\\"john-nzoka-dhoAzw-NGk4-unsplash.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttt<\\/a>nttt<h3>u0995u09c0u09adu09beu09acu09c7 u0986u09aau09a8u09beu09b0 u09acu09cdu09b0u09c7u0995u0997u09c1u09b2u09bf u09aau09c1u09a8u09b0u09beu09afu09bc u09b8u0982u09afu09c1u0995u09cdu09a4 u0995u09b0u09acu09c7u09a8<\\/h3>ttnttSed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.u200bu200bttnttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\\\"><\\/path><\\/svg>tttnttttttMore Infonttttt<\\/a>ntttttttttttttttt<a href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/florencia-viadana-rMPr-UhfaXI-unsplash.jpg\\\" data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-title=\\\"florencia-viadana-rMPr-UhfaXI-unsplash.jpg\\\" data-e-action-hash=\\\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6IjIwNDAiLCJ1cmwiOiJodHRwczpcL1wvaXRnYWxheGkuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wNVwvZmxvcmVuY2lhLXZpYWRhbmEtck1Qci1VaGZhWEktdW5zcGxhc2guanBnIn0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D\\\">nttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/florencia-viadana-rMPr-UhfaXI-unsplash-qoljfz9lgwrw02hjhtbaukr14h7c6dwvv7ro8h4wo4.jpg\\\" title=\\\"florencia-viadana-rMPr-UhfaXI-unsplash.jpg\\\" alt=\\\"florencia-viadana-rMPr-UhfaXI-unsplash.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttt<\\/a>nttt<h3>u0995u09bfu09adu09beu09acu09c7 u0986u09aau09a8u09beu09b0 u099au09c7u0987u09a8 u09a0u09bfu0995 u0995u09b0u09acu09c7u09a8<\\/h3>ttnttSed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.u200bu200bttnttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\\\"><\\/path><\\/svg>tttnttttttMore Infonttttt<\\/a>nttt<a href=\\\"#\\\">nttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z\\\"><\\/path><\\/svg>ttt<\\/a>nttt<h2>u09b8u09c7u09b0u09be u09acu09beu0987u0995 u09b0u09c1u099f<\\/h2>ttntt<p>u098fu099fu09bf u09b8u09b0u09cdu09acu09a8u09bfu09aeu09cdu09a8u09adu09beu09acu09c7 u09acu09cdu09afu09acu09b9u09beu09b0 u0995u09b0u09a4u09c7 u09b9u09acu09c7u0964<\\/p>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-2061\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"2061\\\"nt>nt<label for=\\\"wcf-item-product-2061\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>npackage 011ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;1,200.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"2009\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"2012\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716492826\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttpackage 01&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;1,200.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;1,200.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;1,200.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,200.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,200.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;1,200.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"b809f71953\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/h2>\\\"\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-37__trashed','','','2026-06-09 11:26:24','2026-06-09 05:26:24','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-37/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2067','17','2026-06-08 21:46:39','2026-06-08 15:46:39','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0996\\u09c1\\u09ac\\u0987 \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Thank You (Woo)','','publish','closed','closed','','thank-you-woo-34','','','2026-06-08 21:46:39','2026-06-08 15:46:39','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-34/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2068','17','2026-06-08 21:46:39','2026-06-08 15:46:39','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0996\\u09c1\\u09ac\\u0987 \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Thank You (Woo)','','inherit','closed','closed','','2067-revision-v1','','','2026-06-08 21:46:39','2026-06-08 15:46:39','','2067','https://hypergrowth.fishgrowth.xyz/?p=2068','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2069','17','2026-06-08 21:46:44','2026-06-08 15:46:44','','Seedless Khejur','','publish','closed','closed','','seedless-khejur','','','2026-06-08 21:46:44','2026-06-08 15:46:44','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=seedless-khejur','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2070','17','2026-06-08 21:46:44','2026-06-08 15:46:44','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','publish','closed','closed','','sales-landing-36','','','2026-06-08 21:46:44','2026-06-08 15:46:44','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-36/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2071','17','2026-06-08 21:46:44','2026-06-08 15:46:44','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','2070-revision-v1','','','2026-06-08 21:46:44','2026-06-08 15:46:44','','2070','https://hypergrowth.fishgrowth.xyz/?p=2071','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2072','17','2026-06-08 21:46:44','2026-06-08 15:46:44','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>বিচি মুক্ত সিডলেস খেজুর</h2>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1448\" height=\"1086\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-9-2026-11_25_27-AM.png\" alt=\"\" />													\n			<style>/*! elementor-pro - v3.18.0 - 20-12-2023 */\n.elementor-widget-countdown .elementor-countdown-expire--message{display:none;padding:20px;text-align:center}.elementor-widget-countdown .elementor-countdown-wrapper{flex-direction:row}.elementor-widget-countdown .elementor-countdown-item{padding:20px 0;text-align:center;color:#fff}.elementor-widget-countdown .elementor-countdown-digits,.elementor-widget-countdown .elementor-countdown-label{line-height:1}.elementor-widget-countdown .elementor-countdown-digits{font-size:69px}.elementor-widget-countdown .elementor-countdown-label{font-size:19px}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-wrapper{display:flex;justify-content:center;margin-right:auto;margin-left:auto}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-digits,.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-label{display:block}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-item{flex-basis:0;flex-grow:1}.elementor-widget-countdown.elementor-countdown--label-inline{text-align:center}.elementor-widget-countdown.elementor-countdown--label-inline .elementor-countdown-item{display:inline-block;padding-left:5px;padding-right:5px}</style>		\n			 Days Hours Minutes Seconds		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">		<h3>\n					রেগুলার মূল্য\n					১১০০\n				</h3>\n					<h3>\n					বর্তমান ডিসকাউন্ট মূল্য\n					৯০০\n					টাকা\n					</h3>\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\"></path></svg>			\n									অর্ডার করতে চাই\n					</a>\n			<h2>বিচি মুক্ত সিডলেস খেজুর কেন খাবেন?</h2>		\n			<h2>এই খেজুরে রয়েছে প্রচুর পরিমাণে ফাইবার, আয়রন, ভিটামিন এবং ম্যাগনেসিয়ামসহ নানান পুষ্টিগুণ। এসব খাদ্য উপাদান শরীরে অতীব প্রয়োজনীয় হয়ে ওঠে যখন আপনার বয়স পৌঁছাবে ৩০-এর কোঠায়।</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										বিচি মুক্ত সিডলেস খেজুরে রয়েছে অ্যান্টিঅক্সিডেন্ট যা হার্টের ক্ষতি থেকে রক্ষা করতে সাহায্য করে। এগুলিতে পটাসিয়ামও রয়েছে, যা রক্তচাপ কমাতে সাহায্য করতে পারে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										রক্তস্বল্পতায় ভোগা রোগীরা প্রতিদিন এই খেজুর খেতে পারেন। একজন সুস্থ মানুষের শরীরে যতটুকু আয়রন প্রয়োজন, তার প্রায় ১১ ভাগ পূরণ করে এই খেজুর।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										এই খেজুরে রয়েছে প্রচুর ভিটামিন, খনিজ, ক্যালসিয়াম ও পটাশিয়া। খেজুরে থাকা অ্যান্টিঅক্সিডেন্ট শরীরে রোগ প্রতিরোধের ক্ষমতা বাড়ায়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										বিচি মুক্ত সিডলেস খেজুরের উচ্চ ফাইবার উপাদান হজমশক্তি উন্নত করতে এবং কোষ্ঠকাঠিন্য প্রতিরোধ করতে সহায়তা করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										বিচি মুক্ত সিডলেস খেজুর প্রাকৃতিক শর্করার একটি ভালো উৎস, যা দ্রুত শক্তি বৃদ্ধি করতে পারে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										প্রতিটি খেজুরে রয়েছে ২০ থেকে ২৫ মিলিগ্রাম ম্যাগনেসিয়াম, যা উচ্চ রক্তচাপ কমাতে সাহায্য করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										কোষ্ঠকাঠিন্যের সমস্যায় রাতে পানিতে খেজুর ভিজিয়ে রাখুন। পর দিন সকালে খেজুর ভেজানো পানি পান করুন। দূর হবে কোষ্ঠকাঠিন্য।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										এগুলি ফাইবারের একটি ভাল উত্স, যা আপনাকে খাওয়ার পরে পূর্ণ এবং তৃপ্ত বোধ করতে সহায়তা করতে পারে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										বিচি মুক্ত সিডলেস খেজুরে ক্যালসিয়াম ও ম্যাগনেসিয়াম থাকে যা হাড় ও দাঁতের স্বাস্থ্যের জন্য গুরুত্বপূর্ণ।\n									</li>\n						</ul>\n			<h2>১ কেজি ৯০০ টাকা মাত্র</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\"></path></svg>			\n									অর্ডার করতে চাই\n					</a>\n			<h2>আমাদের কাছে কেনো কিনবেন?</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										আমরাই দিচ্ছি এই সীজনের ফ্রেশ গাছপাকা সিডলেস খেজুর \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										আমাদের খেজুর এ কোনো পোকা পাবেন না ইনশাআল্লাহ \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										অর্ডার  করতে  আপনাকে অগ্রিম ১ টাকাও পেমেন্ট করতে হবে না।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										সারা বাংলাদেশে ক্যাশ অন হোম ডেলিভারী পাবেন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										পণ্য হাতে পাওয়ার পর প্রয়োজনে খেয়ে রিসিভ করতে পারবেন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										আমাদের কথা মত প্রোডাক্ট না পেলে সাথে সাথে রির্টান সুবিধা থাকছে।\n									</li>\n						</ul>\n			<h2><a href=\"tel:01819000000\">যে কোন প্রয়োজনে যোগাযোগ করুন    01819000000</a></h2>		\n			<h2>অর্ডার করতে নিচের ফর্মটি পূরন করুন</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<ul role=\"alert\">\n			<li>\n			No product is selected. Please select products from the  checkout meta settings   to continue.		</li>\n	</ul>\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নাম&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">আপনার সম্পূর্ণ ঠিকানা&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"House number and street name\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">আপনার ফোন নাম্বারটি লেখুন&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"2069\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"2072\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780982755\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n													<img width=\"1448\" height=\"1086\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-9-2026-11_25_27-AM.png\" alt=\"\" />													\n		 Copyright © 2024  Busness Name | This website made with ❤️ by <a href=\"https://itgalaxi.com/\" style=\"color:red\"><b> The Smart Way</b></a>','Checkout (Woo)','','publish','closed','closed','','checkout-woo-38','','','2026-06-09 11:25:55','2026-06-09 05:25:55','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-38/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2073','17','2026-06-08 21:46:45','2026-06-08 15:46:45','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1280\\\" height=\\\"720\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-21-at-1.07.30-AM.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-21-at-1.07.30-AM.jpeg 1280w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-21-at-1.07.30-AM-300x169.jpeg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-21-at-1.07.30-AM-1024x576.jpeg 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-21-at-1.07.30-AM-768x432.jpeg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-21-at-1.07.30-AM-600x338.jpeg 600w\\\" sizes=\\\"(max-width: 1280px) 100vw, 1280px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor-pro - v3.12.1 - 02-04-2023 *\\/\\n.elementor-widget-countdown .elementor-countdown-expire--message{display:none;padding:20px;text-align:center}.elementor-widget-countdown .elementor-countdown-wrapper{flex-direction:row}.elementor-widget-countdown .elementor-countdown-item{padding:20px 0;text-align:center;color:#fff}.elementor-widget-countdown .elementor-countdown-digits,.elementor-widget-countdown .elementor-countdown-label{line-height:1}.elementor-widget-countdown .elementor-countdown-digits{font-size:69px}.elementor-widget-countdown .elementor-countdown-label{font-size:19px}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-wrapper{display:flex;justify-content:center;margin-right:auto;margin-left:auto}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-digits,.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-label{display:block}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-item{flex-basis:0;flex-grow:1}.elementor-widget-countdown.elementor-countdown--label-inline{text-align:center}.elementor-widget-countdown.elementor-countdown--label-inline .elementor-countdown-item{display:inline-block;padding-left:5px;padding-right:5px}<\\/style>\\t\\t\\n\\t\\t\\t Days Hours Minutes Seconds\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\n\\t\\t\\t\\t\\t\\u09e7\\u09e7\\u09e6\\u09e6\\n\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\n\\t\\t\\t\\t\\t\\u09ef\\u09e6\\u09e6\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0995\\u09c7\\u09a8 \\u0996\\u09be\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0, \\u0986\\u09df\\u09b0\\u09a8, \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae\\u09b8\\u09b9 \\u09a8\\u09be\\u09a8\\u09be\\u09a8 \\u09aa\\u09c1\\u09b7\\u09cd\\u099f\\u09bf\\u0997\\u09c1\\u09a3\\u0964 \\u098f\\u09b8\\u09ac \\u0996\\u09be\\u09a6\\u09cd\\u09af \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u0985\\u09a4\\u09c0\\u09ac \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09b9\\u09df\\u09c7 \\u0993\\u09a0\\u09c7 \\u09af\\u0996\\u09a8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09df\\u09b8 \\u09aa\\u09cc\\u0981\\u099b\\u09be\\u09ac\\u09c7 \\u09e9\\u09e6-\\u098f\\u09b0 \\u0995\\u09cb\\u09a0\\u09be\\u09df\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09af\\u09be \\u09b9\\u09be\\u09b0\\u09cd\\u099f\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09a4\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u0997\\u09c1\\u09b2\\u09bf\\u09a4\\u09c7 \\u09aa\\u099f\\u09be\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae\\u0993 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7, \\u09af\\u09be \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u0995\\u09cd\\u09a4\\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be\\u09df \\u09ad\\u09cb\\u0997\\u09be \\u09b0\\u09cb\\u0997\\u09c0\\u09b0\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u0996\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u098f\\u0995\\u099c\\u09a8 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09ae\\u09be\\u09a8\\u09c1\\u09b7\\u09c7\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09af\\u09a4\\u099f\\u09c1\\u0995\\u09c1 \\u0986\\u09df\\u09b0\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8, \\u09a4\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09df \\u09e7\\u09e7 \\u09ad\\u09be\\u0997 \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0987 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8, \\u0996\\u09a8\\u09bf\\u099c, \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09df\\u09be\\u09ae \\u0993 \\u09aa\\u099f\\u09be\\u09b6\\u09bf\\u09df\\u09be\\u0964 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09be \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7\\u09b0 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09be\\u09dc\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7\\u09b0 \\u0989\\u099a\\u09cd\\u099a \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8 \\u09b9\\u099c\\u09ae\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0989\\u09a8\\u09cd\\u09a8\\u09a4 \\u0995\\u09b0\\u09a4\\u09c7 \\u098f\\u09ac\\u0982 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2\\u09cb \\u0989\\u09ce\\u09b8, \\u09af\\u09be \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u099f\\u09bf \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09e8\\u09e6 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e8\\u09eb \\u09ae\\u09bf\\u09b2\\u09bf\\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09df\\u09be\\u09ae, \\u09af\\u09be \\u0989\\u099a\\u09cd\\u099a \\u09b0\\u0995\\u09cd\\u09a4\\u099a\\u09be\\u09aa \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09b0\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09bf\\u099c\\u09bf\\u09df\\u09c7 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964 \\u09aa\\u09b0 \\u09a6\\u09bf\\u09a8 \\u09b8\\u0995\\u09be\\u09b2\\u09c7 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u09ad\\u09c7\\u099c\\u09be\\u09a8\\u09cb \\u09aa\\u09be\\u09a8\\u09bf \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u09a6\\u09c2\\u09b0 \\u09b9\\u09ac\\u09c7 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0997\\u09c1\\u09b2\\u09bf \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09ad\\u09be\\u09b2 \\u0989\\u09a4\\u09cd\\u09b8, \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0996\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u098f\\u09ac\\u0982 \\u09a4\\u09c3\\u09aa\\u09cd\\u09a4 \\u09ac\\u09cb\\u09a7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09bf\\u099a\\u09bf \\u09ae\\u09c1\\u0995\\u09cd\\u09a4 \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b2\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u0993 \\u09ae\\u09cd\\u09af\\u09be\\u0997\\u09a8\\u09c7\\u09b8\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09a5\\u09be\\u0995\\u09c7 \\u09af\\u09be \\u09b9\\u09be\\u09a1\\u09bc \\u0993 \\u09a6\\u09be\\u0981\\u09a4\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u09ef\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09b0\\u09be\\u0987 \\u09a6\\u09bf\\u099a\\u09cd\\u099b\\u09bf \\u098f\\u0987 \\u09b8\\u09c0\\u099c\\u09a8\\u09c7\\u09b0 \\u09ab\\u09cd\\u09b0\\u09c7\\u09b6 \\u0997\\u09be\\u099b\\u09aa\\u09be\\u0995\\u09be \\u09b8\\u09bf\\u09a1\\u09b2\\u09c7\\u09b8 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0996\\u09c7\\u099c\\u09c1\\u09b0 \\u098f \\u0995\\u09cb\\u09a8\\u09cb \\u09aa\\u09cb\\u0995\\u09be \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u09a8\\u09be \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0  \\u0995\\u09b0\\u09a4\\u09c7  \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09e7 \\u099f\\u09be\\u0995\\u09be\\u0993 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09cd\\u09af\\u09be\\u09b6 \\u0985\\u09a8 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u09aa\\u09be\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09a3\\u09cd\\u09af \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u09aa\\u09b0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0996\\u09c7\\u09df\\u09c7 \\u09b0\\u09bf\\u09b8\\u09bf\\u09ad \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09a5\\u09be \\u09ae\\u09a4 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09a8\\u09be \\u09aa\\u09c7\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u09bf\\u09b0\\u09cd\\u099f\\u09be\\u09a8 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09a5\\u09be\\u0995\\u099b\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1280\\\" height=\\\"720\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-21-at-1.07.30-AM.jpeg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-21-at-1.07.30-AM.jpeg 1280w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-21-at-1.07.30-AM-300x169.jpeg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-21-at-1.07.30-AM-1024x576.jpeg 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-21-at-1.07.30-AM-768x432.jpeg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/WhatsApp-Image-2024-01-21-at-1.07.30-AM-600x338.jpeg 600w\\\" sizes=\\\"(max-width: 1280px) 100vw, 1280px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2><a href=\\\"tel:01819000000\\\">\\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8    01819000000<\\/a><\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_country\\\" id=\\\"billing_country\\\" autocomplete=\\\"country\\\" data-placeholder=\\\"Select a country \\/ region&hellip;\\\" data-label=\\\"Country \\/ Region\\\"><option value=\\\"\\\">Select a country \\/ region&hellip;<\\/option><option value=\\\"AF\\\" >Afghanistan<\\/option><option value=\\\"AX\\\" >\\u00c5land 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&ccedil;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&atilde;o Tom&eacute; and Pr&iacute;ncipe<\\/option><option value=\\\"BL\\\" >Saint Barth&eacute;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\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u099f\\u09bf \\u09b2\\u09c7\\u0996\\u09c1\\u09a8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"661\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"664\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>\\n\\t\\tProduct\\n\\t\\tQuantity\\n\\t\\tPrice\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717919158\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"93b5769a18\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Checkout (Woo)','','inherit','closed','closed','','2072-revision-v1','','','2026-06-08 21:46:45','2026-06-08 15:46:45','','2072','https://hypergrowth.fishgrowth.xyz/?p=2073','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2074','17','2026-06-08 21:46:55','2026-06-08 15:46:55','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7<\\/h1>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Thank You (Woo)','','publish','closed','closed','','thank-you-woo-35','','','2026-06-08 21:46:55','2026-06-08 15:46:55','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-35/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2075','17','2026-06-08 21:46:55','2026-06-08 15:46:55','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7<\\/h1>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Thank You (Woo)','','inherit','closed','closed','','2074-revision-v1','','','2026-06-08 21:46:55','2026-06-08 15:46:55','','2074','https://hypergrowth.fishgrowth.xyz/?p=2075','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2076','17','2026-06-08 21:46:59','2026-06-08 15:46:59','','seed shorbot','','publish','closed','closed','','seed-shorbot','','','2026-06-08 21:46:59','2026-06-08 15:46:59','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=seed-shorbot','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2077','17','2026-06-08 21:46:59','2026-06-08 15:46:59','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','publish','closed','closed','','sales-landing-37','','','2026-06-08 21:46:59','2026-06-08 15:46:59','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-37/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2078','17','2026-06-08 21:46:59','2026-06-08 15:46:59','\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','2077-revision-v1','','','2026-06-08 21:46:59','2026-06-08 15:46:59','','2077','https://hypergrowth.fishgrowth.xyz/?p=2078','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2079','17','2026-06-08 21:46:59','2026-06-08 15:46:59','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>এ্যাসিডিটি, পেপটিক আলসার ও কোষ্ঠকাঠিন্যে “সিড শরবত”\n  খুবই উপকারী\n</h2>		\n			<h2>অনেকেই দীর্ঘদিন যাবৎ পেটের নানা ধরনের সমস্যায় ভুগছেন? বিশেষ করে, যারা কো-ষ্ঠ-কাঠিন্যে; তারা বেশিরভাগ সময়ই লজ্জায় এ মারাত্মক সমস্যার কথা শেয়ার করতে চান না। কিন্তু তিনি নিজেই নিজের পায়ে কুড়াল মারছেন।\n</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\"></path></svg>			\n									অর্ডার করতে চাই\n					</a>\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">		<h3>\n					রেগুলার মূল্য\n					১১০০\n				</h3>\n					<h3>\n					বর্তমান ডিসকাউন্ট মূল্য\n					৯০০\n					টাকা\n					</h3>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1122\" height=\"1402\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-9-2026-11_23_18-AM.png\" alt=\"\" />													\n			<h2>সিড শরবত খাওয়ার উপকারিতা-\n</h2>		\n			<h2>বীজ কম্বো শরীরের মেটাবলিজম বাড়িয়ে তুলতে সাহায্য করে। এতে উপস্থিত ফাইবার শরীরের জন্য খুবই গুরুত্বপূর্ণ।\n</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										কয়েকটি গবেষণায় দেখা গেছে, তোকমার দানা দেহের জন্য উপকারী কোলেস্টেরল উৎপাদন করে থাকে। এছাড়াও রক্তে চর্বির পরিমাণ কমানো, ডায়াবেটিস নিয়ন্ত্রণ, শর্করার পরিমাণ নিয়ন্ত্রণ করে হার্ট সুস্থ রাখে। হাড় গঠনে সাহায্য করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										রক্তের শর্করা নিয়ন্ত্রণ করতে কার্যকর তোকমা। মূলত দেহের বিপাকক্রিয়া ধীর করে দেয় তোকমা। ফলে কার্বোহাইড্রেটকে গ্লুুকোজে রূপান্তরের পদ্ধতি নিয়ন্ত্রণ করা সহজ হয়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										কো-ষ্ট-কাঠিন্য সমস্যা দূর করতে খুবই কার্যকর তোকমা। সামান্য তোকমা অল্প পানিতে ভিজিয়ে রেখে কিছুক্ষণ পর তা দুধে মিশিয়ে খেলেও উপকার পাওয়া যাবে। এটি হজমের সমস্যাও দূর করতে সহায়তা করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										ত্বকের নানা সমস্যায় তোকমা ব্যবহার করা যায়। এটি নানা চর্মরোগ নিরাময়ে কাজ করে। এটি একজিমা ও সোরিয়াসিস নিরাময়ে কার্যকর। সুস্থ চুলের জন্য এটি নিয়মিত খাওয়া যেতে পারে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										তোকমা বীজে রয়েছে ঠাণ্ডা প্রতিরোধী উপাদান। এটি আপনার দেহকে ঠাণ্ডার বিরুদ্ধে প্রতিরোধক্ষমতা গড়তে সহায়তা করবে। সর্দি-কাশি থেকে দূরে থাকতে চাইলে তাই নিয়মিত তোকমা খাওয়া যেতে পারে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										তুলসীর পাতাই নয়, তুলসীর বীজও দারুণ উপকারী। তুলসী পাতার মতোই তুলসী বীজও রোগ প্রতিরোধ ক্ষমতা বাড়াতে সাহায্য করে। যেমন- সাধারণ সর্দি এবং ফ্লু জাতীয় সমস্যা থেকেও মুক্তি পেতে এই বীজের জুড়ি মেলা ভার। শুধু তা-ই নয়, পেশীতে টান পড়লেও এই বীজ খেলে আরাম পাওয়া যাবে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										কো-ষ্ঠ-কাঠিন্য প্রতিরোধে: ইসবগুল কোষ্ঠকাঠিন্য প্রতিরোধে দারুণ কাজ করে। এতে উপস্থিত অদ্রবণীয় ফাইবার কোষ্ঠকাঠিন্য রোগীদের মল নরম করে দেয়। ফলে খুব সহজেই ইলিমিনেশন সম্ভব হয়। তাই প্রতিদিন ঘুমানোর আগে ২ চামচ ইসবগুলের ভুসি ও ১ গ্লাস কুসুম গরম দুধ পান করতে পারেন। কেউ যদি রোগটি পুষে রাখেন, তাহলে কোলন ক্যান্সার হওয়ার সম্ভাবনা থাকে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										রক্তে কোলেস্টেরল কমায়: এ ইসবগুল খেলে আমাদের অন্ত্রে একধরনের স্তর তৈরি হয়। যা কোলেস্টেরল শোষণে বাধা দান করে। ফলে আমাদের রক্তে কোলেস্টেরলের পরিমাণ কমে স্বাভাবিক অবস্থায় ফিরে আসে। তাই হৃদরোগীদের জন্য দারুণ একটি খাবার এটি।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										ওজন কমায়: এতে ফাইবার উপস্থিত থাকায় হজম প্রক্রিয়া অনেক ধীরগতিতে হয়। তাই ক্ষুধা লাগে অনেক কম। এটি খেলে ওজন কমানো অনেক সহজ হয়ে যায়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										এই বীজে প্রচুর পরিমাণে ফাইবার থাকে যা কোষ্ঠকাঠিন্য ও বদহজম থেকে মুক্তি পেতে সাহায্য করে। বাচ্চাদের পেট ব্যাথা দূর করতে খুবই উপকারী। হালিম বীজ ফাইবার ও প্রোটিনের ভালো উৎস। ফলে খাবার তৃপ্তিদায়ক হয়ে ওঠে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										হালিম বীজ অ্যানিমিয়া দূর করতে খুবই কার্যকরী। এটি লোহার উচ্চ মাত্রা লাল রক্ত কোষের উৎপাদনকে উৎসাহ দেয় এবং শরীরে হিমোগ্লোবিন এর স্তর বৃদ্ধি করে। ফলে অ্যানিমিয়া প্রকোপ থেকে মুক্তি পাওয়া যায়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										হালিম বীজ আ্যন্টি অক্সিডেন্ট ও ভিটামিন সি সমৃদ্ধ। তাই এটি শরীরকে বিভিন্ন জীবাণু এর সংক্রমণ থেকে রক্ষা করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										জ্বর, সর্দি, গলা ব্যাথা দূর করে- হালিম বীজ আন্টি মাইক্রোবিয়াল বৈশিষ্ট্য যুক্ত হওয়ার জন্য এটি জ্বর সর্দি সহ শ্বাস প্রশ্বাস এর বিভিন্ন সমস্যা দূর করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										মধু শিশুদের হাড়ের গঠন মজবুত করে, দৃষ্টিশক্তি এবং স্মৃতিশক্তি বৃদ্ধি করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										রাতের বেলা দুধের সঙ্গে মধু মিশিয়ে পান করলে আপনার অনিদ্রা দূর করতে সাহায্য করবে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										শারীরিক দূর্বলতা দূরীকরণে মধুর রয়েছে বিশেষ ভূমিকা ৷\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										মধুতে বিদ্যমান অ্যান্টি–অক্সিডেন্ট ত্বকের রং সুন্দর করে এবং তারুণ্যতা বজায়ে রাখতে সহায়তা করে ৷\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										রক্তশূন্যতা ও কো-ষ্ঠ-কাঠিন্য দূর করতে: এতে রয়েছে ভিটামিন বি-কমপ্লেক্স, যা রক্তশূন্যতা ও কো-ষ্ঠ-কাঠিন্য দূর করে।\n									</li>\n						</ul>\n			<h2>১ কেজি ৯০০ টাকা মাত্র</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\"></path></svg>			\n									অর্ডার করতে চাই\n					</a>\n			<h2>আমাদের কাছে কেনো কিনবেন?</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										প্রোডাক্ট হাতে পেয়ে, দেখে,কোয়ালিটি চেক করে পেমেন্টে করার সুবিধা ।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										প্রোডাক্ট পছন্দ না হলে সাথে সাথে রিটার্ন দিতে পারবেন ।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										সারা বাংলাদেশে কুরিয়ারের মাধ্যমে হোম ডেলিভারি পাবেন ।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										যে কোন সময় আমাদের সাথে যোগাযোগ করতে পারবেন ।\n									</li>\n						</ul>\n			<h2><a href=\"tel:01819000000\">যে কোন প্রয়োজনে যোগাযোগ করুন    01819000000</a></h2>		\n													<img width=\"1122\" height=\"1402\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-9-2026-11_23_18-AM.png\" alt=\"\" />													\n			<h2>অর্ডার করতে নিচের ফর্মটি পূরন করুন</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নাম&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">আপনার সম্পূর্ণ ঠিকানা&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"House number and street name\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">আপনার ফোন নাম্বারটি লেখুন&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"2076\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"2079\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780982626\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n		 Copyright © 2024  Busness Name | This website made with ❤️ by <a href=\"https://itgalaxi.com/\" style=\"color:red\"><b> The Smart Way</b></a>','Checkout (Woo)','','publish','closed','closed','','checkout-woo-39','','','2026-06-09 11:25:00','2026-06-09 05:25:00','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-39/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2080','17','2026-06-08 21:46:59','2026-06-08 15:46:59','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u098f\\u09cd\\u09af\\u09be\\u09b8\\u09bf\\u09a1\\u09bf\\u099f\\u09bf, \\u09aa\\u09c7\\u09aa\\u099f\\u09bf\\u0995 \\u0986\\u09b2\\u09b8\\u09be\\u09b0 \\u0993 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u09c7 \\u201c\\u09b8\\u09bf\\u09a1 \\u09b6\\u09b0\\u09ac\\u09a4\\u201d\\n  \\u0996\\u09c1\\u09ac\\u0987 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09a8\\u09c7\\u0995\\u09c7\\u0987 \\u09a6\\u09c0\\u09b0\\u09cd\\u0998\\u09a6\\u09bf\\u09a8 \\u09af\\u09be\\u09ac\\u09ce \\u09aa\\u09c7\\u099f\\u09c7\\u09b0 \\u09a8\\u09be\\u09a8\\u09be \\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09ad\\u09c1\\u0997\\u099b\\u09c7\\u09a8? \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7 \\u0995\\u09b0\\u09c7, \\u09af\\u09be\\u09b0\\u09be \\u0995\\u09cb-\\u09b7\\u09cd\\u09a0-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af\\u09c7; \\u09a4\\u09be\\u09b0\\u09be \\u09ac\\u09c7\\u09b6\\u09bf\\u09b0\\u09ad\\u09be\\u0997 \\u09b8\\u09ae\\u09df\\u0987 \\u09b2\\u099c\\u09cd\\u099c\\u09be\\u09df \\u098f \\u09ae\\u09be\\u09b0\\u09be\\u09a4\\u09cd\\u09ae\\u0995 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09b0 \\u0995\\u09a5\\u09be \\u09b6\\u09c7\\u09df\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u09a8 \\u09a8\\u09be\\u0964 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u09a4\\u09bf\\u09a8\\u09bf \\u09a8\\u09bf\\u099c\\u09c7\\u0987 \\u09a8\\u09bf\\u099c\\u09c7\\u09b0 \\u09aa\\u09be\\u09df\\u09c7 \\u0995\\u09c1\\u09dc\\u09be\\u09b2 \\u09ae\\u09be\\u09b0\\u099b\\u09c7\\u09a8\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"945\\\" height=\\\"945\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green-and-White-Modern-New-Menu-Special-Matcha-Tea-Promotion-Instagram-Post.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green-and-White-Modern-New-Menu-Special-Matcha-Tea-Promotion-Instagram-Post.webp 945w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green-and-White-Modern-New-Menu-Special-Matcha-Tea-Promotion-Instagram-Post-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green-and-White-Modern-New-Menu-Special-Matcha-Tea-Promotion-Instagram-Post-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green-and-White-Modern-New-Menu-Special-Matcha-Tea-Promotion-Instagram-Post-768x768.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green-and-White-Modern-New-Menu-Special-Matcha-Tea-Promotion-Instagram-Post-600x600.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green-and-White-Modern-New-Menu-Special-Matcha-Tea-Promotion-Instagram-Post-100x100.webp 100w\\\" sizes=\\\"(max-width: 945px) 100vw, 945px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09b0\\u09c7\\u0997\\u09c1\\u09b2\\u09be\\u09b0 \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\n\\t\\t\\t\\t\\t\\u09e7\\u09e7\\u09e6\\u09e6\\n\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8 \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f \\u09ae\\u09c2\\u09b2\\u09cd\\u09af\\n\\t\\t\\t\\t\\t\\u09ef\\u09e6\\u09e6\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h2>\\u09b8\\u09bf\\u09a1 \\u09b6\\u09b0\\u09ac\\u09a4 \\u0996\\u09be\\u0993\\u09df\\u09be\\u09b0 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09bf\\u09a4\\u09be-\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09c0\\u099c \\u0995\\u09ae\\u09cd\\u09ac\\u09cb \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u09ae\\u09c7\\u099f\\u09be\\u09ac\\u09b2\\u09bf\\u099c\\u09ae \\u09ac\\u09be\\u09dc\\u09bf\\u09df\\u09c7 \\u09a4\\u09c1\\u09b2\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u09a4\\u09c7 \\u0989\\u09aa\\u09b8\\u09cd\\u09a5\\u09bf\\u09a4 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0996\\u09c1\\u09ac\\u0987 \\u0997\\u09c1\\u09b0\\u09c1\\u09a4\\u09cd\\u09ac\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09af\\u09bc\\u09c7\\u0995\\u099f\\u09bf \\u0997\\u09ac\\u09c7\\u09b7\\u09a3\\u09be\\u09af\\u09bc \\u09a6\\u09c7\\u0996\\u09be \\u0997\\u09c7\\u099b\\u09c7, \\u09a4\\u09cb\\u0995\\u09ae\\u09be\\u09b0 \\u09a6\\u09be\\u09a8\\u09be \\u09a6\\u09c7\\u09b9\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0 \\u0995\\u09cb\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u0995\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09c7\\u0964 \\u098f\\u099b\\u09be\\u09a1\\u09bc\\u09be\\u0993 \\u09b0\\u0995\\u09cd\\u09a4\\u09c7 \\u099a\\u09b0\\u09cd\\u09ac\\u09bf\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u0995\\u09ae\\u09be\\u09a8\\u09cb, \\u09a1\\u09be\\u09af\\u09bc\\u09be\\u09ac\\u09c7\\u099f\\u09bf\\u09b8 \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3, \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c7 \\u09b9\\u09be\\u09b0\\u09cd\\u099f \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u09b0\\u09be\\u0996\\u09c7\\u0964 \\u09b9\\u09be\\u09a1\\u09bc \\u0997\\u09a0\\u09a8\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u0995\\u09cd\\u09a4\\u09c7\\u09b0 \\u09b6\\u09b0\\u09cd\\u0995\\u09b0\\u09be \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0 \\u09a4\\u09cb\\u0995\\u09ae\\u09be\\u0964 \\u09ae\\u09c2\\u09b2\\u09a4 \\u09a6\\u09c7\\u09b9\\u09c7\\u09b0 \\u09ac\\u09bf\\u09aa\\u09be\\u0995\\u0995\\u09cd\\u09b0\\u09bf\\u09df\\u09be \\u09a7\\u09c0\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a6\\u09c7\\u09df \\u09a4\\u09cb\\u0995\\u09ae\\u09be\\u0964 \\u09ab\\u09b2\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09ac\\u09cb\\u09b9\\u09be\\u0987\\u09a1\\u09cd\\u09b0\\u09c7\\u099f\\u0995\\u09c7 \\u0997\\u09cd\\u09b2\\u09c1\\u09c1\\u0995\\u09cb\\u099c\\u09c7 \\u09b0\\u09c2\\u09aa\\u09be\\u09a8\\u09cd\\u09a4\\u09b0\\u09c7\\u09b0 \\u09aa\\u09a6\\u09cd\\u09a7\\u09a4\\u09bf \\u09a8\\u09bf\\u09df\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09be \\u09b8\\u09b9\\u099c \\u09b9\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09cb-\\u09b7\\u09cd\\u099f-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0996\\u09c1\\u09ac\\u0987 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0 \\u09a4\\u09cb\\u0995\\u09ae\\u09be\\u0964 \\u09b8\\u09be\\u09ae\\u09be\\u09a8\\u09cd\\u09af \\u09a4\\u09cb\\u0995\\u09ae\\u09be \\u0985\\u09b2\\u09cd\\u09aa \\u09aa\\u09be\\u09a8\\u09bf\\u09a4\\u09c7 \\u09ad\\u09bf\\u099c\\u09bf\\u09df\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u0995\\u09bf\\u099b\\u09c1\\u0995\\u09cd\\u09b7\\u09a3 \\u09aa\\u09b0 \\u09a4\\u09be \\u09a6\\u09c1\\u09a7\\u09c7 \\u09ae\\u09bf\\u09b6\\u09bf\\u09df\\u09c7 \\u0996\\u09c7\\u09b2\\u09c7\\u0993 \\u0989\\u09aa\\u0995\\u09be\\u09b0 \\u09aa\\u09be\\u0993\\u09df\\u09be \\u09af\\u09be\\u09ac\\u09c7\\u0964 \\u098f\\u099f\\u09bf \\u09b9\\u099c\\u09ae\\u09c7\\u09b0 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u0993 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09a8\\u09be\\u09a8\\u09be \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be\\u09df \\u09a4\\u09cb\\u0995\\u09ae\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09df\\u0964 \\u098f\\u099f\\u09bf \\u09a8\\u09be\\u09a8\\u09be \\u099a\\u09b0\\u09cd\\u09ae\\u09b0\\u09cb\\u0997 \\u09a8\\u09bf\\u09b0\\u09be\\u09ae\\u09df\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u099f\\u09bf \\u098f\\u0995\\u099c\\u09bf\\u09ae\\u09be \\u0993 \\u09b8\\u09cb\\u09b0\\u09bf\\u09df\\u09be\\u09b8\\u09bf\\u09b8 \\u09a8\\u09bf\\u09b0\\u09be\\u09ae\\u09df\\u09c7 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u0964 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5 \\u099a\\u09c1\\u09b2\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u099f\\u09bf \\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u0996\\u09be\\u0993\\u09df\\u09be \\u09af\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a4\\u09cb\\u0995\\u09ae\\u09be \\u09ac\\u09c0\\u099c\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09a0\\u09be\\u09a3\\u09cd\\u09a1\\u09be \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c0 \\u0989\\u09aa\\u09be\\u09a6\\u09be\\u09a8\\u0964 \\u098f\\u099f\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c7\\u09b9\\u0995\\u09c7 \\u09a0\\u09be\\u09a3\\u09cd\\u09a1\\u09be\\u09b0 \\u09ac\\u09bf\\u09b0\\u09c1\\u09a6\\u09cd\\u09a7\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u0997\\u09dc\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u09a4\\u09be \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u09b8\\u09b0\\u09cd\\u09a6\\u09bf-\\u0995\\u09be\\u09b6\\u09bf \\u09a5\\u09c7\\u0995\\u09c7 \\u09a6\\u09c2\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\u09b2\\u09c7 \\u09a4\\u09be\\u0987 \\u09a8\\u09bf\\u09df\\u09ae\\u09bf\\u09a4 \\u09a4\\u09cb\\u0995\\u09ae\\u09be \\u0996\\u09be\\u0993\\u09df\\u09be \\u09af\\u09c7\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a4\\u09c1\\u09b2\\u09b8\\u09c0\\u09b0 \\u09aa\\u09be\\u09a4\\u09be\\u0987 \\u09a8\\u09df, \\u09a4\\u09c1\\u09b2\\u09b8\\u09c0\\u09b0 \\u09ac\\u09c0\\u099c\\u0993 \\u09a6\\u09be\\u09b0\\u09c1\\u09a3 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\u0964 \\u09a4\\u09c1\\u09b2\\u09b8\\u09c0 \\u09aa\\u09be\\u09a4\\u09be\\u09b0 \\u09ae\\u09a4\\u09cb\\u0987 \\u09a4\\u09c1\\u09b2\\u09b8\\u09c0 \\u09ac\\u09c0\\u099c\\u0993 \\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09be\\u09a1\\u09bc\\u09be\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u09af\\u09c7\\u09ae\\u09a8- \\u09b8\\u09be\\u09a7\\u09be\\u09b0\\u09a3 \\u09b8\\u09b0\\u09cd\\u09a6\\u09bf \\u098f\\u09ac\\u0982 \\u09ab\\u09cd\\u09b2\\u09c1 \\u099c\\u09be\\u09a4\\u09c0\\u09af\\u09bc \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a5\\u09c7\\u0995\\u09c7\\u0993 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09c7\\u09a4\\u09c7 \\u098f\\u0987 \\u09ac\\u09c0\\u099c\\u09c7\\u09b0 \\u099c\\u09c1\\u09a1\\u09bc\\u09bf \\u09ae\\u09c7\\u09b2\\u09be \\u09ad\\u09be\\u09b0\\u0964 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09a4\\u09be-\\u0987 \\u09a8\\u09af\\u09bc, \\u09aa\\u09c7\\u09b6\\u09c0\\u09a4\\u09c7 \\u099f\\u09be\\u09a8 \\u09aa\\u09a1\\u09bc\\u09b2\\u09c7\\u0993 \\u098f\\u0987 \\u09ac\\u09c0\\u099c \\u0996\\u09c7\\u09b2\\u09c7 \\u0986\\u09b0\\u09be\\u09ae \\u09aa\\u09be\\u0993\\u09df\\u09be \\u09af\\u09be\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09cb-\\u09b7\\u09cd\\u09a0-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7: \\u0987\\u09b8\\u09ac\\u0997\\u09c1\\u09b2 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u09c7 \\u09a6\\u09be\\u09b0\\u09c1\\u09a3 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09c7\\u0964 \\u098f\\u09a4\\u09c7 \\u0989\\u09aa\\u09b8\\u09cd\\u09a5\\u09bf\\u09a4 \\u0985\\u09a6\\u09cd\\u09b0\\u09ac\\u09a3\\u09c0\\u09df \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09b0\\u09cb\\u0997\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09a8\\u09b0\\u09ae \\u0995\\u09b0\\u09c7 \\u09a6\\u09c7\\u09df\\u0964 \\u09ab\\u09b2\\u09c7 \\u0996\\u09c1\\u09ac \\u09b8\\u09b9\\u099c\\u09c7\\u0987 \\u0987\\u09b2\\u09bf\\u09ae\\u09bf\\u09a8\\u09c7\\u09b6\\u09a8 \\u09b8\\u09ae\\u09cd\\u09ad\\u09ac \\u09b9\\u09df\\u0964 \\u09a4\\u09be\\u0987 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u0998\\u09c1\\u09ae\\u09be\\u09a8\\u09cb\\u09b0 \\u0986\\u0997\\u09c7 \\u09e8 \\u099a\\u09be\\u09ae\\u099a \\u0987\\u09b8\\u09ac\\u0997\\u09c1\\u09b2\\u09c7\\u09b0 \\u09ad\\u09c1\\u09b8\\u09bf \\u0993 \\u09e7 \\u0997\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c1\\u09b8\\u09c1\\u09ae \\u0997\\u09b0\\u09ae \\u09a6\\u09c1\\u09a7 \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u09a8\\u0964 \\u0995\\u09c7\\u0989 \\u09af\\u09a6\\u09bf \\u09b0\\u09cb\\u0997\\u099f\\u09bf \\u09aa\\u09c1\\u09b7\\u09c7 \\u09b0\\u09be\\u0996\\u09c7\\u09a8, \\u09a4\\u09be\\u09b9\\u09b2\\u09c7 \\u0995\\u09cb\\u09b2\\u09a8 \\u0995\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09b8\\u09be\\u09b0 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ad\\u09be\\u09ac\\u09a8\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u0995\\u09cd\\u09a4\\u09c7 \\u0995\\u09cb\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2 \\u0995\\u09ae\\u09be\\u09df: \\u098f \\u0987\\u09b8\\u09ac\\u0997\\u09c1\\u09b2 \\u0996\\u09c7\\u09b2\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0985\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09c7 \\u098f\\u0995\\u09a7\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09a4\\u09b0 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09df\\u0964 \\u09af\\u09be \\u0995\\u09cb\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2 \\u09b6\\u09cb\\u09b7\\u09a3\\u09c7 \\u09ac\\u09be\\u09a7\\u09be \\u09a6\\u09be\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ab\\u09b2\\u09c7 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b0\\u0995\\u09cd\\u09a4\\u09c7 \\u0995\\u09cb\\u09b2\\u09c7\\u09b8\\u09cd\\u099f\\u09c7\\u09b0\\u09b2\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u0995\\u09ae\\u09c7 \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u0985\\u09ac\\u09b8\\u09cd\\u09a5\\u09be\\u09df \\u09ab\\u09bf\\u09b0\\u09c7 \\u0986\\u09b8\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09b9\\u09c3\\u09a6\\u09b0\\u09cb\\u0997\\u09c0\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a6\\u09be\\u09b0\\u09c1\\u09a3 \\u098f\\u0995\\u099f\\u09bf \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u098f\\u099f\\u09bf\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0993\\u099c\\u09a8 \\u0995\\u09ae\\u09be\\u09df: \\u098f\\u09a4\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0989\\u09aa\\u09b8\\u09cd\\u09a5\\u09bf\\u09a4 \\u09a5\\u09be\\u0995\\u09be\\u09df \\u09b9\\u099c\\u09ae \\u09aa\\u09cd\\u09b0\\u0995\\u09cd\\u09b0\\u09bf\\u09df\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u09a7\\u09c0\\u09b0\\u0997\\u09a4\\u09bf\\u09a4\\u09c7 \\u09b9\\u09df\\u0964 \\u09a4\\u09be\\u0987 \\u0995\\u09cd\\u09b7\\u09c1\\u09a7\\u09be \\u09b2\\u09be\\u0997\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u0995\\u09ae\\u0964 \\u098f\\u099f\\u09bf \\u0996\\u09c7\\u09b2\\u09c7 \\u0993\\u099c\\u09a8 \\u0995\\u09ae\\u09be\\u09a8\\u09cb \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09b9\\u099c \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0987 \\u09ac\\u09c0\\u099c\\u09c7 \\u09aa\\u09cd\\u09b0\\u099a\\u09c1\\u09b0 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3\\u09c7 \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u09a5\\u09be\\u0995\\u09c7 \\u09af\\u09be \\u0995\\u09cb\\u09b7\\u09cd\\u09a0\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u0993 \\u09ac\\u09a6\\u09b9\\u099c\\u09ae \\u09a5\\u09c7\\u0995\\u09c7 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09c7\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09c7\\u099f \\u09ac\\u09cd\\u09af\\u09be\\u09a5\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0996\\u09c1\\u09ac\\u0987 \\u0989\\u09aa\\u0995\\u09be\\u09b0\\u09c0\\u0964 \\u09b9\\u09be\\u09b2\\u09bf\\u09ae \\u09ac\\u09c0\\u099c \\u09ab\\u09be\\u0987\\u09ac\\u09be\\u09b0 \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ad\\u09be\\u09b2\\u09cb \\u0989\\u09ce\\u09b8\\u0964 \\u09ab\\u09b2\\u09c7 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a4\\u09c3\\u09aa\\u09cd\\u09a4\\u09bf\\u09a6\\u09be\\u09df\\u0995 \\u09b9\\u09df\\u09c7 \\u0993\\u09a0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b9\\u09be\\u09b2\\u09bf\\u09ae \\u09ac\\u09c0\\u099c \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0996\\u09c1\\u09ac\\u0987 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0\\u0964 \\u098f\\u099f\\u09bf \\u09b2\\u09cb\\u09b9\\u09be\\u09b0 \\u0989\\u099a\\u09cd\\u099a \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09b2\\u09be\\u09b2 \\u09b0\\u0995\\u09cd\\u09a4 \\u0995\\u09cb\\u09b7\\u09c7\\u09b0 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8\\u0995\\u09c7 \\u0989\\u09ce\\u09b8\\u09be\\u09b9 \\u09a6\\u09c7\\u09af\\u09bc \\u098f\\u09ac\\u0982 \\u09b6\\u09b0\\u09c0\\u09b0\\u09c7 \\u09b9\\u09bf\\u09ae\\u09cb\\u0997\\u09cd\\u09b2\\u09cb\\u09ac\\u09bf\\u09a8 \\u098f\\u09b0 \\u09b8\\u09cd\\u09a4\\u09b0 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964 \\u09ab\\u09b2\\u09c7 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be \\u09aa\\u09cd\\u09b0\\u0995\\u09cb\\u09aa \\u09a5\\u09c7\\u0995\\u09c7 \\u09ae\\u09c1\\u0995\\u09cd\\u09a4\\u09bf \\u09aa\\u09be\\u0993\\u09af\\u09bc\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b9\\u09be\\u09b2\\u09bf\\u09ae \\u09ac\\u09c0\\u099c \\u0986\\u09cd\\u09af\\u09a8\\u09cd\\u099f\\u09bf \\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u0993 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09b8\\u09bf \\u09b8\\u09ae\\u09c3\\u09a6\\u09cd\\u09a7\\u0964 \\u09a4\\u09be\\u0987 \\u098f\\u099f\\u09bf \\u09b6\\u09b0\\u09c0\\u09b0\\u0995\\u09c7 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u099c\\u09c0\\u09ac\\u09be\\u09a3\\u09c1 \\u098f\\u09b0 \\u09b8\\u0982\\u0995\\u09cd\\u09b0\\u09ae\\u09a3 \\u09a5\\u09c7\\u0995\\u09c7 \\u09b0\\u0995\\u09cd\\u09b7\\u09be \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099c\\u09cd\\u09ac\\u09b0, \\u09b8\\u09b0\\u09cd\\u09a6\\u09bf, \\u0997\\u09b2\\u09be \\u09ac\\u09cd\\u09af\\u09be\\u09a5\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7- \\u09b9\\u09be\\u09b2\\u09bf\\u09ae \\u09ac\\u09c0\\u099c \\u0986\\u09a8\\u09cd\\u099f\\u09bf \\u09ae\\u09be\\u0987\\u0995\\u09cd\\u09b0\\u09cb\\u09ac\\u09bf\\u09af\\u09bc\\u09be\\u09b2 \\u09ac\\u09c8\\u09b6\\u09bf\\u09b7\\u09cd\\u099f\\u09cd\\u09af \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u0993\\u09af\\u09bc\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u099f\\u09bf \\u099c\\u09cd\\u09ac\\u09b0 \\u09b8\\u09b0\\u09cd\\u09a6\\u09bf \\u09b8\\u09b9 \\u09b6\\u09cd\\u09ac\\u09be\\u09b8 \\u09aa\\u09cd\\u09b0\\u09b6\\u09cd\\u09ac\\u09be\\u09b8 \\u098f\\u09b0 \\u09ac\\u09bf\\u09ad\\u09bf\\u09a8\\u09cd\\u09a8 \\u09b8\\u09ae\\u09b8\\u09cd\\u09af\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09a7\\u09c1 \\u09b6\\u09bf\\u09b6\\u09c1\\u09a6\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc\\u09c7\\u09b0 \\u0997\\u09a0\\u09a8 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7, \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u098f\\u09ac\\u0982 \\u09b8\\u09cd\\u09ae\\u09c3\\u09a4\\u09bf\\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u09be\\u09a4\\u09c7\\u09b0 \\u09ac\\u09c7\\u09b2\\u09be \\u09a6\\u09c1\\u09a7\\u09c7\\u09b0 \\u09b8\\u0999\\u09cd\\u0997\\u09c7 \\u09ae\\u09a7\\u09c1 \\u09ae\\u09bf\\u09b6\\u09bf\\u09df\\u09c7 \\u09aa\\u09be\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09a8\\u09bf\\u09a6\\u09cd\\u09b0\\u09be \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b6\\u09be\\u09b0\\u09c0\\u09b0\\u09bf\\u0995 \\u09a6\\u09c2\\u09b0\\u09cd\\u09ac\\u09b2\\u09a4\\u09be \\u09a6\\u09c2\\u09b0\\u09c0\\u0995\\u09b0\\u09a3\\u09c7 \\u09ae\\u09a7\\u09c1\\u09b0 \\u09b0\\u09af\\u09bc\\u09c7\\u099b\\u09c7 \\u09ac\\u09bf\\u09b6\\u09c7\\u09b7 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09f7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09a7\\u09c1\\u09a4\\u09c7 \\u09ac\\u09bf\\u09a6\\u09cd\\u09af\\u09ae\\u09be\\u09a8 \\u0985\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u099f\\u09bf\\u2013\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u09a1\\u09c7\\u09a8\\u09cd\\u099f \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09b0\\u0982 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u09a4\\u09be\\u09b0\\u09c1\\u09a3\\u09cd\\u09af\\u09a4\\u09be \\u09ac\\u099c\\u09be\\u09af\\u09bc\\u09c7 \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09af\\u09bc\\u09a4\\u09be \\u0995\\u09b0\\u09c7 \\u09f7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b0\\u0995\\u09cd\\u09a4\\u09b6\\u09c2\\u09a8\\u09cd\\u09af\\u09a4\\u09be \\u0993 \\u0995\\u09cb-\\u09b7\\u09cd\\u09a0-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7: \\u098f\\u09a4\\u09c7 \\u09b0\\u09df\\u09c7\\u099b\\u09c7 \\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8 \\u09ac\\u09bf-\\u0995\\u09ae\\u09aa\\u09cd\\u09b2\\u09c7\\u0995\\u09cd\\u09b8, \\u09af\\u09be \\u09b0\\u0995\\u09cd\\u09a4\\u09b6\\u09c2\\u09a8\\u09cd\\u09af\\u09a4\\u09be \\u0993 \\u0995\\u09cb-\\u09b7\\u09cd\\u09a0-\\u0995\\u09be\\u09a0\\u09bf\\u09a8\\u09cd\\u09af \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09e7 \\u0995\\u09c7\\u099c\\u09bf \\u09ef\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09ae\\u09be\\u09a4\\u09cd\\u09b0<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u0995\\u09c7\\u09a8\\u09cb \\u0995\\u09bf\\u09a8\\u09ac\\u09c7\\u09a8?<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7, \\u09a6\\u09c7\\u0996\\u09c7,\\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u099a\\u09c7\\u0995 \\u0995\\u09b0\\u09c7 \\u09aa\\u09c7\\u09ae\\u09c7\\u09a8\\u09cd\\u099f\\u09c7 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u09a8\\u09be \\u09b9\\u09b2\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u0995\\u09c1\\u09b0\\u09bf\\u09df\\u09be\\u09b0\\u09c7\\u09b0 \\u09ae\\u09be\\u09a7\\u09cd\\u09af\\u09ae\\u09c7 \\u09b9\\u09cb\\u09ae \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09aa\\u09be\\u09ac\\u09c7\\u09a8 \\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09b8\\u09ae\\u09df \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2><a href=\\\"tel:01819000000\\\">\\u09af\\u09c7 \\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8    01819000000<\\/a><\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1080\\\" height=\\\"1080\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green-and-White-Modern-New-Menu-Special-Matcha-Tea-Promotion-Instagram-Postuu.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green-and-White-Modern-New-Menu-Special-Matcha-Tea-Promotion-Instagram-Postuu.webp 1080w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green-and-White-Modern-New-Menu-Special-Matcha-Tea-Promotion-Instagram-Postuu-300x300.webp 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green-and-White-Modern-New-Menu-Special-Matcha-Tea-Promotion-Instagram-Postuu-1024x1024.webp 1024w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green-and-White-Modern-New-Menu-Special-Matcha-Tea-Promotion-Instagram-Postuu-150x150.webp 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green-and-White-Modern-New-Menu-Special-Matcha-Tea-Promotion-Instagram-Postuu-768x768.webp 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green-and-White-Modern-New-Menu-Special-Matcha-Tea-Promotion-Instagram-Postuu-600x600.webp 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Green-and-White-Modern-New-Menu-Special-Matcha-Tea-Promotion-Instagram-Postuu-100x100.webp 100w\\\" sizes=\\\"(max-width: 1080px) 100vw, 1080px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_country\\\" id=\\\"billing_country\\\" autocomplete=\\\"country\\\" data-placeholder=\\\"Select a country \\/ region&hellip;\\\" data-label=\\\"Country \\/ Region\\\"><option value=\\\"\\\">Select a country \\/ region&hellip;<\\/option><option value=\\\"AF\\\" >Afghanistan<\\/option><option value=\\\"AX\\\" >\\u00c5land 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&ccedil;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&atilde;o Tom&eacute; and Pr&iacute;ncipe<\\/option><option value=\\\"BL\\\" >Saint Barth&eacute;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\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0\\u099f\\u09bf \\u09b2\\u09c7\\u0996\\u09c1\\u09a8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"677\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"680\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>\\n\\t\\tProduct\\n\\t\\tQuantity\\n\\t\\tPrice\\n\\t<input type=\\\"radio\\\"\\n\\tid=\\\"wcf-item-product-989\\\"\\n\\tname=\\\"wcf-single-sel\\\" \\n\\tvalue=\\\"989\\\"\\n\\t>\\n\\t<label for=\\\"wcf-item-product-989\\\"><\\/label>\\nYour Product Or Service1\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">\\n\\t\\t&plus;\\n\\t<bdi>&#36;900.00<\\/bdi>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717919386\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"93b5769a18\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Checkout (Woo)','','inherit','closed','closed','','2079-revision-v1','','','2026-06-08 21:46:59','2026-06-08 15:46:59','','2079','https://hypergrowth.fishgrowth.xyz/?p=2080','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2081','17','2026-06-08 21:47:01','2026-06-08 15:47:01','','Smart Luxury Shirt Copy','','publish','closed','closed','','smart-luxury-shirt-copy','','','2026-06-08 21:47:01','2026-06-08 15:47:01','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=smart-luxury-shirt-copy','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2082','17','2026-06-08 21:47:01','2026-06-08 15:47:01','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','publish','closed','closed','','sales-landing-38','','','2026-06-08 21:47:01','2026-06-08 15:47:01','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing-38/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2083','17','2026-06-08 21:47:01','2026-06-08 15:47:01','\"\\\"\\\"\\\"\\\"\\\"\\\"\"','Sales Landing','','inherit','closed','closed','','2082-revision-v1','','','2026-06-08 21:47:01','2026-06-08 15:47:01','','2082','https://hypergrowth.fishgrowth.xyz/?p=2083','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2084','17','2026-06-08 21:47:01','2026-06-08 15:47:01','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://thesmartway.xyz/wp-content/uploads/2024/06/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>অরিজিনাল ইমপোর্টেড গার্মেন্টস শাটিং ফাইন কটন ও ভিসকোস কটন কাপড়ের কেজুয়াল শার্ট ও পাঞ্জাবি,  যা আপনার যে কোনো অনুষ্ঠান ও পার্টিতে যাওয়ার জন্য বেষ্ট চয়েজ হতে পারে।</h2>		\n			<h2><s>আগের মূল্যঃ ১৫৫০ টাকা</s></h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">		<h3>\n					সেরা অফারঃ   ১ পিস\n					১৪৫০\n					টাকা (ডেলিভারি চার্জ একদম  ফ্রী)\n					</h3>\n			<a href=\"#order-form\">\n									অর্ডার করতে চাই\n					</a>\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-carousel.min.css\">		\n							<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>							Previous\n							<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>							Next\n			<h2>প্রত্যেকটি শার্ট সিলিকন প্রিমিয়াম ওয়াস করা, তাই খুবই সফট ও সুন্দর লুকস হয়েছে</h2>		\n			<p>প্রতিটা শার্ট এর কাপড় ইমপোর্টেড শার্টিং ফাইন কটন।  শতভাগ কটন তাই গরমের জন্য খুব-ই আরামদায়ক এবং রং নষ্ট হবে না ইনশা—আল্লাহ।</p>		\n			<p>কাপড়ের ধরণ : ইমপোর্টেড শার্টিং ফাইন কটন, 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} কটন ( গরমের জন্য খুব-ই আরামদায়ক )</p>		\n			<a href=\"#order-form\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>কি কি কারণে আমাদের কাছ থেকে শার্টটি কিনা উচিৎ!</h2>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										 স্মার্ট  বাংলাদেশের স্মার্ট বয়েজদের জন্য  ফেশানাবল শার্ট ও পাঞ্জাবি নিয়ে আসছে স্মার্ট ওয়ার ব্রান্ড,  \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										আমাদের স্মার্ট ওয়ার ব্রান্ড  আপনাদের পছন্দ ও চাহিদার কথা মাথায় রেখে  রুচিশীল ও আকর্ষণীয় শার্ট ও পাঞ্জাবির মেলা সাজিয়েছে,\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										 ৫ টি কালার ও আকর্ষণীয় প্রিন্টের মধ্য থেকে বেছে নিন আপনার পছন্দের শার্ট ও পাঞ্জাবি,,   শতভাগ কটন, আরামদায়ক কাপড়ের নিশ্চয়তা ও কালার গেরান্টি দিচ্ছে স্মার্ট ওয়ার ব্রান্ড ,  \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										স্মার্ট ওয়ার ব্রান্ড ❤️ প্রতিটি সম্মানিত কাস্টমারের দোয়া ও ভালোবাসা আশাবাদী,  \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										স্মার্ট ওয়ার ব্রান্ড এর প্রতিটি প্রডাক্টের সুইং খুবই নিখুঁত ও টেকসই ইনশা আল্লাহ,  \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										 স্মার্ট ওয়ার ব্রান্ড শতভাগ বিশ্বস্ত একটি  প্রতিষ্ঠান,  🍁 আমাদের প্রডাক্টের সাইজ এভেইলেবেল আছে,   মিডিয়াম, লার্জ, এক্সেল। \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										আমাদের দেশিও ব্রান্ড গুলোর সাথে সমন্বয় রেখে প্রতিটি প্রডাক্টের সাইজ রেশিও করেছি। \n									</li>\n						</ul>\n			<h2>সাইজ গাইড</h2>		\n		<table style=\"height: 278px;\" width=\"230\"><tbody><tr><th><strong>SIZE (সাইজ)</strong></th><th><strong>CHEST (বুকের মাপ)</strong></th><th><strong>LEANGTH (লেন্থ)</strong></th></tr><tr><td><strong>M</strong></td><td><strong>38\"</strong></td><td><strong>27\"</strong></td></tr><tr><td><b>L</b></td><td><strong>40\"</strong></td><td><strong>28\"</strong></td></tr><tr><td><b>XL</b></td><td><strong>42\"</strong></td><td><strong>30\"</strong></td></tr></tbody></table>		\n			<h2>অর্ডার করতে নিচের ফর্মটি পূরন করুন</h2>		\n			<h2>কোন কারনে এই প্যাকেজ আপনার পছন্দ না হলে আপনি ডেলিভারি ফি প্রদান করে রিটার্ন করতে পারবেন।</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<ul role=\"alert\">\n			<li>\n			No product is selected. Please select products from the  checkout meta settings   to continue.		</li>\n	</ul>\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নাম&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\"  value=\"Md.Asadul Islam\" autocomplete=\"given-name\" /></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">আপনার সম্পূর্ণ ঠিকানা&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"House number and street name\"  value=\"Address: House Holding: Howladar Bari, Village/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">আপনার ফোন নাম্বার&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"2081\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"2084\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780979622\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n			<h2> Copyright © 2024  Busness Name | This website made with ❤️ by <a href=\"https://itgalaxi.com/\" style=\"color:red\"><b> The Smart Way</b></a></h2>','Checkout (Woo)','','publish','closed','closed','','checkout-woo-40','','','2026-06-09 11:07:45','2026-06-09 05:07:45','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-40/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2085','17','2026-06-08 21:47:09','2026-06-08 15:47:09','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>No completed or processing order found to show the order details form demo.<\\/p>ttntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\\">itgalaxi<\\/a><\\/p>\\\"\"','Thank You (Woo)','','publish','closed','closed','','thank-you-woo-36','','','2026-06-08 21:47:09','2026-06-08 15:47:09','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-36/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2086','17','2026-06-08 21:47:09','2026-06-08 15:47:09','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>No completed or processing order found to show the order details form demo.<\\/p>ttntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\\">itgalaxi<\\/a><\\/p>\\\"\"','Thank You (Woo)','','inherit','closed','closed','','2085-revision-v1','','','2026-06-08 21:47:09','2026-06-08 15:47:09','','2085','https://hypergrowth.fishgrowth.xyz/?p=2086','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2087','17','2026-06-08 21:47:20','2026-06-08 15:47:20','\"<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<p>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8<\\/p>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-37__trashed','','','2026-06-09 12:45:12','2026-06-09 06:45:12','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-37/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2088','17','2026-06-08 21:47:20','2026-06-08 15:47:20','\"<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<p>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u098f\\u0995\\u099c\\u09a8 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a8\\u09bf\\u09a7\\u09bf \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0995\\u09a5\\u09be \\u09ac\\u09b2\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u0995\\u09c7 \\u09ac\\u09bf\\u09b8\\u09cd\\u09a4\\u09be\\u09b0\\u09bf\\u09a4 \\u099c\\u09be\\u09a8\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8<\\/p>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Thank You (Woo)','','inherit','closed','closed','','2087-revision-v1','','','2026-06-08 21:47:20','2026-06-08 15:47:20','','2087','https://hypergrowth.fishgrowth.xyz/?p=2088','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2089','17','2026-06-08 21:47:23','2026-06-08 15:47:23','','Soap','','trash','closed','closed','','soap__trashed','','','2026-06-09 10:26:45','2026-06-09 04:26:45','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=soap','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2090','17','2026-06-08 21:47:23','2026-06-08 15:47:23','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u09b0\\n\\t\\t\\t\\t\\t\\u09ac\\u09c7\\u099c \\u0993 \\u0987\\u09b0\\u09be\\u09a8\\u09bf \\n\\t\\t\\t\\t\\t\\u09b8\\u09cd\\u09af\\u09be\\u09ab\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b8\\u09ae\\u09a8\\u09cd\\u09a8\\u09df\\u09c7 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-carousel.min.css\\\">\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\tPrevious\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\tNext\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09cb\\u09aa \\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0985\\u09a5\\u09c7\\u09a8\\u09cd\\u099f\\u09bf\\u0995 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0997\\u09be\\u09af\\u09bc\\u09c7 QR \\u0995\\u09cb\\u09a1 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u0986\\u099b\\u09c7 \\u09b8\\u09cd\\u0995\\u09cd\\u09af\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1\\u09ae\\u09c7\\u09a1 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09e7 \\u099f\\u09bf - \\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be ( \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09b9 )<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1\\u09ae\\u09c7\\u09a1 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09e8 \\u099f\\u09bf - \\u09ed\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be ( \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ab\\u09cd\\u09b0\\u09bf )<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"554\\\" height=\\\"554\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/6-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/6-1.jpg 554w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/6-1-300x300.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/6-1-150x150.jpg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/6-1-100x100.jpg 100w\\\" sizes=\\\"(max-width: 554px) 100vw, 554px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0997\\u09c1\\u09a8\\u09be\\u0997\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09eb-\\u09ec \\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09a4\\u09c7 \\u09b6\\u09c1\\u09b0\\u09c1 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2\\u09a4\\u09be \\u09ec \\u09a5\\u09c7\\u0995\\u09c7 \\u09ed\\u09b6\\u09c7\\u09a1 \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u09ac\\u09be\\u09a1\\u09bc\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0997\\u09be\\u09df\\u09c7\\u09b0 \\u09b0\\u0982 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0997\\u09ad\\u09c0\\u09b0\\u09c7 \\u0997\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09a6\\u09cd\\u09b0\\u09a4\\u09be \\u099c\\u09cb\\u0997\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b9\\u099c\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u09ac\\u09af\\u09bc\\u09b8\\u09c7\\u09b0 \\u099b\\u09be\\u09aa \\u09aa\\u09a1\\u09bc\\u09a4\\u09c7 \\u09a6\\u09c7\\u09af\\u09bc \\u09a8\\u09be\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09b0\\u09cd\\u0995 \\u09b8\\u09be\\u09b0\\u09cd\\u0995\\u09c7\\u09b2 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0993\\u09aa\\u09c7\\u09a8 \\u09aa\\u09cb\\u09b0\\u09cd\\u09b8 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \\u0993 \\u09aa\\u09bf\\u09ae\\u09cd\\u09aa\\u09b2 \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09be\\u09b2\\u09cb \\u09ac\\u09cd\\u09b0\\u09a3\\u09c7\\u09b0 \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09c7\\u099b\\u09a4\\u09be\\u09b0 \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09cb\\u0996\\u09c7\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a6\\u09bf\\u09a8\\u09c7 \\u09ef \\u09a5\\u09c7\\u0995\\u09c7 \\u09e7\\u09e6 \\u0998\\u09a8\\u09cd\\u099f\\u09be \\u0993\\u09af\\u09bc\\u09c7\\u09b2 \\u0995\\u09a8\\u09cd\\u099f\\u09cd\\u09b0\\u09cb\\u09b2 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u0997\\u09cd\\u09b2\\u09cb \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u0995\\u09be\\u09b2\\u09cb \\u09a4\\u09bf\\u09b2 \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u099c\\u09be\\u09ab\\u09cd\\u09b0\\u09be\\u09a8 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u099f\\u09be \\u098f\\u09a4\\u09cb \\u099f\\u09be \\u099c\\u09cb\\u09b6 \\u09af\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09a8\\u09be \\u0995\\u09b0\\u09b2\\u09c7 \\u09ac\\u09c1\\u099d\\u09be\\u0987 \\u09af\\u09be\\u09df \\u09a8\\u09be\\u0964 \\u09a4\\u09be\\u0987  \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a8 \\u09b8\\u09cd\\u099f\\u0995 \\u09b6\\u09c7\\u09b7 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u0986\\u0997\\u09c7\\u0964 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u0985\\u09a8\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09af  \\u099c\\u09be\\u09ab\\u09cd\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09a8\\u09be\\u0964 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7 \\u0986\\u099b\\u09c7 \\u099c\\u09be\\u09ab\\u09cd\\u09b0\\u09be\\u09a8,\\u09aa\\u09c7\\u09aa\\u09c7,\\u0993 \\u09ad\\u09bf\\u099f\\u09be- \\u09b8\\u09bf \\u0993 \\u099b\\u09be\\u0997\\u09b2\\u09c7\\u09b0 \\u09a6\\u09c1\\u09a7\\u09c7\\u09b0 \\u09a6\\u09be\\u09b0\\u09c1\\u09a3 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0\\u09a4\\u09be \\u09af\\u09be \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf\\u0995\\u09c7 \\u0995\\u09b0\\u09c7\\u099b\\u09c7 \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u0986\\u09b2\\u09be\\u09a6\\u09be\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u09a8\\u09bf\\u09af\\u09bc\\u09ae <\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u09e8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e9 \\u09ac\\u09be\\u09b0 \\u09ae\\u09c1\\u0996 \\u09a7\\u09c1\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09c1\\u0996 \\u09a7\\u09cb\\u09af\\u09bc\\u09be\\u09b0 \\u09a8\\u09bf\\u09af\\u09bc\\u09ae \\u09ae\\u09c1\\u0996\\u09c7 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09be \\u09b2\\u09be\\u0997\\u09bf\\u09af\\u09bc\\u09c7 \\u09e9 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f \\u09b0\\u09be\\u0996\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u0986\\u09ac\\u09be\\u09b0 \\u09e8 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f \\u09ae\\u09be\\u09b8\\u09be\\u099c \\u0995\\u09b0\\u09c7 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a7\\u09c1\\u09af\\u09bc\\u09c7 \\u09ab\\u09c7\\u09b2\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09c0\\u09a4\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3-4 \\u09b6\\u09c7\\u09a1 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09ac\\u09c7 \\u09a6\\u09c1\\u0987 \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09bf\\u09a8\\u099f\\u09be \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u0987\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09df\\u09c7\\u0995\\u09a6\\u09bf\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7\\u0987 \\u0986\\u09aa\\u09a8\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u09b2\\u0995\\u09cd\\u09b7\\u09cd\\u09af \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u099f\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u09ac\\u09cd\\u09b0\\u09be\\u0987\\u099f \\u0995\\u09b0\\u09ac\\u09c7 \\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u098f\\u0995\\u09a6\\u09ae \\u09ad\\u09c7\\u09a4\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09ab\\u099f \\u0995\\u09b0\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09b8\\u09cd\\u09a4\\u09c7 \\u0986\\u09b8\\u09cd\\u09a4\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09a6\\u09be\\u0997\\u0997\\u09c1\\u09b2\\u09cb \\u0995\\u09ae\\u09be\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u09ac\\u09cd\\u09b0\\u09a3 \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09c1\\u09b2 \\u09ac\\u09a1\\u09bf\\u09a4\\u09c7 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09a1\\u09bf\\u0995\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"665\\\" height=\\\"699\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg 665w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1-285x300.jpg 285w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1-600x631.jpg 600w\\\" sizes=\\\"(max-width: 665px) 100vw, 665px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"665\\\" height=\\\"699\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg 665w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1-285x300.jpg 285w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1-600x631.jpg 600w\\\" sizes=\\\"(max-width: 665px) 100vw, 665px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09c0\\u09a4\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3-4 \\u09b6\\u09c7\\u09a1 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09ac\\u09c7 \\u09a6\\u09c1\\u0987 \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09bf\\u09a8\\u099f\\u09be \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u0987\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09df\\u09c7\\u0995\\u09a6\\u09bf\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7\\u0987 \\u0986\\u09aa\\u09a8\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u09b2\\u0995\\u09cd\\u09b7\\u09cd\\u09af \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u099f\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u09ac\\u09cd\\u09b0\\u09be\\u0987\\u099f \\u0995\\u09b0\\u09ac\\u09c7 \\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u098f\\u0995\\u09a6\\u09ae \\u09ad\\u09c7\\u09a4\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09ab\\u099f \\u0995\\u09b0\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09b8\\u09cd\\u09a4\\u09c7 \\u0986\\u09b8\\u09cd\\u09a4\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09a6\\u09be\\u0997\\u0997\\u09c1\\u09b2\\u09cb \\u0995\\u09ae\\u09be\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u09ac\\u09cd\\u09b0\\u09a3 \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09c1\\u09b2 \\u09ac\\u09a1\\u09bf\\u09a4\\u09c7 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09a1\\u09bf\\u0995\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"665\\\" height=\\\"699\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg 665w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1-285x300.jpg 285w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1-600x631.jpg 600w\\\" sizes=\\\"(max-width: 665px) 100vw, 665px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u098f\\u099f\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1 \\u09ae\\u09c7\\u09a1  \\u09ae\\u09c1\\u0996\\u09c7\\u09b0 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u0964 \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u09aa\\u09c1\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09b8\\u09c7\\u09b2 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\u0964\\u098f \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ae\\u09c1\\u0996\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09b2\\u09c7 \\u09ae\\u09c1\\u0996\\u09c7 \\u09ac\\u09cd\\u09b0\\u09a3, \\u09a4\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a4\\u09cd\\u09ac\\u0995\\u0995\\u09c7 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09c7  \\u09ae\\u09c1\\u0996\\u0995\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a4\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09b0\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u0986\\u09b0 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u099f\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a6\\u09c1\\u0987\\u099f\\u09bf \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u0995\\u09bf\\u09a8\\u09b2\\u09c7 \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09b9\\u09cb\\u09ae  \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c  \\n\\t\\t\\t\\t\\t\\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u099f\\u09be\\u0995\\u09be \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h2>\\u098f\\u0995\\u099f\\u09be \\u09a8\\u09bf\\u09b2\\u09c7 \\u09ea\\u09ee\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09b9 \\u09a6\\u09c1\\u0987\\u099f\\u09be \\u09a8\\u09bf\\u09b2\\u09c7 \\u09ed\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ab\\u09cd\\u09b0\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"741\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"742\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717920053\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;0.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;0.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;0.00\\\" data-value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;0.00\\\">\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;0.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"93b5769a18\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01303832348\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-41__trashed','','','2026-06-09 10:26:45','2026-06-09 04:26:45','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-41/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2091','17','2026-06-08 21:47:24','2026-06-08 15:47:24','','Soap 02','','trash','closed','closed','','soap-02__trashed','','','2026-06-09 10:26:03','2026-06-09 04:26:03','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=soap-02','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2092','17','2026-06-08 21:47:24','2026-06-08 15:47:24','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp 472w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">tt<h3>ntttttu09aau09cdu09b0u09bfu09aeu09bfu09dfu09beu09ae u0995u09cbu09dfu09beu09b2u09bfu099fu09bfu09b0ntttttu09acu09c7u099c u0993 u0987u09b0u09beu09a8u09bf ntttttu09b8u09cdu09afu09beu09abu09b0u09a8u09c7u09b0 u09b8u09aeu09a8u09cdu09a8u09dfu09c7 u099cu09beu09abu09b0u09beu09a8 u09b8u09beu09acu09beu09a8nttttt<\\/h3>nttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-carousel.min.css\\\">ttnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>tttttttPreviousnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>tttttttNextnttt<a href=\\\"#order\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<style>\\/*! elementor - v3.18.0 - 20-12-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>u0986u09aeu09beu09a6u09c7u09b0 u09b8u09cbu09aa u09e7u09e6u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} u0985u09a5u09c7u09a8u09cdu099fu09bfu0995 u09b8u09beu09acu09beu09a8u09c7u09b0 u0997u09beu09afu09bcu09c7 QR u0995u09cbu09a1 u09a6u09c7u0993u09afu09bcu09be u0986u099bu09c7 u09b8u09cdu0995u09cdu09afu09beu09a8 u0995u09b0u09c7 u09a8u09bfu09acu09c7u09a8<\\/h2>ttnttt<h2>u09aau09cdu09b0u09bfu09aeu09bfu09afu09bcu09beu09ae u09b9u09cdu09afu09beu09a8u09cdu09a1u09aeu09c7u09a1 u099cu09beu09abu09b0u09beu09a8 u09b8u09beu09acu09beu09a8 u09e7 u099fu09bf - u09ebu09ebu09e6 u099fu09beu0995u09be ( u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u09b8u09b9 )<\\/h2>ttnttt<h2>u09aau09cdu09b0u09bfu09aeu09bfu09afu09bcu09beu09ae u09b9u09cdu09afu09beu09a8u09cdu09a1u09aeu09c7u09a1 u099cu09beu09abu09b0u09beu09a8 u09b8u09beu09acu09beu09a8 u09e8 u099fu09bf - u09edu09ebu09e6 u099fu09beu0995u09be ( u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u09abu09cdu09b0u09bf )<\\/h2>ttnttt<a href=\\\"#order\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttttttttttttttt<img width=\\\"554\\\" height=\\\"554\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/6-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/6-1.jpg 554w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/6-1-300x300.jpg 300w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/6-1-150x150.jpg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/6-1-100x100-1.jpg 100w\\\" sizes=\\\"(max-width: 554px) 100vw, 554px\\\" \\/>tttttttttttttttnttt<h2>u099cu09beu09abu09b0u09beu09a8 u09b8u09beu09acu09beu09a8u09c7u09b0 u0997u09c1u09a8u09beu0997u09c1u09a8<\\/h2>ttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">tt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09eb-u09ec u09a6u09bfu09a8u09c7u09b0 u09aeu09a7u09cdu09afu09c7 u0995u09beu099c u0995u09b0u09a4u09c7 u09b6u09c1u09b0u09c1 u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09a4u09cdu09acu0995u09c7u09b0 u0989u099cu09cdu099cu09cdu09acu09b2u09a4u09be u09ec u09a5u09c7u0995u09c7 u09edu09b6u09c7u09a1 u09aau09b0u09cdu09afu09a8u09cdu09a4 u09acu09beu09a1u09bcu09beu09afu09bcnttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0997u09beu09dfu09c7u09b0 u09b0u0982 u09abu09b0u09cdu09b8u09be u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09a4u09cdu09acu0995u09c7u09b0 u0997u09adu09c0u09b0u09c7 u0997u09bfu09afu09bcu09c7 u0986u09a6u09cdu09b0u09a4u09be u099cu09cbu0997u09beu09afu09bcnttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09b9u099cu09c7 u09a4u09cdu09acu0995u09c7 u09acu09afu09bcu09b8u09c7u09b0 u099bu09beu09aa u09aau09a1u09bcu09a4u09c7 u09a6u09c7u09afu09bc u09a8u09benttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09a1u09beu09b0u09cdu0995 u09b8u09beu09b0u09cdu0995u09c7u09b2 u09a6u09c2u09b0 u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0993u09aau09c7u09a8 u09aau09cbu09b0u09cdu09b8 u09a6u09c2u09b0 u0995u09b0u09c7 u0993 u09aau09bfu09aeu09cdu09aau09b2 u09b0u09bfu09aeu09c1u09ad u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0995u09beu09b2u09cb u09acu09cdu09b0u09a3u09c7u09b0 u09a6u09beu0997 u09a6u09c2u09b0 u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aeu09c7u099bu09a4u09beu09b0 u09a6u09beu0997 u09a6u09c2u09b0 u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu099au09cbu0996u09c7u09b0 u09a8u09bfu099au09c7u09b0 u0995u09beu09b2u09cb u09a6u09beu0997 u09a6u09c2u09b0 u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09a6u09bfu09a8u09c7 u09ef u09a5u09c7u0995u09c7 u09e7u09e6 u0998u09a8u09cdu099fu09be u0993u09afu09bcu09c7u09b2 u0995u09a8u09cdu099fu09cdu09b0u09cbu09b2 u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09cdu0995u09bfu09a8 u0997u09cdu09b2u09cb u0995u09b0u09c7 u098fu09acu0982 u0995u09beu09b2u09cb u09a4u09bfu09b2 u09b0u09bfu09aeu09c1u09ad u0995u09b0u09c7nttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>u099cu09beu09abu09cdu09b0u09beu09a8 u098fu0987 u09b8u09beu09acu09beu09a8 u099fu09be u098fu09a4u09cb u099fu09be u099cu09cbu09b6 u09afu09c7 u09acu09cdu09afu09acu09b9u09beu09b0 u09a8u09be u0995u09b0u09b2u09c7 u09acu09c1u099du09beu0987 u09afu09beu09df u09a8u09beu0964 u09a4u09beu0987  u09a6u09cdu09b0u09c1u09a4 u0985u09b0u09cdu09a1u09beu09b0 u0995u09a8u09abu09beu09b0u09cdu09ae u0995u09b0u09c7 u09a8u09bfu09a8 u09b8u09cdu099fu0995 u09b6u09c7u09b7 u09b9u0993u09dfu09beu09b0 u0986u0997u09c7u0964 u098fu0987 u09b8u09beu09acu09beu09a8u099fu09bf u0985u09a8u09cdu09afu09beu09a8u09cdu09af  u099cu09beu09abu09cdu09b0u09beu09a8 u09b8u09beu09acu09beu09a8u09c7u09b0 u09aeu09a4u09cb u09a8u09beu0964 u099cu09beu09abu09b0u09beu09a8 u09b8u09beu09acu09beu09a8u09c7 u0986u099bu09c7 u099cu09beu09abu09cdu09b0u09beu09a8,u09aau09c7u09aau09c7,u0993 u09adu09bfu099fu09be- u09b8u09bf u0993 u099bu09beu0997u09b2u09c7u09b0 u09a6u09c1u09a7u09c7u09b0 u09a6u09beu09b0u09c1u09a3 u0995u09beu09b0u09cdu09afu0995u09b0u09c0u09a4u09be u09afu09be u098fu0987 u09b8u09beu09acu09beu09a8u099fu09bfu0995u09c7 u0995u09b0u09c7u099bu09c7 u09b8u09ac u09a5u09c7u0995u09c7 u0986u09b2u09beu09a6u09beu0964<\\/h2>ttnttt<h2>u099cu09beu09abu09b0u09beu09a8 u09b8u09beu09acu09beu09a8 u09acu09cdu09afu09acu09b9u09beu09b0 u0995u09b0u09beu09b0 u09a8u09bfu09afu09bcu09ae <\\/h2>ttnttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09beu09acu09beu09a8u099fu09bf u09a6u09bfu09afu09bcu09c7 u09aau09cdu09b0u09a4u09bfu09a6u09bfu09a8 u09e8 u09a5u09c7u0995u09c7 u09e9 u09acu09beu09b0 u09aeu09c1u0996 u09a7u09c1u09a4u09c7 u09b9u09acu09c7 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aeu09c1u0996 u09a7u09cbu09afu09bcu09beu09b0 u09a8u09bfu09afu09bcu09ae u09aeu09c1u0996u09c7 u09b8u09beu09acu09beu09a8u099fu09be u09b2u09beu0997u09bfu09afu09bcu09c7 u09e9 u09aeu09bfu09a8u09bfu099f u09b0u09beu0996u09beu09b0 u09aau09b0u09c7 u0986u09acu09beu09b0 u09e8 u09aeu09bfu09a8u09bfu099f u09aeu09beu09b8u09beu099c u0995u09b0u09c7 u09b8u09c1u09a8u09cdu09a6u09b0 u0995u09b0u09c7 u09a7u09c1u09afu09bcu09c7 u09abu09c7u09b2u09a4u09c7 u09b9u09acu09c7nttttttttt<\\/li>ntttttt<\\/ul>nttttttttttttttt<img width=\\\"665\\\" height=\\\"699\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg 665w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1-285x300-1.jpg 285w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1-600x631-1.jpg 600w\\\" sizes=\\\"(max-width: 665px) 100vw, 665px\\\" \\/>tttttttttttttttnttt<h2>u098fu099fu09be u0986u09aeu09beu09a6u09c7u09b0 u09b9u09cdu09afu09beu09a8u09cdu09a1 u09aeu09c7u09a1  u09aeu09c1u0996u09c7u09b0 u09b8u09beu09acu09beu09a8u0964 u09acu09b0u09cdu09a4u09aeu09beu09a8u09c7 u0986u09aeu09b0u09be u09aau09c1u09b0u09be u09acu09beu0982u09b2u09beu09a6u09c7u09b6u09c7 u09b8u09c7u09b2 u09a6u09bfu09afu09bcu09c7 u09a5u09beu0995u09bfu0964u098f u09b8u09beu09acu09beu09a8 u09aeu09c1u0996u09c7 u09acu09cdu09afu09acu09b9u09beu09b0 u0995u09b0u09b2u09c7 u09aeu09c1u0996u09c7 u09acu09cdu09b0u09a3, u09a4u0995u09c7u09b0 u0995u09beu09b2u09cb u09a6u09beu0997 u09a6u09c2u09b0 u0995u09b0u09c7u0964 u0986u09aau09a8u09beu09b0 u09a4u09cdu09acu0995u0995u09c7 u09abu09b0u09cdu09b8u09be u0995u09b0u09c7  u09aeu09c1u0996u0995u09c7u09b0 u09adu09bfu09a4u09b0 u09a5u09c7u0995u09c7 u09aau09b0u09bfu09b7u09cdu0995u09beu09b0 u0995u09b0u09acu09c7u0964 u0986u09b0 u09b8u09beu09acu09beu09a8 u099fu09be u0985u09a8u09c7u0995 u0995u09beu09b0u09cdu09afu0995u09b0u09c0u0964<\\/h2>ttnttttt<h3>ntttttu09a6u09c1u0987u099fu09bf u099cu09beu09abu09b0u09beu09a8 u09b8u09beu09acu09beu09a8 u0995u09bfu09a8u09b2u09c7 u09b8u09beu09b0u09be u09acu09beu0982u09b2u09beu09a6u09c7u09b6u09c7 u09b9u09cbu09ae  u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c  ntttttu098fu0995u09a6u09ae u09abu09cdu09b0u09bfntttttu09aau09cdu09b0u09cbu09a1u09beu0995u09cdu099f u09b9u09beu09a4u09c7 u09aau09c7u09dfu09c7 u099fu09beu0995u09be u09a6u09bfu09acu09c7u09a8nttttt<\\/h3>nttt<h2>u098fu0995u099fu09be u09a8u09bfu09b2u09c7 u09eau09eeu09e6 u099fu09beu0995u09be u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u09b8u09b9 u09a6u09c1u0987u099fu09be u09a8u09bfu09b2u09c7 u09edu09ebu09e6 u099fu09beu0995u09be u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u09abu09cdu09b0u09bf<\\/h2>ttnttt<h2>u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u09a8u09bfu099au09c7u09b0 u09abu09b0u09cdu09aeu099fu09bf u09aau09c2u09b0u09a3 u0995u09b0u09c1u09a8<\\/h2>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"2379\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"2380\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1717805372\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>nttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;0.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;0.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8&nbsp;&nbsp;&#2547;&nbsp;0.00\\\" data-value=\\\"u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8&nbsp;&nbsp;&#2547;&nbsp;0.00\\\">u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8&nbsp;&nbsp;&#2547;&nbsp;0.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"1451bb3e4c\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2>u09aau09cdu09b0u09dfu09cbu099cu09a8u09c7 u09abu09cbu09a8 u0995u09b0u09c1u09a8<\\/h2>ttnttt<a href=\\\"tel:01303832348\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>tttntttttt01819000000nttttt<\\/a>nttt<h2> Copyright u00a9 2024  Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\\\"\"','Checkout (Woo)','','trash','closed','closed','','checkout-woo-42__trashed','','','2026-06-09 10:26:03','2026-06-09 04:26:03','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-42/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2093','17','2026-06-08 21:47:25','2026-06-08 15:47:25','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u099f\\u09bf\\u0986\\u0987\\u09ac\\u09c7\\u09ac\\u09bf \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09af\\u09bc\\u09be\\u09b0 <\\/br>\\u09b8\\u09be\\u09a5\\u09c7 \\u09ae\\u09bf\\u0989\\u099c\\u09bf\\u0995 \\u098f\\u09ac\\u0982 \\u09ad\\u09be\\u0987\\u09ac\\u09cd\\u09b0\\u09c7\\u09b6\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u099b\\u09cb\\u099f \\u09ac\\u09be\\u09ac\\u09c1 \\u0986\\u099b\\u09c7 \\u0995\\u09bf\\u09a8\\u09cd\\u09a4\\u09c1 \\u09ac\\u09be\\u09ac\\u09c1\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u0987 \\u09ac\\u09c7\\u09ac\\u09bf \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0 \\u09a8\\u09be\\u0987 \\u09a4\\u09be\\u09b0 \\u09ae\\u09be\\u09a8\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09c1\\u09ac\\u09bf\\u09a7\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ae\\u09c2\\u09b2\\u09cd\\u09af <del>\\u09e9\\u09eb\\u09e6\\u09e6<\\/del> \\u09e9\\u09e7\\u09eb\\u09e6\\/=<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/youtu.be\\/2qd1FrD5hDc?si=WRP7h784cUsAcyYb\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09af\\u09c7 \\u09eb\\u099f\\u09bf \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a4\\u09cd\\u09af\\u09c7\\u0995 \\u09ae\\u09be\\u09df\\u09c7\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09ac\\u09c7\\u09ac\\u09bf \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0  \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be \\u09a6\\u09b0\\u0995\\u09be\\u09b0\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u0995\\u09c7  \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0\\u09c7 \\u09ac\\u09b8\\u09be\\u09b2\\u09c7 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be \\u0995\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u0995\\u09b0\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u0995\\u09c7 \\u0995\\u09cb\\u09b2\\u09c7 \\u09a8\\u09c7\\u0993\\u09df\\u09be\\u09b0 \\u09b2\\u09cb\\u0995 \\u09a8\\u09be \\u09a5\\u09be\\u0995\\u09b2\\u09c7 \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0\\u09c7 \\u09ac\\u09b8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09bf \\u09b8\\u09b9\\u099c\\u09c7 \\u09af\\u09c7 \\u0995\\u09a8\\u09cb \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a6\\u09c0\\u09b0\\u09cd\\u0998\\u0995\\u09cd\\u09b7\\u09a3  \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u0995\\u09c7 \\u0995\\u09cb\\u09b2\\u09c7 \\u09a8\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09b9\\u09be\\u09b8\\u09bf\\u0996\\u09c1\\u09b6\\u09bf \\u0993 \\u0986\\u09a8\\u09a8\\u09cd\\u09a6\\u09c7 \\u09b0\\u09be\\u0996\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09b8\\u09ac\\u09b8\\u09ae\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09be \\u09b0\\u09be\\u09a8\\u09cd\\u09a8\\u09be-\\u09ac\\u09be\\u09a8\\u09cd\\u09a8\\u09be \\u0995\\u09b0\\u09be\\u09b8\\u09b9 \\u09af\\u09c7 \\u0995\\u09cb\\u09a8\\u09cb \\u09b9\\u09be\\u09a4\\u09c7\\u09b0 \\u0995\\u09be\\u099c \\u0985\\u09a4\\u09bf  \\u09b8\\u09b9\\u099c\\u09c7 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09aa\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u0998\\u09b0\\u09c7 \\u09a5\\u09be\\u0995\\u09b2\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09af\\u09c7 \\u09b8\\u0995\\u09b2 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be\\u09b0\\u09be \\u098f\\u0995\\u099f\\u09c1 \\u09b0\\u09bf\\u09b2\\u09be\\u0995\\u09cd\\u09b8 \\u09a5\\u09be\\u0995\\u09a4\\u09c7 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c7 \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u098f\\u0987 \\u09aa\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u098f\\u09b0 \\u09ac\\u09bf\\u0995\\u09b2\\u09cd\\u09aa \\u09b9\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ab\\u09bf\\u099a\\u09be\\u09b0\\u09b8<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09a7\\u09c1\\u09a8\\u09bf\\u0995, \\u099f\\u09c7\\u0995\\u09b8\\u0987 \\u09ab\\u09cd\\u09b0\\u09c7\\u09ae\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09cd\\u09af\\u09be\\u099f\\u09be\\u09b0\\u09bf\\u09b0 \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af\\u09c7 \\u099a\\u09be\\u09b2\\u09bf\\u09a4\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09af\\u09bc \\u09a6\\u09c1\\u0987\\u099f\\u09bf \\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u09aa\\u09bf\\u0999\\u09cd\\u0995 \\u098f\\u09ac\\u0982 \\u09b8\\u09cd\\u0995\\u09be\\u0987 \\u09ac\\u09cd\\u09b2\\u09c1\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09aa\\u09b8\\u09be\\u09b0\\u09a3\\u09af\\u09cb\\u0997\\u09cd\\u09af \\u0996\\u09c7\\u09b2\\u09a8\\u09be \\u09ac\\u09be\\u09b0, \\u099d\\u09c1\\u09b2\\u09a8\\u09cd\\u09a4 \\u0996\\u09c7\\u09b2\\u09a8\\u09be\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be \\u09aa\\u09be \\u09a8\\u09be\\u09dc\\u09be\\u099a\\u09be\\u09dc\\u09be \\u0995\\u09b0\\u09b2\\u09c7 \\u098f\\u099f\\u09be\\u0993 (\\u09a6\\u09c1\\u09b2\\u09a4\\u09c7) \\u09a5\\u09be\\u0995\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09bf\\u0989\\u099c\\u09bf\\u0995\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b0\\u0995\\u09bf\\u0982 \\u09ae\\u09cb\\u09b6\\u09a8 \\u0993 \\u09b8\\u09be\\u09a5\\u09c7 \\u0996\\u09c7\\u09b2\\u09a8\\u09be \\u09b0\\u09df\\u09c7\\u099b\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a \\u09a7\\u09be\\u09b0\\u09a8 \\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09e7\\u09ee \\u0995\\u09c7\\u099c\\u09bf\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09ae\\u09ce\\u0995\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09bf \\u09aa\\u09a8\\u09cd\\u09af \\u09af\\u09be \\u09a6\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09be\\u099a\\u09cd\\u099a\\u09be \\u0986\\u09a8\\u09a8\\u09cd\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0996\\u09c7\\u09b2\\u09be \\u0995\\u09b0\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u099b\\u09ac\\u09bf\\u09b0 \\u09a8\\u09cd\\u09af\\u09be\\u09df \\u09ac\\u0995\\u09cd\\u09b8 \\u0986\\u0995\\u09be\\u09b0\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u09aa\\u09cc\\u099b\\u09be\\u09ac\\u09c7\\n<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\/ var(--e-image-carousel-slides-to-show, 3))}<\\/style>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t<figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/b40afdc3-30df-40c0-9ef7-d90752f27b32-1-1.jpeg\\\" alt=\\\"b40afdc3-30df-40c0-9ef7-d90752f27b32-1-1.jpeg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5ca50362-b638-4037-b24b-ae7b756c6b31-1-1.jpeg\\\" alt=\\\"5ca50362-b638-4037-b24b-ae7b756c6b31-1-1.jpeg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/5fc978a5-f7af-44e6-bcab-45e09618e8b0-1-1.jpeg\\\" alt=\\\"5fc978a5-f7af-44e6-bcab-45e09618e8b0-1-1.jpeg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/16c597b6-87d5-4901-8eb9-9fddd661ce0f-1-1.jpeg\\\" alt=\\\"16c597b6-87d5-4901-8eb9-9fddd661ce0f-1-1.jpeg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/53523eea-a33e-4b86-98b0-cecde95804f3-1-1.jpeg\\\" alt=\\\"53523eea-a33e-4b86-98b0-cecde95804f3-1-1.jpeg\\\" \\/><\\/figure><figure><img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/caedf3b0-f245-4b59-be34-2f5656caf24c-1-1-1.jpeg\\\" alt=\\\"caedf3b0-f245-4b59-be34-2f5656caf24c-1-1.jpeg\\\" \\/><\\/figure>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\n\\t\\t<p>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09aa\\u09a8\\u09cd\\u09af \\u098f\\u09ae\\u09a8 \\u09ac\\u0995\\u09cd\\u09b8 \\u0986\\u0995\\u09be\\u09b0\\u09c7 \\u09af\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993 \\u09a6\\u09c7\\u0996\\u09c7 \\u09b8\\u09c7\\u099f\\u09bf\\u0982 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7, \\u0996\\u09c1\\u09ac\\u0987 \\u09b8\\u09b9\\u099c \\u0987\\u09a8\\u09b6\\u09be\\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8, \\u09a8\\u09be \\u09aa\\u09be\\u09b0\\u09b2\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8, \\u0986\\u09ae\\u09b0\\u09be \\u09ac\\u09c1\\u099d\\u09be\\u09df \\u09a6\\u09bf\\u09ac\\u09cb\\u0964<\\/p>https:\\/\\/youtu.be\\/Flp4yJNYcUs?si=60hWH_FNfVl_q3aL\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09c7\\u09ac\\u09c0 \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0 \\u09b8\\u09c7\\u099f\\u09bf\\u0982 \\u09ad\\u09bf\\u09a1\\u09bf\\u0993<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09af\\u09c7\\u0995\\u09cb\\u09a8 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8 - 01554462725\\n<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01819000000\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u09b9\\u09be\\u0987 \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf \\u099f\\u09c7\\u0995\\u09b8\\u0987 \\u09ac\\u09c7\\u09ac\\u09bf \\u09b0\\u0995\\u09bf\\u0982 \\u099a\\u09c7\\u09df\\u09be\\u09b0  \\u09b8\\u09ac\\u09be\\u09b0\\u099a\\u09c7\\u09df\\u09c7 \\u0995\\u09ae \\u09a6\\u09be\\u09ae\\u09c7 \\u09a8\\u09bf\\u09a4\\u09c7 \\u099a\\u09be\\u09a8 \\u09a4\\u09ac\\u09c7 \\u098f\\u0996\\u09a8\\u09bf \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_country_field\\\" data-priority=\\\"40\\\"><label for=\\\"billing_country\\\">Country \\/ Region&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><select name=\\\"billing_country\\\" id=\\\"billing_country\\\" autocomplete=\\\"country\\\" data-placeholder=\\\"Select a country \\/ region&hellip;\\\" data-label=\\\"Country \\/ Region\\\"><option value=\\\"\\\">Select a country \\/ region&hellip;<\\/option><option value=\\\"AF\\\" >Afghanistan<\\/option><option value=\\\"AX\\\" >\\u00c5land 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&ccedil;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&atilde;o Tom&eacute; and Pr&iacute;ncipe<\\/option><option value=\\\"BL\\\" >Saint Barth&eacute;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_city_field\\\" data-priority=\\\"70\\\"><label for=\\\"billing_city\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_city\\\" id=\\\"billing_city\\\" placeholder=\\\"\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\\"  value=\\\"\\\" autocomplete=\\\"address-level2\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"01717-XXXXXX\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing__________________field\\\" data-priority=\\\"120\\\"><label for=\\\"billing__________________\\u09aa\\u09bf\\u0982\\u0995 \\u0995\\u09be\\u09b2\\u09be\\u09b0\\\">\\u0995\\u09be\\u09b2\\u09be\\u09b0 \\u09aa\\u099b\\u09a8\\u09cd\\u09a6 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"radio\\\" value=\\\"\\u09aa\\u09bf\\u0982\\u0995 \\u0995\\u09be\\u09b2\\u09be\\u09b0\\\" name=\\\"billing_________________\\\"  id=\\\"billing__________________\\u09aa\\u09bf\\u0982\\u0995 \\u0995\\u09be\\u09b2\\u09be\\u09b0\\\" \\/><label for=\\\"billing__________________\\u09aa\\u09bf\\u0982\\u0995 \\u0995\\u09be\\u09b2\\u09be\\u09b0\\\">\\u09aa\\u09bf\\u0982\\u0995 \\u0995\\u09be\\u09b2\\u09be\\u09b0<\\/label><input type=\\\"radio\\\" value=\\\"\\u09ac\\u09cd\\u09b2\\u09c1 \\u0995\\u09be\\u09b2\\u09be\\u09b0\\\" name=\\\"billing_________________\\\"  id=\\\"billing__________________\\u09ac\\u09cd\\u09b2\\u09c1 \\u0995\\u09be\\u09b2\\u09be\\u09b0\\\" \\/><label for=\\\"billing__________________\\u09ac\\u09cd\\u09b2\\u09c1 \\u0995\\u09be\\u09b2\\u09be\\u09b0\\\">\\u09ac\\u09cd\\u09b2\\u09c1 \\u0995\\u09be\\u09b2\\u09be\\u09b0<\\/label><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"609\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"612\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717923350\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\tYour Product Or Service&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#36;900.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;900.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;900.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#036;900.00\\\">Place Order&nbsp;&nbsp;&#036;900.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"93b5769a18\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Ibaby toddler rocker baby rocking chair','','inherit','closed','closed','','2059-revision-v1','','','2026-06-08 21:47:25','2026-06-08 15:47:25','','2059','https://hypergrowth.fishgrowth.xyz/?p=2093','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2094','17','2026-06-08 21:47:47','2026-06-08 15:47:47','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>big bbq<\\/h1>ttnttt<h2>cheeseburger & fries<\\/h2>ttnttt<h2>20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} OFF Family Meals<\\/h2>ttnttt<a href=\\\"#order\\\">nttttttOrder Nownttttt<\\/a>nttt<h2>best bbq in town<\\/h2>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<\\/p>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-widget-image-box .elementor-image-box-content{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}<\\/style><figure><img width=\\\"1200\\\" height=\\\"1019\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/image-from-rawpixel-id-1200206-png.png\\\" alt=\\\"\\\" \\/><\\/figure><h4>burgers<\\/h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>ttnttt<figure><img width=\\\"1200\\\" height=\\\"759\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/image-from-rawpixel-id-1200242-png.png\\\" alt=\\\"\\\" \\/><\\/figure><h4>specialities<\\/h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>ttnttt<figure><img width=\\\"1200\\\" height=\\\"869\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/image-from-rawpixel-id-410628-jpeg.png\\\" alt=\\\"\\\" \\/><\\/figure><h4>family deals<\\/h4><p>Lorem ipsum dolor sit amet, consectetur.<\\/p>ttnttt<figure><img width=\\\"916\\\" height=\\\"1199\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/image-from-rawpixel-id-1200212-png.png\\\" alt=\\\"\\\" \\/><\\/figure><h4>drinks<\\/h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"72\\\" height=\\\"72\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cow.png\\\" alt=\\\"\\\" \\/>tttttttttttttttntttt768 555-5555ttttntt<p>34th &amp; Douglas Ave. Minneapolis<\\/p><p>Open hours:<\\/p><p>Tues - Satu00a0 2pm - 2am<\\/p><p>Sun -u00a0 Mon 12pm - 12pm<\\/p>ttnttt<h2>20{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} Off BIG Family Meals<\\/h2>ttnttt<h2>New family deals to go.<\\/h2>ttnttt<a href=\\\"#\\\">nttttttget deliverynttttt<\\/a>nttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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>ttnttt<h2>our specialties<\\/h2>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cooked-chicken-on-white-plate-2673353-qomt3kvzscti27h0l4dzmxmvwirwnh74h43xddh77c.jpg\\\" title=\\\"cooked-chicken-on-white-plate-2673353.jpg\\\" alt=\\\"cooked-chicken-on-white-plate-2673353.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h4>$9.99<\\/h4>ttnttt<h2>BBq chicken &amp; Gumbo<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.u00a0<\\/p>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/ham-and-bacon-burger-2983098-qomt3npicuxd11cx4nlvcex9ooe0akibhi2dt7d0oo.jpg\\\" title=\\\"ham-and-bacon-burger-2983098.jpg\\\" alt=\\\"ham-and-bacon-burger-2983098.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h4>$9.99<\\/h4>ttnttt<h2>BBQ Bacon burger<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.u00a0<\\/p>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/barbecue-bbq-beef-cooked-410648-qomt3rgv472ibh7gip8dmdz427vh5cx8u0obqb7fzs.jpg\\\" title=\\\"barbecue-bbq-beef-cooked-410648.jpg\\\" alt=\\\"barbecue-bbq-beef-cooked-410648.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h4>$14.99<\\/h4>ttnttt<h2>signature bbq ribs<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.u00a0<\\/p>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/burger-with-spinach-and-cheese-1199956-qomt3uadop6dab3d28g9bv9hudhksg8fuems6539h4.jpg\\\" title=\\\"burger-with-spinach-and-cheese-1199956.jpg\\\" alt=\\\"burger-with-spinach-and-cheese-1199956.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h4>$9.99<\\/h4>ttnttt<h2>signatue bbq burger<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.u00a0<\\/p>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/white-cream-on-white-bowl-1633525-qomt3x3w97a894z9lro51cjvmj3ofjjmusl8lyz2yg.jpg\\\" title=\\\"white-cream-on-white-bowl-1633525.jpg\\\" alt=\\\"white-cream-on-white-bowl-1633525.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h4>$14.99<\\/h4>ttnttt<h2>signature bbq ribs<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.u00a0<\\/p>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/pexels-photo-106343-qomt3yzkmvcswcwjashe6c2staueuxr3j1w7kiwam0.jpeg\\\" title=\\\"pexels-photo-106343.jpeg\\\" alt=\\\"pexels-photo-106343.jpeg\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h4>$9.99<\\/h4>ttnttt<h2>hot bbq wings<\\/h2>ttntt<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.u00a0<\\/p>ttnttt<h2>big independence day summer party<\\/h2>ttnttt<h2>July 4th  2pm - 2am<\\/h2>ttnttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z\\\"><\\/path><\\/svg>tttnttttttview detailsnttttt<\\/a>nttttfavoritesttttnttt<figure><img width=\\\"300\\\" height=\\\"207\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/123-300x207.jpg\\\" alt=\\\"\\\" \\/><\\/figure><h4>BBQ Burger & Beer  <\\/h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>ttnttt<figure><img width=\\\"300\\\" height=\\\"200\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/barbecue-84671_1280-300x200.jpg\\\" alt=\\\"\\\" \\/><\\/figure><h4>BBQebabs <\\/h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>ttnttt<figure><img width=\\\"300\\\" height=\\\"253\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/pexels-photo-291528-300x253.jpeg\\\" alt=\\\"\\\" \\/><\\/figure><h4>Auntie\'s Fudge Cake<\\/h4><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec.<\\/p>ttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-carousel.min.css\\\">ttnttttttThis is my new favorite BBQ restaurant! Five stars and highly recommended!tttttntttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/allef-vinicius-152195-unsplash.png\\\" alt=\\\"Anna\\\">ntttttttt<cite>AnnaFoodie Magazine<\\/cite>tttnttttttThose burgers are best in town! My favorite place definitely!tttttntttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/angello-lopez-138917-unsplash.png\\\" alt=\\\"Jonathan\\\">ntttttttt<cite>JonathanTimeout<\\/cite>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}<\\/style>ttnttttt<a target=\\\"_blank\\\" rel=\\\"noopener\\\">nttttttFacebookntttttt<svg viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\\\"><\\/path><\\/svg>ttttt<\\/a>nttttt<a target=\\\"_blank\\\" rel=\\\"noopener\\\">nttttttTwitterntttttt<svg viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\\\"><\\/path><\\/svg>ttttt<\\/a>nttttt<a target=\\\"_blank\\\" rel=\\\"noopener\\\">nttttttYoutubentttttt<svg viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\\\"><\\/path><\\/svg>ttttt<\\/a>nttttkeep up with usttttnttt<a href=\\\"#\\\">nttttttget deliverynttttt<\\/a>nttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">tt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256.55 8C116.52 8 8 110.34 8 248.57c0 72.3 29.71 134.78 78.07 177.94 8.35 7.51 6.63 11.86 8.05 58.23A19.92 19.92 0 0 0 122 502.31c52.91-23.3 53.59-25.14 62.56-22.7C337.85 521.8 504 423.7 504 248.57 504 110.34 396.59 8 256.55 8zm149.24 185.13l-73 115.57a37.37 37.37 0 0 1-53.91 9.93l-58.08-43.47a15 15 0 0 0-18 0l-78.37 59.44c-10.46 7.93-24.16-4.6-17.11-15.67l73-115.57a37.36 37.36 0 0 1 53.91-9.93l58.06 43.46a15 15 0 0 0 18 0l78.41-59.38c10.44-7.98 24.14 4.54 17.09 15.62z\\\"><\\/path><\\/svg>ttttttnttttttttttfacebooknttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 640 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 96a48 48 0 1 0-48-48 48 48 0 0 0 48 48zm-4 121a31.9 31.9 0 0 0 20 7h64a32 32 0 0 0 0-64h-52.78L356 103a31.94 31.94 0 0 0-40.81.68l-112 96a32 32 0 0 0 3.08 50.92L288 305.12V416a32 32 0 0 0 64 0V288a32 32 0 0 0-14.25-26.62l-41.36-27.57 58.25-49.92zm116 39a128 128 0 1 0 128 128 128 128 0 0 0-128-128zm0 192a64 64 0 1 1 64-64 64 64 0 0 1-64 64zM128 256a128 128 0 1 0 128 128 128 128 0 0 0-128-128zm0 192a64 64 0 1 1 64-64 64 64 0 0 1-64 64z\\\"><\\/path><\\/svg>ttttttnttttttttttvoltnttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z\\\"><\\/path><\\/svg>ttttttnttttttttttdeliveritnttttttttt<\\/li>ntttttt<\\/ul>n<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-1932\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"1932\\\"nt>nt<label for=\\\"wcf-item-product-1932\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2023\\/12\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>nProduct1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;990.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"2136\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"2139\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716556844\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttProduct&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;990.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;990.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"92fa430184\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/h2>\\\"\"','Checkout (Woo)','','inherit','closed','closed','','2038-revision-v1','','','2026-06-08 21:47:47','2026-06-08 15:47:47','','2038','https://hypergrowth.fishgrowth.xyz/?p=2094','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2095','17','2026-06-08 21:48:14','2026-06-08 15:48:14','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09df\\u09be\\u09ae \\u0995\\u09cb\\u09df\\u09be\\u09b2\\u09bf\\u099f\\u09bf\\u09b0\\n\\t\\t\\t\\t\\t\\u09ac\\u09c7\\u099c \\u0993 \\u0987\\u09b0\\u09be\\u09a8\\u09bf \\n\\t\\t\\t\\t\\t\\u09b8\\u09cd\\u09af\\u09be\\u09ab\\u09b0\\u09a8\\u09c7\\u09b0 \\u09b8\\u09ae\\u09a8\\u09cd\\u09a8\\u09df\\u09c7 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-carousel.min.css\\\">\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\tPrevious\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\tNext\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09cb\\u09aa \\u09e7\\u09e6\\u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} \\u0985\\u09a5\\u09c7\\u09a8\\u09cd\\u099f\\u09bf\\u0995 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0997\\u09be\\u09af\\u09bc\\u09c7 QR \\u0995\\u09cb\\u09a1 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u0986\\u099b\\u09c7 \\u09b8\\u09cd\\u0995\\u09cd\\u09af\\u09be\\u09a8 \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09ac\\u09c7\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1\\u09ae\\u09c7\\u09a1 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09e7 \\u099f\\u09bf - \\u09eb\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be ( \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09b9 )<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09bf\\u09ae\\u09bf\\u09af\\u09bc\\u09be\\u09ae \\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1\\u09ae\\u09c7\\u09a1 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09e8 \\u099f\\u09bf - \\u09ed\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be ( \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ab\\u09cd\\u09b0\\u09bf )<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"554\\\" height=\\\"554\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/6-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/6-1.jpg 554w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/6-1-300x300.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/6-1-150x150.jpg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/6-1-100x100.jpg 100w\\\" sizes=\\\"(max-width: 554px) 100vw, 554px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0997\\u09c1\\u09a8\\u09be\\u0997\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09eb-\\u09ec \\u09a6\\u09bf\\u09a8\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7 \\u0995\\u09be\\u099c \\u0995\\u09b0\\u09a4\\u09c7 \\u09b6\\u09c1\\u09b0\\u09c1 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2\\u09a4\\u09be \\u09ec \\u09a5\\u09c7\\u0995\\u09c7 \\u09ed\\u09b6\\u09c7\\u09a1 \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u09ac\\u09be\\u09a1\\u09bc\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0997\\u09be\\u09df\\u09c7\\u09b0 \\u09b0\\u0982 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u0997\\u09ad\\u09c0\\u09b0\\u09c7 \\u0997\\u09bf\\u09af\\u09bc\\u09c7 \\u0986\\u09a6\\u09cd\\u09b0\\u09a4\\u09be \\u099c\\u09cb\\u0997\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b9\\u099c\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u09ac\\u09af\\u09bc\\u09b8\\u09c7\\u09b0 \\u099b\\u09be\\u09aa \\u09aa\\u09a1\\u09bc\\u09a4\\u09c7 \\u09a6\\u09c7\\u09af\\u09bc \\u09a8\\u09be\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09b0\\u09cd\\u0995 \\u09b8\\u09be\\u09b0\\u09cd\\u0995\\u09c7\\u09b2 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0993\\u09aa\\u09c7\\u09a8 \\u09aa\\u09cb\\u09b0\\u09cd\\u09b8 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7 \\u0993 \\u09aa\\u09bf\\u09ae\\u09cd\\u09aa\\u09b2 \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09be\\u09b2\\u09cb \\u09ac\\u09cd\\u09b0\\u09a3\\u09c7\\u09b0 \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09c7\\u099b\\u09a4\\u09be\\u09b0 \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u099a\\u09cb\\u0996\\u09c7\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a6\\u09bf\\u09a8\\u09c7 \\u09ef \\u09a5\\u09c7\\u0995\\u09c7 \\u09e7\\u09e6 \\u0998\\u09a8\\u09cd\\u099f\\u09be \\u0993\\u09af\\u09bc\\u09c7\\u09b2 \\u0995\\u09a8\\u09cd\\u099f\\u09cd\\u09b0\\u09cb\\u09b2 \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u0997\\u09cd\\u09b2\\u09cb \\u0995\\u09b0\\u09c7 \\u098f\\u09ac\\u0982 \\u0995\\u09be\\u09b2\\u09cb \\u09a4\\u09bf\\u09b2 \\u09b0\\u09bf\\u09ae\\u09c1\\u09ad \\u0995\\u09b0\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u099c\\u09be\\u09ab\\u09cd\\u09b0\\u09be\\u09a8 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u099f\\u09be \\u098f\\u09a4\\u09cb \\u099f\\u09be \\u099c\\u09cb\\u09b6 \\u09af\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09a8\\u09be \\u0995\\u09b0\\u09b2\\u09c7 \\u09ac\\u09c1\\u099d\\u09be\\u0987 \\u09af\\u09be\\u09df \\u09a8\\u09be\\u0964 \\u09a4\\u09be\\u0987  \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09a8\\u09ab\\u09be\\u09b0\\u09cd\\u09ae \\u0995\\u09b0\\u09c7 \\u09a8\\u09bf\\u09a8 \\u09b8\\u09cd\\u099f\\u0995 \\u09b6\\u09c7\\u09b7 \\u09b9\\u0993\\u09df\\u09be\\u09b0 \\u0986\\u0997\\u09c7\\u0964 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u0985\\u09a8\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09af  \\u099c\\u09be\\u09ab\\u09cd\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09a8\\u09be\\u0964 \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7 \\u0986\\u099b\\u09c7 \\u099c\\u09be\\u09ab\\u09cd\\u09b0\\u09be\\u09a8,\\u09aa\\u09c7\\u09aa\\u09c7,\\u0993 \\u09ad\\u09bf\\u099f\\u09be- \\u09b8\\u09bf \\u0993 \\u099b\\u09be\\u0997\\u09b2\\u09c7\\u09b0 \\u09a6\\u09c1\\u09a7\\u09c7\\u09b0 \\u09a6\\u09be\\u09b0\\u09c1\\u09a3 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0\\u09a4\\u09be \\u09af\\u09be \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf\\u0995\\u09c7 \\u0995\\u09b0\\u09c7\\u099b\\u09c7 \\u09b8\\u09ac \\u09a5\\u09c7\\u0995\\u09c7 \\u0986\\u09b2\\u09be\\u09a6\\u09be\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u09a8\\u09bf\\u09af\\u09bc\\u09ae <\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09a6\\u09bf\\u09a8 \\u09e8 \\u09a5\\u09c7\\u0995\\u09c7 \\u09e9 \\u09ac\\u09be\\u09b0 \\u09ae\\u09c1\\u0996 \\u09a7\\u09c1\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09ae\\u09c1\\u0996 \\u09a7\\u09cb\\u09af\\u09bc\\u09be\\u09b0 \\u09a8\\u09bf\\u09af\\u09bc\\u09ae \\u09ae\\u09c1\\u0996\\u09c7 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09be \\u09b2\\u09be\\u0997\\u09bf\\u09af\\u09bc\\u09c7 \\u09e9 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f \\u09b0\\u09be\\u0996\\u09be\\u09b0 \\u09aa\\u09b0\\u09c7 \\u0986\\u09ac\\u09be\\u09b0 \\u09e8 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f \\u09ae\\u09be\\u09b8\\u09be\\u099c \\u0995\\u09b0\\u09c7 \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u09a7\\u09c1\\u09af\\u09bc\\u09c7 \\u09ab\\u09c7\\u09b2\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09c0\\u09a4\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3-4 \\u09b6\\u09c7\\u09a1 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09ac\\u09c7 \\u09a6\\u09c1\\u0987 \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09bf\\u09a8\\u099f\\u09be \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u0987\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09df\\u09c7\\u0995\\u09a6\\u09bf\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7\\u0987 \\u0986\\u09aa\\u09a8\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u09b2\\u0995\\u09cd\\u09b7\\u09cd\\u09af \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u099f\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u09ac\\u09cd\\u09b0\\u09be\\u0987\\u099f \\u0995\\u09b0\\u09ac\\u09c7 \\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u098f\\u0995\\u09a6\\u09ae \\u09ad\\u09c7\\u09a4\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09ab\\u099f \\u0995\\u09b0\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09b8\\u09cd\\u09a4\\u09c7 \\u0986\\u09b8\\u09cd\\u09a4\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09a6\\u09be\\u0997\\u0997\\u09c1\\u09b2\\u09cb \\u0995\\u09ae\\u09be\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u09ac\\u09cd\\u09b0\\u09a3 \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09c1\\u09b2 \\u09ac\\u09a1\\u09bf\\u09a4\\u09c7 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09a1\\u09bf\\u0995\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"665\\\" height=\\\"699\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg 665w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1-285x300.jpg 285w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1-600x631.jpg 600w\\\" sizes=\\\"(max-width: 665px) 100vw, 665px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"665\\\" height=\\\"699\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg 665w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1-285x300.jpg 285w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1-600x631.jpg 600w\\\" sizes=\\\"(max-width: 665px) 100vw, 665px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u09c7\\u09b0 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09be\\u09b0\\u09c0\\u09a4\\u09be<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3-4 \\u09b6\\u09c7\\u09a1 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09ac\\u09c7 \\u09a6\\u09c1\\u0987 \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09bf\\u09a8\\u099f\\u09be \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u0987\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09df\\u09c7\\u0995\\u09a6\\u09bf\\u09a8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09b8\\u09be\\u09a5\\u09c7\\u0987 \\u0986\\u09aa\\u09a8\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09b0\\u09cd\\u09a4\\u09a8 \\u09b2\\u0995\\u09cd\\u09b7\\u09cd\\u09af \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09ac\\u09c7\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u099f\\u09be \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u09ac\\u09cd\\u09b0\\u09be\\u0987\\u099f \\u0995\\u09b0\\u09ac\\u09c7 \\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09cd\\u0995\\u09bf\\u09a8 \\u098f\\u0995\\u09a6\\u09ae \\u09ad\\u09c7\\u09a4\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u09a8 \\u0995\\u09b0\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09a8\\u09c7\\u0995 \\u09b8\\u09ab\\u099f \\u0995\\u09b0\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09b8\\u09cd\\u09a4\\u09c7 \\u0986\\u09b8\\u09cd\\u09a4\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09a6\\u09be\\u0997\\u0997\\u09c1\\u09b2\\u09cb \\u0995\\u09ae\\u09be\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09a4\\u09cd\\u09ac\\u0995\\u09c7 \\u09ac\\u09cd\\u09b0\\u09a3 \\u0995\\u09ae\\u09be\\u09a4\\u09c7 \\u0985\\u09a8\\u09c7\\u0995 \\u09ac\\u09c7\\u09b6\\u09bf \\u09b8\\u09be\\u09b9\\u09be\\u09af\\u09cd\\u09af \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09c1\\u09b2 \\u09ac\\u09a1\\u09bf\\u09a4\\u09c7 \\u098f\\u0987 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u099f\\u09bf \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09ac\\u09c7\\u09a8 \\u09af\\u09be \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ac\\u09a1\\u09bf\\u0995\\u09c7 \\u09a4\\u09cd\\u09ac\\u0995\\u09c7\\u09b0 \\u09ae\\u09a4\\u09cb \\u09b8\\u09c1\\u09a8\\u09cd\\u09a6\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"665\\\" height=\\\"699\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg 665w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1-285x300.jpg 285w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1-600x631.jpg 600w\\\" sizes=\\\"(max-width: 665px) 100vw, 665px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u098f\\u099f\\u09be \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u09cd\\u09af\\u09be\\u09a8\\u09cd\\u09a1 \\u09ae\\u09c7\\u09a1  \\u09ae\\u09c1\\u0996\\u09c7\\u09b0 \\u09b8\\u09be\\u09ac\\u09be\\u09a8\\u0964 \\u09ac\\u09b0\\u09cd\\u09a4\\u09ae\\u09be\\u09a8\\u09c7 \\u0986\\u09ae\\u09b0\\u09be \\u09aa\\u09c1\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09b8\\u09c7\\u09b2 \\u09a6\\u09bf\\u09af\\u09bc\\u09c7 \\u09a5\\u09be\\u0995\\u09bf\\u0964\\u098f \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u09ae\\u09c1\\u0996\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09b2\\u09c7 \\u09ae\\u09c1\\u0996\\u09c7 \\u09ac\\u09cd\\u09b0\\u09a3, \\u09a4\\u0995\\u09c7\\u09b0 \\u0995\\u09be\\u09b2\\u09cb \\u09a6\\u09be\\u0997 \\u09a6\\u09c2\\u09b0 \\u0995\\u09b0\\u09c7\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a4\\u09cd\\u09ac\\u0995\\u0995\\u09c7 \\u09ab\\u09b0\\u09cd\\u09b8\\u09be \\u0995\\u09b0\\u09c7  \\u09ae\\u09c1\\u0996\\u0995\\u09c7\\u09b0 \\u09ad\\u09bf\\u09a4\\u09b0 \\u09a5\\u09c7\\u0995\\u09c7 \\u09aa\\u09b0\\u09bf\\u09b7\\u09cd\\u0995\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u0964 \\u0986\\u09b0 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u099f\\u09be \\u0985\\u09a8\\u09c7\\u0995 \\u0995\\u09be\\u09b0\\u09cd\\u09af\\u0995\\u09b0\\u09c0\\u0964<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a6\\u09c1\\u0987\\u099f\\u09bf \\u099c\\u09be\\u09ab\\u09b0\\u09be\\u09a8 \\u09b8\\u09be\\u09ac\\u09be\\u09a8 \\u0995\\u09bf\\u09a8\\u09b2\\u09c7 \\u09b8\\u09be\\u09b0\\u09be \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09c7 \\u09b9\\u09cb\\u09ae  \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c  \\n\\t\\t\\t\\t\\t\\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b9\\u09be\\u09a4\\u09c7 \\u09aa\\u09c7\\u09df\\u09c7 \\u099f\\u09be\\u0995\\u09be \\u09a6\\u09bf\\u09ac\\u09c7\\u09a8\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h2>\\u098f\\u0995\\u099f\\u09be \\u09a8\\u09bf\\u09b2\\u09c7 \\u09ea\\u09ee\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09b8\\u09b9 \\u09a6\\u09c1\\u0987\\u099f\\u09be \\u09a8\\u09bf\\u09b2\\u09c7 \\u09ed\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09ab\\u09cd\\u09b0\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/thesmartway.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md.Asadul Islam\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09ab\\u09cb\\u09a8 \\u09a8\\u09be\\u09ae\\u09cd\\u09ac\\u09be\\u09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801713318648\\\" autocomplete=\\\"tel\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"741\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"742\\\">\\n\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1717920053\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#36;0.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#36;0.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/thesmartway.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;0.00\\\" data-value=\\\"\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;0.00\\\">\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8&nbsp;&nbsp;&#036;0.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"93b5769a18\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u09ab\\u09cb\\u09a8 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01303832348\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01819000000\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Checkout (Woo)','','inherit','closed','closed','','2090-revision-v1','','','2026-06-08 21:48:14','2026-06-08 15:48:14','','2090','https://hypergrowth.fishgrowth.xyz/?p=2095','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2096','17','2026-06-08 21:48:14','2026-06-08 15:48:14','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview.webp 472w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css\\\">tt<h3>ntttttu09aau09cdu09b0u09bfu09aeu09bfu09dfu09beu09ae u0995u09cbu09dfu09beu09b2u09bfu099fu09bfu09b0ntttttu09acu09c7u099c u0993 u0987u09b0u09beu09a8u09bf ntttttu09b8u09cdu09afu09beu09abu09b0u09a8u09c7u09b0 u09b8u09aeu09a8u09cdu09a8u09dfu09c7 u099cu09beu09abu09b0u09beu09a8 u09b8u09beu09acu09beu09a8nttttt<\\/h3>nttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-carousel.min.css\\\">ttnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>tttttttPreviousnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>tttttttNextnttt<a href=\\\"#order\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<style>\\/*! elementor - v3.18.0 - 20-12-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>u0986u09aeu09beu09a6u09c7u09b0 u09b8u09cbu09aa u09e7u09e6u09e6{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} u0985u09a5u09c7u09a8u09cdu099fu09bfu0995 u09b8u09beu09acu09beu09a8u09c7u09b0 u0997u09beu09afu09bcu09c7 QR u0995u09cbu09a1 u09a6u09c7u0993u09afu09bcu09be u0986u099bu09c7 u09b8u09cdu0995u09cdu09afu09beu09a8 u0995u09b0u09c7 u09a8u09bfu09acu09c7u09a8<\\/h2>ttnttt<h2>u09aau09cdu09b0u09bfu09aeu09bfu09afu09bcu09beu09ae u09b9u09cdu09afu09beu09a8u09cdu09a1u09aeu09c7u09a1 u099cu09beu09abu09b0u09beu09a8 u09b8u09beu09acu09beu09a8 u09e7 u099fu09bf - u09ebu09ebu09e6 u099fu09beu0995u09be ( u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u09b8u09b9 )<\\/h2>ttnttt<h2>u09aau09cdu09b0u09bfu09aeu09bfu09afu09bcu09beu09ae u09b9u09cdu09afu09beu09a8u09cdu09a1u09aeu09c7u09a1 u099cu09beu09abu09b0u09beu09a8 u09b8u09beu09acu09beu09a8 u09e8 u099fu09bf - u09edu09ebu09e6 u099fu09beu0995u09be ( u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u09abu09cdu09b0u09bf )<\\/h2>ttnttt<a href=\\\"#order\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttttttttttttttt<img width=\\\"554\\\" height=\\\"554\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/6-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/6-1.jpg 554w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/6-1-300x300.jpg 300w, https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/6-1-150x150.jpg 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/6-1-100x100-1.jpg 100w\\\" sizes=\\\"(max-width: 554px) 100vw, 554px\\\" \\/>tttttttttttttttnttt<h2>u099cu09beu09abu09b0u09beu09a8 u09b8u09beu09acu09beu09a8u09c7u09b0 u0997u09c1u09a8u09beu0997u09c1u09a8<\\/h2>ttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">tt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09eb-u09ec u09a6u09bfu09a8u09c7u09b0 u09aeu09a7u09cdu09afu09c7 u0995u09beu099c u0995u09b0u09a4u09c7 u09b6u09c1u09b0u09c1 u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09a4u09cdu09acu0995u09c7u09b0 u0989u099cu09cdu099cu09cdu09acu09b2u09a4u09be u09ec u09a5u09c7u0995u09c7 u09edu09b6u09c7u09a1 u09aau09b0u09cdu09afu09a8u09cdu09a4 u09acu09beu09a1u09bcu09beu09afu09bcnttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0997u09beu09dfu09c7u09b0 u09b0u0982 u09abu09b0u09cdu09b8u09be u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09a4u09cdu09acu0995u09c7u09b0 u0997u09adu09c0u09b0u09c7 u0997u09bfu09afu09bcu09c7 u0986u09a6u09cdu09b0u09a4u09be u099cu09cbu0997u09beu09afu09bcnttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09b9u099cu09c7 u09a4u09cdu09acu0995u09c7 u09acu09afu09bcu09b8u09c7u09b0 u099bu09beu09aa u09aau09a1u09bcu09a4u09c7 u09a6u09c7u09afu09bc u09a8u09benttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09a1u09beu09b0u09cdu0995 u09b8u09beu09b0u09cdu0995u09c7u09b2 u09a6u09c2u09b0 u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0993u09aau09c7u09a8 u09aau09cbu09b0u09cdu09b8 u09a6u09c2u09b0 u0995u09b0u09c7 u0993 u09aau09bfu09aeu09cdu09aau09b2 u09b0u09bfu09aeu09c1u09ad u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0995u09beu09b2u09cb u09acu09cdu09b0u09a3u09c7u09b0 u09a6u09beu0997 u09a6u09c2u09b0 u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aeu09c7u099bu09a4u09beu09b0 u09a6u09beu0997 u09a6u09c2u09b0 u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu099au09cbu0996u09c7u09b0 u09a8u09bfu099au09c7u09b0 u0995u09beu09b2u09cb u09a6u09beu0997 u09a6u09c2u09b0 u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09a6u09bfu09a8u09c7 u09ef u09a5u09c7u0995u09c7 u09e7u09e6 u0998u09a8u09cdu099fu09be u0993u09afu09bcu09c7u09b2 u0995u09a8u09cdu099fu09cdu09b0u09cbu09b2 u0995u09b0u09c7nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09cdu0995u09bfu09a8 u0997u09cdu09b2u09cb u0995u09b0u09c7 u098fu09acu0982 u0995u09beu09b2u09cb u09a4u09bfu09b2 u09b0u09bfu09aeu09c1u09ad u0995u09b0u09c7nttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>u099cu09beu09abu09cdu09b0u09beu09a8 u098fu0987 u09b8u09beu09acu09beu09a8 u099fu09be u098fu09a4u09cb u099fu09be u099cu09cbu09b6 u09afu09c7 u09acu09cdu09afu09acu09b9u09beu09b0 u09a8u09be u0995u09b0u09b2u09c7 u09acu09c1u099du09beu0987 u09afu09beu09df u09a8u09beu0964 u09a4u09beu0987  u09a6u09cdu09b0u09c1u09a4 u0985u09b0u09cdu09a1u09beu09b0 u0995u09a8u09abu09beu09b0u09cdu09ae u0995u09b0u09c7 u09a8u09bfu09a8 u09b8u09cdu099fu0995 u09b6u09c7u09b7 u09b9u0993u09dfu09beu09b0 u0986u0997u09c7u0964 u098fu0987 u09b8u09beu09acu09beu09a8u099fu09bf u0985u09a8u09cdu09afu09beu09a8u09cdu09af  u099cu09beu09abu09cdu09b0u09beu09a8 u09b8u09beu09acu09beu09a8u09c7u09b0 u09aeu09a4u09cb u09a8u09beu0964 u099cu09beu09abu09b0u09beu09a8 u09b8u09beu09acu09beu09a8u09c7 u0986u099bu09c7 u099cu09beu09abu09cdu09b0u09beu09a8,u09aau09c7u09aau09c7,u0993 u09adu09bfu099fu09be- u09b8u09bf u0993 u099bu09beu0997u09b2u09c7u09b0 u09a6u09c1u09a7u09c7u09b0 u09a6u09beu09b0u09c1u09a3 u0995u09beu09b0u09cdu09afu0995u09b0u09c0u09a4u09be u09afu09be u098fu0987 u09b8u09beu09acu09beu09a8u099fu09bfu0995u09c7 u0995u09b0u09c7u099bu09c7 u09b8u09ac u09a5u09c7u0995u09c7 u0986u09b2u09beu09a6u09beu0964<\\/h2>ttnttt<h2>u099cu09beu09abu09b0u09beu09a8 u09b8u09beu09acu09beu09a8 u09acu09cdu09afu09acu09b9u09beu09b0 u0995u09b0u09beu09b0 u09a8u09bfu09afu09bcu09ae <\\/h2>ttnttttt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09beu09acu09beu09a8u099fu09bf u09a6u09bfu09afu09bcu09c7 u09aau09cdu09b0u09a4u09bfu09a6u09bfu09a8 u09e8 u09a5u09c7u0995u09c7 u09e9 u09acu09beu09b0 u09aeu09c1u0996 u09a7u09c1u09a4u09c7 u09b9u09acu09c7 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\\\"><\\/path><\\/svg>ttttttnttttttttttu09aeu09c1u0996 u09a7u09cbu09afu09bcu09beu09b0 u09a8u09bfu09afu09bcu09ae u09aeu09c1u0996u09c7 u09b8u09beu09acu09beu09a8u099fu09be u09b2u09beu0997u09bfu09afu09bcu09c7 u09e9 u09aeu09bfu09a8u09bfu099f u09b0u09beu0996u09beu09b0 u09aau09b0u09c7 u0986u09acu09beu09b0 u09e8 u09aeu09bfu09a8u09bfu099f u09aeu09beu09b8u09beu099c u0995u09b0u09c7 u09b8u09c1u09a8u09cdu09a6u09b0 u0995u09b0u09c7 u09a7u09c1u09afu09bcu09c7 u09abu09c7u09b2u09a4u09c7 u09b9u09acu09c7nttttttttt<\\/li>ntttttt<\\/ul>nttttttttttttttt<img width=\\\"665\\\" height=\\\"699\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1.jpg 665w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1-285x300-1.jpg 285w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/7-1-600x631-1.jpg 600w\\\" sizes=\\\"(max-width: 665px) 100vw, 665px\\\" \\/>tttttttttttttttnttt<h2>u098fu099fu09be u0986u09aeu09beu09a6u09c7u09b0 u09b9u09cdu09afu09beu09a8u09cdu09a1 u09aeu09c7u09a1  u09aeu09c1u0996u09c7u09b0 u09b8u09beu09acu09beu09a8u0964 u09acu09b0u09cdu09a4u09aeu09beu09a8u09c7 u0986u09aeu09b0u09be u09aau09c1u09b0u09be u09acu09beu0982u09b2u09beu09a6u09c7u09b6u09c7 u09b8u09c7u09b2 u09a6u09bfu09afu09bcu09c7 u09a5u09beu0995u09bfu0964u098f u09b8u09beu09acu09beu09a8 u09aeu09c1u0996u09c7 u09acu09cdu09afu09acu09b9u09beu09b0 u0995u09b0u09b2u09c7 u09aeu09c1u0996u09c7 u09acu09cdu09b0u09a3, u09a4u0995u09c7u09b0 u0995u09beu09b2u09cb u09a6u09beu0997 u09a6u09c2u09b0 u0995u09b0u09c7u0964 u0986u09aau09a8u09beu09b0 u09a4u09cdu09acu0995u0995u09c7 u09abu09b0u09cdu09b8u09be u0995u09b0u09c7  u09aeu09c1u0996u0995u09c7u09b0 u09adu09bfu09a4u09b0 u09a5u09c7u0995u09c7 u09aau09b0u09bfu09b7u09cdu0995u09beu09b0 u0995u09b0u09acu09c7u0964 u0986u09b0 u09b8u09beu09acu09beu09a8 u099fu09be u0985u09a8u09c7u0995 u0995u09beu09b0u09cdu09afu0995u09b0u09c0u0964<\\/h2>ttnttttt<h3>ntttttu09a6u09c1u0987u099fu09bf u099cu09beu09abu09b0u09beu09a8 u09b8u09beu09acu09beu09a8 u0995u09bfu09a8u09b2u09c7 u09b8u09beu09b0u09be u09acu09beu0982u09b2u09beu09a6u09c7u09b6u09c7 u09b9u09cbu09ae  u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c  ntttttu098fu0995u09a6u09ae u09abu09cdu09b0u09bfntttttu09aau09cdu09b0u09cbu09a1u09beu0995u09cdu099f u09b9u09beu09a4u09c7 u09aau09c7u09dfu09c7 u099fu09beu0995u09be u09a6u09bfu09acu09c7u09a8nttttt<\\/h3>nttt<h2>u098fu0995u099fu09be u09a8u09bfu09b2u09c7 u09eau09eeu09e6 u099fu09beu0995u09be u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u09b8u09b9 u09a6u09c1u0987u099fu09be u09a8u09bfu09b2u09c7 u09edu09ebu09e6 u099fu09beu0995u09be u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u09abu09cdu09b0u09bf<\\/h2>ttnttt<h2>u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u09a8u09bfu099au09c7u09b0 u09abu09b0u09cdu09aeu099fu09bf u09aau09c2u09b0u09a3 u0995u09b0u09c1u09a8<\\/h2>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"2379\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"2380\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1717805372\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>nttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;0.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;0.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8&nbsp;&nbsp;&#2547;&nbsp;0.00\\\" data-value=\\\"u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8&nbsp;&nbsp;&#2547;&nbsp;0.00\\\">u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09c1u09a8&nbsp;&nbsp;&#2547;&nbsp;0.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"1451bb3e4c\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2>u09aau09cdu09b0u09dfu09cbu099cu09a8u09c7 u09abu09cbu09a8 u0995u09b0u09c1u09a8<\\/h2>ttnttt<a href=\\\"tel:01303832348\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>tttntttttt01819000000nttttt<\\/a>nttt<h2> Copyright u00a9 2024  Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\\\"\"','Checkout (Woo)','','inherit','closed','closed','','2092-revision-v1','','','2026-06-08 21:48:14','2026-06-08 15:48:14','','2092','https://hypergrowth.fishgrowth.xyz/?p=2096','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2097','17','2026-06-08 21:48:15','2026-06-08 15:48:15','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7<\\/h1>\\t\\t\\n\\t\\t\\t<style>n  #optin_ThankYou table tr td.download-file,n    #optin_ThankYou table th.download-file{n      text-align: right;n  }  n<\\/style>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-38__trashed','','','2026-06-09 12:06:48','2026-06-09 06:06:48','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-38/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2098','17','2026-06-08 21:48:15','2026-06-08 15:48:15','\"<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp 472w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1-280x300.webp 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>\\u09a7\\u09a8\\u09cd\\u09af\\u09ac\\u09be\\u09a6<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0985\\u09ad\\u09bf\\u09a8\\u09a8\\u09cd\\u09a6\\u09a8 !!! \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09ab\\u09b2\\u09ad\\u09be\\u09ac\\u09c7 \\u0997\\u09c3\\u09b9\\u09c0\\u09a4 \\u09b9\\u09df\\u09c7\\u099b\\u09c7\\u0964<\\/h1>\\t\\t\\n\\t\\t\\t<h1>\\u0996\\u09c1\\u09ac \\u09b6\\u09bf\\u0997\\u09cd\\u09b0\\u0987 \\u09aa\\u09a8\\u09cd\\u09af \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09c0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09be \\u09b9\\u09ac\\u09c7<\\/h1>\\t\\t\\n\\t\\t\\t<style>n  #optin_ThankYou table tr td.download-file,n    #optin_ThankYou table th.download-file{n      text-align: right;n  }  n<\\/style>\\t\\t\\n\\t\\t\\t<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a>\"','Thank You (Woo)','','inherit','closed','closed','','2097-revision-v1','','','2026-06-08 21:48:15','2026-06-08 15:48:15','','2097','https://hypergrowth.fishgrowth.xyz/?p=2098','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2099','17','2026-06-08 21:48:39','2026-06-08 15:48:39','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u0986u09aeu09beu09a6u09c7u09b0 u09b8u09c7u09acu09beu09b8u09aeu09c2u09b9<\\/h1>ttnttt<h2>u09b8u09beu0987u09a8 u0986u09aa u0995u09b0u09c1u09a8 u098fu09acu0982 u09b8u09aeu09b8u09cdu09a4 u09a7u09b0u09a3u09c7u09b0 u09aau09b0u09bfu09b7u09c7u09acu09beu0997u09c1u09b2u09bfu09a4u09c7 u099bu09beu09a1u09bc u09aau09beu09a8!<\\/h2>ttnttt<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/crankset-red-qoljhjnqnb4mmkp50by2uf55zkxerfbptzc3n1pwxs.png\\\" title=\\\"crankset-red.png\\\" alt=\\\"crankset-red.png\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h2><a href=\\\"#\\\">u09acu09c7u09b8u09bfu0995 u09b8u09beu09b0u09cdu09adu09bfu09b8<\\/a><\\/h2>ttntt<p>u09b8u09c7u09a1 u0987u0989u099f, u0985u09a8u09cdu09a1 u0987u09aeu09a8u09bfu09b8 u0987u09b8u09cdu099f<br \\/>natus error u09acu09b8u09c7 voluptatem<br \\/>accusantium doloremque<br \\/>laudantium<\\/p>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/chain-red-qoljhljeuu66b14uclgsea37vq2v1jfu0qpo0bk4qo.png\\\" title=\\\"chain-red.png\\\" alt=\\\"chain-red.png\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h2><a href=\\\"#\\\">u09b8u09cdu099fu09cdu09afu09beu09a8u09cdu09a1u09beu09b0u09cdu09a1 u09b8u09beu09b0u09cdu09adu09bfu09b8<\\/a><\\/h2>ttntt<p>u09b8u09c7u09a1 u0987u0989u099f, u0985u09a8u09cdu09a1 u0987u09aeu09a8u09bfu09b8 u0987u09b8u09cdu099f<br \\/>natus error u09acu09b8u09c7 voluptatem<br \\/>accusantium doloremque<br \\/>laudantium<\\/p>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/fix-red-qoljhmh96231qs6f7e3abo5ijgiyzto0op9vw9ymm8.png\\\" title=\\\"fix-red.png\\\" alt=\\\"fix-red.png\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h2><a href=\\\"#\\\">u09aau09cdu09b0u09bfu09aeu09bfu09afu09bcu09beu09ae u09aau09b0u09bfu09b7u09c7u09acu09be<\\/a><\\/h2>ttntt<p>u09b8u09c7u09a1 u0987u0989u099f, u0985u09a8u09cdu09a1 u0987u09aeu09a8u09bfu09b8 u0987u09b8u09cdu099f<br \\/>natus error u09acu09b8u09c7 voluptatem<br \\/>accusantium doloremque<br \\/>laudantium<\\/p>ttnttttttttttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/gear-red-qoljhocxk5xzi6l11lpnhf2f5040t4wn0ofb486z9c.png\\\" title=\\\"gear-red.png\\\" alt=\\\"gear-red.png\\\" loading=\\\"lazy\\\" \\/>tttttttttttttttnttt<h2><a href=\\\"#\\\">u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09aau09cdu09afu09beu0995 u09aau09b0u09bfu09b7u09c7u09acu09be<\\/a><\\/h2>ttntt<p>u09b8u09c7u09a1 u0987u0989u099f, u0985u09a8u09cdu09a1 u0987u09aeu09a8u09bfu09b8 u0987u09b8u09cdu099f<br \\/>natus error u09acu09b8u09c7 voluptatem<br \\/>accusantium doloremque<br \\/>laudantium<\\/p>ttnttt<h2>u0995u09bfu09adu09beu09acu09c7 ...<\\/h2>ttntttttttttttttttt<a href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/daniel-llorente-K7yTmKG7kac-unsplash.jpg\\\" data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-title=\\\"daniel-llorente-K7yTmKG7kac-unsplash.jpg\\\" data-e-action-hash=\\\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6IjIwNTYiLCJ1cmwiOiJodHRwczpcL1wvaXRnYWxheGkuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wNVwvZGFuaWVsLWxsb3JlbnRlLUs3eVRtS0c3a2FjLXVuc3BsYXNoLmpwZyJ9\\\">nttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/daniel-llorente-K7yTmKG7kac-unsplash-qoljhpaxzz4tabzffk4of53gbwpkaer63qtpwqkx9g.jpg\\\" title=\\\"daniel-llorente-K7yTmKG7kac-unsplash.jpg\\\" alt=\\\"daniel-llorente-K7yTmKG7kac-unsplash.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttt<\\/a>nttt<h3>u0995u09bfu09adu09beu09acu09c7 u098fu0995u099fu09bf u09b8u09beu0987u0995u09c7u09b2 u099fu09beu09afu09bcu09beu09b0 u09abu09cbu09b2u09beu09a8<\\/h3>ttntt<p>Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.u200bu200b<\\/p>ttnttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\\\"><\\/path><\\/svg>tttnttttttMore Infonttttt<\\/a>ntttttttttttttttt<a href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/bicycle-breaks-exercise-professional-6946.jpg\\\" data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-title=\\\"bicycle-breaks-exercise-professional-6946.jpg\\\" data-e-action-hash=\\\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6IjIwNTciLCJ1cmwiOiJodHRwczpcL1wvaXRnYWxheGkuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wNVwvYmljeWNsZS1icmVha3MtZXhlcmNpc2UtcHJvZmVzc2lvbmFsLTY5NDYuanBnIn0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D\\\">nttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/bicycle-breaks-exercise-professional-6946-qoljht2arb9ykrtytlr6p45apg715763g9fntufckk.jpg\\\" title=\\\"bicycle-breaks-exercise-professional-6946.jpg\\\" alt=\\\"bicycle-breaks-exercise-professional-6946.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttt<\\/a>nttt<h3>u09b9u09cdu09afu09beu09a8u09cdu09a1u09c7u09b2u09acu09beu09b0u0997u09c1u09b2u09bf u0995u09c0u09adu09beu09acu09c7 u09aeu09cbu09a1u09bcu09beu09a8u09cb u09afu09beu09afu09bc<\\/h3>ttnttSed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.u200bu200bttnttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\\\"><\\/path><\\/svg>tttnttttttMore Infonttttt<\\/a>ntttttttttttttttt<a href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/john-nzoka-dhoAzw-NGk4-unsplash.jpg\\\" data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-title=\\\"john-nzoka-dhoAzw-NGk4-unsplash.jpg\\\" data-e-action-hash=\\\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6IjIwNTgiLCJ1cmwiOiJodHRwczpcL1wvaXRnYWxheGkuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wNVwvam9obi1uem9rYS1kaG9BenctTkdrNC11bnNwbGFzaC5qcGcifQ{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D\\\">nttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/john-nzoka-dhoAzw-NGk4-unsplash-qoljhvvtbtdtjlpvd4z2elfohlt4sahagne49ob61w.jpg\\\" title=\\\"john-nzoka-dhoAzw-NGk4-unsplash.jpg\\\" alt=\\\"john-nzoka-dhoAzw-NGk4-unsplash.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttt<\\/a>nttt<h3>u0995u09c0u09adu09beu09acu09c7 u0986u09aau09a8u09beu09b0 u09acu09cdu09b0u09c7u0995u0997u09c1u09b2u09bf u09aau09c1u09a8u09b0u09beu09afu09bc u09b8u0982u09afu09c1u0995u09cdu09a4 u0995u09b0u09acu09c7u09a8<\\/h3>ttnttSed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.u200bu200bttnttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\\\"><\\/path><\\/svg>tttnttttttMore Infonttttt<\\/a>ntttttttttttttttt<a href=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/florencia-viadana-rMPr-UhfaXI-unsplash.jpg\\\" data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-title=\\\"florencia-viadana-rMPr-UhfaXI-unsplash.jpg\\\" data-e-action-hash=\\\"#elementor-action{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Aaction{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3Dlightbox{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}26settings{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3DeyJpZCI6IjIwNDAiLCJ1cmwiOiJodHRwczpcL1wvaXRnYWxheGkuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wNVwvZmxvcmVuY2lhLXZpYWRhbmEtck1Qci1VaGZhWEktdW5zcGxhc2guanBnIn0{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}3D\\\">nttttttt<img src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/florencia-viadana-rMPr-UhfaXI-unsplash-qoljfz9lgwrw02hjhtbaukr14h7c6dwvv7ro8h4wo4.jpg\\\" title=\\\"florencia-viadana-rMPr-UhfaXI-unsplash.jpg\\\" alt=\\\"florencia-viadana-rMPr-UhfaXI-unsplash.jpg\\\" loading=\\\"lazy\\\" \\/>tttttttt<\\/a>nttt<h3>u0995u09bfu09adu09beu09acu09c7 u0986u09aau09a8u09beu09b0 u099au09c7u0987u09a8 u09a0u09bfu0995 u0995u09b0u09acu09c7u09a8<\\/h3>ttnttSed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.u200bu200bttnttt<a href=\\\"#\\\">ntttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\\\"><\\/path><\\/svg>tttnttttttMore Infonttttt<\\/a>nttt<a href=\\\"#\\\">nttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z\\\"><\\/path><\\/svg>ttt<\\/a>nttt<h2>u09b8u09c7u09b0u09be u09acu09beu0987u0995 u09b0u09c1u099f<\\/h2>ttntt<p>u098fu099fu09bf u09b8u09b0u09cdu09acu09a8u09bfu09aeu09cdu09a8u09adu09beu09acu09c7 u09acu09cdu09afu09acu09b9u09beu09b0 u0995u09b0u09a4u09c7 u09b9u09acu09c7u0964<\\/p>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/itgalaxi.com\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> Your Products <\\/h3>nt<input type=\\\"radio\\\"ntid=\\\"wcf-item-product-2061\\\"ntname=\\\"wcf-single-sel\\\" ntvalue=\\\"2061\\\"nt>nt<label for=\\\"wcf-item-product-2061\\\"><\\/label>nt<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-300x300.webp\\\" alt=\\\"\\\" decoding=\\\"async\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=300{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 300w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=150{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C150&amp;ssl=1 150w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C100&amp;ssl=1 100w\\\" sizes=\\\"(max-width: 300px) 100vw, 300px\\\" \\/>npackage 011ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\">ntt&plus;nt<bdi>&#2547;&nbsp;1,200.00<\\/bdi>ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Md Asadul\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"barguna-borisal-dhaka - bangladash\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"+8801723624071\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"2009\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"2012\\\">ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1716492826\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttpackage 01&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>&#2547;&nbsp;1,200.00<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>&#2547;&nbsp;1,200.00<\\/bdi><\\/td>ntt<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>&#2547;&nbsp;1,200.00<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttCash on delivery t<\\/label>nttt<p>Pay with cash upon delivery.<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/itgalaxi.com\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,200.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,200.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;1,200.00<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"b809f71953\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/h2>\\\"\"','Checkout (Woo)','','inherit','closed','closed','','2066-revision-v1','','','2026-06-08 21:48:39','2026-06-08 15:48:39','','2066','https://hypergrowth.fishgrowth.xyz/?p=2099','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2100','17','2026-06-08 21:48:55','2026-06-08 15:48:55','\"\\\"<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>nttt<style>\\/*! elementor - v3.18.0 - 20-12-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> Copyright u00a9 2024  Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-39__trashed','','','2026-06-09 10:26:03','2026-06-09 04:26:03','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-39/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2101','17','2026-06-08 21:48:55','2026-06-08 15:48:55','\"\\\"<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>nttt<style>\\/*! elementor - v3.18.0 - 20-12-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> Copyright u00a9 2024  Busness Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\\\"\"','Thank You (Woo)','','inherit','closed','closed','','2100-revision-v1','','','2026-06-08 21:48:55','2026-06-08 15:48:55','','2100','https://hypergrowth.fishgrowth.xyz/?p=2101','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2102','17','2026-06-08 21:49:04','2026-06-08 15:49:04','\"<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-40__trashed','','','2026-06-09 10:26:45','2026-06-09 04:26:45','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-40/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2103','17','2026-06-08 21:49:04','2026-06-08 15:49:04','\"<p>Thank you. Your order has been received.<\\/p>\\n\\t\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tOrder number:\\t\\t\\t\\t\\t<strong>235<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tDate:\\t\\t\\t\\t\\t<strong>June 8, 2024<\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tEmail:\\t\\t\\t\\t\\t\\t<strong>admin@thesmartway.xyz<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\tTotal:\\t\\t\\t\\t\\t<strong><bdi>&#36;900.00<\\/bdi><\\/strong>\\n\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\tPayment method:\\t\\t\\t\\t\\t\\t<strong>Cash on delivery<\\/strong>\\n\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t<section>\\n\\t\\t<h2>Order details<\\/h2>\\n\\t\\t<table>\\n\\t\\t\\t<thead>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/thead>\\n\\t\\t\\t<tbody>\\n\\t\\t\\t\\t<tr>\\n\\t<td>\\n\\t\\ttest <strong>&times;&nbsp;1<\\/strong>\\t<\\/td>\\n\\t<td>\\n\\t\\t<bdi>&#36;900.00<\\/bdi>\\t<\\/td>\\n<\\/tr>\\n\\t\\t\\t<\\/tbody>\\n\\t\\t\\t<tfoot>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Subtotal:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Payment method:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>Cash on delivery<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t<th scope=\\\"row\\\">Total:<\\/th>\\n\\t\\t\\t\\t\\t\\t\\t<td>&#036;900.00<\\/td>\\n\\t\\t\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/tfoot>\\n\\t\\t<\\/table>\\n\\t\\t\\t<\\/section>\\n<section>\\n\\t<h2>Billing address<\\/h2>\\n\\t<address>\\n\\t\\tMd.Asadul Islam<br \\/>Address: House Holding: Howladar Bari, Village\\/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\\n\\t\\t\\t\\t\\t<p>+8801713318648<\\/p>\\n\\t\\t\\t\\t\\t<p>admin@thesmartway.xyz<\\/p>\\n\\t\\t\\t<\\/address>\\n<\\/section>\\n\\t\\t\\t<style>\\/*! elementor - v3.21.0 - 08-05-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2> Copyright \\u00a9 2024  Busness Name | This website made with \\u2764\\ufe0f by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','Thank You (Woo)','','inherit','closed','closed','','2102-revision-v1','','','2026-06-08 21:49:04','2026-06-08 15:49:04','','2102','https://hypergrowth.fishgrowth.xyz/?p=2103','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2104','17','2026-06-08 21:49:34','2026-06-08 15:49:34','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-1.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-1.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-41__trashed','','','2026-06-09 11:26:24','2026-06-09 05:26:24','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-41/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2105','17','2026-06-08 21:49:34','2026-06-08 15:49:34','\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-1.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-1.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg-1.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\"','Thank You (Woo)','','inherit','closed','closed','','2104-revision-v1','','','2026-06-08 21:49:34','2026-06-08 15:49:34','','2104','https://hypergrowth.fishgrowth.xyz/?p=2105','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2106','17','2026-06-08 21:49:48','2026-06-08 15:49:48','\"\\\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\\\"\"','Thank You (Woo)','','trash','closed','closed','','thank-you-woo-42__trashed','','','2026-06-09 12:07:18','2026-06-09 06:07:18','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo-42/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2107','17','2026-06-08 21:49:48','2026-06-08 15:49:48','\"\\\"\\\"<style>\\/*! elementor - v3.18.0 - 20-12-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>tttttttttttt<img width=\\\"472\\\" height=\\\"505\\\" src=\\\"https:\\/\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?w=472&amp;ssl=1 472w, https:\\/\\/i0.wp.com\\/itgalaxi.com\\/wp-content\\/uploads\\/2024\\/05\\/dfgdfg.webp?resize=280{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}2C300&amp;ssl=1 280w\\\" sizes=\\\"(max-width: 472px) 100vw, 472px\\\" \\/>tttttttttttttttnttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>tttnttt<style>\\/*! elementor - v3.18.0 - 20-12-2023 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h1>u09a7u09a8u09cdu09afu09acu09beu09a6<\\/h1>ttnttt<h1>u0985u09adu09bfu09a8u09a8u09cdu09a6u09a8 !!! u0986u09aau09a8u09beu09b0 u0985u09b0u09cdu09a1u09beu09b0u099fu09bf u09b8u09abu09b2u09adu09beu09acu09c7 u0997u09c3u09b9u09c0u09a4 u09b9u09dfu09c7u099bu09c7u0964<\\/h1>ttnttt<h1>u0996u09c1u09ac u09b6u09bfu0997u09cdu09b0u0987 u09aau09a8u09cdu09af u09a1u09c7u09b2u09bfu09adu09beu09b0u09c0 u099cu09a8u09cdu09af u0986u09aau09a8u09beu09b0 u09b8u09beu09a5u09c7 u09afu09cbu0997u09beu09afu09cbu0997 u0995u09b0u09be u09b9u09acu09c7<\\/h1>ttnttt<p>Thank you. Your order has been received.<\\/p>ntttttt<ul>ntttt<li>ntttttOrder number:ttttt<strong>2007<\\/strong>ntttt<\\/li>ntttt<li>ntttttDate:ttttt<strong>May 23, 2024<\\/strong>ntttt<\\/li>nttttttttt<li>nttttttEmail:tttttt<strong>admin@itgalaxi.com<\\/strong>nttttt<\\/li>ntttt<li>ntttttTotal:ttttt<strong><bdi>&#2547;&nbsp;990.00<\\/bdi><\\/strong>ntttt<\\/li>nttttttttt<li>nttttttPayment method:tttttt<strong>Cash on delivery<\\/strong>nttttt<\\/li>nttt<\\/ul>nttttt<section>ntt<h2>Order details<\\/h2>ntt<table>nttt<thead>ntttt<tr>nttttt<th>Product<\\/th>nttttt<th>Total<\\/th>ntttt<\\/tr>nttt<\\/thead>nttt<tbody>ntttt<tr>nt<td>nttProduct <strong>&times;&nbsp;1<\\/strong>t<\\/td>nt<td>ntt<bdi>&#2547;&nbsp;990.00<\\/bdi>t<\\/td>n<\\/tr>nttt<\\/tbody>nttt<tfoot>ntttttttttt<tr>nttttttt<th scope=\\\"row\\\">Subtotal:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Payment method:<\\/th>nttttttt<td>Cash on delivery<\\/td>ntttttt<\\/tr>ntttttttttttt<tr>nttttttt<th scope=\\\"row\\\">Total:<\\/th>nttttttt<td>&#2547;&nbsp;990.00<\\/td>ntttttt<\\/tr>nttttttttttttt<\\/tfoot>ntt<\\/table>nttt<\\/section>n<section>nt<h2>Billing address<\\/h2>nt<address>nttMd Asadul<br \\/>barguna-borisal-dhaka - bangladashnttttt<p>+8801723624071<\\/p>nttttt<p>admin@itgalaxi.com<\\/p>nttt<\\/address>n<\\/section>ntt<p>Copyright u00a9 2024 Your Busness Name | This website made with u2764ufe0f by itgalaxi<\\/p>\\\"\\\"\"','Thank You (Woo)','','inherit','closed','closed','','2106-revision-v1','','','2026-06-08 21:49:48','2026-06-08 15:49:48','','2106','https://hypergrowth.fishgrowth.xyz/?p=2107','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2108','17','2026-06-08 21:51:02','2026-06-08 15:51:02','\"\\\"\\\"<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>tttttttttt<img width=\\\"500\\\" height=\\\"500\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo.png\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo.png 500w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/Test-Logo-300x300.png 300w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/Test-Logo-150x150.png 150w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo-400x400-1.png 400w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/Test-Logo-qlgjn7dvi44bql5if66j7dolg9mi1ktt1m22gmqy20.png 100w\\\" sizes=\\\"(max-width: 500px) 100vw, 500px\\\" \\/>tttttttttttttnttt<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>u0985u09b0u09bfu099cu09bfu09a8u09beu09b2 u0987u09aeu09aau09cbu09b0u09cdu099fu09c7u09a1 u0997u09beu09b0u09cdu09aeu09c7u09a8u09cdu099fu09b8 u09b6u09beu099fu09bfu0982 u09abu09beu0987u09a8 u0995u099fu09a8 u0993 u09adu09bfu09b8u0995u09cbu09b8 u0995u099fu09a8 u0995u09beu09aau09dcu09c7u09b0 u0995u09c7u099cu09c1u09dfu09beu09b2 u09b6u09beu09b0u09cdu099f u0993 u09aau09beu099eu09cdu099cu09beu09acu09bf,  u09afu09be u0986u09aau09a8u09beu09b0 u09afu09c7 u0995u09cbu09a8u09cb u0985u09a8u09c1u09b7u09cdu09a0u09beu09a8 u0993 u09aau09beu09b0u09cdu099fu09bfu09a4u09c7 u09afu09beu0993u09dfu09beu09b0 u099cu09a8u09cdu09af u09acu09c7u09b7u09cdu099f u099au09dfu09c7u099c u09b9u09a4u09c7 u09aau09beu09b0u09c7u0964<\\/h2>ttnttt<h2><s>u0986u0997u09c7u09b0 u09aeu09c2u09b2u09cdu09afu0983 u09e7u09ebu09ebu09e6 u099fu09beu0995u09be<\\/s><\\/h2>ttnttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/plugins\\/pro-elements\\/assets\\/css\\/widget-animated-headline.min.css\\\">tt<h3>ntttttu09b8u09c7u09b0u09be u0985u09abu09beu09b0u0983   u09e7 u09aau09bfu09b8ntttttu09e7u09eau09ebu09e6ntttttu099fu09beu0995u09be (u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u099au09beu09b0u09cdu099c u098fu0995u09a6u09ae  u09abu09cdu09b0u09c0)nttttt<\\/h3>nttt<a href=\\\"#order-form\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/plugins\\/pro-elements\\/assets\\/css\\/widget-carousel.min.css\\\">ttnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\\\"><\\/path><\\/svg>tttttttPreviousnttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 1000 1000\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\\\"><\\/path><\\/svg>tttttttNextnttt<h2>u09aau09cdu09b0u09a4u09cdu09afu09c7u0995u099fu09bf u09b6u09beu09b0u09cdu099f u09b8u09bfu09b2u09bfu0995u09a8 u09aau09cdu09b0u09bfu09aeu09bfu09dfu09beu09ae u0993u09dfu09beu09b8 u0995u09b0u09be, u09a4u09beu0987 u0996u09c1u09acu0987 u09b8u09abu099f u0993 u09b8u09c1u09a8u09cdu09a6u09b0 u09b2u09c1u0995u09b8 u09b9u09dfu09c7u099bu09c7<\\/h2>ttnttt<p>u09aau09cdu09b0u09a4u09bfu099fu09be u09b6u09beu09b0u09cdu099f u098fu09b0 u0995u09beu09aau09dc u0987u09aeu09aau09cbu09b0u09cdu099fu09c7u09a1 u09b6u09beu09b0u09cdu099fu09bfu0982 u09abu09beu0987u09a8 u0995u099fu09a8u0964  u09b6u09a4u09adu09beu0997 u0995u099fu09a8 u09a4u09beu0987 u0997u09b0u09aeu09c7u09b0 u099cu09a8u09cdu09af u0996u09c1u09ac-u0987 u0986u09b0u09beu09aeu09a6u09beu09dfu0995 u098fu09acu0982 u09b0u0982 u09a8u09b7u09cdu099f u09b9u09acu09c7 u09a8u09be u0987u09a8u09b6u09beu2014u0986u09b2u09cdu09b2u09beu09b9u0964<\\/p>ttnttt<p>u0995u09beu09aau09dcu09c7u09b0 u09a7u09b0u09a3 : u0987u09aeu09aau09cbu09b0u09cdu099fu09c7u09a1 u09b6u09beu09b0u09cdu099fu09bfu0982 u09abu09beu0987u09a8 u0995u099fu09a8, 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} u0995u099fu09a8 ( u0997u09b0u09aeu09c7u09b0 u099cu09a8u09cdu09af u0996u09c1u09ac-u0987 u0986u09b0u09beu09aeu09a6u09beu09dfu0995 )<\\/p>ttnttttttttttttt<img width=\\\"1024\\\" height=\\\"768\\\" src=\\\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/0112-2-1024x768.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/0112-2-1024x768.jpg 1024w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/0112-2-300x225.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/0112-2-768x576-1.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/0112-2-600x450-1.jpg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/0112-2.jpg 1200w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttttttttttttt<img width=\\\"1024\\\" height=\\\"768\\\" src=\\\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/088-1-1024x768.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/088-1-1024x768.jpg 1024w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/088-1-300x225.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/088-1-768x576-1.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/088-1-600x450-1.jpg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/088-1.jpg 1200w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttttttttttttt<img width=\\\"1024\\\" height=\\\"768\\\" src=\\\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/055-1-1024x768.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/055-1-1024x768.jpg 1024w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/055-1-300x225.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/055-1-768x576-1.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/055-1-600x450-1.jpg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/055-1.jpg 1200w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttttttttttttt<img width=\\\"1024\\\" height=\\\"697\\\" src=\\\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/033-1-1024x697.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/033-1-1024x697.jpg 1024w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/033-1-300x204.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/033-1-768x523-1.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/033-1-600x409-1.jpg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/033-1.jpg 1175w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttttttttttttt<img width=\\\"1024\\\" height=\\\"768\\\" src=\\\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/111-1-1024x768.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/111-1-1024x768.jpg 1024w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/111-1-300x225.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/111-1-768x576-1.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/111-1-600x450-1.jpg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/111-1.jpg 1200w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttttttttttttt<img width=\\\"1024\\\" height=\\\"768\\\" src=\\\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/0112-1-1-1024x768.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/0112-1-1-1024x768.jpg 1024w, https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/uploads\\/2024\\/03\\/0112-1-1-300x225.jpg 300w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/0112-1-1-768x576-1.jpg 768w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/0112-1-1-600x450-1.jpg 600w, https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/0112-1-1.jpg 1200w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\" \\/>tttttttttttttnttt<a href=\\\"#order-form\\\">nttttttu0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u099au09beu0987nttttt<\\/a>nttt<h2>u0995u09bf u0995u09bf u0995u09beu09b0u09a3u09c7 u0986u09aeu09beu09a6u09c7u09b0 u0995u09beu099b u09a5u09c7u0995u09c7 u09b6u09beu09b0u09cdu099fu099fu09bf u0995u09bfu09a8u09be u0989u099au09bfu09ce!<\\/h2>ttnttt<style>\\/*! elementor - v3.20.0 - 20-03-2024 *\\/n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}<\\/style>ttnttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\\\"><\\/path><\\/svg>nttt<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/demo.digiprodwave.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">tt<ul>nttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttntttttttttt u09b8u09cdu09aeu09beu09b0u09cdu099f  u09acu09beu0982u09b2u09beu09a6u09c7u09b6u09c7u09b0 u09b8u09cdu09aeu09beu09b0u09cdu099f u09acu09dfu09c7u099cu09a6u09c7u09b0 u099cu09a8u09cdu09af  u09abu09c7u09b6u09beu09a8u09beu09acu09b2 u09b6u09beu09b0u09cdu099f u0993 u09aau09beu099eu09cdu099cu09beu09acu09bf u09a8u09bfu09dfu09c7 u0986u09b8u099bu09c7 u09b8u09cdu09aeu09beu09b0u09cdu099f u0993u09dfu09beu09b0 u09acu09cdu09b0u09beu09a8u09cdu09a1,  nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09aeu09beu09a6u09c7u09b0 u09b8u09cdu09aeu09beu09b0u09cdu099f u0993u09dfu09beu09b0 u09acu09cdu09b0u09beu09a8u09cdu09a1  u0986u09aau09a8u09beu09a6u09c7u09b0 u09aau099bu09a8u09cdu09a6 u0993 u099au09beu09b9u09bfu09a6u09beu09b0 u0995u09a5u09be u09aeu09beu09a5u09beu09df u09b0u09c7u0996u09c7  u09b0u09c1u099au09bfu09b6u09c0u09b2 u0993 u0986u0995u09b0u09cdu09b7u09a3u09c0u09df u09b6u09beu09b0u09cdu099f u0993 u09aau09beu099eu09cdu099cu09beu09acu09bfu09b0 u09aeu09c7u09b2u09be u09b8u09beu099cu09bfu09dfu09c7u099bu09c7,nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttntttttttttt u09eb u099fu09bf u0995u09beu09b2u09beu09b0 u0993 u0986u0995u09b0u09cdu09b7u09a3u09c0u09df u09aau09cdu09b0u09bfu09a8u09cdu099fu09c7u09b0 u09aeu09a7u09cdu09af u09a5u09c7u0995u09c7 u09acu09c7u099bu09c7 u09a8u09bfu09a8 u0986u09aau09a8u09beu09b0 u09aau099bu09a8u09cdu09a6u09c7u09b0 u09b6u09beu09b0u09cdu099f u0993 u09aau09beu099eu09cdu099cu09beu09acu09bf,,   u09b6u09a4u09adu09beu0997 u0995u099fu09a8, u0986u09b0u09beu09aeu09a6u09beu09dfu0995 u0995u09beu09aau09dcu09c7u09b0 u09a8u09bfu09b6u09cdu099au09dfu09a4u09be u0993 u0995u09beu09b2u09beu09b0 u0997u09c7u09b0u09beu09a8u09cdu099fu09bf u09a6u09bfu099au09cdu099bu09c7 u09b8u09cdu09aeu09beu09b0u09cdu099f u0993u09dfu09beu09b0 u09acu09cdu09b0u09beu09a8u09cdu09a1 ,  nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09cdu09aeu09beu09b0u09cdu099f u0993u09dfu09beu09b0 u09acu09cdu09b0u09beu09a8u09cdu09a1 u2764ufe0f u09aau09cdu09b0u09a4u09bfu099fu09bf u09b8u09aeu09cdu09aeu09beu09a8u09bfu09a4 u0995u09beu09b8u09cdu099fu09aeu09beu09b0u09c7u09b0 u09a6u09cbu09dfu09be u0993 u09adu09beu09b2u09cbu09acu09beu09b8u09be u0986u09b6u09beu09acu09beu09a6u09c0,  nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu09b8u09cdu09aeu09beu09b0u09cdu099f u0993u09dfu09beu09b0 u09acu09cdu09b0u09beu09a8u09cdu09a1 u098fu09b0 u09aau09cdu09b0u09a4u09bfu099fu09bf u09aau09cdu09b0u09a1u09beu0995u09cdu099fu09c7u09b0 u09b8u09c1u0987u0982 u0996u09c1u09acu0987 u09a8u09bfu0996u09c1u0981u09a4 u0993 u099fu09c7u0995u09b8u0987 u0987u09a8u09b6u09be u0986u09b2u09cdu09b2u09beu09b9,  nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttntttttttttt u09b8u09cdu09aeu09beu09b0u09cdu099f u0993u09dfu09beu09b0 u09acu09cdu09b0u09beu09a8u09cdu09a1 u09b6u09a4u09adu09beu0997 u09acu09bfu09b6u09cdu09acu09b8u09cdu09a4 u098fu0995u099fu09bf  u09aau09cdu09b0u09a4u09bfu09b7u09cdu09a0u09beu09a8,  ud83cudf41 u0986u09aeu09beu09a6u09c7u09b0 u09aau09cdu09b0u09a1u09beu0995u09cdu099fu09c7u09b0 u09b8u09beu0987u099c u098fu09adu09c7u0987u09b2u09c7u09acu09c7u09b2 u0986u099bu09c7,   u09aeu09bfu09a1u09bfu09dfu09beu09ae, u09b2u09beu09b0u09cdu099c, u098fu0995u09cdu09b8u09c7u09b2u0964 nttttttttt<\\/li>ntttttttt<li>nttttttt<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>ttttttnttttttttttu0986u09aeu09beu09a6u09c7u09b0 u09a6u09c7u09b6u09bfu0993 u09acu09cdu09b0u09beu09a8u09cdu09a1 u0997u09c1u09b2u09cbu09b0 u09b8u09beu09a5u09c7 u09b8u09aeu09a8u09cdu09acu09df u09b0u09c7u0996u09c7 u09aau09cdu09b0u09a4u09bfu099fu09bf u09aau09cdu09b0u09a1u09beu0995u09cdu099fu09c7u09b0 u09b8u09beu0987u099c u09b0u09c7u09b6u09bfu0993 u0995u09b0u09c7u099bu09bfu0964 nttttttttt<\\/li>ntttttt<\\/ul>nttt<h2>u09b8u09beu0987u099c u0997u09beu0987u09a1<\\/h2>ttntt<table style=\\\"height: 278px;\\\" width=\\\"230\\\"><tbody><tr><th><strong>SIZE (u09b8u09beu0987u099c)<\\/strong><\\/th><th><strong>CHEST (u09acu09c1u0995u09c7u09b0 u09aeu09beu09aa)<\\/strong><\\/th><th><strong>LEANGTH (u09b2u09c7u09a8u09cdu09a5)<\\/strong><\\/th><\\/tr><tr><td><strong>M<\\/strong><\\/td><td><strong>38\\\"<\\/strong><\\/td><td><strong>27\\\"<\\/strong><\\/td><\\/tr><tr><td><b>L<\\/b><\\/td><td><strong>40\\\"<\\/strong><\\/td><td><strong>28\\\"<\\/strong><\\/td><\\/tr><tr><td><b>XL<\\/b><\\/td><td><strong>42\\\"<\\/strong><\\/td><td><strong>30\\\"<\\/strong><\\/td><\\/tr><\\/tbody><\\/table>ttnttt<h2>u0985u09b0u09cdu09a1u09beu09b0 u0995u09b0u09a4u09c7 u09a8u09bfu099au09c7u09b0 u09abu09b0u09cdu09aeu099fu09bf u09aau09c2u09b0u09a8 u0995u09b0u09c1u09a8<\\/h2>ttnttt<h2>u0995u09cbu09a8 u0995u09beu09b0u09a8u09c7 u098fu0987 u09aau09cdu09afu09beu0995u09c7u099c u0986u09aau09a8u09beu09b0 u09aau099bu09a8u09cdu09a6 u09a8u09be u09b9u09b2u09c7 u0986u09aau09a8u09bf u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf u09abu09bf u09aau09cdu09b0u09a6u09beu09a8 u0995u09b0u09c7 u09b0u09bfu099fu09beu09b0u09cdu09a8 u0995u09b0u09a4u09c7 u09aau09beu09b0u09acu09c7u09a8u0964<\\/h2>ttn<!-- CHECKOUT SHORTCODE -->n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/demo.digiprodwave.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">nt<h3 id=\\\"your_products_heading\\\"> u09b0u0982 u09aau099bu09a8u09cdu09a6 u0995u09b0u09c1u09a8 <\\/h3>nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"495\\\"  >nt<img width=\\\"400\\\" height=\\\"400\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/06-400x400-1.jpg\\\" alt=\\\"\\\" \\/>nu09b8u09cdu09aeu09beu09b0u09cdu099f u0995u09c7u099cu09c1u09dfu09beu09b2 u09aau09beu09a8u09cdu099cu09beu09acu09bf1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\" title=\\\"\\\"  >ntt&plus;nt1,450.00&#2547;&nbsp;nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"496\\\"  >nt<img width=\\\"400\\\" height=\\\"400\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/09-400x400-1.jpg\\\" alt=\\\"\\\" \\/>nu09b8u09cdu09aeu09beu09b0u09cdu099f u09b6u09beu09b0u09cdu099f-Blue1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\" title=\\\"\\\"  >ntt&plus;nt1,450.00&#2547;&nbsp;nt<input type=\\\"checkbox\\\"ntname=\\\"wcf-multiple-sel\\\"ntvalue=\\\"497\\\"  >nt<img width=\\\"400\\\" height=\\\"400\\\" src=\\\"https:\\/\\/thesmartway.xyz\\/wp-content\\/uploads\\/2024\\/06\\/12-400x400-1.jpg\\\" alt=\\\"\\\" \\/>nu09b8u09cdu09aeu09beu09b0u09cdu099f u09b6u09beu09b0u09cdu099f-Orange1ntt&minus;ntt<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\" title=\\\"\\\"  >ntt&plus;nt1,450.00&#2547;&nbsp;ntt<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>ntt<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">u0986u09aau09a8u09beu09b0 u09a8u09beu09ae&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Minu Khan\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"50\\\"><label for=\\\"billing_address_1\\\">u0986u09aau09a8u09beu09b0 u09b8u09aeu09cdu09aau09c2u09b0u09cdu09a3 u09a0u09bfu0995u09beu09a8u09be&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"House number and street name\\\"  value=\\\"test\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"100\\\"><label for=\\\"billing_phone\\\">u0986u09aau09a8u09beu09b0 u09abu09cbu09a8 u09a8u09beu09aeu09cdu09acu09beu09b0&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"0190\\\" autocomplete=\\\"tel\\\" \\/><\\/p>tnt<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"456\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"458\\\">ntt<input type=\\\"hidden\\\" name=\\\"wc_order_attribution_source_type\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_referrer\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_utm_campaign\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_utm_source\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_utm_medium\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_utm_content\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_utm_id\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_utm_term\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_session_entry\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_session_start_time\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_session_pages\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_session_count\\\" value=\\\"\\\" \\/><input type=\\\"hidden\\\" name=\\\"wc_order_attribution_user_agent\\\" value=\\\"\\\" \\/>ntt<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>nttt<table data-update-time=\\\"1711201326\\\">nt<thead>ntt<tr>nttt<th>Product<\\/th>nttt<th>Subtotal<\\/th>ntt<\\/tr>nt<\\/thead>nt<tbody>ntttttt<tr>nttttt<td>nttttttu09b8u09cdu09aeu09beu09b0u09cdu099f u0995u09c7u099cu09c1u09dfu09beu09b2 u09aau09beu09a8u09cdu099cu09beu09acu09bf&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>1,450.00&#2547;&nbsp;<\\/bdi>ttttt<\\/td>ntttt<\\/tr>ntttttttt<tr>nttttt<td>nttttttu09b8u09cdu09aeu09beu09b0u09cdu099f u09b6u09beu09b0u09cdu099f-Blue&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>1,450.00&#2547;&nbsp;<\\/bdi>ttttt<\\/td>ntttt<\\/tr>ntttttttt<tr>nttttt<td>nttttttu09b8u09cdu09aeu09beu09b0u09cdu099f u09b6u09beu09b0u09cdu099f-Orange&nbsp;tttttt <strong>&times;&nbsp;1<\\/strong>ttttttttttt<\\/td>nttttt<td>ntttttt<bdi>1,450.00&#2547;&nbsp;<\\/bdi>ttttt<\\/td>ntttt<\\/tr>nttttt<\\/tbody>nt<tfoot>ntt<tr>nttt<th>Subtotal<\\/th>nttt<td><bdi>4,350.00&#2547;&nbsp;<\\/bdi><\\/td>ntt<\\/tr>nttt<tr>nt<th>Shipping<\\/th>nt<td data-title=\\\"Shipping\\\">nttttt<ul id=\\\"shipping_method\\\">nttttttttt<li>ntttttt<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping1\\\" value=\\\"free_shipping:1\\\" \\/><label for=\\\"shipping_method_0_free_shipping1\\\">Free shipping<\\/label>ttttt<\\/li>nttttttt<\\/ul>nttt<\\/td>n<\\/tr>ntt<tr>nttt<th>Total<\\/th>nttt<td><strong><bdi>4,350.00&#2547;&nbsp;<\\/bdi><\\/strong> <\\/td>ntt<\\/tr>nt<\\/tfoot>n<\\/table>nttt<ul>nttt<li>nt<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>nt<label for=\\\"payment_method_cod\\\">nttu0995u09cdu09afu09beu09b6u0985u09a8 u09a1u09c7u09b2u09bfu09adu09beu09b0u09bf t<\\/label>nttt<p>u09aau09a3u09cdu09af u09b9u09beu09a4u09c7 u09aau09c7u09dfu09c7 u09aau09c7u09aeu09c7u09a8u09cdu099f u0995u09b0u09a4u09c7 u09aau09beu09b0u09acu09c7u09a8<\\/p>nt<\\/li>ntt<\\/ul>ntt<noscript>ntttSince 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.ttt<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>ntt<\\/noscript>ntt<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;4,350.00&#2547;&nbsp;\\\" data-value=\\\"Place Order&nbsp;&nbsp;4,350.00&#2547;&nbsp;\\\">Place Order&nbsp;&nbsp;4,350.00&#2547;&nbsp;<\\/button>ntt<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"d4d74114ff\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>tn<\\/form>n<!-- END CHECKOUT SHORTCODE -->nttt<h2>Copyright u00a9 2024 Your Business Name | This website made with u2764ufe0f by <a href=\\\"https:\\/\\/digiprodwave.xyz\\/\\\" style=\\\"color:red\\\">DPW<\\/a><\\/h2>\\\"\\\"\"','Checkout (Woo)','','inherit','closed','closed','','2084-revision-v1','','','2026-06-08 21:51:02','2026-06-08 15:51:02','','2084','https://hypergrowth.fishgrowth.xyz/?p=2108','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2109','17','2026-06-09 04:48:18','2026-06-08 22:48:18','','make images','','inherit','closed','closed','','make-images','','','2026-06-09 04:48:18','2026-06-08 22:48:18','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260608-224817-efc78e612a04de0f0396fc98.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2110','17','2026-06-09 10:33:42','2026-06-09 04:33:42','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://thesmartway.xyz/wp-content/uploads/2024/06/cropped-308512259_187194967202756_9192586756442364067_n-removebg-preview-1.webp\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>অরিজিনাল ইমপোর্টেড গার্মেন্টস শাটিং ফাইন কটন ও ভিসকোস কটন কাপড়ের কেজুয়াল শার্ট ও পাঞ্জাবি,  যা আপনার যে কোনো অনুষ্ঠান ও পার্টিতে যাওয়ার জন্য বেষ্ট চয়েজ হতে পারে।</h2>		\n			<h2><s>আগের মূল্যঃ ১৫৫০ টাকা</s></h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">		<h3>\n					সেরা অফারঃ   ১ পিস\n					১৪৫০\n					টাকা (ডেলিভারি চার্জ একদম  ফ্রী)\n					</h3>\n			<a href=\"#order-form\">\n									অর্ডার করতে চাই\n					</a>\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-carousel.min.css\">		\n							<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>							Previous\n							<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>							Next\n			<h2>প্রত্যেকটি শার্ট সিলিকন প্রিমিয়াম ওয়াস করা, তাই খুবই সফট ও সুন্দর লুকস হয়েছে</h2>		\n			<p>প্রতিটা শার্ট এর কাপড় ইমপোর্টেড শার্টিং ফাইন কটন।  শতভাগ কটন তাই গরমের জন্য খুব-ই আরামদায়ক এবং রং নষ্ট হবে না ইনশা—আল্লাহ।</p>		\n			<p>কাপড়ের ধরণ : ইমপোর্টেড শার্টিং ফাইন কটন, 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} কটন ( গরমের জন্য খুব-ই আরামদায়ক )</p>		\n			<a href=\"#order-form\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>কি কি কারণে আমাদের কাছ থেকে শার্টটি কিনা উচিৎ!</h2>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										 স্মার্ট  বাংলাদেশের স্মার্ট বয়েজদের জন্য  ফেশানাবল শার্ট ও পাঞ্জাবি নিয়ে আসছে স্মার্ট ওয়ার ব্রান্ড,  \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										আমাদের স্মার্ট ওয়ার ব্রান্ড  আপনাদের পছন্দ ও চাহিদার কথা মাথায় রেখে  রুচিশীল ও আকর্ষণীয় শার্ট ও পাঞ্জাবির মেলা সাজিয়েছে,\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										 ৫ টি কালার ও আকর্ষণীয় প্রিন্টের মধ্য থেকে বেছে নিন আপনার পছন্দের শার্ট ও পাঞ্জাবি,,   শতভাগ কটন, আরামদায়ক কাপড়ের নিশ্চয়তা ও কালার গেরান্টি দিচ্ছে স্মার্ট ওয়ার ব্রান্ড ,  \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										স্মার্ট ওয়ার ব্রান্ড ❤️ প্রতিটি সম্মানিত কাস্টমারের দোয়া ও ভালোবাসা আশাবাদী,  \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										স্মার্ট ওয়ার ব্রান্ড এর প্রতিটি প্রডাক্টের সুইং খুবই নিখুঁত ও টেকসই ইনশা আল্লাহ,  \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										 স্মার্ট ওয়ার ব্রান্ড শতভাগ বিশ্বস্ত একটি  প্রতিষ্ঠান,  🍁 আমাদের প্রডাক্টের সাইজ এভেইলেবেল আছে,   মিডিয়াম, লার্জ, এক্সেল। \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										আমাদের দেশিও ব্রান্ড গুলোর সাথে সমন্বয় রেখে প্রতিটি প্রডাক্টের সাইজ রেশিও করেছি। \n									</li>\n						</ul>\n			<h2>সাইজ গাইড</h2>		\n		<table style=\"height: 278px;\" width=\"230\"><tbody><tr><th><strong>SIZE (সাইজ)</strong></th><th><strong>CHEST (বুকের মাপ)</strong></th><th><strong>LEANGTH (লেন্থ)</strong></th></tr><tr><td><strong>M</strong></td><td><strong>38\"</strong></td><td><strong>27\"</strong></td></tr><tr><td><b>L</b></td><td><strong>40\"</strong></td><td><strong>28\"</strong></td></tr><tr><td><b>XL</b></td><td><strong>42\"</strong></td><td><strong>30\"</strong></td></tr></tbody></table>		\n			<h2>অর্ডার করতে নিচের ফর্মটি পূরন করুন</h2>		\n			<h2>কোন কারনে এই প্যাকেজ আপনার পছন্দ না হলে আপনি ডেলিভারি ফি প্রদান করে রিটার্ন করতে পারবেন।</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<ul role=\"alert\">\n			<li>\n			No product is selected. Please select products from the  checkout meta settings   to continue.		</li>\n	</ul>\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নাম&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\"  value=\"Md.Asadul Islam\" autocomplete=\"given-name\" /></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">আপনার সম্পূর্ণ ঠিকানা&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"House number and street name\"  value=\"Address: House Holding: Howladar Bari, Village/Street: Purva Dhupati, Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">আপনার ফোন নাম্বার&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"2081\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"2084\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780979622\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n			<h2> Copyright © 2024  Busness Name | This website made with ❤️ by <a href=\"https://itgalaxi.com/\" style=\"color:red\"><b> The Smart Way</b></a></h2>','Checkout (Woo)','','inherit','closed','closed','','2084-revision-v1','','','2026-06-09 10:33:42','2026-06-09 04:33:42','','2084','https://hypergrowth.fishgrowth.xyz/?p=2110','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2111','17','2026-06-09 10:34:57','2026-06-09 04:34:57','<!DOCTYPE html>\n<html lang=\"bn\">\n<head>\n<meta charset=\"UTF-8\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n<title>ধন্যবাদ - অর্ডার সফল</title>\n<style>\n*{\n    margin:0;\n    padding:0;\n    box-sizing:border-box;\n    font-family: Arial, sans-serif;\n}\nbody{\n    background:#f5f7fa;\n    display:flex;\n    justify-content:center;\n    align-items:center;\n    min-height:100vh;\n    padding:20px;\n}\n.thankyou-box{\n    background:#fff;\n    max-width:500px;\n    width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\n    text-align:center;\n    padding:40px 30px;\n    border-radius:15px;\n    box-shadow:0 10px 30px rgba(0,0,0,0.1);\n}\n.success-icon{\n    width:80px;\n    height:80px;\n    background:#22c55e;\n    color:#fff;\n    font-size:40px;\n    border-radius:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\n    display:flex;\n    align-items:center;\n    justify-content:center;\n    margin:0 auto 20px;\n}\nh1{\n    color:#22c55e;\n    margin-bottom:15px;\n}\np{\n    color:#555;\n    line-height:1.7;\n    margin-bottom:12px;\n}\n.order-info{\n    background:#f8fafc;\n    padding:15px;\n    border-radius:10px;\n    margin:20px 0;\n    color:#333;\n}\n.btn{\n    display:inline-block;\n    background:#22c55e;\n    color:#fff;\n    text-decoration:none;\n    padding:12px 25px;\n    border-radius:8px;\n    margin-top:10px;\n    transition:.3s;\n}\n.btn:hover{\n    background:#16a34a;\n}\n</style>\n</head>\n<body>\n    ✓\n    <h1>ধন্যবাদ!</h1>\n    <p>\n        আপনার অর্ডারটি সফলভাবে গ্রহণ করা হয়েছে।\n    </p>\n    <p>\n        আমাদের প্রতিনিধি খুব শীঘ্রই আপনার সাথে যোগাযোগ করবে অর্ডারটি কনফার্ম করার জন্য।\n    </p>\n    <a href=\"/\">হোম পেজে ফিরে যান</a>\n</body>\n</html>','Thanks','','publish','closed','closed','','thanks','','','2026-06-09 13:47:57','2026-06-09 07:47:57','','0','https://hypergrowth.fishgrowth.xyz/step/thanks/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2112','17','2026-06-09 10:50:32','2026-06-09 04:50:32','','','','draft','closed','closed','','','','','2026-06-09 10:50:32','2026-06-09 04:50:32','','0','https://hypergrowth.fishgrowth.xyz/?post_type=shop_order_placehold&p=2112','0','shop_order_placehold','','1');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2113','17','2026-06-09 11:05:39','2026-06-09 05:05:39','','','','draft','closed','closed','','','','','2026-06-09 11:05:39','2026-06-09 05:05:39','','0','https://hypergrowth.fishgrowth.xyz/?post_type=shop_order_placehold&p=2113','0','shop_order_placehold','','1');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2115','17','2026-06-09 11:07:52','2026-06-09 05:07:52','','','','draft','closed','closed','','','','','2026-06-09 11:07:52','2026-06-09 05:07:52','','0','https://hypergrowth.fishgrowth.xyz/?post_type=shop_order_placehold&p=2115','0','shop_order_placehold','','1');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2116','17','2026-06-09 11:14:58','2026-06-09 05:14:58','','','','draft','closed','closed','','','','','2026-06-09 11:14:58','2026-06-09 05:14:58','','0','https://hypergrowth.fishgrowth.xyz/?post_type=shop_order_placehold&p=2116','0','shop_order_placehold','','1');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2117','17','2026-06-09 11:15:33','2026-06-09 05:15:33','','','','draft','closed','closed','','','','','2026-06-09 11:15:33','2026-06-09 05:15:33','','0','https://hypergrowth.fishgrowth.xyz/?post_type=shop_order_placehold&p=2117','0','shop_order_placehold','','1');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2118','17','2026-06-09 11:17:16','2026-06-09 05:17:16','','Thanks','','inherit','closed','closed','','2111-revision-v1','','','2026-06-09 11:17:16','2026-06-09 05:17:16','','2111','https://hypergrowth.fishgrowth.xyz/?p=2118','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2119','17','2026-06-09 11:17:16','2026-06-09 05:17:16','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Add Your Heading Text Here</h2>		\n			<!DOCTYPE html>\n<html lang=\"bn\">\n<head>\n<meta charset=\"UTF-8\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n<title>ধন্যবাদ - অর্ডার সফল</title>\n<style>\n*{\n    margin:0;\n    padding:0;\n    box-sizing:border-box;\n    font-family: Arial, sans-serif;\n}\nbody{\n    background:#f5f7fa;\n    display:flex;\n    justify-content:center;\n    align-items:center;\n    min-height:100vh;\n    padding:20px;\n}\n.thankyou-box{\n    background:#fff;\n    max-width:500px;\n    width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\n    text-align:center;\n    padding:40px 30px;\n    border-radius:15px;\n    box-shadow:0 10px 30px rgba(0,0,0,0.1);\n}\n.success-icon{\n    width:80px;\n    height:80px;\n    background:#22c55e;\n    color:#fff;\n    font-size:40px;\n    border-radius:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\n    display:flex;\n    align-items:center;\n    justify-content:center;\n    margin:0 auto 20px;\n}\nh1{\n    color:#22c55e;\n    margin-bottom:15px;\n}\np{\n    color:#555;\n    line-height:1.7;\n    margin-bottom:12px;\n}\n.order-info{\n    background:#f8fafc;\n    padding:15px;\n    border-radius:10px;\n    margin:20px 0;\n    color:#333;\n}\n.btn{\n    display:inline-block;\n    background:#22c55e;\n    color:#fff;\n    text-decoration:none;\n    padding:12px 25px;\n    border-radius:8px;\n    margin-top:10px;\n    transition:.3s;\n}\n.btn:hover{\n    background:#16a34a;\n}\n</style>\n</head>\n<body>\n    ✓\n    <h1>ধন্যবাদ!</h1>\n    <p>\n        আপনার অর্ডারটি সফলভাবে গ্রহণ করা হয়েছে।\n    </p>\n    <p>\n        আমাদের প্রতিনিধি খুব শীঘ্রই আপনার সাথে যোগাযোগ করবে অর্ডারটি কনফার্ম করার জন্য।\n    </p>\n    <a href=\"/\">হোম পেজে ফিরে যান</a>\n</body>\n</html>','Thanks','','inherit','closed','closed','','2111-revision-v1','','','2026-06-09 11:17:16','2026-06-09 05:17:16','','2111','https://hypergrowth.fishgrowth.xyz/?p=2119','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2121','17','2026-06-09 11:23:29','2026-06-09 05:23:29','','ChatGPT Image Jun 9, 2026, 11_23_18 AM','','inherit','closed','closed','','chatgpt-image-jun-9-2026-11_23_18-am','','','2026-06-09 11:23:29','2026-06-09 05:23:29','','2079','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-9-2026-11_23_18-AM.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2122','17','2026-06-09 11:23:46','2026-06-09 05:23:46','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>এ্যাসিডিটি, পেপটিক আলসার ও কোষ্ঠকাঠিন্যে “সিড শরবত”\n  খুবই উপকারী\n</h2>		\n			<h2>অনেকেই দীর্ঘদিন যাবৎ পেটের নানা ধরনের সমস্যায় ভুগছেন? বিশেষ করে, যারা কো-ষ্ঠ-কাঠিন্যে; তারা বেশিরভাগ সময়ই লজ্জায় এ মারাত্মক সমস্যার কথা শেয়ার করতে চান না। কিন্তু তিনি নিজেই নিজের পায়ে কুড়াল মারছেন।\n</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\"></path></svg>			\n									অর্ডার করতে চাই\n					</a>\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">		<h3>\n					রেগুলার মূল্য\n					১১০০\n				</h3>\n					<h3>\n					বর্তমান ডিসকাউন্ট মূল্য\n					৯০০\n					টাকা\n					</h3>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1122\" height=\"1402\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-9-2026-11_23_18-AM.png\" alt=\"\" />													\n			<h2>সিড শরবত খাওয়ার উপকারিতা-\n</h2>		\n			<h2>বীজ কম্বো শরীরের মেটাবলিজম বাড়িয়ে তুলতে সাহায্য করে। এতে উপস্থিত ফাইবার শরীরের জন্য খুবই গুরুত্বপূর্ণ।\n</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										কয়েকটি গবেষণায় দেখা গেছে, তোকমার দানা দেহের জন্য উপকারী কোলেস্টেরল উৎপাদন করে থাকে। এছাড়াও রক্তে চর্বির পরিমাণ কমানো, ডায়াবেটিস নিয়ন্ত্রণ, শর্করার পরিমাণ নিয়ন্ত্রণ করে হার্ট সুস্থ রাখে। হাড় গঠনে সাহায্য করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										রক্তের শর্করা নিয়ন্ত্রণ করতে কার্যকর তোকমা। মূলত দেহের বিপাকক্রিয়া ধীর করে দেয় তোকমা। ফলে কার্বোহাইড্রেটকে গ্লুুকোজে রূপান্তরের পদ্ধতি নিয়ন্ত্রণ করা সহজ হয়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										কো-ষ্ট-কাঠিন্য সমস্যা দূর করতে খুবই কার্যকর তোকমা। সামান্য তোকমা অল্প পানিতে ভিজিয়ে রেখে কিছুক্ষণ পর তা দুধে মিশিয়ে খেলেও উপকার পাওয়া যাবে। এটি হজমের সমস্যাও দূর করতে সহায়তা করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										ত্বকের নানা সমস্যায় তোকমা ব্যবহার করা যায়। এটি নানা চর্মরোগ নিরাময়ে কাজ করে। এটি একজিমা ও সোরিয়াসিস নিরাময়ে কার্যকর। সুস্থ চুলের জন্য এটি নিয়মিত খাওয়া যেতে পারে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										তোকমা বীজে রয়েছে ঠাণ্ডা প্রতিরোধী উপাদান। এটি আপনার দেহকে ঠাণ্ডার বিরুদ্ধে প্রতিরোধক্ষমতা গড়তে সহায়তা করবে। সর্দি-কাশি থেকে দূরে থাকতে চাইলে তাই নিয়মিত তোকমা খাওয়া যেতে পারে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										তুলসীর পাতাই নয়, তুলসীর বীজও দারুণ উপকারী। তুলসী পাতার মতোই তুলসী বীজও রোগ প্রতিরোধ ক্ষমতা বাড়াতে সাহায্য করে। যেমন- সাধারণ সর্দি এবং ফ্লু জাতীয় সমস্যা থেকেও মুক্তি পেতে এই বীজের জুড়ি মেলা ভার। শুধু তা-ই নয়, পেশীতে টান পড়লেও এই বীজ খেলে আরাম পাওয়া যাবে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										কো-ষ্ঠ-কাঠিন্য প্রতিরোধে: ইসবগুল কোষ্ঠকাঠিন্য প্রতিরোধে দারুণ কাজ করে। এতে উপস্থিত অদ্রবণীয় ফাইবার কোষ্ঠকাঠিন্য রোগীদের মল নরম করে দেয়। ফলে খুব সহজেই ইলিমিনেশন সম্ভব হয়। তাই প্রতিদিন ঘুমানোর আগে ২ চামচ ইসবগুলের ভুসি ও ১ গ্লাস কুসুম গরম দুধ পান করতে পারেন। কেউ যদি রোগটি পুষে রাখেন, তাহলে কোলন ক্যান্সার হওয়ার সম্ভাবনা থাকে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										রক্তে কোলেস্টেরল কমায়: এ ইসবগুল খেলে আমাদের অন্ত্রে একধরনের স্তর তৈরি হয়। যা কোলেস্টেরল শোষণে বাধা দান করে। ফলে আমাদের রক্তে কোলেস্টেরলের পরিমাণ কমে স্বাভাবিক অবস্থায় ফিরে আসে। তাই হৃদরোগীদের জন্য দারুণ একটি খাবার এটি।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										ওজন কমায়: এতে ফাইবার উপস্থিত থাকায় হজম প্রক্রিয়া অনেক ধীরগতিতে হয়। তাই ক্ষুধা লাগে অনেক কম। এটি খেলে ওজন কমানো অনেক সহজ হয়ে যায়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										এই বীজে প্রচুর পরিমাণে ফাইবার থাকে যা কোষ্ঠকাঠিন্য ও বদহজম থেকে মুক্তি পেতে সাহায্য করে। বাচ্চাদের পেট ব্যাথা দূর করতে খুবই উপকারী। হালিম বীজ ফাইবার ও প্রোটিনের ভালো উৎস। ফলে খাবার তৃপ্তিদায়ক হয়ে ওঠে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										হালিম বীজ অ্যানিমিয়া দূর করতে খুবই কার্যকরী। এটি লোহার উচ্চ মাত্রা লাল রক্ত কোষের উৎপাদনকে উৎসাহ দেয় এবং শরীরে হিমোগ্লোবিন এর স্তর বৃদ্ধি করে। ফলে অ্যানিমিয়া প্রকোপ থেকে মুক্তি পাওয়া যায়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										হালিম বীজ আ্যন্টি অক্সিডেন্ট ও ভিটামিন সি সমৃদ্ধ। তাই এটি শরীরকে বিভিন্ন জীবাণু এর সংক্রমণ থেকে রক্ষা করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										জ্বর, সর্দি, গলা ব্যাথা দূর করে- হালিম বীজ আন্টি মাইক্রোবিয়াল বৈশিষ্ট্য যুক্ত হওয়ার জন্য এটি জ্বর সর্দি সহ শ্বাস প্রশ্বাস এর বিভিন্ন সমস্যা দূর করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										মধু শিশুদের হাড়ের গঠন মজবুত করে, দৃষ্টিশক্তি এবং স্মৃতিশক্তি বৃদ্ধি করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										রাতের বেলা দুধের সঙ্গে মধু মিশিয়ে পান করলে আপনার অনিদ্রা দূর করতে সাহায্য করবে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										শারীরিক দূর্বলতা দূরীকরণে মধুর রয়েছে বিশেষ ভূমিকা ৷\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										মধুতে বিদ্যমান অ্যান্টি–অক্সিডেন্ট ত্বকের রং সুন্দর করে এবং তারুণ্যতা বজায়ে রাখতে সহায়তা করে ৷\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										রক্তশূন্যতা ও কো-ষ্ঠ-কাঠিন্য দূর করতে: এতে রয়েছে ভিটামিন বি-কমপ্লেক্স, যা রক্তশূন্যতা ও কো-ষ্ঠ-কাঠিন্য দূর করে।\n									</li>\n						</ul>\n			<h2>১ কেজি ৯০০ টাকা মাত্র</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\"></path></svg>			\n									অর্ডার করতে চাই\n					</a>\n			<h2>আমাদের কাছে কেনো কিনবেন?</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										প্রোডাক্ট হাতে পেয়ে, দেখে,কোয়ালিটি চেক করে পেমেন্টে করার সুবিধা ।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										প্রোডাক্ট পছন্দ না হলে সাথে সাথে রিটার্ন দিতে পারবেন ।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										সারা বাংলাদেশে কুরিয়ারের মাধ্যমে হোম ডেলিভারি পাবেন ।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										যে কোন সময় আমাদের সাথে যোগাযোগ করতে পারবেন ।\n									</li>\n						</ul>\n			<h2><a href=\"tel:01819000000\">যে কোন প্রয়োজনে যোগাযোগ করুন    01819000000</a></h2>		\n													<img width=\"1122\" height=\"1402\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-9-2026-11_23_18-AM.png\" alt=\"\" />													\n			<h2>অর্ডার করতে নিচের ফর্মটি পূরন করুন</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নাম&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">আপনার সম্পূর্ণ ঠিকানা&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"House number and street name\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">আপনার ফোন নাম্বারটি লেখুন&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"2076\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"2079\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780982626\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n		 Copyright © 2024  Busness Name | This website made with ❤️ by <a href=\"https://itgalaxi.com/\" style=\"color:red\"><b> The Smart Way</b></a>','Checkout (Woo)','','inherit','closed','closed','','2079-revision-v1','','','2026-06-09 11:23:46','2026-06-09 05:23:46','','2079','https://hypergrowth.fishgrowth.xyz/?p=2122','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2123','17','2026-06-09 11:24:37','2026-06-09 05:24:37','**ওয়াটার প্লাংটন প্লাস 1 kg ও ডাবল গ্রোথ প্লাস 1 kg** আপনার খামারের সমৃদ্ধি ও বৃদ্ধি নিশ্চিত করতে নিয়ে এলাম অত্যাধুনিক দুটো উন্নতমানের পণ্য – **ওয়াটার প্লাংটন প্লাস 1 kg** এবং **ডাবল গ্রোথ প্লাস 1 kg**। এই প্যাকেজটি কৃষি ও মৎস্যচাষে ব্যবহার করে আপনি পাবেন দ্রুত ফলন বৃদ্ধি এবং স্বাস্থ্যসম্মত ফসল ও মাছ উৎপাদন। --- ### পণ্যের সুবিধা - **ওয়াটার প্লাংটন প্লাস:** জলের মধ্যে প্রাকৃতিক প্লাংটন বৃদ্ধি করে মাছের খাদ্যের যোগান বৃদ্ধি করা হয়। এটি মাছের দ্রুত বৃদ্ধি, রোগপ্রতিরোধ ক্ষমতা বৃদ্ধি এবং খাদ্যের কার্যকর ব্যবহার নিশ্চিত করে। - **ডাবল গ্রোথ প্লাস:** মাটির উর্বরতা বাড়ায় ও উদ্ভিদের বৃদ্ধি ত্বরান্বিত করে। শস্য ও তরিতরকারি ক্ষেত্রে ফলনের পরিমাণ বাড়াতে সহায়তা করে। উদ্ভিদ ও ফসলের স্বাস্থ্যের জন্য অত্যন্ত উপকারী। --- ### ব্যবহার পদ্ধতি - **ওয়াটার প্লাংটন প্লাস:** প্রতি ১০০০ লিটার পানিতে ১০০ গ্রাম পরিমাণ মিশিয়ে প্রয়োগ করুন। সপ্তাহে ২-৩ বার ব্যবহারের মাধ্যমে প্লাংটনের সঠিক বৃদ্ধি নিশ্চিত করুন। - **ডাবল গ্রোথ প্লাস:** বপনের আগে বা গাছের লাগানোর সময় মাটির সাথে মিশিয়ে দিন। প্রতি বিঘায় প্রায় ১-২ কেজি ব্যবহার করতে পারেন। --- ### বিশ্বাসযোগ্যতা ও গুণগত মান - প্রূফড ও বৈজ্ঞানিকভাবে প্রমাণিত ফর্মুলা। - পরিবেশবান্ধব ও রাসায়নিক মুক্ত উপাদান। - কার্যকারিতা শতভাগ নিশ্চিত। - হাজারো কৃষক ও মৎস্য চাষিরা দীর্ঘদিন ধরে নির্ভরতা রাখছেন এই পণ্যগুলোর উপর। - সময়মত ডেলিভারি ও নিরাপদ প্যাকেজিং। --- ### কেনার নির্দেশনা আপনার ফসল ও মাছের উন্নত ভবিষ্যতের জন্য আজই','ওয়াটার প্লাংটন প্লাস 1 kg ও ডাবল গ্রোথ প্লাস 1 kg','','publish','closed','closed','','{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}93{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}af{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}bc{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}be{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}9f{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}be{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}b0-{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}aa{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a7{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}8d{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}b2{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}be{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}82{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}9f{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a8-{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}aa{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a7{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}8d{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}b2{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}be{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}b8-{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}93-{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a1','','','2026-06-10 22:16:30','2026-06-10 16:16:30','','0','https://hypergrowth.fishgrowth.xyz/?post_type=product&#038;p=2123','0','product','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2124','17','2026-06-09 11:25:42','2026-06-09 05:25:42','','ChatGPT Image Jun 9, 2026, 11_25_27 AM','','inherit','closed','closed','','chatgpt-image-jun-9-2026-11_25_27-am','','','2026-06-09 11:25:42','2026-06-09 05:25:42','','2072','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-9-2026-11_25_27-AM.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2125','17','2026-06-09 11:25:55','2026-06-09 05:25:55','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>বিচি মুক্ত সিডলেস খেজুর</h2>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1448\" height=\"1086\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-9-2026-11_25_27-AM.png\" alt=\"\" />													\n			<style>/*! elementor-pro - v3.18.0 - 20-12-2023 */\n.elementor-widget-countdown .elementor-countdown-expire--message{display:none;padding:20px;text-align:center}.elementor-widget-countdown .elementor-countdown-wrapper{flex-direction:row}.elementor-widget-countdown .elementor-countdown-item{padding:20px 0;text-align:center;color:#fff}.elementor-widget-countdown .elementor-countdown-digits,.elementor-widget-countdown .elementor-countdown-label{line-height:1}.elementor-widget-countdown .elementor-countdown-digits{font-size:69px}.elementor-widget-countdown .elementor-countdown-label{font-size:19px}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-wrapper{display:flex;justify-content:center;margin-right:auto;margin-left:auto}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-digits,.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-label{display:block}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-item{flex-basis:0;flex-grow:1}.elementor-widget-countdown.elementor-countdown--label-inline{text-align:center}.elementor-widget-countdown.elementor-countdown--label-inline .elementor-countdown-item{display:inline-block;padding-left:5px;padding-right:5px}</style>		\n			 Days Hours Minutes Seconds		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">		<h3>\n					রেগুলার মূল্য\n					১১০০\n				</h3>\n					<h3>\n					বর্তমান ডিসকাউন্ট মূল্য\n					৯০০\n					টাকা\n					</h3>\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\"></path></svg>			\n									অর্ডার করতে চাই\n					</a>\n			<h2>বিচি মুক্ত সিডলেস খেজুর কেন খাবেন?</h2>		\n			<h2>এই খেজুরে রয়েছে প্রচুর পরিমাণে ফাইবার, আয়রন, ভিটামিন এবং ম্যাগনেসিয়ামসহ নানান পুষ্টিগুণ। এসব খাদ্য উপাদান শরীরে অতীব প্রয়োজনীয় হয়ে ওঠে যখন আপনার বয়স পৌঁছাবে ৩০-এর কোঠায়।</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										বিচি মুক্ত সিডলেস খেজুরে রয়েছে অ্যান্টিঅক্সিডেন্ট যা হার্টের ক্ষতি থেকে রক্ষা করতে সাহায্য করে। এগুলিতে পটাসিয়ামও রয়েছে, যা রক্তচাপ কমাতে সাহায্য করতে পারে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										রক্তস্বল্পতায় ভোগা রোগীরা প্রতিদিন এই খেজুর খেতে পারেন। একজন সুস্থ মানুষের শরীরে যতটুকু আয়রন প্রয়োজন, তার প্রায় ১১ ভাগ পূরণ করে এই খেজুর।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										এই খেজুরে রয়েছে প্রচুর ভিটামিন, খনিজ, ক্যালসিয়াম ও পটাশিয়া। খেজুরে থাকা অ্যান্টিঅক্সিডেন্ট শরীরে রোগ প্রতিরোধের ক্ষমতা বাড়ায়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										বিচি মুক্ত সিডলেস খেজুরের উচ্চ ফাইবার উপাদান হজমশক্তি উন্নত করতে এবং কোষ্ঠকাঠিন্য প্রতিরোধ করতে সহায়তা করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										বিচি মুক্ত সিডলেস খেজুর প্রাকৃতিক শর্করার একটি ভালো উৎস, যা দ্রুত শক্তি বৃদ্ধি করতে পারে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										প্রতিটি খেজুরে রয়েছে ২০ থেকে ২৫ মিলিগ্রাম ম্যাগনেসিয়াম, যা উচ্চ রক্তচাপ কমাতে সাহায্য করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										কোষ্ঠকাঠিন্যের সমস্যায় রাতে পানিতে খেজুর ভিজিয়ে রাখুন। পর দিন সকালে খেজুর ভেজানো পানি পান করুন। দূর হবে কোষ্ঠকাঠিন্য।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										এগুলি ফাইবারের একটি ভাল উত্স, যা আপনাকে খাওয়ার পরে পূর্ণ এবং তৃপ্ত বোধ করতে সহায়তা করতে পারে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										বিচি মুক্ত সিডলেস খেজুরে ক্যালসিয়াম ও ম্যাগনেসিয়াম থাকে যা হাড় ও দাঁতের স্বাস্থ্যের জন্য গুরুত্বপূর্ণ।\n									</li>\n						</ul>\n			<h2>১ কেজি ৯০০ টাকা মাত্র</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.12 301.319l47.273-208C578.806 78.301 567.391 64 551.99 64H159.208l-9.166-44.81C147.758 8.021 137.93 0 126.529 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24h69.883l70.248 343.435C147.325 417.1 136 435.222 136 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-15.674-6.447-29.835-16.824-40h209.647C430.447 426.165 424 440.326 424 456c0 30.928 25.072 56 56 56s56-25.072 56-56c0-22.172-12.888-41.332-31.579-50.405l5.517-24.276c3.413-15.018-8.002-29.319-23.403-29.319H218.117l-6.545-32h293.145c11.206 0 20.92-7.754 23.403-18.681z\"></path></svg>			\n									অর্ডার করতে চাই\n					</a>\n			<h2>আমাদের কাছে কেনো কিনবেন?</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										আমরাই দিচ্ছি এই সীজনের ফ্রেশ গাছপাকা সিডলেস খেজুর \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										আমাদের খেজুর এ কোনো পোকা পাবেন না ইনশাআল্লাহ \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										অর্ডার  করতে  আপনাকে অগ্রিম ১ টাকাও পেমেন্ট করতে হবে না।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										সারা বাংলাদেশে ক্যাশ অন হোম ডেলিভারী পাবেন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										পণ্য হাতে পাওয়ার পর প্রয়োজনে খেয়ে রিসিভ করতে পারবেন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"></path></svg>						\n										আমাদের কথা মত প্রোডাক্ট না পেলে সাথে সাথে রির্টান সুবিধা থাকছে।\n									</li>\n						</ul>\n			<h2><a href=\"tel:01819000000\">যে কোন প্রয়োজনে যোগাযোগ করুন    01819000000</a></h2>		\n			<h2>অর্ডার করতে নিচের ফর্মটি পূরন করুন</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<ul role=\"alert\">\n			<li>\n			No product is selected. Please select products from the  checkout meta settings   to continue.		</li>\n	</ul>\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নাম&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">আপনার সম্পূর্ণ ঠিকানা&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"House number and street name\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">আপনার ফোন নাম্বারটি লেখুন&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"2069\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"2072\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780982755\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n													<img width=\"1448\" height=\"1086\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-9-2026-11_25_27-AM.png\" alt=\"\" />													\n		 Copyright © 2024  Busness Name | This website made with ❤️ by <a href=\"https://itgalaxi.com/\" style=\"color:red\"><b> The Smart Way</b></a>','Checkout (Woo)','','inherit','closed','closed','','2072-revision-v1','','','2026-06-09 11:25:55','2026-06-09 05:25:55','','2072','https://hypergrowth.fishgrowth.xyz/?p=2125','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2126','17','2026-06-09 12:05:11','2026-06-09 06:05:11','','c5ce835e-4872-4d7f-a060-1717ee012280','','inherit','closed','closed','','c5ce835e-4872-4d7f-a060-1717ee012280','','','2026-06-09 12:05:11','2026-06-09 06:05:11','','2053','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/c5ce835e-4872-4d7f-a060-1717ee012280.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2127','17','2026-06-09 12:05:41','2026-06-09 06:05:41','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Rice Skin Beauty Serum 15ML</h2>		\n		<p>ব্রনের কারনে ত্বকে গর্তের মতো হয়, আর একে pores বলে। আর এই pores দূর করতে সবচেয়ে বেস্ট হলো Rice Serum. এটা শুধু pores remove করে না, স্কিনটাইট ও গ্লোয়িং করে Damage Skin Repair করে।</p>		\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"768\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/c5ce835e-4872-4d7f-a060-1717ee012280.png\" alt=\"\" />													\n		<p>ব্রনের কারনে ত্বকে গর্তের মতো হয়ে, আর একে pores বলে। আর এই pores দূর করতে সবচেয়ে Best হলো Rice Serum. এটি ছেলে মেয়ে সবাই ব্যবহার করতে পারবে। কোণ প্রকার সাইড ইফেক্ট নেই।</p>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">		<h3>\n					মাত্র ৭*দি*নে চেহারায় কমবে\n					৫*বছ*র\n				</h3>\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>রাইস সিরাম কেন ব্যবহার করবেন?</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										আপনার ত্বক ফর্সা,উজ্জল,গ্লোয়িং করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										ত্বকের পোর মিনিমাইজ করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										ত্বক মসৃণ করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										ত্বকের কালো দাগ দূর করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										ত্বকে পুষ্টি যোগায়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										ড্রাই ত্বক ময়েশ্চারাইজ করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										কোরিয়ান মেয়েদের মত স্কিনকে গ্লাসস্ক্রিন করবে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										সারাদিন আপনার ত্বককে টানটান রাখে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										সূর্যের ক্ষতিকর প্রভাব থেকে ত্বক রক্ষা করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										ত্বক প্রদাহ থেকে বাচায়।\n									</li>\n						</ul>\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>ব্যবহারের পদ্ধতি</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M50.75 333.25c-12 12-18.75 28.28-18.75 45.26V424L0 480l32 32 56-32h45.49c16.97 0 33.25-6.74 45.25-18.74l126.64-126.62-128-128L50.75 333.25zM483.88 28.12c-37.47-37.5-98.28-37.5-135.75 0l-77.09 77.09-13.1-13.1c-9.44-9.44-24.65-9.31-33.94 0l-40.97 40.97c-9.37 9.37-9.37 24.57 0 33.94l161.94 161.94c9.44 9.44 24.65 9.31 33.94 0L419.88 288c9.37-9.37 9.37-24.57 0-33.94l-13.1-13.1 77.09-77.09c37.51-37.48 37.51-98.26.01-135.75z\"></path></svg>						\n										সিরামের ২/৩ ফোঁটা হাতে নিয়ে আঙ্গুল দিয়ে হালকা Dabbing motion এ massage করবেন।\n									</li>\n						</ul>\n													<img width=\"1024\" height=\"768\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/c5ce835e-4872-4d7f-a060-1717ee012280.png\" alt=\"\" />													\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>অর্ডার করতে নিচের ফর্মটি সঠিক ভাবে পুরন করুন।</h2>		\n						<a href=\"tel:01819000000\">\n					<h3>\n					ফোনে অর্ডার করুন: \n					01819000000\n				</h3>\n		</a>		\n<!-- CHECKOUT SHORTCODE -->\n<ul role=\"alert\">\n			<li>\n			No product is selected. Please select products from the  checkout meta settings   to continue.		</li>\n	</ul>\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নাম&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">আপনার সম্পূর্ণ ঠিকানা&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"House number and street name\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">আপনার ফোন নাম্বার&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"2050\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"2053\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780985141\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n			<h2> Copyright © 2024  Busness Name | This website made with ❤️ by <a href=\"https://itgalaxi.com/\" style=\"color:red\"><b> The Smart Way</b></a></h2>','Rice Skin Beauty Serum','','inherit','closed','closed','','2053-revision-v1','','','2026-06-09 12:05:41','2026-06-09 06:05:41','','2053','https://hypergrowth.fishgrowth.xyz/?p=2127','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2128','17','2026-06-09 12:06:57','2026-06-09 06:06:57','\"\"','Thank You (Woo)','','inherit','closed','closed','','78-revision-v1','','','2026-06-09 12:06:57','2026-06-09 06:06:57','','78','https://hypergrowth.fishgrowth.xyz/?p=2128','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2129','17','2026-06-09 12:09:24','2026-06-09 06:09:24','','1aa282a8-e97b-45cb-9fe4-c4e7411a5986','','inherit','closed','closed','','1aa282a8-e97b-45cb-9fe4-c4e7411a5986','','','2026-06-09 12:09:24','2026-06-09 06:09:24','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/1aa282a8-e97b-45cb-9fe4-c4e7411a5986.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2130','17','2026-06-09 12:13:35','2026-06-09 06:13:35','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1122\" height=\"1402\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/1aa282a8-e97b-45cb-9fe4-c4e7411a5986.png\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>সজনে পাতার গুড়া  আপনি ও আপনার শিশুর জন্য “সুপারফুড”</h2>		\n			<h2>সজনে পাতা একটা সুপারফুড, এটিকে পুষ্টির আধারও বলা হয়। এটা হরমোন ব্যালেন্স, ডাইজেশন ও মেটাবলিজমে কাজ করে থাকে। এটা স্কিন ও চুলেও কাজ করে। এছাড়াও সজনে পাতার অনেক গুন। </h2>		\n			<a href=\"#order\">\n									অডার করতে চাই\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-9-2026-11_23_18-AM.png\" alt=\"ChatGPT Image Jun 9, 2026, 11_23_18 AM\" /></figure><figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/1aa282a8-e97b-45cb-9fe4-c4e7411a5986.png\" alt=\"1aa282a8-e97b-45cb-9fe4-c4e7411a5986\" /></figure>			\n						<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>					\n						<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>					\n			<h2>সজনে পাতার উপকারিতা</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										শিশুদের অপুষ্টি দূর করে \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										স্তন্যদানকারী মায়েদের বুকের দুধ বৃদ্ধি করে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										উচ্চ রক্তচাপ নিয়ন্ত্রণে রাখে \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										খাবারের রুচি ফেরায়\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										অ্যানিমিয়া দূর করে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										ডায়াবেটিস নিয়ন্ত্রণে রাখে \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										অন্ধত্ব দূর করতে সহায়তা করে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										বয়সের ছাপ দূর করে\n									</li>\n						</ul>\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										ক্যান্সার প্রতিরোধে সাহায্য করে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										 হার্ট ভালো রাখে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										ওজন কমাতে সহায়তা করে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										কিডনি ও লিভার ভালো রাখে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										রোগ প্রতিরোধ ক্ষমতা বৃদ্ধি করে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										গ্যাস্ট্রিক নিয়ন্ত্রণে রাখে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										চুল পড়া বন্ধ করে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										মুখের কালো দাগ ও মেস্তা দূর করে \n									</li>\n						</ul>\n			<h2>আপনার নিজের অথবা আশেপাশে কোথাও যদি সজনে গাছ থাকে তাহলে সেখান থেকে পাতা সংগ্রহ করে নিয়মিত আপনার পরিবারের খাদ্য তালিকায় এটা রাখা প্রয়োজন। সেটা সম্ভব না হলে সজনে পাতার গুড়া সংগ্রহ করে তা খেতে পারেন। আমাদের কাছে পাবেন সম্পূর্ণ প্রাকৃতিক ও বাছাইকৃত সজনে পাতার গুড়া। </h2>		\n													<img width=\"1122\" height=\"1402\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/1aa282a8-e97b-45cb-9fe4-c4e7411a5986.png\" alt=\"\" />													\n			<a href=\"#order\">\n									অডার করতে চাই\n					</a>\n			<h2>কিভাবে খাবেন ও শিশুদেরও খাওয়াবেন  </h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\"></path></svg>						\n										ফল অথবা ফলের জুস এর সাথে মিক্স করে খাওয়াতে পারেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\"></path></svg>						\n										ডাল অথবা রান্না করা যে কোন খাবারের সাথে মিক্স করে দিতে পারেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\"></path></svg>						\n										ভর্তা বানিয়ে খেতে পারেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\"></path></svg>						\n										সরাসরি জুস করে খেতে পারেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\"></path></svg>						\n										মাছ, মাংস অথবা যে কোন তরকারীতে মিক্স করতে পারেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\"></path></svg>						\n										নুডুলস এর সাথে মিক্স করে খাওয়াতে পারেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\"></path></svg>						\n										মধু দিয়ে মিক্স করে খাওয়াতে পারেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\"></path></svg>						\n										ডালের বড়ার সাথে মিক্স করে দিতে পারেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M428.8 137.6h-86.177a115.52 115.52 0 0 0 2.176-22.4c0-47.914-35.072-83.2-92-83.2-45.314 0-57.002 48.537-75.707 78.784-7.735 12.413-16.994 23.317-25.851 33.253l-.131.146-.129.148C135.662 161.807 127.764 168 120.8 168h-2.679c-5.747-4.952-13.536-8-22.12-8H32c-17.673 0-32 12.894-32 28.8v230.4C0 435.106 14.327 448 32 448h64c8.584 0 16.373-3.048 22.12-8h2.679c28.688 0 67.137 40 127.2 40h21.299c62.542 0 98.8-38.658 99.94-91.145 12.482-17.813 18.491-40.785 15.985-62.791A93.148 93.148 0 0 0 393.152 304H428.8c45.435 0 83.2-37.584 83.2-83.2 0-45.099-38.101-83.2-83.2-83.2zm0 118.4h-91.026c12.837 14.669 14.415 42.825-4.95 61.05 11.227 19.646 1.687 45.624-12.925 53.625 6.524 39.128-10.076 61.325-50.6 61.325H248c-45.491 0-77.21-35.913-120-39.676V215.571c25.239-2.964 42.966-21.222 59.075-39.596 11.275-12.65 21.725-25.3 30.799-39.875C232.355 112.712 244.006 80 252.8 80c23.375 0 44 8.8 44 35.2 0 35.2-26.4 53.075-26.4 70.4h158.4c18.425 0 35.2 16.5 35.2 35.2 0 18.975-16.225 35.2-35.2 35.2zM88 384c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z\"></path></svg>						\n										রুটি অথবা চাপটি বানানোর সময় মিক্স করতে পারেন\n									</li>\n						</ul>\n			<h2>প্রয়োজনে কল করুন </h2>		\n			<a href=\"tel:01819000000\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>			\n									01819000000\n					</a>\n			<h2>আস্থা রাখুন আস্থায় থাকুন</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										আমাদের কাছে পাবেন সম্পূর্ণ প্রাকৃতিক ও বাছাইকৃত পাতার গুড়া\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										পণ্য হাতে পেয়ে মূল্য পরিশোধ করতে পারবেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										পছন্দ না হলে ফেরত বা পরিবর্তন করতে পারবেন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										সারাদেশে ক্যাশ অন ডেলিভারিতে পণ্য সংগ্রহ করতে পারবেন \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										খাওয়ার নিয়মসহ রেসিপি অনলাইনে প্রদান করা হবে \n									</li>\n						</ul>\n			<h2>অর্ডার করতে নিচের ফর্মটি পূরণ করুন</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<ul role=\"alert\">\n			<li>\n			No product is selected. Please select products from the  checkout meta settings   to continue.		</li>\n	</ul>\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নাম&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">আপনার সম্পূর্ণ ঠিকানা&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"House number and street name\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">আপনার ফোন নাম্বার&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"2015\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"2018\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780985615\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n			<h2> Copyright © 2024  Busness Name | This website made with ❤️ by <a href=\"https://itgalaxi.com/\" style=\"color:red\"><b> The Smart Way</b></a></h2>','Checkout (Woo)','','inherit','closed','closed','','2018-revision-v1','','','2026-06-09 12:13:35','2026-06-09 06:13:35','','2018','https://hypergrowth.fishgrowth.xyz/?p=2130','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2131','17','2026-06-09 12:14:08','2026-06-09 06:14:08','','','','draft','closed','closed','','','','','2026-06-09 12:14:08','2026-06-09 06:14:08','','0','https://hypergrowth.fishgrowth.xyz/?post_type=shop_order_placehold&p=2131','0','shop_order_placehold','','1');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2132','17','2026-06-09 12:14:36','2026-06-09 06:14:36','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>			\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>ধন্যবাদ</h1>		\n			<h1>অভিনন্দন !!! আপনার অর্ডারটি সফলভাবে গৃহীত হয়েছে।</h1>		\n			<h1>খুব শিগ্রই পন্য ডেলিভারী জন্য আপনার সাথে যোগাযোগ করা হবে</h1>		\n						<p>Thank you. Your order has been received.</p>\n						<ul>\n				<li>\n					Order number:					<strong>2131</strong>\n				</li>\n				<li>\n					Date:						<strong>June 9, 2026</strong>\n									</li>\n									<li>\n						Email:						<strong>admin_codex@example.local</strong>\n					</li>\n				<li>\n					Total:					<strong><bdi>&#2547;&nbsp;900</bdi></strong>\n				</li>\n									<li>\n						Payment method:													<strong>Cash on delivery</strong>\n											</li>\n			</ul>\n							<section>\n							<h2>Order details</h2>\n				<table>\n					<thead>\n				<tr>\n					<th>Product</th>\n					<th>Total</th>\n				</tr>\n			</thead>\n					<tbody>\n				<tr>\n	<td>\n		test Product <strong>&times;&nbsp;1</strong>	</td>\n	<td>\n		<bdi>&#2547;&nbsp;900</bdi>	</td>\n</tr>\n				</tbody>\n				<tfoot>\n									<tr>\n						<th scope=\"row\">Subtotal:</th>\n													<td>&#2547;&nbsp;900</td>\n					</tr>\n										<tr>\n						<th scope=\"row\">Shipping:</th>\n													<td>Free shipping</td>\n					</tr>\n										<tr>\n						<th scope=\"row\">Payment method:</th>\n													<td>Cash on delivery</td>\n					</tr>\n										<tr>\n						<th scope=\"row\">Total:</th>\n													<td>&#2547;&nbsp;900</td>\n					</tr>\n													</tbody>\n				<tfoot>\n							</tbody>\n		</table>\n			</section>\n<section>\n	<section>\n	<h2>Billing address</h2>\n	<address>\n		Md.A<br />Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna<br />Dhaka<br />Barguna\n					<p>01713318648</p>\n					<p>admin_codex@example.local</p>\n			</address>\n		<!-- /.col-1 -->\n			<h2>Shipping address</h2>\n			<address>\n				Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna<br />Dhaka<br />Barguna\n							</address>\n		<!-- /.col-2 -->\n	</section><!-- /.col2-set -->\n</section>\n		 Copyright © 2024  Busness Name | This website made with ❤️ by <a href=\"https://itgalaxi.com/\" style=\"color:red\"><b> The Smart Way</b></a>','Thank You (Woo)','','inherit','closed','closed','','2030-revision-v1','','','2026-06-09 12:14:36','2026-06-09 06:14:36','','2030','https://hypergrowth.fishgrowth.xyz/?p=2132','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2133','17','2026-06-09 12:17:42','2026-06-09 06:17:42','','6bc023ee-89a7-49f0-9c6d-b49eee2fb990','','inherit','closed','closed','','6bc023ee-89a7-49f0-9c6d-b49eee2fb990','','','2026-06-09 12:17:42','2026-06-09 06:17:42','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2134','17','2026-06-09 12:17:44','2026-06-09 06:17:44','','e956d34a-1cbf-46e3-a049-ab86322c876a','','inherit','closed','closed','','e956d34a-1cbf-46e3-a049-ab86322c876a','','','2026-06-09 12:17:44','2026-06-09 06:17:44','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/e956d34a-1cbf-46e3-a049-ab86322c876a.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2135','17','2026-06-09 12:19:00','2026-06-09 06:19:00','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1448\" height=\"1086\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Rosemary Mint Scalp & Hair Strengthening Oil</h2>		\n		<p><strong>Rosemary:</strong> Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\" alt=\"6bc023ee-89a7-49f0-9c6d-b49eee2fb990\" /></figure><figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/e956d34a-1cbf-46e3-a049-ab86322c876a.png\" alt=\"e956d34a-1cbf-46e3-a049-ab86322c876a\" /></figure>			\n													<img width=\"819\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/e956d34a-1cbf-46e3-a049-ab86322c876a.png\" alt=\"\" />													\n			<h2>Use for daily hair care or specialized scalp treatments</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n													<img width=\"1024\" height=\"768\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\" alt=\"\" />													\n			<h2>Features more than 30 essential oils and extracts\n</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n													<img width=\"819\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/e956d34a-1cbf-46e3-a049-ab86322c876a.png\" alt=\"\" />													\n			<h2>Helps improve length retention\n</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n			<h2>Call if necessary or click the button below to call</h2>		\n			<a href=\"https://wa.me/+8801819000000\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\"></path></svg>			\n									+971 50 278 0363\n					</a>\n			<h2>Why take from us?</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} authentic product\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Our products will stop your hair loss\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Helps in hair growth\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Infused with Biotin\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Features more than 30 essential oils and extracts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Delivery is free all over the UAE\n									</li>\n						</ul>\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n			<h2>Key Ingredients:\n</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										Rosemary: Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										Mint: Invigorates scalp\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										Biotin: Nourishes hair follicles, improving strength, and elasticity. Glycine Soja (Soybean) Oil, Ricinus Communis (Castor) Seed Oil, Rosmarinus Officinalis (Rosemary) Leaf Oil, Simmondsia Chinensis (Jojoba) Seed Oil, Mentha Piperita (Peppermint) Oil, Eucalyptus Globolus (Eucalyptus) Leaf Oil, Menthol, Melalueca Alternifolia (Tea Tree) Leaf Oil, Cocos Nucifera (Coconut) Oil, Equisetum Arvense (Horsetail) Extract, Aloe Barbadensis Extract, Lavandula Angustifolia (Lavender) Oil, Triticum Vulgare (Wheat) Germ Oil, Carthamus Tinctorius (Safflower) Seed Oil, Oenothera Biennis (Evening Primrose) Oil, Vitis Vinifera (Grape) Seed Oil, Benzyl Nicotinate, Prunus Amygdalus Dulcis (Sweet Almond) Oil, Oryza Sativa (Rice) Bran Oil, Tocopheryl Acetate, Biotin, Arctium Lappa (Burdock) Root Extract, Glycerin, Apium Graveolens (Celery) Seed Extract, Cholecalciferol (Vitamin D), Ascorbic Acid, Ocimum, Basilicum (Basil) Oil, Pogostemon Cablin (Patchouli) Oil, Salvia Officinalis (Sage) Oil, Silica, Urtica Dioica (Nettle) Extract\n									</li>\n						</ul>\n			<h2>Reviews of respected customers</h2>		\n								<figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/e956d34a-1cbf-46e3-a049-ab86322c876a.png\" alt=\"e956d34a-1cbf-46e3-a049-ab86322c876a\" /></figure><figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\" alt=\"6bc023ee-89a7-49f0-9c6d-b49eee2fb990\" /></figure>			\n						<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>					\n						<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>					\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n			<h2>Fill the form below to order</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">Your Name&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"Your Name\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">City &amp; Area&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"City &amp; Area\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">Your phone number&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"Your phone number\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"1996\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"1999\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780985940\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n			<h2>Delivery is free all over the UAE</h2>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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>		\n		<p>Copyright © 2024 Your Busness Name | This website made with ❤️ by itgalaxi</p>','Checkout (Woo)','','inherit','closed','closed','','1999-revision-v1','','','2026-06-09 12:19:00','2026-06-09 06:19:00','','1999','https://hypergrowth.fishgrowth.xyz/?p=2135','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2136','17','2026-06-09 12:19:45','2026-06-09 06:19:45','','ae207ae6-4f6e-4149-ac5c-901975502708','','inherit','closed','closed','','ae207ae6-4f6e-4149-ac5c-901975502708','','','2026-06-09 12:19:45','2026-06-09 06:19:45','','1995','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ae207ae6-4f6e-4149-ac5c-901975502708.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2138','17','2026-06-09 12:23:53','2026-06-09 06:23:53','','a1ff130e-64cc-495f-bbb2-34ee8b7c01ed','','inherit','closed','closed','','a1ff130e-64cc-495f-bbb2-34ee8b7c01ed','','','2026-06-09 12:23:53','2026-06-09 06:23:53','','1999','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/a1ff130e-64cc-495f-bbb2-34ee8b7c01ed.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2139','17','2026-06-09 12:24:09','2026-06-09 06:24:09','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1448\" height=\"1086\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Rosemary Mint Scalp & Hair Strengthening Oil</h2>		\n		<p><strong>Rosemary:</strong> Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\" alt=\"6bc023ee-89a7-49f0-9c6d-b49eee2fb990\" /></figure><figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/e956d34a-1cbf-46e3-a049-ab86322c876a.png\" alt=\"e956d34a-1cbf-46e3-a049-ab86322c876a\" /></figure>			\n													<img width=\"819\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/e956d34a-1cbf-46e3-a049-ab86322c876a.png\" alt=\"\" />													\n			<h2>Use for daily hair care or specialized scalp treatments</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n													<img width=\"1024\" height=\"768\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\" alt=\"\" />													\n			<h2>Features more than 30 essential oils and extracts\n</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n													<img width=\"819\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/e956d34a-1cbf-46e3-a049-ab86322c876a.png\" alt=\"\" />													\n			<h2>Helps improve length retention\n</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n			<h2>Call if necessary or click the button below to call</h2>		\n			<a href=\"https://wa.me/+8801819000000\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\"></path></svg>			\n									+971 50 278 0363\n					</a>\n			<h2>Why take from us?</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} authentic product\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Our products will stop your hair loss\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Helps in hair growth\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Infused with Biotin\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Features more than 30 essential oils and extracts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Delivery is free all over the UAE\n									</li>\n						</ul>\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n			<h2>Key Ingredients:\n</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										Rosemary: Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										Mint: Invigorates scalp\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										Biotin: Nourishes hair follicles, improving strength, and elasticity. Glycine Soja (Soybean) Oil, Ricinus Communis (Castor) Seed Oil, Rosmarinus Officinalis (Rosemary) Leaf Oil, Simmondsia Chinensis (Jojoba) Seed Oil, Mentha Piperita (Peppermint) Oil, Eucalyptus Globolus (Eucalyptus) Leaf Oil, Menthol, Melalueca Alternifolia (Tea Tree) Leaf Oil, Cocos Nucifera (Coconut) Oil, Equisetum Arvense (Horsetail) Extract, Aloe Barbadensis Extract, Lavandula Angustifolia (Lavender) Oil, Triticum Vulgare (Wheat) Germ Oil, Carthamus Tinctorius (Safflower) Seed Oil, Oenothera Biennis (Evening Primrose) Oil, Vitis Vinifera (Grape) Seed Oil, Benzyl Nicotinate, Prunus Amygdalus Dulcis (Sweet Almond) Oil, Oryza Sativa (Rice) Bran Oil, Tocopheryl Acetate, Biotin, Arctium Lappa (Burdock) Root Extract, Glycerin, Apium Graveolens (Celery) Seed Extract, Cholecalciferol (Vitamin D), Ascorbic Acid, Ocimum, Basilicum (Basil) Oil, Pogostemon Cablin (Patchouli) Oil, Salvia Officinalis (Sage) Oil, Silica, Urtica Dioica (Nettle) Extract\n									</li>\n						</ul>\n			<h2>Reviews of respected customers</h2>		\n								<figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/a1ff130e-64cc-495f-bbb2-34ee8b7c01ed.png\" alt=\"a1ff130e-64cc-495f-bbb2-34ee8b7c01ed\" /></figure>			\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n			<h2>Fill the form below to order</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n	<h3 id=\"your_products_heading\"> Determine the quantity </h3>\n	<input type=\"radio\"\n	id=\"wcf-item-product-2123\"\n	name=\"wcf-single-sel\"\n	value=\"2123\"\n	>\n	<label for=\"wcf-item-product-2123\"></label>\n	<img width=\"300\" height=\"232\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/01.png\" alt=\"\" />\ntest Product1\n		&minus;\n		<input autocomplete=\"off\" type=\"number\" value=\"1\" step=\"1\" min=\"1\" name=\"wcf_qty_selection\" placeholder=\"1\" data-sale-limit=\"false\"  title=\"\"  >\n		&plus;\n	&#2547;&nbsp;900\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">Your Name&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"Your Name\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><input type=\"hidden\" id=\"billing_country\" name=\"billing_country\" value=\"BD\" /> <p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">City &amp; Area&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"City &amp; Area\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><input type=\"hidden\" id=\"billing_city\" name=\"billing_city\" value=\"Dhaka\" /> <input type=\"hidden\" id=\"billing_state\" name=\"billing_state\" value=\"BD-02\" /> <p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">Your phone number&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"Your phone number\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"1996\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"1999\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780986249\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n			<h2>Delivery is free all over the UAE</h2>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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>		\n		<p>Copyright © 2024 Your Busness Name | This website made with ❤️ by itgalaxi</p>','Checkout (Woo)','','inherit','closed','closed','','1999-revision-v1','','','2026-06-09 12:24:09','2026-06-09 06:24:09','','1999','https://hypergrowth.fishgrowth.xyz/?p=2139','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2140','17','2026-06-09 12:27:36','2026-06-09 06:27:36','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"819\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ae207ae6-4f6e-4149-ac5c-901975502708.png\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>১০০০+ মানুষের চুল পাকা, চুল পড়া, চুলে খুশকি সমস্যার সমাধান করেছে \"মেহেদী হেয়ার প্যাক\"\n</h2>		\n		<p>চুলের সব সমস্যার সমাধান রয়েছে প্রাকৃতিক মেহেদি মিক্সিং হেয়ার প্যাকে</p>		\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n													<img width=\"819\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ae207ae6-4f6e-4149-ac5c-901975502708.png\" alt=\"\" />													\n			<h2>রাসূলুল্লাহ (সা.) বলেন, যে ব্যক্তি চুলে কালো কলপ ব্যবহার করবে আল্লাহতায়ালা\nকিয়ামতের দিন তার চেহারা কালো করে দিবেন।</h2>		\n			<h5>তুহফাতুল আহওয়াযি: ৫/৩৫৫</h5>		\n			<h2>এই মেহেদি হেয়ার প্যাক ব্যবহার করলে চুলের যে সমস্যার সমাধান হবে</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										চুল পাকা বন্ধ করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										চুল গোড়া শক্তিশালি করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										চুল হেলদি করে।\n									</li>\n						</ul>\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										চুলে মেহেদি দিলে ভালো ঘুম হয়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										চুল সাইনি, সিল্কি করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										অর্ডার করতে ক্লিক করুন\n									</li>\n						</ul>\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>চুল পাকা, চুল পড়া, চুলের খুশকি, চুল রুক্ষ হওয়ার সব সমস্যার যদি প্রাকৃতিক ভাবে সমাধান করতে চান? কোন পার্শ্ব-প্রতিক্রিয়া ছাড়া তাহলে এখনি অর্ডার করুন প্রাকৃতিক মেহেদি মিক্সিং হেয়ার প্যাক।\n</h2>		\n													<img width=\"819\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ae207ae6-4f6e-4149-ac5c-901975502708.png\" alt=\"\" />													\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>কেন আপনার চুলে কলফ ব্যবহার না করে মেহেদি ব্যবহার করা উচিত?</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										কলফ করলে চুল ঝড়ে পড়ে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										কলফ করলে চুল রুক্ষ শুষ্ক হয়ে যায়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										কলফ করলে চুল আরো বেশি পরিমানে পেকে যায়।\n									</li>\n						</ul>\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										চুলে মেহেদি দিলে ভালো ঘুম হয়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										চুল সাইনি, সিল্কি করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										অর্ডার করতে ক্লিক করুন\n									</li>\n						</ul>\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>আমাদের থেকে কেন নিবেন?</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										আমরাই প্রথম বাংলাদেশ সমর্পুন ন্যাচারাল গাছের মেহেদি দিচ্ছি\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										আমাদের মেহেদী পাতা গুড়াতে  কোন কেমিক্যাল নেই\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										আমরা শুধু মেহেদি পাতায় দিচ্ছি না এর সাথে প্রাকৃতিক শিকাকাই, আমলকি গুড়া মিক্সিং করে  দিচ্ছি\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										আমাদের হেয়ার প্যাকটি নিরাপদ হালাল এবং শতশত কাস্টমার এই হেয়ার প্যাক ব্যবহার করে উপকার পাচ্ছে \n									</li>\n						</ul>\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>শত শত মানুষের উপকার পাওয়ার রিভিউ আমাদের ফেসবুক পেইজে আছে। তার মধ্যে থেকে কিছু রিভিউ এখানে দেয়া হলঃ</h2>		\n													<img width=\"1024\" height=\"683\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/a1ff130e-64cc-495f-bbb2-34ee8b7c01ed.png\" alt=\"\" />													\n			<a href=\"#order\">\n									অর্ডার করতে চাই\n					</a>\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">		<h3>\n					৪০০ গ্রামের রেগুলার মূল্য\n					১২০০\n					টাকা\n					</h3>\n			<h2>অফার মূল্য ৮৫০ টাকা</h2>		\n			<h2>(ফ্রি হোম ডেলিভারি!!)</h2>		\n			<h2>অর্ডার করতে নিচের ফর্মে আপনার নাম, পূর্ণ ঠিকানা এবং মোবাইল নাম্বার লিখুন। <br>তারপর নিচে Order Now বাটনে ক্লিক করে আপনার অর্ডারটি সম্পন্ন করুন।</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নাম&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><input type=\"hidden\" id=\"billing_country\" name=\"billing_country\" value=\"BD\" /> <p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">ঠিকানা&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_billing__________new_field_field\" data-priority=\"50\"><label for=\"billing_billing__________new_field\">নতুন ফিল্ড&nbsp;(optional)</label><input type=\"text\" name=\"billing_billing__________new_field\" id=\"billing_billing__________new_field\" placeholder=\"\"  value=\"\"  /></p><input type=\"hidden\" id=\"billing_city\" name=\"billing_city\" value=\"Dhaka\" /> <input type=\"hidden\" id=\"billing_state\" name=\"billing_state\" value=\"BD-02\" /> <p id=\"billing_postcode_field\" data-priority=\"90\"><label for=\"billing_postcode\">Postcode / ZIP&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_postcode\" id=\"billing_postcode\" placeholder=\"\"  value=\"8700\" autocomplete=\"postal-code\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">মোবাইল নাম্বার&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"1992\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"1995\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780986456\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n			<h2> Copyright © 2024  Busness Name | This website made with ❤️ by <a href=\"https://itgalaxi.com/\" style=\"color:red\"><b> The Smart Way</b></a></h2>','Checkout (Woo)','','inherit','closed','closed','','1995-revision-v1','','','2026-06-09 12:27:36','2026-06-09 06:27:36','','1995','https://hypergrowth.fishgrowth.xyz/?p=2140','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2141','17','2026-06-09 12:28:35','2026-06-09 06:28:35','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1448\" height=\"1086\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Rosemary Mint Scalp & Hair Strengthening Oil</h2>		\n		<p><strong>Rosemary:</strong> Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\" alt=\"6bc023ee-89a7-49f0-9c6d-b49eee2fb990\" /></figure><figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/e956d34a-1cbf-46e3-a049-ab86322c876a.png\" alt=\"e956d34a-1cbf-46e3-a049-ab86322c876a\" /></figure>			\n													<img width=\"819\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/e956d34a-1cbf-46e3-a049-ab86322c876a.png\" alt=\"\" />													\n			<h2>Use for daily hair care or specialized scalp treatments</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n													<img width=\"1024\" height=\"768\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\" alt=\"\" />													\n			<h2>Features more than 30 essential oils and extracts\n</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n													<img width=\"819\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/e956d34a-1cbf-46e3-a049-ab86322c876a.png\" alt=\"\" />													\n			<h2>Helps improve length retention\n</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n			<h2>Call if necessary or click the button below to call</h2>		\n			<a href=\"https://wa.me/+8801819000000\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\"></path></svg>			\n									+971 50 278 0363\n					</a>\n			<h2>Why take from us?</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} authentic product\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Our products will stop your hair loss\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Helps in hair growth\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Infused with Biotin\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Features more than 30 essential oils and extracts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										Delivery is free all over the UAE\n									</li>\n						</ul>\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n			<h2>Key Ingredients:\n</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										Rosemary: Its antioxidant, anti-inflammatory and anti-fungal properties are known to improve scalp health and strengthen hair.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										Mint: Invigorates scalp\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										Biotin: Nourishes hair follicles, improving strength, and elasticity. Glycine Soja (Soybean) Oil, Ricinus Communis (Castor) Seed Oil, Rosmarinus Officinalis (Rosemary) Leaf Oil, Simmondsia Chinensis (Jojoba) Seed Oil, Mentha Piperita (Peppermint) Oil, Eucalyptus Globolus (Eucalyptus) Leaf Oil, Menthol, Melalueca Alternifolia (Tea Tree) Leaf Oil, Cocos Nucifera (Coconut) Oil, Equisetum Arvense (Horsetail) Extract, Aloe Barbadensis Extract, Lavandula Angustifolia (Lavender) Oil, Triticum Vulgare (Wheat) Germ Oil, Carthamus Tinctorius (Safflower) Seed Oil, Oenothera Biennis (Evening Primrose) Oil, Vitis Vinifera (Grape) Seed Oil, Benzyl Nicotinate, Prunus Amygdalus Dulcis (Sweet Almond) Oil, Oryza Sativa (Rice) Bran Oil, Tocopheryl Acetate, Biotin, Arctium Lappa (Burdock) Root Extract, Glycerin, Apium Graveolens (Celery) Seed Extract, Cholecalciferol (Vitamin D), Ascorbic Acid, Ocimum, Basilicum (Basil) Oil, Pogostemon Cablin (Patchouli) Oil, Salvia Officinalis (Sage) Oil, Silica, Urtica Dioica (Nettle) Extract\n									</li>\n						</ul>\n			<h2>Reviews of respected customers</h2>		\n													<img width=\"1024\" height=\"768\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/6bc023ee-89a7-49f0-9c6d-b49eee2fb990.png\" alt=\"\" />													\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									Order Now \n					</a>\n			<h2>Fill the form below to order</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n	<h3 id=\"your_products_heading\"> Determine the quantity </h3>\n	<input type=\"radio\"\n	id=\"wcf-item-product-2123\"\n	name=\"wcf-single-sel\"\n	value=\"2123\"\n	>\n	<label for=\"wcf-item-product-2123\"></label>\n	<img width=\"300\" height=\"232\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/01.png\" alt=\"\" />\ntest Product1\n		&minus;\n		<input autocomplete=\"off\" type=\"number\" value=\"1\" step=\"1\" min=\"1\" name=\"wcf_qty_selection\" placeholder=\"1\" data-sale-limit=\"false\"  title=\"\"  >\n		&plus;\n	&#2547;&nbsp;900\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">Your Name&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"Your Name\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><input type=\"hidden\" id=\"billing_country\" name=\"billing_country\" value=\"BD\" /> <p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">City &amp; Area&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"City &amp; Area\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><input type=\"hidden\" id=\"billing_city\" name=\"billing_city\" value=\"Dhaka\" /> <input type=\"hidden\" id=\"billing_state\" name=\"billing_state\" value=\"BD-02\" /> <p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">Your phone number&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"Your phone number\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"1996\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"1999\">\n		<h3>Shipping</h3>\n							<ul id=\"shipping_method\">\n											<li>\n							<input type=\"hidden\" name=\"shipping_method[0]\" data-index=\"0\" id=\"wcf_shipping_method_0_free_shipping3\" value=\"free_shipping:3\" /><label for=\"wcf_shipping_method_0_free_shipping3\">Free shipping</label>						</li>\n									</ul>\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780986515\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n						<tr>\n					<td>\n						test Product&nbsp;						 <strong>&times;&nbsp;1</strong>											</td>\n					<td>\n						<bdi>&#2547;&nbsp;900</bdi>					</td>\n				</tr>\n					</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;900</bdi></td>\n		</tr>\n						<tr>\n	<th>Shipping</th>\n	<td data-title=\"Shipping\">\n					<ul id=\"shipping_method\">\n									<li>\n						<input type=\"hidden\" name=\"shipping_method[0]\" data-index=\"0\" id=\"shipping_method_0_free_shipping3\" value=\"free_shipping:3\" /><label for=\"shipping_method_0_free_shipping3\">Free shipping</label>					</li>\n							</ul>\n			</td>\n</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;900</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\n			<ul>\n			<li>\n	<input id=\"payment_method_cod\" type=\"radio\" name=\"payment_method\" value=\"cod\"  checked=\'checked\' 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&nbsp;&nbsp;&#2547;&nbsp;900\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;900\">Place Order&nbsp;&nbsp;&#2547;&nbsp;900</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n			<h2>Delivery is free all over the UAE</h2>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.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>		\n		<p>Copyright © 2024 Your Busness Name | This website made with ❤️ by itgalaxi</p>','Checkout (Woo)','','inherit','closed','closed','','1999-revision-v1','','','2026-06-09 12:28:35','2026-06-09 06:28:35','','1999','https://hypergrowth.fishgrowth.xyz/?p=2141','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2142','17','2026-06-09 12:30:18','2026-06-09 06:30:18','','62377b17-7d55-45c5-b128-b993e01ae1f7','','inherit','closed','closed','','62377b17-7d55-45c5-b128-b993e01ae1f7','','','2026-06-09 12:30:18','2026-06-09 06:30:18','','1987','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/62377b17-7d55-45c5-b128-b993e01ae1f7.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2143','17','2026-06-09 12:30:19','2026-06-09 06:30:19','','fc721dd8-d92e-4070-a025-16757ef31f00','','inherit','closed','closed','','fc721dd8-d92e-4070-a025-16757ef31f00','','','2026-06-09 12:30:19','2026-06-09 06:30:19','','1987','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/fc721dd8-d92e-4070-a025-16757ef31f00.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2145','17','2026-06-09 12:34:46','2026-06-09 06:34:46','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1448\" height=\"1086\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/62377b17-7d55-45c5-b128-b993e01ae1f7.png\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>কেমিক্যাল মুক্ত ফ্রেশ আম\n</h2>		\n			<h2><s>আগের মূল্যঃ ১৫৫০ টাকা</s></h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">		<h3>\n					সেরা অফারঃ   ৪  কেজি\n					1000\n					টাকা (ডেলিভারি চার্জ একদম  ফ্রী)\n					</h3>\n			<h2>ম্যাংগোরাজ কেন সেরা  ? \n</h2>		\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\n			<a href=\"#order-form\">\n									অর্ডার করতে চাই\n					</a>\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-carousel.min.css\">		\n							<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>							Previous\n							<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>							Next\n			<a href=\"#order-form\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>পন্য গ্রহন করার সময় চেক করে নিতে পারবেন</h2>		\n			<p>আমাদের আম নিয়ে আমরা এতই কনফিডেন্স যে আমরা আশা রাখি আমাদের আম আপনার বাসায় যাওয়ার পর আমাদের আম কোয়ালিটি দেখে আপনাকে নেক্সট টাইম আবারো করতে হবে ইনশাআল্লাহ।। \n</p>		\n													<img width=\"1024\" height=\"768\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/62377b17-7d55-45c5-b128-b993e01ae1f7.png\" alt=\"\" />													\n													<img width=\"819\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/fc721dd8-d92e-4070-a025-16757ef31f00.png\" alt=\"\" />													\n													<img width=\"1024\" height=\"768\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/62377b17-7d55-45c5-b128-b993e01ae1f7.png\" alt=\"\" />													\n			<a href=\"#order-form\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>কি কি কারণে আমাদের কাছ থেকে পণ্য  কিনা উচিৎ!</h2>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};mask-size:var(--divider-pattern-size) 100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};-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{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05});--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										সারা বাংলাদেশ আমরা দিচ্ছি হোম ডেলিভারিতে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										সারা বাংলাদেশ হোম ডেলিভারি চার্জ মাত্র ১০০ টাকা।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										আমরা সারা বাংলাদেশ হোম ডেলিভারীতে পন্য ডেলিভারী করি সুতরাং পন্য গ্রহন করার সময় চেক করে নিতে পারবেন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										আমাদের অর্ডার করতে আপনাকে এক টাকাও আগে অগ্রিম দিতে হবে না আমাদের ডেলিভারি ম্যান আপনার বাসায় যাবে আমাদের পণ্য দেখে শুনে তারপর মূল্য পরিষদ করবেন।\n									</li>\n						</ul>\n			<h2>আজকের অফার সমূহ</h2>		\n			<a role=\"button\">\n									অর্ডার গ্রহণ চলছে  -> হিমসাগর\n					</a>\n			<h2>\n ১০ কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a>\n</h2>		\n			<h2>২০কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a>\n</h2>		\n			<a href=\"#order\">\n									অর্ডার গ্রহণ চলছে  -> বাড়ি -৪\n					</a>\n			<h2>\n ১০ কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a>\n</h2>		\n			<h2>২০কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a></h2>		\n			<a href=\"#order\">\n									অর্ডার গ্রহণ চলছে  -> ফজলি\n					</a>\n			<h2>\n ১০ কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a>\n</h2>		\n			<h2>২০কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a></h2>		\n			<a href=\"#order\">\n									অর্ডার গ্রহণ চলছে  -> তোতাপরী \n					</a>\n			<h2>\n ১০ কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a>\n</h2>		\n			<h2>২০কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a></h2>		\n			<a href=\"#order\">\n									অর্ডার গ্রহণ চলছে  -> ল্যাংড়া \n					</a>\n			<h2>\n ১০ কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a>\n</h2>		\n			<h2>২০কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a></h2>		\n			<a href=\"#order\">\n									অর্ডার গ্রহণ চলছে  -> আম্রুপালী \n					</a>\n			<h2>\n ১০ কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a>\n</h2>		\n			<h2>২০কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a></h2>		\n			<a href=\"#order\">\n									অর্ডার গ্রহণ চলছে  -> গুটি\n					</a>\n			<h2>\n ১০ কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a>\n</h2>		\n			<h2>২০কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a></h2>		\n			<a href=\"#order\">\n									অর্ডার গ্রহণ চলছে  -> আশ্বিনা \n					</a>\n			<h2>\n ১০ কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a>\n</h2>		\n			<h2>২০কেজি ক্যারেট   ১---- টাকা  <a style=\"color: #FF7400\" href=\"#order-form\"> অর্ডার করুন </a></h2>		\n			<h2>ডেলিভারি শর্তাবলীঃ</h2>		\n					<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										০১। ঢাকার বাইরে হোম ডেলিভারি শুধু জেলা সদরের জন্য প্রযোজ্য।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										০২। ডেলিভারির কারণে কোন পণ্যের ক্ষতি হলে তার দায়ভার কুরিয়ার কর্তৃপক্ষ বহন করবে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										৩। আম রিসিভ করার সময় গ্রাহকে পণ্যের ভিডিও ধারণ করার জন্য অনুরোধ করছি।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										৪। ওয়েবসাইট এ অর্ডারের ক্ষেত্রে শুধু Steadfast কুরিয়ারের মাধ্যমে আম সরবরাহ করা হবে। অন্যা কোন কুরিরের মাধ্যমে আম ডেলিভারি নিতে চাইলে MangoRaj এর কন্টাক্ট নাম্বারে (01733601555) ফোন করে জানানোর জন্য অনুরোধ রইলো।\n									</li>\n						</ul>\n<!-- CHECKOUT SHORTCODE -->\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নাম&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">আপনার সম্পূর্ণ ঠিকানা&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"House number and street name\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">আপনার ফোন নাম্বার&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\"  value=\"01713318648\" autocomplete=\"tel\" /></p><p id=\"billing_steadfast_field\" data-priority=\"110\"><label for=\"billing_steadfast\">কুরিয়ারের নাম&nbsp;<abbr title=\"required\">*</abbr></label><select name=\"billing_steadfast\" id=\"billing_steadfast\"  data-placeholder=\"\">\n							<option value=\"Steadfast\"  selected=\'selected\'>Steadfast</option>\n						</select></p><p id=\"billing___field\" data-priority=\"120\"><label for=\"billing__\">ডেলিভারি ধরন&nbsp;<abbr title=\"required\">*</abbr></label><select name=\"billing__\" id=\"billing__\"  data-placeholder=\"\">\n							<option value=\"পয়েন্ট ডেলিভারি\" >পয়েন্ট ডেলিভারি</option><option value=\"হোম ডেলিভারি\" >হোম ডেলিভারি</option>\n						</select></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"1984\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"1987\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780986886\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n		<p>Design by itgalaxi</p>','Checkout (Woo)','','inherit','closed','closed','','1987-revision-v1','','','2026-06-09 12:34:46','2026-06-09 06:34:46','','1987','https://hypergrowth.fishgrowth.xyz/?p=2145','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2146','17','2026-06-09 12:41:44','2026-06-09 06:41:44','\"<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg 945w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-300x300.jpg 300w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg 100w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-1.jpg 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-150x150.jpg 150w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-1.jpg 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2><strong style=\\\"background: linear-gradient(90deg, #ff0000, #ff7f00);\\n      color: #ffffff;\\n      font-size: 14px;\\n      font-weight: 900;\\n      padding: 4px;\\n      text-align: center;\\n      border-radius: 12px;\\n      box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);\\n      font-family: \'Arial\', sans-serif;\\n      margin: 20px;\\n      animation: pulse 2s infinite;\\\">\\u099a\\u09b2\\u099b\\u09c7 \\u09b8\\u09b0\\u09cd\\u09ac\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09b8\\u09c7\\u09b0\\u09be \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f<\\/strong> \\n     \\u098f\\u0996\\u09a8 \\u09eb\\u09e6{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f !  <br><br>\\n\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u098f\\u0995\\u099f\\u09be\\u0987 \\u09b8\\u09bf\\u09a6\\u09cd\\u09a7\\u09be\\u09a8\\u09cd\\u09a4 \\u2013 \\u0996\\u09b0\\u099a \\u0995\\u09ae\\u09be\\u09ac\\u09c7 \\u09eb\\u09e6{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516} \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4!\\n <br><br>\\n\\u26d4 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09b2\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2><br\\/> \\u09e7\\u09e6\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09df \\u0986\\u09aa\\u09a8\\u09bf \\u09ac\\u09be\\u0981\\u099a\\u09be\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09a4\\u09c7\\u09a8 \\u09e7\\u09eb\\u09e6 \\u0995\\u09c7\\u099c\\u09bf \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0?\\n<br\\/><br\\/>\\n\\u09a4\\u09be\\u0987 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u09a8\\u09be \\u0995\\u09b0\\u09c7 \\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09c1\\u09a8 <\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.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{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.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>\\t\\t\\n\\t\\t\\t<a href=\\\"https:\\/\\/wa.me\\/+8801838404044\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b9\\u09cb\\u09af\\u09bc\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<a href=\\\"tel:01838404044\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t  \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/sorkoar-agro-dicche.mp4\\t\\t\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};mask-size:var(--divider-pattern-size) 100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};-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{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tP H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"453\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp 912w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-600x339.webp 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-300x170.webp 300w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-768x435.webp 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css?ver=1725884340\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09ed\\u09eb \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h4>\\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e9\\u09ed\\u09eb\\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc<\\/h4>\\t\\t\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09eb\\u09e6 \\n\\t\\t\\t\\t\\t \\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h4>\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09e9\\u09ed\\u09eb \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc<\\/h4>\\t\\t\\n\\t\\t\\t<h2>\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u0985\\u09a5\\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01838404044\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01838 40 40 44\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/fishgrowth.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983 <\\/h3>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/double-growth-min-300x300.jpeg\\\" alt=\\\"double growth\\\" \\/>\\n\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t375.00&#2547;&nbsp;\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/water-pluncton-min-300x300.jpeg\\\" alt=\\\"\\\" \\/>\\n\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t375.00&#2547;&nbsp;\\n\\t\\t\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Humayoun\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"01727787392\\\" pattern=\\\"d{11}\\\" title=\\\"Phone number must be exactly 11 digits long and contain only numbers.\\\" maxlength=\\\"11\\\" minlength=\\\"11\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"Dattapara\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"36\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"38\\\">\\n\\t\\t<h3>Shipping<\\/h3>\\n\\t\\t\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"wcf_shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"wcf_shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1773548781\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>375.00&#2547;&nbsp;<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>375.00&#2547;&nbsp;<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>750.00&#2547;&nbsp;<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t<th>Shipping<\\/th>\\n\\t<td data-title=\\\"Shipping\\\">\\n\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<\\/td>\\n<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>750.00&#2547;&nbsp;<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/fishgrowth.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;750.00&#2547;&nbsp;\\\" data-value=\\\"Place Order&nbsp;&nbsp;750.00&#2547;&nbsp;\\\">Place Order&nbsp;&nbsp;750.00&#2547;&nbsp;<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"d98c114cea\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t<p>Develop by itgalaxy<\\/p>\"','fishgrowth-02','','inherit','closed','closed','','58-revision-v1','','','2026-06-09 12:41:44','2026-06-09 06:41:44','','58','https://hypergrowth.fishgrowth.xyz/?p=2146','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2147','17','2026-06-09 12:42:17','2026-06-09 06:42:17','','Auto Draft','','inherit','closed','closed','','49-revision-v1','','','2026-06-09 12:42:17','2026-06-09 06:42:17','','49','https://hypergrowth.fishgrowth.xyz/?p=2147','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2148','17','2026-06-09 12:43:22','2026-06-09 06:43:22','','57c01c34-e870-491b-ae61-980267b58c4d','','inherit','closed','closed','','57c01c34-e870-491b-ae61-980267b58c4d','','','2026-06-09 12:43:22','2026-06-09 06:43:22','','1980','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/57c01c34-e870-491b-ae61-980267b58c4d.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2149','17','2026-06-09 12:43:23','2026-06-09 06:43:23','','0fbf1966-c265-45fb-b5f3-6b832b38fc22','','inherit','closed','closed','','0fbf1966-c265-45fb-b5f3-6b832b38fc22','','','2026-06-09 12:43:23','2026-06-09 06:43:23','','1980','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/0fbf1966-c265-45fb-b5f3-6b832b38fc22.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2150','17','2026-06-09 12:46:09','2026-06-09 06:46:09','\"<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09b8\\u09c0\\u09ae\\u09bf\\u09a4 \\u09b8\\u09ae\\u09df\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09ab\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u099c\\n<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor-pro - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-countdown .elementor-countdown-expire--message{display:none;padding:20px;text-align:center}.elementor-widget-countdown .elementor-countdown-wrapper{flex-direction:row}.elementor-widget-countdown .elementor-countdown-item{padding:20px 0;text-align:center;color:#fff}.elementor-widget-countdown .elementor-countdown-digits,.elementor-widget-countdown .elementor-countdown-label{line-height:1}.elementor-widget-countdown .elementor-countdown-digits{font-size:69px}.elementor-widget-countdown .elementor-countdown-label{font-size:19px}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-wrapper{display:flex;justify-content:center;margin-right:auto;margin-left:auto}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-digits,.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-label{display:block}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-item{flex-basis:0;flex-grow:1}.elementor-widget-countdown.elementor-countdown--label-inline{text-align:center}.elementor-widget-countdown.elementor-countdown--label-inline .elementor-countdown-item{display:inline-block;padding-left:5px;padding-right:5px}<\\/style>\\t\\t\\n\\t\\t\\t Days Hours Minutes Seconds\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.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{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516};width:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{37d49080a235871ddf641f3486b2b7eefbc22f7ea3959d0444be5c5347350516}}.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>\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css?ver=1725884340\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09ed\\u09eb \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09eb\\u09e6 \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0995\\u09ae\\u09cd\\u09ac\\u09cb \\u0985\\u09ab\\u09be\\u09b0 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 & \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\n\\t\\t\\t\\t\\t\\u09e7\\u09e6\\u09e6\\u09e6\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=Lrdqc3AwV9I\\t\\t\\n\\t\\t\\t<h2>\\n\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8   ?\\n<\\/h2>\\t\\t\\n\\t\\t<p>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7&nbsp;\\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 <strong>fishgrowth<\\/strong>\\u0964&nbsp;<b>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8<\\/b>&nbsp;\\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964&nbsp;\\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0  \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tP H  \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983 \\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09ad\\u09bf\\u099c\\u09cd\\u099e\\u09a4\\u09be, \\u09b6\\u09bf\\u0995\\u09cd\\u09b7\\u09be \\u0993 \\u09aa\\u09b0\\u09c0\\u0995\\u09cd\\u09b7\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ac\\u09a8\\u09df\\u09c7 fishgrowth \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09ac\\u09cd\\u09af\\u09be\\u09aa\\u09c0 \\u09ae\\u09be\\u099b \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u09b8\\u09c7\\u09ac\\u09be, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6 \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09aa\\u09a3\\u09cd\\u09af \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09c7 \\u0986\\u09b8\\u099b\\u09c7\\u0964 \\u09ae\\u09be\\u099b \\u099b\\u09be\\u09dc\\u09be \\u09b9\\u09a4\\u09c7 \\u09ac\\u09be\\u099c\\u09be\\u09b0\\u099c\\u09be\\u09a4 \\u0995\\u09b0\\u09be \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09c1\\u09a8\\u09bf\\u09aa\\u09c1\\u09a8 \\u09ae\\u09a8\\u09bf\\u099f\\u09b0\\u09bf\\u0982 \\u098f\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09aa\\u09a5\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u0997\\u09a3 \\u09b9\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993   \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964    \\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\\t\\t\\t\\t<\\/h3>\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/fishgrowth.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983 <\\/h3>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/double-growth-min-300x300.jpeg\\\" alt=\\\"double growth\\\" \\/>\\n\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/water-pluncton-min-300x300.jpeg\\\" alt=\\\"\\\" \\/>\\n\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t\\t\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<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_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" pattern=\\\"d{11}\\\" title=\\\"Phone number must be exactly 11 digits long and contain only numbers.\\\" maxlength=\\\"11\\\" minlength=\\\"11\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"36\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"59\\\">\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1725892596\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t\\t<tr>\\n\\t<th>Shipping<\\/th>\\n\\t<td data-title=\\\"Shipping\\\">\\n\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<\\/td>\\n<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/fishgrowth.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"3f06707584\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t<p>Copyright \\u00a9 2024 fishgrowth| This website made with \\u2764\\ufe0f by <a style=\\\"color: red;\\\" href=\\\"https:\\/\\/itgalaxi.com\\/\\\"><b> itgalaxi<\\/b><\\/a><\\/p>\"','checkout-woo 2','','inherit','closed','closed','','70-revision-v1','','','2026-06-09 12:46:09','2026-06-09 06:46:09','','70','https://hypergrowth.fishgrowth.xyz/?p=2150','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2151','17','2026-06-09 12:47:05','2026-06-09 06:47:05','\"<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg 945w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-300x300.jpg 300w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg 100w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-1.jpg 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-150x150.jpg 150w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-1.jpg 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7 \\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 fishgrowth\\u0964 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964 \\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=mjr8CjmMFL0\\t\\t\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tP H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg 945w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-300x300.jpg 300w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg 100w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-1.jpg 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-150x150.jpg 150w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-1.jpg 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\ud83d\\udca5\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\ud83d\\udca5\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964\\n<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/fishgrowth.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983 <\\/h3>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/double-growth-min-300x300.jpeg\\\" alt=\\\"double growth\\\" \\/>\\n\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/water-pluncton-min-300x300.jpeg\\\" alt=\\\"\\\" \\/>\\n\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t\\t\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<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_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" pattern=\\\"d{11}\\\" title=\\\"Phone number must be exactly 11 digits long and contain only numbers.\\\" maxlength=\\\"11\\\" minlength=\\\"11\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"36\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"54\\\">\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1725891214\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t\\t<tr>\\n\\t<th>Shipping<\\/th>\\n\\t<td data-title=\\\"Shipping\\\">\\n\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<\\/td>\\n<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/fishgrowth.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"3f06707584\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t\\t\\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 - 01838 40 40 44\"','checkout-woo','','inherit','closed','closed','','67-revision-v1','','','2026-06-09 12:47:05','2026-06-09 06:47:05','','67','https://hypergrowth.fishgrowth.xyz/?p=2151','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2152','17','2026-06-09 12:49:06','2026-06-09 06:49:06','\"\"','Sales Landing','','inherit','closed','closed','','57-revision-v1','','','2026-06-09 12:49:06','2026-06-09 06:49:06','','57','https://hypergrowth.fishgrowth.xyz/?p=2152','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2153','17','2026-06-09 12:50:07','2026-06-09 06:50:07','','79cb8f3c-5692-4e31-950d-e723a35373c3','','inherit','closed','closed','','79cb8f3c-5692-4e31-950d-e723a35373c3','','','2026-06-09 12:50:07','2026-06-09 06:50:07','','1897','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/79cb8f3c-5692-4e31-950d-e723a35373c3.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2155','17','2026-06-09 12:52:06','2026-06-09 06:52:06','','10a91c3c-afe2-4a7d-86bd-7edd27071144','','inherit','closed','closed','','10a91c3c-afe2-4a7d-86bd-7edd27071144','','','2026-06-09 12:52:06','2026-06-09 06:52:06','','1897','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/10a91c3c-afe2-4a7d-86bd-7edd27071144.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2156','17','2026-06-09 12:52:41','2026-06-09 06:52:41','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1254\" height=\"1254\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/79cb8f3c-5692-4e31-950d-e723a35373c3.png\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>পুরান ঢাকার বিখ্যাত কুড়মুড়ে নারিকেল ভাজা খাবেন তো মজা পাবেন</h2>		\n		<p>নারিকেল ভাজা, অনেকে এটাকে নারকেলি বলে থাকে। মুখোরোচক খাবার হিসেবে এটা অনেক জনপ্রিয় একটি খাবার।</p>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									অর্ডার করুন\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05} / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/79cb8f3c-5692-4e31-950d-e723a35373c3.png\" alt=\"79cb8f3c-5692-4e31-950d-e723a35373c3\" /></figure><figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/10a91c3c-afe2-4a7d-86bd-7edd27071144.png\" alt=\"10a91c3c-afe2-4a7d-86bd-7edd27071144\" /></figure>			\n													<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/79cb8f3c-5692-4e31-950d-e723a35373c3.png\" alt=\"\" />													\n			<h2>কুড়মুড়ে পুরান ঢাকার বিখ্যাত নারকেল ভাজা – ৪০০ গ্রাম ৫২০ টাকা</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									এখনই অর্ডার করুন\n					</a>\n													<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/10a91c3c-afe2-4a7d-86bd-7edd27071144.png\" alt=\"\" />													\n			<h2>কুড়মুড়ে পুরান ঢাকার বিখ্যাত নারকেল ভাজা – ৬০০ গ্রাম ৬৭০ টাকা</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									এখনই অর্ডার করুন\n					</a>\n													<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/79cb8f3c-5692-4e31-950d-e723a35373c3.png\" alt=\"\" />													\n			<h2>কুড়মুড়ে পুরান ঢাকার বিখ্যাত নারকেল ভাজা – ১ কেজি ১০২০ টাকা</h2>		\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									এখনই অর্ডার করুন\n					</a>\n			<h2>প্রয়োজনে কল করুন বা কল করতে নিচের বাটনে ক্লিক করুন</h2>		\n			<a href=\"https://wa.me/+8801819000000\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\"></path></svg>			\n									01819000000\n					</a>\n			<h2>আমাদের থেকে কেন নিবেন?</h2>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										ভেজালের এই সময় র্নিভেজাল একটি খাবার।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										ছোট থেকে বড় সবাই খেতে পাবরেন। \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										মন ভরে খাওয়া যায়,কারণ মিষ্টি কম দেয়া।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										বিকেলের নাস্তা বা মেহমানদারীতে অতুলনীয় ।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										নিজের জন্য বা প্রিয়জনকে উপহার দেওয়ার জন্য।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										এই নারিকেল ভাজার স্বাদ আপনাকে নিয়ে যাবে সেই ছোট্টবেলার স্মৃতির জগতে\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\"></path></svg>						\n										কুড়মুড়ে ও মচমচে ।\n									</li>\n						</ul>\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									অর্ডার করুন\n					</a>\n			<h2>যা দিয়ে তৈরি করা হয়?</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										কোন রকম কেমিক্যাল ছাড়া ঘরোয়া পরিবেশে সাস্থ্য সম্মত ভাবে তৈরি করা হয়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\"></path></svg>						\n										দেশের বিভিন্ন অঞ্চল থেকে বাছাইকৃত  নারিকেল দ্বারা ও চিনি দিয়ে তৈরি করা হয়।\n									</li>\n						</ul>\n			<h2>সম্মানিত গ্রাহকদের রিভিউ</h2>		\n								<figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/10a91c3c-afe2-4a7d-86bd-7edd27071144.png\" alt=\"10a91c3c-afe2-4a7d-86bd-7edd27071144\" /></figure><figure><img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/79cb8f3c-5692-4e31-950d-e723a35373c3.png\" alt=\"79cb8f3c-5692-4e31-950d-e723a35373c3\" /></figure>			\n						<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"></path></svg>					\n						<svg aria-hidden=\"true\" viewBox=\"0 0 1000 1000\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"></path></svg>					\n			<a href=\"#order\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\"></path></svg>			\n									অর্ডার করুন\n					</a>\n			<h2>অর্ডার করার জন্য নিচের ফর্মটি পূরণ করুন-</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নাম&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"আপনার নাম\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">আপনার সম্পূর্ণ ঠিকানা&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"আপনার ঠিকানা লিখুন\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">আপনার ফোন নাম্বার&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"আপনার ফোন নাম্বার\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"1894\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"1897\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1780987961\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"96060fe499\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/custom_wordpress/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n			<h2> Copyright © 2024  Busness Name | This website made with ❤️ by <a href=\"https://itgalaxi.com/\" style=\"color:red\"><b> The Smart Way</b></a></h2>','Checkout (Woo)','','inherit','closed','closed','','1897-revision-v1','','','2026-06-09 12:52:41','2026-06-09 06:52:41','','1897','https://hypergrowth.fishgrowth.xyz/?p=2156','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2157','17','2026-06-09 13:29:50','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2026-06-09 13:29:50','0000-00-00 00:00:00','','0','https://hypergrowth.fishgrowth.xyz/?p=2157','0','post','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2158','17','2026-06-09 13:47:57','2026-06-09 07:47:57','<!DOCTYPE html>\n<html lang=\"bn\">\n<head>\n<meta charset=\"UTF-8\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n<title>ধন্যবাদ - অর্ডার সফল</title>\n<style>\n*{\n    margin:0;\n    padding:0;\n    box-sizing:border-box;\n    font-family: Arial, sans-serif;\n}\nbody{\n    background:#f5f7fa;\n    display:flex;\n    justify-content:center;\n    align-items:center;\n    min-height:100vh;\n    padding:20px;\n}\n.thankyou-box{\n    background:#fff;\n    max-width:500px;\n    width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\n    text-align:center;\n    padding:40px 30px;\n    border-radius:15px;\n    box-shadow:0 10px 30px rgba(0,0,0,0.1);\n}\n.success-icon{\n    width:80px;\n    height:80px;\n    background:#22c55e;\n    color:#fff;\n    font-size:40px;\n    border-radius:50{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05};\n    display:flex;\n    align-items:center;\n    justify-content:center;\n    margin:0 auto 20px;\n}\nh1{\n    color:#22c55e;\n    margin-bottom:15px;\n}\np{\n    color:#555;\n    line-height:1.7;\n    margin-bottom:12px;\n}\n.order-info{\n    background:#f8fafc;\n    padding:15px;\n    border-radius:10px;\n    margin:20px 0;\n    color:#333;\n}\n.btn{\n    display:inline-block;\n    background:#22c55e;\n    color:#fff;\n    text-decoration:none;\n    padding:12px 25px;\n    border-radius:8px;\n    margin-top:10px;\n    transition:.3s;\n}\n.btn:hover{\n    background:#16a34a;\n}\n</style>\n</head>\n<body>\n    ✓\n    <h1>ধন্যবাদ!</h1>\n    <p>\n        আপনার অর্ডারটি সফলভাবে গ্রহণ করা হয়েছে।\n    </p>\n    <p>\n        আমাদের প্রতিনিধি খুব শীঘ্রই আপনার সাথে যোগাযোগ করবে অর্ডারটি কনফার্ম করার জন্য।\n    </p>\n    <a href=\"/\">হোম পেজে ফিরে যান</a>\n</body>\n</html>','Thanks','','inherit','closed','closed','','2111-revision-v1','','','2026-06-09 13:47:57','2026-06-09 07:47:57','','2111','https://hypergrowth.fishgrowth.xyz/?p=2158','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2159','17','2026-06-10 21:39:32','2026-06-10 15:39:32','','FishGrowth 02 Copy','','publish','closed','closed','','fishgrowth-02-copy','','','2026-06-10 21:39:32','2026-06-10 15:39:32','','0','https://hypergrowth.fishgrowth.xyz/?cartflows_flow=fishgrowth-02-copy','0','cartflows_flow','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2160','17','2026-06-10 21:39:32','2026-06-10 15:39:32','\"\"','Sales Landing','','publish','closed','closed','','sales-landing','','','2026-06-10 21:39:32','2026-06-10 15:39:32','','0','https://hypergrowth.fishgrowth.xyz/step/sales-landing/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2161','17','2026-06-10 21:39:32','2026-06-10 15:39:32','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"945\" height=\"945\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>\n<strong style=\"background: linear-gradient(90deg, #ff0000, #ff7f00);\n      color: #ffffff;\n      font-size: 18px;\n      font-weight: 900;\n      padding: 2px;\n      text-align: center;\n      border-radius: 12px;\n      box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);\n      font-family: \'Arial\', sans-serif;\n      margin: 20px;\n      animation: pulse 2s infinite;\">চলছে সর্বকালের সেরা ডিসকাউন্ট</strong> – \n    🎯 \"মাছ চাষে লাভের নতুন দিগন্ত – অল্প খরচে সর্বোচ্চ ফলাফল!\" <br/>\n 🎯 \"মাছের বৃদ্ধি হবে দ্বিগুণ আর আপনার হাসিও!\"\" <br/><br/>\n⛔ অফার মিস করলে লস আপনার \n</h2>		\n			<h2><br/>🚨 এটাই বছরজুড়ে সবচেয়ে বড় ডিসকাউন্ট \n<br/><br/>\nতাই অফার মিস না করে এখনই অর্ডার করে ফেলুন </h2>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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>		\n			<a href=\"https://wa.me/+8801838404044\">\n									হোয়াটসঅ্যাপে যোগাযোগ করুন\n					</a>\n			<a href=\"tel:01838404044\">\n									  কল করুন\n					</a>\n		https://www.youtube.com/watch?v=YtRdBQF8cVM		\n			<a href=\"#checkout\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>ওয়াটার প্লাংটন প্লাস ও ডাবল গ্রোথ প্লাস কেন ব্যাবহার করবেন ?\n</h2>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};mask-size:var(--divider-pattern-size) 100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};-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{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced});--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-পুকুরে তৈরি হবে প্রাকৃতিক খাবার ওয়াটার প্লাংকটন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-পুকুরে এমোনিয়া হতে দেয় না।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										P H ও TDS মাত্রা নিয়ন্ত্রণ রাখবে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-অক্সিজেনের স্বল্পতা হবে না।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-পুকুরে মাছ ভাসবে না।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										ডাবল গ্রোথ প্লাস হচ্ছে মাল্টিভিটামিনের এমন মিশ্রণ যা মাছের ওজন ও দ্রুত বৃদ্ধিতে সহায়ক ভূমিকা পালন করে। মাছকে শক্তিশালী ও আকর্ষণীয় করে তোলে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-মাছের হাড় ও আশ শক্ত মজবুত করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-রোগ প্রতিরোধক হিসেবে ওয়াটার প্লাংটন প্লাস খামারিদের নিশ্চয়তা দেয়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-সুরক্ষিত সুস্থ্য স্বাভাবিক পরিবেশে মাছের সার্বিক উৎপাদন বৃদ্ধি পায়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										* ওয়াটার প্লাংটন প্লাস ও ডাবল গ্রোথ প্লাস ব্যাবহারে মাছের পরিপাকতন্ত্র হয় উন্নত, ফলে, তাদের হজম শক্তি ও প্রোটিন গ্রহণের সক্ষমতা বৃদ্ধি পায়। এতে মাছ অধিক হারে প্রোটিন গ্রহণ করে ও সহজে হজম করতে পারে। তাই মাছ বৈজ্ঞানিকভাবে, নিরাপদ পরিবেশে মাছ দ্রুত বেড়ে উঠে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										* মাছের মল প্রোটিন সম্পন্ন খাদ্যে পরিণত হয়, পুকুরে সার্বক্ষণিক খাদ্যের ব্যাবস্থা থাকে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										সরকার এগ্রো কেয়ার শুধু পণ্যেই নয়, পরামর্শে ও সেবাতেও অনন্য।\n									</li>\n						</ul>\n			<a href=\"#checkout\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>মাত্রা ও প্রয়োগবিধিঃ\n</h2>		\n													<img width=\"912\" height=\"516\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/Screenshot-2024-07-01-134806.webp\" alt=\"\" />													\n			<h2>ওয়াটার প্লাংটন প্লাসঃ প্রয়োগবিধিঃ\n</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										প্রতি শতকে 100/150 গ্রাম হারে পরিমান মত পানির সাথে গুলিয়ে সম্পূর্ণ জলাশয়ে ছিটিয়ে দিতে হবে।\n									</li>\n						</ul>\n			<h2>ডাবল গ্রোথ প্লাসঃ প্রয়োগবিধিঃ\n</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										প্রতি শতকে 100/150 গ্রাম হারে পরিমান মত পানির সাথে গুলিয়ে সম্পূর্ণ জলাশয়ে ছিটিয়ে দিতে হবে।\n									</li>\n						</ul>\n			<a href=\"#checkout\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>ব্যবহারবিধি\n</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										1। প্রথম 2 দিন ওয়াটার প্ল্যাংকটন প্লাস দুইভাগে ভাগ করে ব্যবহার করুন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										2। একইভাবে পরবর্তী 2 দিন ডাবল গ্রোথ প্লাস 2 ভাগে ভাগ করে ব্যবহার করুন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										3। প্রোডাক্টগুলো এই পরিমাণ পানির সাথে ভালোভাবে মিশ্রণ করুন যেন প্রায় সম্পূর্ণ পুকুরে ছিটিয়ে বা স্প্রে করে সম্পূর্ণ পুকুরে পরিবেশন করা যায়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										4। বৃষ্টি বা মেঘলা পরিবেশে ব্যবহার হতে বিরত থাকুন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										5। সকালের নরম রুদ্র উজ্জ্বল পরিবেশে ব্যবহার করুন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										6। প্রোডাক্ট ব্যবহারের উক্ত 4 দিন মাছের খাবার দেওয়া থেকে বিরত থাকুন কিংবা সর্বোচ্চ 3 ভাগের 1 ভাগ খাবার দিন এবং পরবর্তী সময়ে মাছের ওজনের 2 থেকে 3 পার্সেন্ট খাবার চালু রাখুন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										7। প্রোডাক্ট ব্যবহারের সময় থেকে 2 মাস এর পরে যোগাযোগের জন্য অনুরোধ রইল পরবর্তী ডুজ কিংবা জরুরী আলোচনা পরামর্শের জন্য আবশ্যক।\n									</li>\n						</ul>\n			<a href=\"#checkout\">\n									অর্ডার করতে চাই\n					</a>\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">		<h3>\n					ডাবল গ্রোথ প্লাস \n					650\n					টাকা\n					</h3>\n			<h4>পাচ্ছেন মাত্র 500  টাকায়</h4>		\n					<h3>\n					ওয়াটার প্লাংকটন প্লাস \n					650\n					 টাকা\n					</h3>\n			<h4> টাকা পাচ্ছেন মাত্র 500  টাকায়</h4>		\n			<h2>ফোনে অর্ডার করুন অথবা প্রয়োজনে কল করুন</h2>		\n			<a href=\"tel:01838404044\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>			\n									01838 40 40 44\n					</a>\n			<h2> এক টাকাও  অগ্রিম দিতে হবে না ডেলিভারি চার্জ একদম ফ্রি\n</h2>		\n			<h2>অর্ডার করতে নিচের ফর্মে আপনার নাম, পূর্ণ ঠিকানা এবং মোবাইল নং লিখুন। তারপর নিচে Place Order বাটনে ক্লিক করুন। আপনার অর্ডারটি সঠিকভাবে সম্পন্ন হবে।\n</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নামঃ&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">ডেলিভারি ঠিকানাঃ&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">মোবাইল নম্বরঃ&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"2159\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"2161\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1781107250\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"40fd225473\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n			<h2>কোন কারনে পণ্য  রিটার্ন করলে ডেলিভারি চার্জ দিতে হবে কারণ এটা ডেলিভারি বয় এর প্রাপ্য  কারো পাওনা থেকে তাকে বঞ্চিত করলে  আল্লাহর কাছে জবাবদিহি করতে হবে</h2>		\n		<p>Develop by itgalaxy</p>','fishgrowth-02','','publish','closed','closed','','fishgrowth-02','','','2026-06-10 22:01:30','2026-06-10 16:01:30','','0','https://hypergrowth.fishgrowth.xyz/step/fishgrowth-02/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2162','17','2026-06-10 21:39:33','2026-06-10 15:39:33','','Green-Natural-Hello-Spring-Season-Instagram-Post-100x100.jpg','','inherit','closed','closed','','green-natural-hello-spring-season-instagram-post-100x100-jpg','','','2026-06-10 21:39:33','2026-06-10 15:39:33','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-2.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2163','17','2026-06-10 21:39:33','2026-06-10 15:39:33','','Green-Natural-Hello-Spring-Season-Instagram-Post-600x600.jpg','','inherit','closed','closed','','green-natural-hello-spring-season-instagram-post-600x600-jpg-2','','','2026-06-10 21:39:33','2026-06-10 15:39:33','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-2.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2164','17','2026-06-10 21:39:33','2026-06-10 15:39:33','','Green-Natural-Hello-Spring-Season-Instagram-Post-768x768.jpg','','inherit','closed','closed','','green-natural-hello-spring-season-instagram-post-768x768-jpg','','','2026-06-10 21:39:33','2026-06-10 15:39:33','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-2.jpg','0','attachment','image/jpeg','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2165','17','2026-06-10 21:39:33','2026-06-10 15:39:33','\"<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg 945w, https:\\/\\/fishroot.fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-300x300.jpg 300w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-2.jpg 100w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-2.jpg 600w, https:\\/\\/fishroot.fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-150x150.jpg 150w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-2.jpg 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\n<strong style=\\\"background: linear-gradient(90deg, #ff0000, #ff7f00);\\n      color: #ffffff;\\n      font-size: 18px;\\n      font-weight: 900;\\n      padding: 2px;\\n      text-align: center;\\n      border-radius: 12px;\\n      box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);\\n      font-family: \'Arial\', sans-serif;\\n      margin: 20px;\\n      animation: pulse 2s infinite;\\\">\\u099a\\u09b2\\u099b\\u09c7 \\u09b8\\u09b0\\u09cd\\u09ac\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09b8\\u09c7\\u09b0\\u09be \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f<\\/strong> \\u2013 \\n    \\ud83c\\udfaf \\\"\\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c7 \\u09b2\\u09be\\u09ad\\u09c7\\u09b0 \\u09a8\\u09a4\\u09c1\\u09a8 \\u09a6\\u09bf\\u0997\\u09a8\\u09cd\\u09a4 \\u2013 \\u0985\\u09b2\\u09cd\\u09aa \\u0996\\u09b0\\u099a\\u09c7 \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a \\u09ab\\u09b2\\u09be\\u09ab\\u09b2!\\\" <br\\/>\\n \\ud83c\\udfaf \\\"\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09b9\\u09ac\\u09c7 \\u09a6\\u09cd\\u09ac\\u09bf\\u0997\\u09c1\\u09a3 \\u0986\\u09b0 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09b9\\u09be\\u09b8\\u09bf\\u0993!\\\"\\\" <br\\/><br\\/>\\n\\u26d4 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09b2\\u09b8 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2><br\\/>\\ud83d\\udea8 \\u098f\\u099f\\u09be\\u0987 \\u09ac\\u099b\\u09b0\\u099c\\u09c1\\u09dc\\u09c7 \\u09b8\\u09ac\\u099a\\u09c7\\u09df\\u09c7 \\u09ac\\u09dc \\u09a1\\u09bf\\u09b8\\u0995\\u09be\\u0989\\u09a8\\u09cd\\u099f \\n<br\\/><br\\/>\\n\\u09a4\\u09be\\u0987 \\u0985\\u09ab\\u09be\\u09b0 \\u09ae\\u09bf\\u09b8 \\u09a8\\u09be \\u0995\\u09b0\\u09c7 \\u098f\\u0996\\u09a8\\u0987 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ab\\u09c7\\u09b2\\u09c1\\u09a8 <\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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>\\t\\t\\n\\t\\t\\t<a href=\\\"https:\\/\\/wa.me\\/+8801838404044\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b9\\u09cb\\u09af\\u09bc\\u09be\\u099f\\u09b8\\u0985\\u09cd\\u09af\\u09be\\u09aa\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<a href=\\\"tel:01838404044\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t  \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=YtRdBQF8cVM\\t\\t\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\\\"\\\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};mask-size:var(--divider-pattern-size) 100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};-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{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced});--flex-grow:var(--container-widget-flex-grow)}<\\/style>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tP H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"453\\\" src=\\\"https:\\/\\/fishroot.fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/fishroot.fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp 912w, https:\\/\\/fishroot.fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-600x339.webp 600w, https:\\/\\/fishroot.fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-300x170.webp 300w, https:\\/\\/fishroot.fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-768x435.webp 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css?ver=1725884340\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09ed\\u09eb \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h4>\\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ea\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc<\\/h4>\\t\\t\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09eb\\u09e6 \\n\\t\\t\\t\\t\\t \\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h4> \\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09ea\\u09eb\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc<\\/h4>\\t\\t\\n\\t\\t\\t<h2>\\u09ab\\u09cb\\u09a8\\u09c7 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8 \\u0985\\u09a5\\u09ac\\u09be \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"tel:01838404044\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01838 40 40 44\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964\\n<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/fishroot.fishgrowth.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983 <\\/h3>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishroot.fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/double-growth-min-300x300.jpeg\\\" alt=\\\"double growth\\\" \\/>\\n\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t450.00&#2547;&nbsp;\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishroot.fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/water-pluncton-min-300x300.jpeg\\\" alt=\\\"\\\" \\/>\\n\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t450.00&#2547;&nbsp;\\n\\t\\t\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_first_name\\\" id=\\\"billing_first_name\\\" placeholder=\\\"\\\"  value=\\\"Humayoun\\\" autocomplete=\\\"given-name\\\" \\/><\\/p><p id=\\\"billing_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"01727787392\\\" pattern=\\\"d{11}\\\" title=\\\"Phone number must be exactly 11 digits long and contain only numbers.\\\" maxlength=\\\"11\\\" minlength=\\\"11\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"barguna\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"36\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"38\\\">\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1753936629\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>450.00&#2547;&nbsp;<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>450.00&#2547;&nbsp;<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>900.00&#2547;&nbsp;<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t\\t<tr>\\n\\t<th>Shipping<\\/th>\\n\\t<td data-title=\\\"Shipping\\\">\\n\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<\\/td>\\n<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>900.00&#2547;&nbsp;<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/fishroot.fishgrowth.xyz\\/?page_id=3\\\" target=\\\"_blank\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;900.00&#2547;&nbsp;\\\" data-value=\\\"Place Order&nbsp;&nbsp;900.00&#2547;&nbsp;\\\">Place Order&nbsp;&nbsp;900.00&#2547;&nbsp;<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"706fc9ec6b\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t<p>Develop by itgalaxy<\\/p>\"','fishgrowth-02','','inherit','closed','closed','','2161-revision-v1','','','2026-06-10 21:39:33','2026-06-10 15:39:33','','2161','https://hypergrowth.fishgrowth.xyz/?p=2165','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2166','17','2026-06-10 21:39:33','2026-06-10 15:39:33','','placeholder.png','','inherit','closed','closed','','placeholder-png','','','2026-06-10 21:39:33','2026-06-10 15:39:33','','0','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/placeholder-2.png','0','attachment','image/png','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2167','17','2026-06-10 21:39:33','2026-06-10 15:39:33','\"<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg 945w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-300x300.jpg 300w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg 100w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-1.jpg 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-150x150.jpg 150w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-1.jpg 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7 \\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 fishgrowth\\u0964 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964 \\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=mjr8CjmMFL0\\t\\t\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tP H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg 945w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-300x300.jpg 300w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg 100w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-1.jpg 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-150x150.jpg 150w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-1.jpg 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\ud83d\\udca5\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\ud83d\\udca5\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964\\n<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/fishgrowth.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983 <\\/h3>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/double-growth-min-300x300.jpeg\\\" alt=\\\"double growth\\\" \\/>\\n\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/water-pluncton-min-300x300.jpeg\\\" alt=\\\"\\\" \\/>\\n\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t\\t\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<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_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" pattern=\\\"d{11}\\\" title=\\\"Phone number must be exactly 11 digits long and contain only numbers.\\\" maxlength=\\\"11\\\" minlength=\\\"11\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"36\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"54\\\">\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1725891214\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t\\t<tr>\\n\\t<th>Shipping<\\/th>\\n\\t<td data-title=\\\"Shipping\\\">\\n\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<\\/td>\\n<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/fishgrowth.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"3f06707584\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t\\t\\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 - 01838 40 40 44\"','checkout-woo','','publish','closed','closed','','checkout-woo','','','2026-06-10 21:39:33','2026-06-10 15:39:33','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2168','17','2026-06-10 21:39:33','2026-06-10 15:39:33','\"<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg 945w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-300x300.jpg 300w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg 100w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-1.jpg 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-150x150.jpg 150w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-1.jpg 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7 \\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 fishgrowth\\u0964 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964 \\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M188.8 512c45.616 0 83.2-37.765 83.2-83.2v-35.647a93.148 93.148 0 0 0 22.064-7.929c22.006 2.507 44.978-3.503 62.791-15.985C409.342 368.1 448 331.841 448 269.299V248c0-60.063-40-98.512-40-127.2v-2.679c4.952-5.747 8-13.536 8-22.12V32c0-17.673-12.894-32-28.8-32H156.8C140.894 0 128 14.327 128 32v64c0 8.584 3.048 16.373 8 22.12v2.679c0 6.964-6.193 14.862-23.668 30.183l-.148.129-.146.131c-9.937 8.856-20.841 18.116-33.253 25.851C48.537 195.798 0 207.486 0 252.8c0 56.928 35.286 92 83.2 92 8.026 0 15.489-.814 22.4-2.176V428.8c0 45.099 38.101 83.2 83.2 83.2zm0-48c-18.7 0-35.2-16.775-35.2-35.2V270.4c-17.325 0-35.2 26.4-70.4 26.4-26.4 0-35.2-20.625-35.2-44 0-8.794 32.712-20.445 56.1-34.926 14.575-9.074 27.225-19.524 39.875-30.799 18.374-16.109 36.633-33.836 39.596-59.075h176.752C364.087 170.79 400 202.509 400 248v21.299c0 40.524-22.197 57.124-61.325 50.601-8.001 14.612-33.979 24.151-53.625 12.925-18.225 19.365-46.381 17.787-61.05 4.95V428.8c0 18.975-16.225 35.2-35.2 35.2zM328 64c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u099a\\u09be\\u0987\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=mjr8CjmMFL0\\t\\t\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tP H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post.jpg 945w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-300x300.jpg 300w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg 100w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-600x600-1.jpg 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Green-Natural-Hello-Spring-Season-Instagram-Post-150x150.jpg 150w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/Green-Natural-Hello-Spring-Season-Instagram-Post-768x768-1.jpg 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\ud83d\\udca5\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf\\ud83d\\udca5\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#checkout\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993  \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964\\n<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/fishgrowth.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983 <\\/h3>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/double-growth-min-300x300.jpeg\\\" alt=\\\"double growth\\\" \\/>\\n\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/water-pluncton-min-300x300.jpeg\\\" alt=\\\"\\\" \\/>\\n\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t\\t\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<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_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" pattern=\\\"d{11}\\\" title=\\\"Phone number must be exactly 11 digits long and contain only numbers.\\\" maxlength=\\\"11\\\" minlength=\\\"11\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"36\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"54\\\">\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1725891214\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t\\t<tr>\\n\\t<th>Shipping<\\/th>\\n\\t<td data-title=\\\"Shipping\\\">\\n\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<\\/td>\\n<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/fishgrowth.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"3f06707584\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t\\t\\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 - 01838 40 40 44\"','checkout-woo','','inherit','closed','closed','','2167-revision-v1','','','2026-06-10 21:39:33','2026-06-10 15:39:33','','2167','https://hypergrowth.fishgrowth.xyz/?p=2168','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2169','17','2026-06-10 21:39:34','2026-06-10 15:39:34','\"<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09b8\\u09c0\\u09ae\\u09bf\\u09a4 \\u09b8\\u09ae\\u09df\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09ab\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u099c\\n<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor-pro - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-countdown .elementor-countdown-expire--message{display:none;padding:20px;text-align:center}.elementor-widget-countdown .elementor-countdown-wrapper{flex-direction:row}.elementor-widget-countdown .elementor-countdown-item{padding:20px 0;text-align:center;color:#fff}.elementor-widget-countdown .elementor-countdown-digits,.elementor-widget-countdown .elementor-countdown-label{line-height:1}.elementor-widget-countdown .elementor-countdown-digits{font-size:69px}.elementor-widget-countdown .elementor-countdown-label{font-size:19px}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-wrapper{display:flex;justify-content:center;margin-right:auto;margin-left:auto}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-digits,.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-label{display:block}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-item{flex-basis:0;flex-grow:1}.elementor-widget-countdown.elementor-countdown--label-inline{text-align:center}.elementor-widget-countdown.elementor-countdown--label-inline .elementor-countdown-item{display:inline-block;padding-left:5px;padding-right:5px}<\\/style>\\t\\t\\n\\t\\t\\t Days Hours Minutes Seconds\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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>\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css?ver=1725884340\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09ed\\u09eb \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09eb\\u09e6 \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0995\\u09ae\\u09cd\\u09ac\\u09cb \\u0985\\u09ab\\u09be\\u09b0 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 & \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\n\\t\\t\\t\\t\\t\\u09e7\\u09e6\\u09e6\\u09e6\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=Lrdqc3AwV9I\\t\\t\\n\\t\\t\\t<h2>\\n\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8   ?\\n<\\/h2>\\t\\t\\n\\t\\t<p>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7&nbsp;\\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 <strong>fishgrowth<\\/strong>\\u0964&nbsp;<b>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8<\\/b>&nbsp;\\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964&nbsp;\\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0  \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tP H  \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983 \\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09ad\\u09bf\\u099c\\u09cd\\u099e\\u09a4\\u09be, \\u09b6\\u09bf\\u0995\\u09cd\\u09b7\\u09be \\u0993 \\u09aa\\u09b0\\u09c0\\u0995\\u09cd\\u09b7\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ac\\u09a8\\u09df\\u09c7 fishgrowth \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09ac\\u09cd\\u09af\\u09be\\u09aa\\u09c0 \\u09ae\\u09be\\u099b \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u09b8\\u09c7\\u09ac\\u09be, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6 \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09aa\\u09a3\\u09cd\\u09af \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09c7 \\u0986\\u09b8\\u099b\\u09c7\\u0964 \\u09ae\\u09be\\u099b \\u099b\\u09be\\u09dc\\u09be \\u09b9\\u09a4\\u09c7 \\u09ac\\u09be\\u099c\\u09be\\u09b0\\u099c\\u09be\\u09a4 \\u0995\\u09b0\\u09be \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09c1\\u09a8\\u09bf\\u09aa\\u09c1\\u09a8 \\u09ae\\u09a8\\u09bf\\u099f\\u09b0\\u09bf\\u0982 \\u098f\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09aa\\u09a5\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u0997\\u09a3 \\u09b9\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993   \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964    \\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\\t\\t\\t\\t<\\/h3>\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/fishgrowth.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983 <\\/h3>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/double-growth-min-300x300.jpeg\\\" alt=\\\"double growth\\\" \\/>\\n\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/water-pluncton-min-300x300.jpeg\\\" alt=\\\"\\\" \\/>\\n\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t\\t\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<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_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" pattern=\\\"d{11}\\\" title=\\\"Phone number must be exactly 11 digits long and contain only numbers.\\\" maxlength=\\\"11\\\" minlength=\\\"11\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"36\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"59\\\">\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1725892596\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t\\t<tr>\\n\\t<th>Shipping<\\/th>\\n\\t<td data-title=\\\"Shipping\\\">\\n\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<\\/td>\\n<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/fishgrowth.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"3f06707584\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t<p>Copyright \\u00a9 2024 fishgrowth| This website made with \\u2764\\ufe0f by <a style=\\\"color: red;\\\" href=\\\"https:\\/\\/itgalaxi.com\\/\\\"><b> itgalaxi<\\/b><\\/a><\\/p>\"','checkout-woo 2','','publish','closed','closed','','checkout-woo-2','','','2026-06-10 21:39:34','2026-06-10 15:39:34','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-2/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2170','17','2026-06-10 21:39:34','2026-06-10 15:39:34','\"<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u09b8\\u09c0\\u09ae\\u09bf\\u09a4 \\u09b8\\u09ae\\u09df\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09ab\\u09be\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u0987\\u099c\\n<\\/h2>\\t\\t\\n\\t\\t\\t<style>\\/*! elementor-pro - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-countdown .elementor-countdown-expire--message{display:none;padding:20px;text-align:center}.elementor-widget-countdown .elementor-countdown-wrapper{flex-direction:row}.elementor-widget-countdown .elementor-countdown-item{padding:20px 0;text-align:center;color:#fff}.elementor-widget-countdown .elementor-countdown-digits,.elementor-widget-countdown .elementor-countdown-label{line-height:1}.elementor-widget-countdown .elementor-countdown-digits{font-size:69px}.elementor-widget-countdown .elementor-countdown-label{font-size:19px}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-wrapper{display:flex;justify-content:center;margin-right:auto;margin-left:auto}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-digits,.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-label{display:block}.elementor-widget-countdown.elementor-countdown--label-block .elementor-countdown-item{flex-basis:0;flex-grow:1}.elementor-widget-countdown.elementor-countdown--label-inline{text-align:center}.elementor-widget-countdown.elementor-countdown--label-inline .elementor-countdown-item{display:inline-block;padding-left:5px;padding-right:5px}<\\/style>\\t\\t\\n\\t\\t\\t Days Hours Minutes Seconds\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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>\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css?ver=1725884340\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09ed\\u09eb \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09eb\\u09e6 \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be  \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0995\\u09ae\\u09cd\\u09ac\\u09cb \\u0985\\u09ab\\u09be\\u09b0 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 & \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\n\\t\\t\\t\\t\\t\\u09e7\\u09e6\\u09e6\\u09e6\\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\thttps:\\/\\/www.youtube.com\\/watch?v=Lrdqc3AwV9I\\t\\t\\n\\t\\t\\t<h2>\\n\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8   ?\\n<\\/h2>\\t\\t\\n\\t\\t<p>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7&nbsp;\\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 <strong>fishgrowth<\\/strong>\\u0964&nbsp;<b>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8<\\/b>&nbsp;\\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964&nbsp;\\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0  \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tP H  \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983 \\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0985\\u09ad\\u09bf\\u099c\\u09cd\\u099e\\u09a4\\u09be, \\u09b6\\u09bf\\u0995\\u09cd\\u09b7\\u09be \\u0993 \\u09aa\\u09b0\\u09c0\\u0995\\u09cd\\u09b7\\u09be\\u09b0 \\u09b8\\u09ae\\u09cd\\u09ac\\u09a8\\u09df\\u09c7 fishgrowth \\u09ac\\u09be\\u0982\\u09b2\\u09be\\u09a6\\u09c7\\u09b6\\u09ac\\u09cd\\u09af\\u09be\\u09aa\\u09c0 \\u09ae\\u09be\\u099b \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u09b8\\u09c7\\u09ac\\u09be, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6 \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c0\\u09df \\u09aa\\u09a3\\u09cd\\u09af \\u09b8\\u09b0\\u09ac\\u09b0\\u09be\\u09b9 \\u0995\\u09b0\\u09c7 \\u0986\\u09b8\\u099b\\u09c7\\u0964 \\u09ae\\u09be\\u099b \\u099b\\u09be\\u09dc\\u09be \\u09b9\\u09a4\\u09c7 \\u09ac\\u09be\\u099c\\u09be\\u09b0\\u099c\\u09be\\u09a4 \\u0995\\u09b0\\u09be \\u09aa\\u09b0\\u09cd\\u09af\\u09a8\\u09cd\\u09a4 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09c1\\u09a8\\u09bf\\u09aa\\u09c1\\u09a8 \\u09ae\\u09a8\\u09bf\\u099f\\u09b0\\u09bf\\u0982 \\u098f\\u09b0 \\u0995\\u09be\\u09b0\\u09a3\\u09c7 \\u09b8\\u09a0\\u09bf\\u0995 \\u09aa\\u09a5\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u0997\\u09a3 \\u09b9\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8\\u0964\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2> \\u098f\\u0995 \\u099f\\u09be\\u0995\\u09be\\u0993   \\u0985\\u0997\\u09cd\\u09b0\\u09bf\\u09ae \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n<\\/h2>\\t\\t\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae, \\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be \\u098f\\u09ac\\u0982 \\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u0982 \\u09b2\\u09bf\\u0996\\u09c1\\u09a8\\u0964 \\u09a4\\u09be\\u09b0\\u09aa\\u09b0 \\u09a8\\u09bf\\u099a\\u09c7 Place Order \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8\\u0964 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0\\u099f\\u09bf \\u09b8\\u09a0\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u09b9\\u09ac\\u09c7\\u0964    \\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u098f\\u0995\\u09a6\\u09ae \\u09ab\\u09cd\\u09b0\\u09bf\\n\\t\\t\\t\\t<\\/h3>\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/fishgrowth.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983 <\\/h3>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/double-growth-min-300x300.jpeg\\\" alt=\\\"double growth\\\" \\/>\\n\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/water-pluncton-min-300x300.jpeg\\\" alt=\\\"\\\" \\/>\\n\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t\\t\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<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_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" pattern=\\\"d{11}\\\" title=\\\"Phone number must be exactly 11 digits long and contain only numbers.\\\" maxlength=\\\"11\\\" minlength=\\\"11\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"36\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"59\\\">\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1725892596\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t\\t<tr>\\n\\t<th>Shipping<\\/th>\\n\\t<td data-title=\\\"Shipping\\\">\\n\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<\\/td>\\n<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/fishgrowth.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"3f06707584\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t<p>Copyright \\u00a9 2024 fishgrowth| This website made with \\u2764\\ufe0f by <a style=\\\"color: red;\\\" href=\\\"https:\\/\\/itgalaxi.com\\/\\\"><b> itgalaxi<\\/b><\\/a><\\/p>\"','checkout-woo 2','','inherit','closed','closed','','2169-revision-v1','','','2026-06-10 21:39:34','2026-06-10 15:39:34','','2169','https://hypergrowth.fishgrowth.xyz/?p=2170','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2171','17','2026-06-10 21:39:34','2026-06-10 15:39:34','\"<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"512\\\" height=\\\"512\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post.jpg 512w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-300x300.jpg 300w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg 100w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-150x150.jpg 150w\\\" sizes=\\\"(max-width: 512px) 100vw, 512px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n<\\/h2>\\t\\t\\n\\t\\t<p>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7 \\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 fishgrowth\\u0964 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964 \\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css?ver=1725884340\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09eb\\u09e6 \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09ed\\u09eb \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 \\u09ac\\u09be \\u0995\\u09b2 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"https:\\/\\/wa.me\\/+8801838404044\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01838 40 40 44\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tP H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09cb\\u09a8 \\u09b0\\u0995\\u09ae \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u099b\\u09be\\u09a1\\u09bc\\u09be \\u0998\\u09b0\\u09cb\\u09df\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09b8\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"453\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp 912w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-600x339.webp 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-300x170.webp 300w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-768x435.webp 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8-<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/fishgrowth.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983 <\\/h3>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/double-growth-min-300x300.jpeg\\\" alt=\\\"double growth\\\" \\/>\\n\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/water-pluncton-min-300x300.jpeg\\\" alt=\\\"\\\" \\/>\\n\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t\\t\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<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_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" pattern=\\\"d{11}\\\" title=\\\"Phone number must be exactly 11 digits long and contain only numbers.\\\" maxlength=\\\"11\\\" minlength=\\\"11\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"36\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"64\\\">\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1725891195\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t\\t<tr>\\n\\t<th>Shipping<\\/th>\\n\\t<td data-title=\\\"Shipping\\\">\\n\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<\\/td>\\n<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/fishgrowth.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"3f06707584\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t\\t<h2>Copyright \\u00a9 2024  Fish Growth | This website made with <img draggable=\\\"false\\\" role=\\\"img\\\" alt=\\\"\\u2764\\ufe0f\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/15.0.3\\/svg\\/2764.svg\\\"> by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','checkout-woo 3','','publish','closed','closed','','checkout-woo-3-2','','','2026-06-10 21:39:34','2026-06-10 15:39:34','','0','https://hypergrowth.fishgrowth.xyz/step/checkout-woo-3-2/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2172','17','2026-06-10 21:39:34','2026-06-10 15:39:34','\"<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\\\".svg\\\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\\/style>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"512\\\" height=\\\"512\\\" src=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post.jpg\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post.jpg 512w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-300x300.jpg 300w, https:\\/\\/hypergrowth.fishgrowth.xyz\\/wp-content\\/uploads\\/2026\\/06\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-100x100-1.jpg 100w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/cropped-Green-Natural-Hello-Spring-Season-Instagram-Post-150x150.jpg 150w\\\" sizes=\\\"(max-width: 512px) 100vw, 512px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\\/style><h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7\\u09c0\\u09a6\\u09c7\\u09b0 \\u09ae\\u09a7\\u09cd\\u09af\\u09c7\\u0993 \\u09b9\\u09af\\u09bc\\u09c7 \\u0989\\u09a0\\u09c1\\u09a8 \\u09b0\\u09be\\u099c\\u09be\\n<\\/h2>\\t\\t\\n\\t\\t<p>\\u09ac\\u09cd\\u09af\\u09df \\u0995\\u09ae\\u09bf\\u09df\\u09c7, \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09be\\u09dc\\u09be\\u09a8\\u09cb\\u0987 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09b2\\u09be\\u09ad\\u09ac\\u09be\\u09a8 \\u09b9\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09ac\\u09bf\\u0995\\u09be\\u09a0\\u09bf\\u0964 \\u0986\\u09b0 \\u09b8\\u09c7\\u0987 \\u09ae\\u09bf\\u09b6\\u09a8-\\u09ad\\u09bf\\u09b6\\u09a8\\u0995\\u09c7 \\u09b8\\u09be\\u09ae\\u09a8\\u09c7 \\u09b0\\u09c7\\u0996\\u09c7 \\u09a8\\u09be\\u09a8\\u09be\\u09ac\\u09bf\\u09a7 \\u09aa\\u09a3\\u09cd\\u09af \\u0993 \\u09b8\\u09c7\\u09ac\\u09be \\u09a8\\u09bf\\u09df\\u09c7 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09a8\\u09bf\\u09df\\u09c7 \\u098f\\u0997\\u09bf\\u09df\\u09c7 \\u09af\\u09be\\u099a\\u09cd\\u099b\\u09c7 fishgrowth\\u0964 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09a6\\u09b2\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u099a\\u09be\\u09b7 \\u09a8\\u09bf\\u09df\\u09c7 \\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a6\\u09c3\\u09b7\\u09cd\\u099f\\u09bf\\u09ad\\u0999\\u09cd\\u0997\\u09bf\\u0964 \\u0986\\u09aa\\u09a8\\u09bf\\u0993 \\u09af\\u09c1\\u0995\\u09cd\\u09a4 \\u09b9\\u09cb\\u09a8 \\u0993 \\u09b9\\u09df\\u09c7 \\u09af\\u09be\\u09a8 \\u0986\\u09ae\\u09be\\u09a6\\u09c7\\u09b0 \\u09b8\\u09ab\\u09b2 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf \\u09aa\\u09b0\\u09bf\\u09ac\\u09be\\u09b0\\u09c7\\u09b0 \\u0985\\u0982\\u09b6\\u0964<\\/p>\\t\\t\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<style>\\/*! elementor - v3.23.0 - 05-08-2024 *\\/\\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/css\\/widget-animated-headline.min.css?ver=1725884340\\\">\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09eb\\u09e6 \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t\\t\\t<h3>\\n\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\n\\t\\t\\t\\t\\t\\u09ee\\u09ed\\u09eb \\n\\t\\t\\t\\t\\t\\u099f\\u09be\\u0995\\u09be \\u09aa\\u09be\\u099a\\u09cd\\u099b\\u09c7\\u09a8 \\u09ae\\u09be\\u09a4\\u09cd\\u09b0 \\u09eb\\u09e6\\u09e6 \\u099f\\u09be\\u0995\\u09be\\u09af\\u09bc\\n\\t\\t\\t\\t\\t<\\/h3>\\n\\t\\t\\t<h2>\\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u099c\\u09a8\\u09c7 \\u0995\\u09b2 \\u0995\\u09b0\\u09c1\\u09a8 \\u09ac\\u09be \\u0995\\u09b2 \\u0995\\u09b0\\u09a4\\u09c7 \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ac\\u09be\\u099f\\u09a8\\u09c7 \\u0995\\u09cd\\u09b2\\u09bf\\u0995 \\u0995\\u09b0\\u09c1\\u09a8<\\/h2>\\t\\t\\n\\t\\t\\t<a href=\\\"https:\\/\\/wa.me\\/+8801838404044\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t01838 40 40 44\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0995\\u09c7\\u09a8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09ac\\u09c7\\u09a8 ?\\n<\\/h2>\\t\\t\\n\\t\\t\\t<link rel=\\\"stylesheet\\\" href=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/widget-icon-list.min.css\\\">\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u09b9\\u09ac\\u09c7 \\u09aa\\u09cd\\u09b0\\u09be\\u0995\\u09c3\\u09a4\\u09bf\\u0995 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u098f\\u09ae\\u09cb\\u09a8\\u09bf\\u09af\\u09bc\\u09be \\u09b9\\u09a4\\u09c7 \\u09a6\\u09c7\\u09df \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tP H \\u0993 TDS \\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u09a8\\u09bf\\u09af\\u09bc\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0\\u09a3 \\u09b0\\u09be\\u0996\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u0985\\u0995\\u09cd\\u09b8\\u09bf\\u099c\\u09c7\\u09a8\\u09c7\\u09b0 \\u09b8\\u09cd\\u09ac\\u09b2\\u09cd\\u09aa\\u09a4\\u09be \\u09b9\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09ae\\u09be\\u099b \\u09ad\\u09be\\u09b8\\u09ac\\u09c7 \\u09a8\\u09be\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09b9\\u099a\\u09cd\\u099b\\u09c7 \\u09ae\\u09be\\u09b2\\u09cd\\u099f\\u09bf\\u09ad\\u09bf\\u099f\\u09be\\u09ae\\u09bf\\u09a8\\u09c7\\u09b0 \\u098f\\u09ae\\u09a8 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u09af\\u09be \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8 \\u0993 \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf\\u09a4\\u09c7 \\u09b8\\u09b9\\u09be\\u09df\\u0995 \\u09ad\\u09c2\\u09ae\\u09bf\\u0995\\u09be \\u09aa\\u09be\\u09b2\\u09a8 \\u0995\\u09b0\\u09c7\\u0964 \\u09ae\\u09be\\u099b\\u0995\\u09c7 \\u09b6\\u0995\\u09cd\\u09a4\\u09bf\\u09b6\\u09be\\u09b2\\u09c0 \\u0993 \\u0986\\u0995\\u09b0\\u09cd\\u09b7\\u09a3\\u09c0\\u09df \\u0995\\u09b0\\u09c7 \\u09a4\\u09cb\\u09b2\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b9\\u09be\\u09dc \\u0993 \\u0986\\u09b6 \\u09b6\\u0995\\u09cd\\u09a4 \\u09ae\\u099c\\u09ac\\u09c1\\u09a4 \\u0995\\u09b0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b0\\u09cb\\u0997 \\u09aa\\u09cd\\u09b0\\u09a4\\u09bf\\u09b0\\u09cb\\u09a7\\u0995 \\u09b9\\u09bf\\u09b8\\u09c7\\u09ac\\u09c7 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0996\\u09be\\u09ae\\u09be\\u09b0\\u09bf\\u09a6\\u09c7\\u09b0 \\u09a8\\u09bf\\u09b6\\u09cd\\u099a\\u09af\\u09bc\\u09a4\\u09be \\u09a6\\u09c7\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t-\\u09b8\\u09c1\\u09b0\\u0995\\u09cd\\u09b7\\u09bf\\u09a4 \\u09b8\\u09c1\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09cd\\u09ac\\u09be\\u09ad\\u09be\\u09ac\\u09bf\\u0995 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u09bf\\u0995 \\u0989\\u09ce\\u09aa\\u09be\\u09a6\\u09a8 \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u0993 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b9\\u09be\\u09b0\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09aa\\u09b0\\u09bf\\u09aa\\u09be\\u0995\\u09a4\\u09a8\\u09cd\\u09a4\\u09cd\\u09b0 \\u09b9\\u09df \\u0989\\u09a8\\u09cd\\u09a8\\u09a4, \\u09ab\\u09b2\\u09c7, \\u09a4\\u09be\\u09a6\\u09c7\\u09b0 \\u09b9\\u099c\\u09ae \\u09b6\\u0995\\u09cd\\u09a4\\u09bf \\u0993 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3\\u09c7\\u09b0 \\u09b8\\u0995\\u09cd\\u09b7\\u09ae\\u09a4\\u09be \\u09ac\\u09c3\\u09a6\\u09cd\\u09a7\\u09bf \\u09aa\\u09be\\u09df\\u0964 \\u098f\\u09a4\\u09c7 \\u09ae\\u09be\\u099b \\u0985\\u09a7\\u09bf\\u0995 \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u0997\\u09cd\\u09b0\\u09b9\\u09a3 \\u0995\\u09b0\\u09c7 \\u0993 \\u09b8\\u09b9\\u099c\\u09c7 \\u09b9\\u099c\\u09ae \\u0995\\u09b0\\u09a4\\u09c7 \\u09aa\\u09be\\u09b0\\u09c7\\u0964 \\u09a4\\u09be\\u0987 \\u09ae\\u09be\\u099b \\u09ac\\u09c8\\u099c\\u09cd\\u099e\\u09be\\u09a8\\u09bf\\u0995\\u09ad\\u09be\\u09ac\\u09c7, \\u09a8\\u09bf\\u09b0\\u09be\\u09aa\\u09a6 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ae\\u09be\\u099b \\u09a6\\u09cd\\u09b0\\u09c1\\u09a4 \\u09ac\\u09c7\\u09dc\\u09c7 \\u0989\\u09a0\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t* \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u09ae\\u09b2 \\u09aa\\u09cd\\u09b0\\u09cb\\u099f\\u09bf\\u09a8 \\u09b8\\u09ae\\u09cd\\u09aa\\u09a8\\u09cd\\u09a8 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7 \\u09aa\\u09b0\\u09bf\\u09a3\\u09a4 \\u09b9\\u09df, \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09b8\\u09be\\u09b0\\u09cd\\u09ac\\u0995\\u09cd\\u09b7\\u09a3\\u09bf\\u0995 \\u0996\\u09be\\u09a6\\u09cd\\u09af\\u09c7\\u09b0 \\u09ac\\u09cd\\u09af\\u09be\\u09ac\\u09b8\\u09cd\\u09a5\\u09be \\u09a5\\u09be\\u0995\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09b8\\u09b0\\u0995\\u09be\\u09b0 \\u098f\\u0997\\u09cd\\u09b0\\u09cb \\u0995\\u09c7\\u09df\\u09be\\u09b0 \\u09b6\\u09c1\\u09a7\\u09c1 \\u09aa\\u09a3\\u09cd\\u09af\\u09c7\\u0987 \\u09a8\\u09df, \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7 \\u0993 \\u09b8\\u09c7\\u09ac\\u09be\\u09a4\\u09c7\\u0993 \\u0985\\u09a8\\u09a8\\u09cd\\u09af\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<a href=\\\"#order\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M504.717 320H211.572l6.545 32h268.418c15.401 0 26.816 14.301 23.403 29.319l-5.517 24.276C523.112 414.668 536 433.828 536 456c0 31.202-25.519 56.444-56.824 55.994-29.823-.429-54.35-24.631-55.155-54.447-.44-16.287 6.085-31.049 16.803-41.548H231.176C241.553 426.165 248 440.326 248 456c0 31.813-26.528 57.431-58.67 55.938-28.54-1.325-51.751-24.385-53.251-52.917-1.158-22.034 10.436-41.455 28.051-51.586L93.883 64H24C10.745 64 0 53.255 0 40V24C0 10.745 10.745 0 24 0h102.529c11.401 0 21.228 8.021 23.513 19.19L159.208 64H551.99c15.401 0 26.816 14.301 23.403 29.319l-47.273 208C525.637 312.246 515.923 320 504.717 320zM403.029 192H360v-60c0-6.627-5.373-12-12-12h-24c-6.627 0-12 5.373-12 12v60h-43.029c-10.691 0-16.045 12.926-8.485 20.485l67.029 67.029c4.686 4.686 12.284 4.686 16.971 0l67.029-67.029c7.559-7.559 2.205-20.485-8.486-20.485z\\\"><\\/path><\\/svg>\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<h2>\\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09ac\\u09bf\\u09a7\\u09bf<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t1\\u0964 \\u09aa\\u09cd\\u09b0\\u09a5\\u09ae 2 \\u09a6\\u09bf\\u09a8 \\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09cd\\u09af\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 \\u09a6\\u09c1\\u0987\\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t2\\u0964 \\u098f\\u0995\\u0987\\u09ad\\u09be\\u09ac\\u09c7 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 2 \\u09a6\\u09bf\\u09a8 \\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8 2 \\u09ad\\u09be\\u0997\\u09c7 \\u09ad\\u09be\\u0997 \\u0995\\u09b0\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t3\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f\\u0997\\u09c1\\u09b2\\u09cb \\u098f\\u0987 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a3 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u09ad\\u09be\\u09b2\\u09cb\\u09ad\\u09be\\u09ac\\u09c7 \\u09ae\\u09bf\\u09b6\\u09cd\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8 \\u09af\\u09c7\\u09a8 \\u09aa\\u09cd\\u09b0\\u09be\\u09af\\u09bc \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09af\\u09bc\\u09c7 \\u09ac\\u09be \\u09b8\\u09cd\\u09aa\\u09cd\\u09b0\\u09c7 \\u0995\\u09b0\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u09aa\\u09c1\\u0995\\u09c1\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09a8 \\u0995\\u09b0\\u09be \\u09af\\u09be\\u09af\\u09bc\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t4\\u0964 \\u09ac\\u09c3\\u09b7\\u09cd\\u099f\\u09bf \\u09ac\\u09be \\u09ae\\u09c7\\u0998\\u09b2\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u09b9\\u09a4\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t5\\u0964 \\u09b8\\u0995\\u09be\\u09b2\\u09c7\\u09b0 \\u09a8\\u09b0\\u09ae \\u09b0\\u09c1\\u09a6\\u09cd\\u09b0 \\u0989\\u099c\\u09cd\\u099c\\u09cd\\u09ac\\u09b2 \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0 \\u0995\\u09b0\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t6\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u0989\\u0995\\u09cd\\u09a4 4 \\u09a6\\u09bf\\u09a8 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09c7\\u0993\\u09af\\u09bc\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09ac\\u09bf\\u09b0\\u09a4 \\u09a5\\u09be\\u0995\\u09c1\\u09a8 \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u09b8\\u09b0\\u09cd\\u09ac\\u09cb\\u099a\\u09cd\\u099a 3 \\u09ad\\u09be\\u0997\\u09c7\\u09b0 1 \\u09ad\\u09be\\u0997 \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u09a6\\u09bf\\u09a8 \\u098f\\u09ac\\u0982 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09b8\\u09ae\\u09af\\u09bc\\u09c7 \\u09ae\\u09be\\u099b\\u09c7\\u09b0 \\u0993\\u099c\\u09a8\\u09c7\\u09b0 2 \\u09a5\\u09c7\\u0995\\u09c7 3 \\u09aa\\u09be\\u09b0\\u09cd\\u09b8\\u09c7\\u09a8\\u09cd\\u099f \\u0996\\u09be\\u09ac\\u09be\\u09b0 \\u099a\\u09be\\u09b2\\u09c1 \\u09b0\\u09be\\u0996\\u09c1\\u09a8\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t7\\u0964 \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09ac\\u09cd\\u09af\\u09ac\\u09b9\\u09be\\u09b0\\u09c7\\u09b0 \\u09b8\\u09ae\\u09af\\u09bc \\u09a5\\u09c7\\u0995\\u09c7 2 \\u09ae\\u09be\\u09b8 \\u098f\\u09b0 \\u09aa\\u09b0\\u09c7 \\u09af\\u09cb\\u0997\\u09be\\u09af\\u09cb\\u0997\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0985\\u09a8\\u09c1\\u09b0\\u09cb\\u09a7 \\u09b0\\u0987\\u09b2 \\u09aa\\u09b0\\u09ac\\u09b0\\u09cd\\u09a4\\u09c0 \\u09a1\\u09c1\\u099c \\u0995\\u09bf\\u0982\\u09ac\\u09be \\u099c\\u09b0\\u09c1\\u09b0\\u09c0 \\u0986\\u09b2\\u09cb\\u099a\\u09a8\\u09be \\u09aa\\u09b0\\u09be\\u09ae\\u09b0\\u09cd\\u09b6\\u09c7\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u0986\\u09ac\\u09b6\\u09cd\\u09af\\u0995\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M505 174.8l-39.6-39.6c-9.4-9.4-24.6-9.4-33.9 0L192 374.7 80.6 263.2c-9.4-9.4-24.6-9.4-33.9 0L7 302.9c-9.4 9.4-9.4 24.6 0 34L175 505c9.4 9.4 24.6 9.4 33.9 0l296-296.2c9.4-9.5 9.4-24.7.1-34zm-324.3 106c6.2 6.3 16.4 6.3 22.6 0l208-208.2c6.2-6.3 6.2-16.4 0-22.6L366.1 4.7c-6.2-6.3-16.4-6.3-22.6 0L192 156.2l-55.4-55.5c-6.2-6.3-16.4-6.3-22.6 0L68.7 146c-6.2 6.3-6.2 16.4 0 22.6l112 112.2z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u0995\\u09cb\\u09a8 \\u09b0\\u0995\\u09ae \\u0995\\u09c7\\u09ae\\u09bf\\u0995\\u09cd\\u09af\\u09be\\u09b2 \\u099b\\u09be\\u09a1\\u09bc\\u09be \\u0998\\u09b0\\u09cb\\u09df\\u09be \\u09aa\\u09b0\\u09bf\\u09ac\\u09c7\\u09b6\\u09c7 \\u09b8\\u09be\\u09b8\\u09cd\\u09a5\\u09cd\\u09af \\u09b8\\u09ae\\u09cd\\u09ae\\u09a4 \\u09ad\\u09be\\u09ac\\u09c7 \\u09a4\\u09c8\\u09b0\\u09bf \\u0995\\u09b0\\u09be \\u09b9\\u09df\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09ae\\u09be\\u09a4\\u09cd\\u09b0\\u09be \\u0993 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"800\\\" height=\\\"453\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806.webp 912w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-600x339.webp 600w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-300x170.webp 300w, https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/Screenshot-2024-07-01-134806-768x435.webp 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t<h2>\\u0993\\u09af\\u09bc\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8\\u0983 \\u09aa\\u09cd\\u09b0\\u09df\\u09cb\\u0997\\u09ac\\u09bf\\u09a7\\u09bf\\u0983\\n<\\/h2>\\t\\t\\n\\t\\t\\t\\t\\t<ul>\\n\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\u09aa\\u09cd\\u09b0\\u09a4\\u09bf \\u09b6\\u09a4\\u0995\\u09c7 100\\/150 \\u0997\\u09cd\\u09b0\\u09be\\u09ae \\u09b9\\u09be\\u09b0\\u09c7 \\u09aa\\u09b0\\u09bf\\u09ae\\u09be\\u09a8 \\u09ae\\u09a4 \\u09aa\\u09be\\u09a8\\u09bf\\u09b0 \\u09b8\\u09be\\u09a5\\u09c7 \\u0997\\u09c1\\u09b2\\u09bf\\u09df\\u09c7 \\u09b8\\u09ae\\u09cd\\u09aa\\u09c2\\u09b0\\u09cd\\u09a3 \\u099c\\u09b2\\u09be\\u09b6\\u09df\\u09c7 \\u099b\\u09bf\\u099f\\u09bf\\u09df\\u09c7 \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7\\u0964\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<h2>\\u0985\\u09b0\\u09cd\\u09a1\\u09be\\u09b0 \\u0995\\u09b0\\u09be\\u09b0 \\u099c\\u09a8\\u09cd\\u09af \\u09a8\\u09bf\\u099a\\u09c7\\u09b0 \\u09ab\\u09b0\\u09cd\\u09ae\\u099f\\u09bf \\u09aa\\u09c2\\u09b0\\u09a3 \\u0995\\u09b0\\u09c1\\u09a8-<\\/h2>\\t\\t\\n<!-- CHECKOUT SHORTCODE -->\\n<form name=\\\"checkout\\\" method=\\\"post\\\" action=\\\"https:\\/\\/fishgrowth.xyz\\/checkout\\/\\\" enctype=\\\"multipart\\/form-data\\\">\\n\\t<h3 id=\\\"your_products_heading\\\"> \\u09aa\\u09cd\\u09b0\\u09cb\\u09a1\\u09be\\u0995\\u09cd\\u099f \\u09b8\\u09bf\\u09b2\\u09c7\\u0995\\u09cd\\u099f \\u0995\\u09b0\\u09c1\\u09a8\\u0983 <\\/h3>\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/double-growth-min-300x300.jpeg\\\" alt=\\\"double growth\\\" \\/>\\n\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t<img width=\\\"300\\\" height=\\\"300\\\" src=\\\"https:\\/\\/fishgrowth.xyz\\/wp-content\\/uploads\\/2024\\/09\\/water-pluncton-min-300x300.jpeg\\\" alt=\\\"\\\" \\/>\\n\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b81\\n\\t\\t&minus;\\n\\t\\t<input autocomplete=\\\"off\\\" type=\\\"number\\\" value=\\\"1\\\" step=\\\"1\\\" min=\\\"1\\\" name=\\\"wcf_qty_selection\\\" placeholder=\\\"1\\\" data-sale-limit=\\\"false\\\"  title=\\\"\\\"  >\\n\\t\\t&plus;\\n\\t&#2547;&nbsp;500.00\\n\\t\\t\\t\\t<wc-order-attribution-inputs><\\/wc-order-attribution-inputs>\\n\\t\\t<h3 id=\\\"billing_fields_heading\\\">Billing details<\\/h3>\\n\\t\\t<p id=\\\"billing_first_name_field\\\" data-priority=\\\"10\\\"><label for=\\\"billing_first_name\\\">\\u0986\\u09aa\\u09a8\\u09be\\u09b0 \\u09a8\\u09be\\u09ae\\u0983&nbsp;<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_phone_field\\\" data-priority=\\\"20\\\"><label for=\\\"billing_phone\\\">\\u09ae\\u09cb\\u09ac\\u09be\\u0987\\u09b2 \\u09a8\\u09ae\\u09cd\\u09ac\\u09b0\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"tel\\\" name=\\\"billing_phone\\\" id=\\\"billing_phone\\\" placeholder=\\\"\\\"  value=\\\"\\\" pattern=\\\"d{11}\\\" title=\\\"Phone number must be exactly 11 digits long and contain only numbers.\\\" maxlength=\\\"11\\\" minlength=\\\"11\\\" autocomplete=\\\"tel\\\" \\/><\\/p><p id=\\\"billing_address_1_field\\\" data-priority=\\\"30\\\"><label for=\\\"billing_address_1\\\">\\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09a0\\u09bf\\u0995\\u09be\\u09a8\\u09be\\u0983&nbsp;<abbr title=\\\"required\\\">*<\\/abbr><\\/label><input type=\\\"text\\\" name=\\\"billing_address_1\\\" id=\\\"billing_address_1\\\" placeholder=\\\"\\\"  value=\\\"\\\" autocomplete=\\\"address-line1\\\" \\/><\\/p>\\t\\n\\t<input type=\\\"hidden\\\" name=\\\"_wcf_flow_id\\\" value=\\\"36\\\"><input type=\\\"hidden\\\" name=\\\"_wcf_checkout_id\\\" value=\\\"64\\\">\\n\\t\\t<h3 id=\\\"order_review_heading\\\">Your order<\\/h3>\\n\\t\\t\\t<table data-update-time=\\\"1725891195\\\">\\n\\t<thead>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Product<\\/th>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t<\\/tr>\\n\\t<\\/thead>\\n\\t<tbody>\\n\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u09a1\\u09be\\u09ac\\u09b2 \\u0997\\u09cd\\u09b0\\u09cb\\u09a5 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t\\u0993\\u09df\\u09be\\u099f\\u09be\\u09b0 \\u09aa\\u09cd\\u09b2\\u09be\\u0982\\u0995\\u099f\\u09a8 \\u09aa\\u09cd\\u09b2\\u09be\\u09b8&nbsp;\\t\\t\\t\\t\\t\\t <strong>&times;&nbsp;1<\\/strong>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t\\t<td>\\n\\t\\t\\t\\t\\t\\t<bdi>&#2547;&nbsp;500.00<\\/bdi>\\t\\t\\t\\t\\t<\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t\\t\\t<\\/tbody>\\n\\t<tfoot>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Subtotal<\\/th>\\n\\t\\t\\t<td><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/td>\\n\\t\\t<\\/tr>\\n\\t\\t\\t<tr>\\n\\t<th>Shipping<\\/th>\\n\\t<td data-title=\\\"Shipping\\\">\\n\\t\\t\\t\\t\\t<ul id=\\\"shipping_method\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<li>\\n\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"shipping_method[0]\\\" data-index=\\\"0\\\" id=\\\"shipping_method_0_free_shipping3\\\" value=\\\"free_shipping:3\\\" \\/><label for=\\\"shipping_method_0_free_shipping3\\\">Free shipping<\\/label>\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t<\\/td>\\n<\\/tr>\\n\\t\\t<tr>\\n\\t\\t\\t<th>Total<\\/th>\\n\\t\\t\\t<td><strong><bdi>&#2547;&nbsp;1,000.00<\\/bdi><\\/strong> <\\/td>\\n\\t\\t<\\/tr>\\n\\t<\\/tfoot>\\n<\\/table>\\n\\t\\t\\t<ul>\\n\\t\\t\\t<li>\\n\\t<input id=\\\"payment_method_cod\\\" type=\\\"radio\\\" name=\\\"payment_method\\\" value=\\\"cod\\\"  checked=\'checked\' data-order_button_text=\\\"\\\" \\/>\\n\\t<label for=\\\"payment_method_cod\\\">\\n\\t\\tCash on delivery \\t<\\/label>\\n\\t\\t\\t<p>Pay with cash upon delivery.<\\/p>\\n\\t<\\/li>\\n\\t\\t<\\/ul>\\n\\t\\t<noscript>\\n\\t\\t\\tSince 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.\\t\\t\\t<br\\/><button type=\\\"submit\\\" name=\\\"woocommerce_checkout_update_totals\\\" value=\\\"Update totals\\\">Update totals<\\/button>\\n\\t\\t<\\/noscript>\\n\\t\\t<p>Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our <a href=\\\"https:\\/\\/fishgrowth.xyz\\/?page_id=3\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">privacy policy<\\/a>.<\\/p>\\n\\t\\t<button type=\\\"submit\\\" name=\\\"woocommerce_checkout_place_order\\\" id=\\\"place_order\\\" value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\" data-value=\\\"Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00\\\">Place Order&nbsp;&nbsp;&#2547;&nbsp;1,000.00<\\/button>\\n\\t\\t<input type=\\\"hidden\\\" id=\\\"woocommerce-process-checkout-nonce\\\" name=\\\"woocommerce-process-checkout-nonce\\\" value=\\\"3f06707584\\\" \\/><input type=\\\"hidden\\\" name=\\\"_wp_http_referer\\\" value=\\\"\\/wp-admin\\/admin-ajax.php\\\" \\/>\\t\\n<\\/form>\\n<!-- END CHECKOUT SHORTCODE -->\\n\\t\\t\\t<h2>\\u0995\\u09cb\\u09a8 \\u0995\\u09be\\u09b0\\u09a8\\u09c7 \\u09aa\\u09a3\\u09cd\\u09af  \\u09b0\\u09bf\\u099f\\u09be\\u09b0\\u09cd\\u09a8 \\u0995\\u09b0\\u09b2\\u09c7 \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u099a\\u09be\\u09b0\\u09cd\\u099c \\u09a6\\u09bf\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7 \\u0995\\u09be\\u09b0\\u09a3 \\u098f\\u099f\\u09be \\u09a1\\u09c7\\u09b2\\u09bf\\u09ad\\u09be\\u09b0\\u09bf \\u09ac\\u09af\\u09bc \\u098f\\u09b0 \\u09aa\\u09cd\\u09b0\\u09be\\u09aa\\u09cd\\u09af  \\u0995\\u09be\\u09b0\\u09cb \\u09aa\\u09be\\u0993\\u09a8\\u09be \\u09a5\\u09c7\\u0995\\u09c7 \\u09a4\\u09be\\u0995\\u09c7 \\u09ac\\u099e\\u09cd\\u099a\\u09bf\\u09a4 \\u0995\\u09b0\\u09b2\\u09c7  \\u0986\\u09b2\\u09cd\\u09b2\\u09be\\u09b9\\u09b0 \\u0995\\u09be\\u099b\\u09c7 \\u099c\\u09ac\\u09be\\u09ac\\u09a6\\u09bf\\u09b9\\u09bf \\u0995\\u09b0\\u09a4\\u09c7 \\u09b9\\u09ac\\u09c7<\\/h2>\\t\\t\\n\\t\\t\\t<h2>Copyright \\u00a9 2024  Fish Growth | This website made with <img draggable=\\\"false\\\" role=\\\"img\\\" alt=\\\"\\u2764\\ufe0f\\\" src=\\\"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/15.0.3\\/svg\\/2764.svg\\\"> by <a href=\\\"https:\\/\\/itgalaxi.com\\/\\\" style=\\\"color:red\\\"><b> The Smart Way<\\/b><\\/a><\\/h2>\"','checkout-woo 3','','inherit','closed','closed','','2171-revision-v1','','','2026-06-10 21:39:34','2026-06-10 15:39:34','','2171','https://hypergrowth.fishgrowth.xyz/?p=2172','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2173','17','2026-06-10 21:39:34','2026-06-10 15:39:34','\"\"','Thank You (Woo)','','publish','closed','closed','','thank-you-woo','','','2026-06-10 21:39:34','2026-06-10 15:39:34','','0','https://hypergrowth.fishgrowth.xyz/step/thank-you-woo/','0','cartflows_step','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2174','17','2026-06-10 21:41:09','2026-06-10 15:41:09','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>Elegance \nRedefined</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">exclusive-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">man-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Men\'s Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">stylish </a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">New Arrivals</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Best Collections</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Top Collections</a></h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our style\n</h6>		\n			<h2>Fashion</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick &amp; Fashion</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style<br></h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2> Your Style</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-10 21:41:09','2026-06-10 15:41:09','','15','https://hypergrowth.fishgrowth.xyz/?p=2174','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2175','17','2026-06-10 21:41:09','2026-06-10 15:41:09','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>Elegance \nRedefined</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{b979c83bd9ac4a0bff4aef5a56c26efc45067273118631eac796a2cde48e8c05}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">exclusive-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">man-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Men\'s Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">stylish </a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">New Arrivals</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Best Collections</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Top Collections</a></h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our style\n</h6>		\n			<h2>Fashion</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick &amp; Fashion</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style<br></h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_34-PM.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2> Your Style</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-10 21:41:09','2026-06-10 15:41:09','','15','https://hypergrowth.fishgrowth.xyz/?p=2175','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2176','17','2026-06-10 21:41:09','2026-06-10 15:41:09','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Are you hungry?</h6>		\n			<h1>Elegance \nRedefined</h1>		\n			<a href=\"#\">\n									Go to Menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_47-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">exclusive-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"272\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_24-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_26-PM.png\" alt=\"\" /></a></figure><h5><a href=\"#\">man-fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"267\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_38-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Men\'s Fashion</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_28_33-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">stylish </a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"240\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_26_42-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">New Arrivals</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_52-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Best Collections</a></h5>		\n			<figure><a href=\"#\" tabindex=\"-1\"><img width=\"300\" height=\"300\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_30_59-PM.jpg\" alt=\"\" /></a></figure><h5><a href=\"#\">Top Collections</a></h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p><p>$14.45</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h4><a href=\"#\">Discovery <br>New Menu</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<h4><a href=\"#\">Buy one <br>get two</a></h4>		\n		<p>Lorem ipsum dolor adipiscing elit. </p><p>$145.00</p>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1024\" height=\"1024\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ChatGPT-Image-Jun-3-2026-02_27_30-PM.jpg\" alt=\"\" />													\n			<h6>About Our style\n</h6>		\n			<h2>Fashion</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>We Deliver Your Masterpiece!</h6>		\n			<h2>Quick &amp; Fashion</h2>		\n			<a href=\"#\">\n									full menu\n					</a>\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-counter{display:flex;justify-content:center;align-items:stretch;flex-direction:column-reverse}.elementor-counter .elementor-counter-number{flex-grow:var(--counter-number-grow,0)}.elementor-counter .elementor-counter-number-wrapper{flex:1;display:flex;font-size:69px;font-weight:600;line-height:1;text-align:center}.elementor-counter .elementor-counter-number-prefix{text-align:end;flex-grow:var(--counter-prefix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-number-suffix{text-align:start;flex-grow:var(--counter-suffix-grow,1);white-space:pre-wrap}.elementor-counter .elementor-counter-title{flex:1;display:flex;justify-content:center;align-items:center;margin:0;padding:0;font-size:19px;font-weight:400;line-height:2.5}</style>		\n			Ingredients			\n				0\n			Clients Daily			\n				0\n				+\n			Years of Experience			\n				0\n				+\n			Fresh & Tasty			\n				0\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/elementor/thumbs/ChatGPT-Image-Jun-3-2026-02_27_24-PM-rora3pbas24q2ab1jidw4h7s4w8vsrbyl9i62ckaps.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_24-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style<br></h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n													<img src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/elementor/thumbs/ChatGPT-Image-Jun-3-2026-02_27_34-PM-rora3pbas24q2ab1jidw4h7s4w8vsrbyl9i62ckaps.jpg\" title=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" alt=\"ChatGPT-Image-Jun-3-2026-02_27_34-PM\" loading=\"lazy\" />													\n			<h5>Build Your Own Style</h5>		\n			<h5>$99.00</h5>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<a href=\"#\">\n									order now\n					</a>\n			<h6>Popular Dishes</h6>		\n			<h2> Your Style</h2>		\n			<h5>$9.50</h5>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Chicken Caesar\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Super Supreme\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"></path></svg>						\n										Cheese Lover\'s\n									</li>\n						</ul>\n			<a href=\"#\">\n									Order now\n					</a>','Home','','inherit','closed','closed','','15-revision-v1','','','2026-06-10 21:41:09','2026-06-10 15:41:09','','15','https://hypergrowth.fishgrowth.xyz/?p=2176','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2178','17','2026-06-10 21:58:32','2026-06-10 15:58:32','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"945\" height=\"945\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>\n<strong style=\"background: linear-gradient(90deg, #ff0000, #ff7f00);\n      color: #ffffff;\n      font-size: 18px;\n      font-weight: 900;\n      padding: 2px;\n      text-align: center;\n      border-radius: 12px;\n      box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);\n      font-family: \'Arial\', sans-serif;\n      margin: 20px;\n      animation: pulse 2s infinite;\">চলছে সর্বকালের সেরা ডিসকাউন্ট</strong> – \n    🎯 \"মাছ চাষে লাভের নতুন দিগন্ত – অল্প খরচে সর্বোচ্চ ফলাফল!\" <br/>\n 🎯 \"মাছের বৃদ্ধি হবে দ্বিগুণ আর আপনার হাসিও!\"\" <br/><br/>\n⛔ অফার মিস করলে লস আপনার \n</h2>		\n			<h2><br/>🚨 এটাই বছরজুড়ে সবচেয়ে বড় ডিসকাউন্ট \n<br/><br/>\nতাই অফার মিস না করে এখনই অর্ডার করে ফেলুন </h2>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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>		\n			<a href=\"https://wa.me/+8801838404044\">\n									হোয়াটসঅ্যাপে যোগাযোগ করুন\n					</a>\n			<a href=\"tel:01838404044\">\n									  কল করুন\n					</a>\n		https://www.youtube.com/watch?v=YtRdBQF8cVM		\n			<a href=\"#checkout\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>ওয়াটার প্লাংটন প্লাস ও ডাবল গ্রোথ প্লাস কেন ব্যাবহার করবেন ?\n</h2>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};mask-size:var(--divider-pattern-size) 100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};-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{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced});--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-পুকুরে তৈরি হবে প্রাকৃতিক খাবার ওয়াটার প্লাংকটন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-পুকুরে এমোনিয়া হতে দেয় না।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										P H ও TDS মাত্রা নিয়ন্ত্রণ রাখবে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-অক্সিজেনের স্বল্পতা হবে না।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-পুকুরে মাছ ভাসবে না।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										ডাবল গ্রোথ প্লাস হচ্ছে মাল্টিভিটামিনের এমন মিশ্রণ যা মাছের ওজন ও দ্রুত বৃদ্ধিতে সহায়ক ভূমিকা পালন করে। মাছকে শক্তিশালী ও আকর্ষণীয় করে তোলে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-মাছের হাড় ও আশ শক্ত মজবুত করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-রোগ প্রতিরোধক হিসেবে ওয়াটার প্লাংটন প্লাস খামারিদের নিশ্চয়তা দেয়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-সুরক্ষিত সুস্থ্য স্বাভাবিক পরিবেশে মাছের সার্বিক উৎপাদন বৃদ্ধি পায়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										* ওয়াটার প্লাংটন প্লাস ও ডাবল গ্রোথ প্লাস ব্যাবহারে মাছের পরিপাকতন্ত্র হয় উন্নত, ফলে, তাদের হজম শক্তি ও প্রোটিন গ্রহণের সক্ষমতা বৃদ্ধি পায়। এতে মাছ অধিক হারে প্রোটিন গ্রহণ করে ও সহজে হজম করতে পারে। তাই মাছ বৈজ্ঞানিকভাবে, নিরাপদ পরিবেশে মাছ দ্রুত বেড়ে উঠে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										* মাছের মল প্রোটিন সম্পন্ন খাদ্যে পরিণত হয়, পুকুরে সার্বক্ষণিক খাদ্যের ব্যাবস্থা থাকে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										সরকার এগ্রো কেয়ার শুধু পণ্যেই নয়, পরামর্শে ও সেবাতেও অনন্য।\n									</li>\n						</ul>\n			<a href=\"#checkout\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>মাত্রা ও প্রয়োগবিধিঃ\n</h2>		\n													<img width=\"912\" height=\"516\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/Screenshot-2024-07-01-134806.webp\" alt=\"\" />													\n			<h2>ওয়াটার প্লাংটন প্লাসঃ প্রয়োগবিধিঃ\n</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										প্রতি শতকে 100/150 গ্রাম হারে পরিমান মত পানির সাথে গুলিয়ে সম্পূর্ণ জলাশয়ে ছিটিয়ে দিতে হবে।\n									</li>\n						</ul>\n			<h2>ডাবল গ্রোথ প্লাসঃ প্রয়োগবিধিঃ\n</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										প্রতি শতকে 100/150 গ্রাম হারে পরিমান মত পানির সাথে গুলিয়ে সম্পূর্ণ জলাশয়ে ছিটিয়ে দিতে হবে।\n									</li>\n						</ul>\n			<a href=\"#checkout\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>ব্যবহারবিধি\n</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										1। প্রথম 2 দিন ওয়াটার প্ল্যাংকটন প্লাস দুইভাগে ভাগ করে ব্যবহার করুন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										2। একইভাবে পরবর্তী 2 দিন ডাবল গ্রোথ প্লাস 2 ভাগে ভাগ করে ব্যবহার করুন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										3। প্রোডাক্টগুলো এই পরিমাণ পানির সাথে ভালোভাবে মিশ্রণ করুন যেন প্রায় সম্পূর্ণ পুকুরে ছিটিয়ে বা স্প্রে করে সম্পূর্ণ পুকুরে পরিবেশন করা যায়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										4। বৃষ্টি বা মেঘলা পরিবেশে ব্যবহার হতে বিরত থাকুন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										5। সকালের নরম রুদ্র উজ্জ্বল পরিবেশে ব্যবহার করুন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										6। প্রোডাক্ট ব্যবহারের উক্ত 4 দিন মাছের খাবার দেওয়া থেকে বিরত থাকুন কিংবা সর্বোচ্চ 3 ভাগের 1 ভাগ খাবার দিন এবং পরবর্তী সময়ে মাছের ওজনের 2 থেকে 3 পার্সেন্ট খাবার চালু রাখুন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										7। প্রোডাক্ট ব্যবহারের সময় থেকে 2 মাস এর পরে যোগাযোগের জন্য অনুরোধ রইল পরবর্তী ডুজ কিংবা জরুরী আলোচনা পরামর্শের জন্য আবশ্যক।\n									</li>\n						</ul>\n			<a href=\"#checkout\">\n									অর্ডার করতে চাই\n					</a>\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">		<h3>\n					ডাবল গ্রোথ প্লাস \n					৮৭৫ \n					টাকা\n					</h3>\n			<h4>পাচ্ছেন মাত্র 500  টাকায়</h4>		\n					<h3>\n					ওয়াটার প্লাংকটন প্লাস \n					৮৫০ \n					 টাকা\n					</h3>\n			<h4> টাকা পাচ্ছেন মাত্র 500  টাকায়</h4>		\n			<h2>ফোনে অর্ডার করুন অথবা প্রয়োজনে কল করুন</h2>		\n			<a href=\"tel:01838404044\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>			\n									01838 40 40 44\n					</a>\n			<h2> এক টাকাও  অগ্রিম দিতে হবে না ডেলিভারি চার্জ একদম ফ্রি\n</h2>		\n			<h2>অর্ডার করতে নিচের ফর্মে আপনার নাম, পূর্ণ ঠিকানা এবং মোবাইল নং লিখুন। তারপর নিচে Place Order বাটনে ক্লিক করুন। আপনার অর্ডারটি সঠিকভাবে সম্পন্ন হবে।\n</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নামঃ&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">ডেলিভারি ঠিকানাঃ&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">মোবাইল নম্বরঃ&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"2159\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"2161\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1781107112\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"40fd225473\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n			<h2>কোন কারনে পণ্য  রিটার্ন করলে ডেলিভারি চার্জ দিতে হবে কারণ এটা ডেলিভারি বয় এর প্রাপ্য  কারো পাওনা থেকে তাকে বঞ্চিত করলে  আল্লাহর কাছে জবাবদিহি করতে হবে</h2>		\n		<p>Develop by itgalaxy</p>','fishgrowth-02','','inherit','closed','closed','','2161-revision-v1','','','2026-06-10 21:58:32','2026-06-10 15:58:32','','2161','https://hypergrowth.fishgrowth.xyz/?p=2178','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2179','17','2026-06-10 22:00:50','2026-06-10 16:00:50','<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"945\" height=\"945\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/Green-Natural-Hello-Spring-Season-Instagram-Post-1.jpg\" alt=\"\" />													\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>\n<strong style=\"background: linear-gradient(90deg, #ff0000, #ff7f00);\n      color: #ffffff;\n      font-size: 18px;\n      font-weight: 900;\n      padding: 2px;\n      text-align: center;\n      border-radius: 12px;\n      box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);\n      font-family: \'Arial\', sans-serif;\n      margin: 20px;\n      animation: pulse 2s infinite;\">চলছে সর্বকালের সেরা ডিসকাউন্ট</strong> – \n    🎯 \"মাছ চাষে লাভের নতুন দিগন্ত – অল্প খরচে সর্বোচ্চ ফলাফল!\" <br/>\n 🎯 \"মাছের বৃদ্ধি হবে দ্বিগুণ আর আপনার হাসিও!\"\" <br/><br/>\n⛔ অফার মিস করলে লস আপনার \n</h2>		\n			<h2><br/>🚨 এটাই বছরজুড়ে সবচেয়ে বড় ডিসকাউন্ট \n<br/><br/>\nতাই অফার মিস না করে এখনই অর্ডার করে ফেলুন </h2>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.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>		\n			<a href=\"https://wa.me/+8801838404044\">\n									হোয়াটসঅ্যাপে যোগাযোগ করুন\n					</a>\n			<a href=\"tel:01838404044\">\n									  কল করুন\n					</a>\n		https://www.youtube.com/watch?v=YtRdBQF8cVM		\n			<a href=\"#checkout\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>ওয়াটার প্লাংটন প্লাস ও ডাবল গ্রোথ প্লাস কেন ব্যাবহার করবেন ?\n</h2>		\n			<style>/*! elementor - v3.23.0 - 05-08-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};mask-size:var(--divider-pattern-size) 100{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced};-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{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced});--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-পুকুরে তৈরি হবে প্রাকৃতিক খাবার ওয়াটার প্লাংকটন\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-পুকুরে এমোনিয়া হতে দেয় না।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										P H ও TDS মাত্রা নিয়ন্ত্রণ রাখবে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-অক্সিজেনের স্বল্পতা হবে না।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-পুকুরে মাছ ভাসবে না।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										ডাবল গ্রোথ প্লাস হচ্ছে মাল্টিভিটামিনের এমন মিশ্রণ যা মাছের ওজন ও দ্রুত বৃদ্ধিতে সহায়ক ভূমিকা পালন করে। মাছকে শক্তিশালী ও আকর্ষণীয় করে তোলে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-মাছের হাড় ও আশ শক্ত মজবুত করে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-রোগ প্রতিরোধক হিসেবে ওয়াটার প্লাংটন প্লাস খামারিদের নিশ্চয়তা দেয়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										-সুরক্ষিত সুস্থ্য স্বাভাবিক পরিবেশে মাছের সার্বিক উৎপাদন বৃদ্ধি পায়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										* ওয়াটার প্লাংটন প্লাস ও ডাবল গ্রোথ প্লাস ব্যাবহারে মাছের পরিপাকতন্ত্র হয় উন্নত, ফলে, তাদের হজম শক্তি ও প্রোটিন গ্রহণের সক্ষমতা বৃদ্ধি পায়। এতে মাছ অধিক হারে প্রোটিন গ্রহণ করে ও সহজে হজম করতে পারে। তাই মাছ বৈজ্ঞানিকভাবে, নিরাপদ পরিবেশে মাছ দ্রুত বেড়ে উঠে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										* মাছের মল প্রোটিন সম্পন্ন খাদ্যে পরিণত হয়, পুকুরে সার্বক্ষণিক খাদ্যের ব্যাবস্থা থাকে।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										সরকার এগ্রো কেয়ার শুধু পণ্যেই নয়, পরামর্শে ও সেবাতেও অনন্য।\n									</li>\n						</ul>\n			<a href=\"#checkout\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>মাত্রা ও প্রয়োগবিধিঃ\n</h2>		\n													<img width=\"912\" height=\"516\" src=\"https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/Screenshot-2024-07-01-134806.webp\" alt=\"\" />													\n			<h2>ওয়াটার প্লাংটন প্লাসঃ প্রয়োগবিধিঃ\n</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										প্রতি শতকে 100/150 গ্রাম হারে পরিমান মত পানির সাথে গুলিয়ে সম্পূর্ণ জলাশয়ে ছিটিয়ে দিতে হবে।\n									</li>\n						</ul>\n			<h2>ডাবল গ্রোথ প্লাসঃ প্রয়োগবিধিঃ\n</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										প্রতি শতকে 100/150 গ্রাম হারে পরিমান মত পানির সাথে গুলিয়ে সম্পূর্ণ জলাশয়ে ছিটিয়ে দিতে হবে।\n									</li>\n						</ul>\n			<a href=\"#checkout\">\n									অর্ডার করতে চাই\n					</a>\n			<h2>ব্যবহারবিধি\n</h2>		\n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										1। প্রথম 2 দিন ওয়াটার প্ল্যাংকটন প্লাস দুইভাগে ভাগ করে ব্যবহার করুন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										2। একইভাবে পরবর্তী 2 দিন ডাবল গ্রোথ প্লাস 2 ভাগে ভাগ করে ব্যবহার করুন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										3। প্রোডাক্টগুলো এই পরিমাণ পানির সাথে ভালোভাবে মিশ্রণ করুন যেন প্রায় সম্পূর্ণ পুকুরে ছিটিয়ে বা স্প্রে করে সম্পূর্ণ পুকুরে পরিবেশন করা যায়।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										4। বৃষ্টি বা মেঘলা পরিবেশে ব্যবহার হতে বিরত থাকুন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										5। সকালের নরম রুদ্র উজ্জ্বল পরিবেশে ব্যবহার করুন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										6। প্রোডাক্ট ব্যবহারের উক্ত 4 দিন মাছের খাবার দেওয়া থেকে বিরত থাকুন কিংবা সর্বোচ্চ 3 ভাগের 1 ভাগ খাবার দিন এবং পরবর্তী সময়ে মাছের ওজনের 2 থেকে 3 পার্সেন্ট খাবার চালু রাখুন।\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg>						\n										7। প্রোডাক্ট ব্যবহারের সময় থেকে 2 মাস এর পরে যোগাযোগের জন্য অনুরোধ রইল পরবর্তী ডুজ কিংবা জরুরী আলোচনা পরামর্শের জন্য আবশ্যক।\n									</li>\n						</ul>\n			<a href=\"#checkout\">\n									অর্ডার করতে চাই\n					</a>\n			<link rel=\"stylesheet\" href=\"https://hypergrowth.fishgrowth.xyz/wp-content/plugins/elementor-pro/assets/css/widget-animated-headline.min.css\">		<h3>\n					ডাবল গ্রোথ প্লাস \n					650\n					টাকা\n					</h3>\n			<h4>পাচ্ছেন মাত্র 500  টাকায়</h4>		\n					<h3>\n					ওয়াটার প্লাংকটন প্লাস \n					650\n					 টাকা\n					</h3>\n			<h4> টাকা পাচ্ছেন মাত্র 500  টাকায়</h4>		\n			<h2>ফোনে অর্ডার করুন অথবা প্রয়োজনে কল করুন</h2>		\n			<a href=\"tel:01838404044\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>			\n									01838 40 40 44\n					</a>\n			<h2> এক টাকাও  অগ্রিম দিতে হবে না ডেলিভারি চার্জ একদম ফ্রি\n</h2>		\n			<h2>অর্ডার করতে নিচের ফর্মে আপনার নাম, পূর্ণ ঠিকানা এবং মোবাইল নং লিখুন। তারপর নিচে Place Order বাটনে ক্লিক করুন। আপনার অর্ডারটি সঠিকভাবে সম্পন্ন হবে।\n</h2>		\n<!-- CHECKOUT SHORTCODE -->\n<form name=\"checkout\" method=\"post\" action=\"https://hypergrowth.fishgrowth.xyz/checkout/\" enctype=\"multipart/form-data\">\n				<wc-order-attribution-inputs></wc-order-attribution-inputs>\n		<h3 id=\"billing_fields_heading\">Billing details</h3>\n		<p id=\"billing_first_name_field\" data-priority=\"10\"><label for=\"billing_first_name\">আপনার নামঃ&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"text\" name=\"billing_first_name\" id=\"billing_first_name\" placeholder=\"\"  value=\"Md.A\" autocomplete=\"given-name\" /></p><p id=\"billing_address_1_field\" data-priority=\"50\"><label for=\"billing_address_1\">ডেলিভারি ঠিকানাঃ&nbsp;(optional)</label><input type=\"text\" name=\"billing_address_1\" id=\"billing_address_1\" placeholder=\"\"  value=\"Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna\" autocomplete=\"address-line1\" /></p><p id=\"billing_phone_field\" data-priority=\"100\"><label for=\"billing_phone\">মোবাইল নম্বরঃ&nbsp;<abbr title=\"required\">*</abbr></label><input type=\"tel\" name=\"billing_phone\" id=\"billing_phone\" placeholder=\"\"  value=\"01713318648\" autocomplete=\"tel\" /></p>	\n	<input type=\"hidden\" name=\"_wcf_flow_id\" value=\"2159\"><input type=\"hidden\" name=\"_wcf_checkout_id\" value=\"2161\">\n		<h3 id=\"order_review_heading\">Your order</h3>\n			<table data-update-time=\"1781107250\">\n	<thead>\n		<tr>\n			<th>Product</th>\n			<th>Subtotal</th>\n		</tr>\n	</thead>\n	<tbody>\n			</tbody>\n	<tfoot>\n				<tr>\n			<th>Subtotal</th>\n			<td><bdi>&#2547;&nbsp;0</bdi></td>\n		</tr>\n		<tr>\n			<th>Total</th>\n			<td><strong><bdi>&#2547;&nbsp;0</bdi></strong> </td>\n		</tr>\n	</tfoot>\n</table>\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&nbsp;&nbsp;&#2547;&nbsp;0\" data-value=\"Place Order&nbsp;&nbsp;&#2547;&nbsp;0\">Place Order&nbsp;&nbsp;&#2547;&nbsp;0</button>\n		<input type=\"hidden\" id=\"woocommerce-process-checkout-nonce\" name=\"woocommerce-process-checkout-nonce\" value=\"40fd225473\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" />	\n</form>\n<!-- END CHECKOUT SHORTCODE -->\n			<h2>কোন কারনে পণ্য  রিটার্ন করলে ডেলিভারি চার্জ দিতে হবে কারণ এটা ডেলিভারি বয় এর প্রাপ্য  কারো পাওনা থেকে তাকে বঞ্চিত করলে  আল্লাহর কাছে জবাবদিহি করতে হবে</h2>		\n		<p>Develop by itgalaxy</p>','fishgrowth-02','','inherit','closed','closed','','2161-revision-v1','','','2026-06-10 22:00:50','2026-06-10 16:00:50','','2161','https://hypergrowth.fishgrowth.xyz/?p=2179','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2180','17','2026-06-10 22:06:38','2026-06-10 16:06:38','','','','draft','closed','closed','','','','','2026-06-10 22:06:38','2026-06-10 16:06:38','','0','https://hypergrowth.fishgrowth.xyz/?post_type=shop_order_placehold&p=2180','0','shop_order_placehold','','1');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2181','17','2026-06-10 22:14:01','2026-06-10 16:14:01','fish go','ওয়াটার প্লাংটন প্লাস 1 kg ও ডাবল গ্রোথ প্লাস 1 kg','','inherit','closed','closed','','2123-autosave-v1','','','2026-06-10 22:14:01','2026-06-10 16:14:01','','2123','https://hypergrowth.fishgrowth.xyz/?p=2181','0','revision','','0');
INSERT INTO `wpst_posts` (`ID`,`post_author`,`post_date`,`post_date_gmt`,`post_content`,`post_title`,`post_excerpt`,`post_status`,`comment_status`,`ping_status`,`post_password`,`post_name`,`to_ping`,`pinged`,`post_modified`,`post_modified_gmt`,`post_content_filtered`,`post_parent`,`guid`,`menu_order`,`post_type`,`post_mime_type`,`comment_count`) VALUES ('2182','17','2026-06-10 22:16:48','2026-06-10 16:16:48','','ওয়াটার প্লাংটন প্লাস 1 kg ও ডাবল গ্রোথ প্লাস 1 kg','','inherit','closed','closed','','{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}93{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}af{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}bc{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}be{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}9f{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}be{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}b0-{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}aa{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a7{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}8d{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}b2{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}be{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}82{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}9f{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a8-{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}aa{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a7{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}8d{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}b2{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}be{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}b8-1-kg-{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}93-{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}e0{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a6{489e1380991e0ecf8d1f3f3b9e86fc0b28c4882ed798562f1254f6dab05e8ced}a1','','','2026-06-10 22:16:48','2026-06-10 16:16:48','','2123','https://hypergrowth.fishgrowth.xyz/wp-content/uploads/2026/06/ai-image-20260610-161648-a07b0081b95128c11e129ffc.png','0','attachment','image/png','0');

DROP TABLE IF EXISTS `wpst_pys_stat_landing`;
CREATE TABLE `wpst_pys_stat_landing` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `item_value` char(200) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_pys_stat_order`;
CREATE TABLE `wpst_pys_stat_order` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned NOT NULL,
  `traffic_source_id` bigint(20) unsigned DEFAULT NULL,
  `landing_id` bigint(20) unsigned DEFAULT NULL,
  `utm_source_id` bigint(20) unsigned DEFAULT NULL,
  `utm_medium_id` bigint(20) unsigned DEFAULT NULL,
  `utm_campaing_id` bigint(20) unsigned DEFAULT NULL,
  `utm_term_id` bigint(20) unsigned DEFAULT NULL,
  `utm_content_id` bigint(20) unsigned DEFAULT NULL,
  `last_traffic_source_id` bigint(20) unsigned DEFAULT NULL,
  `last_landing_id` bigint(20) unsigned DEFAULT NULL,
  `last_utm_source_id` bigint(20) unsigned DEFAULT NULL,
  `last_utm_medium_id` bigint(20) unsigned DEFAULT NULL,
  `last_utm_campaing_id` bigint(20) unsigned DEFAULT NULL,
  `last_utm_term_id` bigint(20) unsigned DEFAULT NULL,
  `last_utm_content_id` bigint(20) unsigned DEFAULT NULL,
  `gross_sale` float unsigned NOT NULL,
  `net_sale` float unsigned NOT NULL,
  `total_sale` float unsigned NOT NULL,
  `type` tinyint(4) NOT NULL,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_pys_stat_product_order`;
CREATE TABLE `wpst_pys_stat_product_order` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `product_name` char(100) NOT NULL,
  `qty` int(10) unsigned NOT NULL,
  `gross_sale` float unsigned NOT NULL,
  `type` tinyint(4) NOT NULL,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_pys_stat_traffic`;
CREATE TABLE `wpst_pys_stat_traffic` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `item_value` char(200) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_pys_stat_utm_campaing`;
CREATE TABLE `wpst_pys_stat_utm_campaing` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `item_value` char(200) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_pys_stat_utm_content`;
CREATE TABLE `wpst_pys_stat_utm_content` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `item_value` char(200) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_pys_stat_utm_medium`;
CREATE TABLE `wpst_pys_stat_utm_medium` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `item_value` char(200) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_pys_stat_utm_source`;
CREATE TABLE `wpst_pys_stat_utm_source` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `item_value` char(200) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_pys_stat_utm_term`;
CREATE TABLE `wpst_pys_stat_utm_term` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `item_value` char(200) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_term_relationships`;
CREATE TABLE `wpst_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;

INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('49','1','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('57','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('57','10','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('58','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('58','10','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('67','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('67','10','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('70','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('70','10','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('73','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('73','10','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('78','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('78','10','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1439','41','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1440','42','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1548','42','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1549','42','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1550','42','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1551','42','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1562','40','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1563','41','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1564','41','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1679','39','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1680','39','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1681','39','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1682','39','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1684','39','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1687','39','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1689','39','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1765','43','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1766','43','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1769','44','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1775','9','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1775','25','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1779','43','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1780','43','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1781','43','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1782','43','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1783','9','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1783','25','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1784','9','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1784','25','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1785','9','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1785','25','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1790','43','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1803','1','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1811','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1811','45','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1813','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1813','45','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1816','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1816','46','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1818','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1818','46','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1820','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1820','46','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1822','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1822','47','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1824','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1824','47','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1827','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1827','48','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1830','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1830','49','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1832','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1832','49','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1835','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1835','50','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1837','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1837','50','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1839','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1839','51','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1841','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1841','51','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1842','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1842','49','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1845','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1845','52','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1847','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1847','52','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1848','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1848','47','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1852','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1852','53','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1854','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1854','53','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1856','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1856','54','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1858','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1858','54','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1860','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1860','51','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1863','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1863','50','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1865','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1865','55','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1867','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1867','55','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1873','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1873','56','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1874','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1874','54','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1876','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1876','56','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1879','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1879','52','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1881','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1881','53','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1884','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1884','57','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1886','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1886','57','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1888','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1888','58','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1890','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1890','59','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1892','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1892','56','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1895','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1895','60','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1897','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1897','60','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1898','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1898','55','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1903','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1903','61','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1905','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1905','61','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1908','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1908','58','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1911','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1911','62','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1913','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1913','62','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1915','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1915','62','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1917','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1917','59','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1920','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1920','63','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1922','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1922','63','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1925','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1925','64','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1927','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1927','60','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1930','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1930','65','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1932','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1932','65','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1933','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1933','48','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1936','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1936','66','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1938','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1938','66','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1939','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1939','57','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1942','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1942','63','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1944','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1944','61','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1948','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1948','67','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1950','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1950','67','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1952','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1952','68','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1954','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1954','68','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1956','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1956','69','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1958','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1958','69','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1960','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1960','66','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1964','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1964','70','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1966','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1966','70','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1968','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1968','67','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1970','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1970','68','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1974','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1974','71','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1976','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1976','71','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1978','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1978','72','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1980','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1980','72','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1981','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1981','65','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1983','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1983','64','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1985','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1985','73','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1987','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1987','73','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1989','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1989','69','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1993','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1993','74','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1995','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1995','74','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1997','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1997','75','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1999','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('1999','75','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2002','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2002','75','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2004','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2004','73','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2006','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2006','73','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2007','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2007','74','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2011','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2011','76','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2013','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2013','76','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2016','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2016','77','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2018','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2018','77','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2021','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2021','78','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2023','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2023','78','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2024','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2024','76','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2027','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2027','79','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2030','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2030','77','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2033','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2033','79','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2036','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2036','80','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2038','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2038','80','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2041','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2041','81','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2043','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2043','81','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2046','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2046','81','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2048','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2048','71','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2051','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2051','82','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2053','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2053','82','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2054','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2054','78','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2057','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2057','83','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2059','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2059','83','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2060','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2060','70','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2064','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2064','84','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2066','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2066','84','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2067','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2067','82','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2070','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2070','85','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2072','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2072','85','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2074','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2074','85','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2077','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2077','86','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2079','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2079','86','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2082','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2082','87','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2084','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2084','87','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2085','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2085','86','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2087','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2087','72','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2090','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2090','88','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2092','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2092','89','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2097','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2097','83','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2100','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2100','89','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2102','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2102','88','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2104','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2104','84','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2106','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2106','80','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2111','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2111','87','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2123','9','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2123','25','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2160','2','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2160','90','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2161','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2161','90','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2167','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2167','90','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2169','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2169','90','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2171','4','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2171','90','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2173','5','0');
INSERT INTO `wpst_term_relationships` (`object_id`,`term_taxonomy_id`,`term_order`) VALUES ('2173','90','0');

DROP TABLE IF EXISTS `wpst_term_taxonomy`;
CREATE TABLE `wpst_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=91 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('1','1','category','','0','1');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('2','2','cartflows_step_type','','0','11');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('3','3','cartflows_step_type','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('4','4','cartflows_step_type','','0','16');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('5','5','cartflows_step_type','','0','11');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('6','6','cartflows_step_type','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('7','7','cartflows_step_type','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('8','8','cartflows_step_flow','','0','6');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('9','9','product_type','','0','5');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('10','10','cartflows_step_flow','','0','1');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('13','13','product_type','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('14','14','product_type','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('15','15','product_type','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('16','16','product_visibility','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('17','17','product_visibility','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('18','18','product_visibility','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('19','19','product_visibility','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('20','20','product_visibility','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('21','21','product_visibility','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('22','22','product_visibility','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('23','23','product_visibility','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('24','24','product_visibility','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('25','25','product_cat','','0','5');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('26','26','category','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('27','27','category','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('28','28','product_tag','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('29','29','product_tag','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('30','30','product_cat','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('31','31','product_tag','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('32','32','elementor_library_type','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('33','33','product_tag','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('34','34','product_cat','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('35','35','product_tag','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('36','36','elementor_library_type','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('37','37','product_tag','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('38','38','product_tag','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('39','39','nav_menu','','0','7');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('40','40','nav_menu','','0','1');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('41','41','nav_menu','','0','3');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('42','42','nav_menu','','0','5');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('43','43','nav_menu','','0','7');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('44','44','wp_theme','','0','1');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('45','45','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('46','46','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('47','47','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('48','48','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('49','49','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('50','50','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('51','51','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('52','52','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('53','53','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('54','54','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('55','55','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('56','56','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('57','57','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('58','58','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('59','59','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('60','60','cartflows_step_flow','','0','3');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('61','61','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('62','62','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('63','63','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('64','64','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('65','65','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('66','66','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('67','67','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('68','68','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('69','69','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('70','70','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('71','71','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('72','72','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('73','73','cartflows_step_flow','','0','4');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('74','74','cartflows_step_flow','','0','3');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('75','75','cartflows_step_flow','','0','3');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('76','76','cartflows_step_flow','','0','3');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('77','77','cartflows_step_flow','','0','3');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('78','78','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('79','79','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('80','80','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('81','81','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('82','82','cartflows_step_flow','','0','3');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('83','83','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('84','84','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('85','85','cartflows_step_flow','','0','3');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('86','86','cartflows_step_flow','','0','3');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('87','87','cartflows_step_flow','','0','3');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('88','88','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('89','89','cartflows_step_flow','','0','0');
INSERT INTO `wpst_term_taxonomy` (`term_taxonomy_id`,`term_id`,`taxonomy`,`description`,`parent`,`count`) VALUES ('90','90','cartflows_step_flow','','0','6');

DROP TABLE IF EXISTS `wpst_termmeta`;
CREATE TABLE `wpst_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('3','26','_kadence_starter_templates_imported_term','1');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('4','27','_kadence_starter_templates_imported_term','1');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('5','28','product_count_product_tag','0');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('6','28','_kadence_starter_templates_imported_term','1');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('7','29','product_count_product_tag','0');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('8','29','_kadence_starter_templates_imported_term','1');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('9','30','order','0');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('10','30','order','0');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('11','30','order','0');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('12','30','product_count_product_cat','0');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('13','30','_kadence_starter_templates_imported_term','1');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('14','31','product_count_product_tag','0');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('15','31','_kadence_starter_templates_imported_term','1');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('16','32','_kadence_starter_templates_imported_term','1');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('17','33','product_count_product_tag','0');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('18','33','_kadence_starter_templates_imported_term','1');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('19','34','order','0');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('20','34','order','0');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('21','34','order','0');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('22','34','product_count_product_cat','0');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('23','34','_kadence_starter_templates_imported_term','1');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('24','35','product_count_product_tag','0');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('25','35','_kadence_starter_templates_imported_term','1');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('26','36','_kadence_starter_templates_imported_term','1');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('27','37','product_count_product_tag','0');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('28','37','_kadence_starter_templates_imported_term','1');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('29','38','product_count_product_tag','0');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('30','38','_kadence_starter_templates_imported_term','1');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('31','39','_kadence_starter_templates_imported_term','1');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('32','40','_kadence_starter_templates_imported_term','1');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('33','41','_kadence_starter_templates_imported_term','1');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('34','42','_kadence_starter_templates_imported_term','1');
INSERT INTO `wpst_termmeta` (`meta_id`,`term_id`,`meta_key`,`meta_value`) VALUES ('35','25','product_count_product_cat','5');

DROP TABLE IF EXISTS `wpst_terms`;
CREATE TABLE `wpst_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=91 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('1','Uncategorized','uncategorized','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('2','Landing','landing','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('3','Optin','optin','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('4','Checkout','checkout','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('5','Thank You','thankyou','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('6','Upsell','upsell','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('7','Downsell','downsell','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('8','flow-7','flow-7','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('9','simple','simple','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('10','flow-56','flow-56','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('13','grouped','grouped','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('14','variable','variable','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('15','external','external','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('16','exclude-from-search','exclude-from-search','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('17','exclude-from-catalog','exclude-from-catalog','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('18','featured','featured','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('19','outofstock','outofstock','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('20','rated-1','rated-1','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('21','rated-2','rated-2','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('22','rated-3','rated-3','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('23','rated-4','rated-4','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('24','rated-5','rated-5','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('25','Uncategorized','uncategorized','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('26','Chicken','chicken','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('27','Food','food','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('28','bacon','bacon','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('29','beef','beef','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('30','Burger','burger','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('31','burger','burger','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('32','page','page','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('33','pasta','pasta','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('34','Pizza','pizza','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('35','pizza','pizza','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('36','section','section','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('37','spicy','spicy','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('38','summer','summer','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('39','Gourmet Mobile','gourmet-mobile','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('40','Gourmet Primary','gourmet-primary','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('41','Gourmet Secondary','gourmet-secondary','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('42','Help','help','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('43','top menu','top-menu','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('44','kadence','kadence','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('45','flow-1810','flow-1810','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('46','flow-1815','flow-1815','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('47','flow-1821','flow-1821','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('48','flow-1826','flow-1826','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('49','flow-1829','flow-1829','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('50','flow-1834','flow-1834','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('51','flow-1838','flow-1838','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('52','flow-1844','flow-1844','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('53','flow-1851','flow-1851','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('54','flow-1855','flow-1855','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('55','flow-1864','flow-1864','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('56','flow-1872','flow-1872','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('57','flow-1883','flow-1883','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('58','flow-1887','flow-1887','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('59','flow-1889','flow-1889','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('60','flow-1894','flow-1894','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('61','flow-1902','flow-1902','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('62','flow-1910','flow-1910','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('63','flow-1919','flow-1919','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('64','flow-1924','flow-1924','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('65','flow-1929','flow-1929','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('66','flow-1935','flow-1935','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('67','flow-1947','flow-1947','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('68','flow-1951','flow-1951','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('69','flow-1955','flow-1955','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('70','flow-1963','flow-1963','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('71','flow-1973','flow-1973','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('72','flow-1977','flow-1977','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('73','flow-1984','flow-1984','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('74','flow-1992','flow-1992','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('75','flow-1996','flow-1996','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('76','flow-2010','flow-2010','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('77','flow-2015','flow-2015','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('78','flow-2020','flow-2020','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('79','flow-2026','flow-2026','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('80','flow-2035','flow-2035','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('81','flow-2040','flow-2040','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('82','flow-2050','flow-2050','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('83','flow-2056','flow-2056','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('84','flow-2063','flow-2063','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('85','flow-2069','flow-2069','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('86','flow-2076','flow-2076','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('87','flow-2081','flow-2081','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('88','flow-2089','flow-2089','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('89','flow-2091','flow-2091','0');
INSERT INTO `wpst_terms` (`term_id`,`name`,`slug`,`term_group`) VALUES ('90','flow-2159','flow-2159','0');

DROP TABLE IF EXISTS `wpst_usermeta`;
CREATE TABLE `wpst_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3204 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3089','17','nickname','itgalaxy');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3090','17','first_name','Md.Asadul Islam');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3091','17','last_name','');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3092','17','description','');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3093','17','rich_editing','true');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3094','17','syntax_highlighting','true');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3095','17','comment_shortcuts','false');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3096','17','admin_color','fresh');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3097','17','use_ssl','0');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3098','17','show_admin_bar_front','true');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3099','17','locale','');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3100','17','wpst_capabilities','a:1:{s:13:\"administrator\";b:1;}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3101','17','wpst_user_level','10');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3104','17','pys_just_login','1');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3105','17','wc_last_active','1781222400');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3107','17','_woocommerce_tracks_anon_id','woo:hXuxn61rckmN9fu+ISyTa3qx');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3108','17','pro_expiration_chain_notice_dismissed_at','1781162627');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3109','17','next_chain_notice','5');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3110','17','cartflows-5-start-notice','delayed-notice');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3111','17','wpst_dashboard_quick_press_last_post_id','2157');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3114','17','pys_pro_fixed_dismissed_notices','a:7:{i:0;s:0:\"\";i:1;s:20:\"block_1_message_1_v1\";i:2;s:20:\"block_1_message_2_v1\";i:3;s:20:\"block_1_message_3_v2\";i:4;s:10:\"block_2_v1\";i:5;s:10:\"block_3_v1\";i:6;s:10:\"block_4_v2\";}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3115','17','pys_ga_no_pixel_dismissed_at','1780625873');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3116','17','dismissed_wp_pointers','app1');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3117','17','pys_notice_dont_CAPI_start_delay','1780626434');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3118','17','wpst_user-settings','libraryContent=browse&editor=tinymce');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3119','17','wpst_user-settings-time','1780798282');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3120','17','meta-box-order_product','a:3:{s:4:\"side\";s:218:\"jeepno-ai-auto-work-prompt-box,jeepno-ai-auto-work-featured-image-box,submitdiv,jeepno-ai-auto-work-gallery-image-box,postimagediv,woocommerce-product-images,product_catdiv,tagsdiv-product_tag,_kad_classic_meta_control\";s:6:\"normal\";s:133:\"jeepno-ai-auto-work-description-box,woocommerce-product-data,postcustom,slugdiv,jeepno-ai-auto-work-short-description-box,postexcerpt\";s:8:\"advanced\";s:0:\"\";}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3121','17','last_update','1781107598');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3122','17','wpst_persisted_preferences','a:3:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2026-06-05T14:53:25.142Z\";s:4:\"core\";a:1:{s:10:\"openPanels\";a:2:{i:0;s:11:\"post-status\";i:1;s:14:\"featured-image\";}}}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3123','17','elementor_introduction','a:2:{s:27:\"ai-get-started-announcement\";b:1;s:20:\"globals_introduction\";b:1;}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3125','17','billing_first_name','Md.A');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3126','17','billing_address_1','Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3127','17','billing_phone','01713318648');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3128','17','shipping_method','a:1:{i:0;s:24:\"jeepno_fallback_shipping\";}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3129','17','meta-box-order_dashboard','a:4:{s:6:\"normal\";s:118:\"dashboard_site_health,dashboard_right_now,wc_admin_dashboard_setup,dashboard_activity,cartFlows_setup_dashboard_widget\";s:4:\"side\";s:39:\"dashboard_quick_press,dashboard_primary\";s:7:\"column3\";s:20:\"e-dashboard-overview\";s:7:\"column4\";s:0:\"\";}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3130','17','closedpostboxes_dashboard','a:8:{i:0;s:21:\"dashboard_site_health\";i:1;s:19:\"dashboard_right_now\";i:2;s:24:\"wc_admin_dashboard_setup\";i:3;s:18:\"dashboard_activity\";i:4;s:32:\"cartFlows_setup_dashboard_widget\";i:5;s:21:\"dashboard_quick_press\";i:6;s:17:\"dashboard_primary\";i:7;s:20:\"e-dashboard-overview\";}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3131','17','metaboxhidden_dashboard','a:0:{}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3140','17','screen_layout_product','2');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3141','17','closedpostboxes_product','a:0:{}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3142','17','metaboxhidden_product','a:2:{i:0;s:10:\"postcustom\";i:1;s:7:\"slugdiv\";}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3143','17','closedpostboxes_post','a:0:{}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3144','17','metaboxhidden_post','a:0:{}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3145','17','meta-box-order_post','a:3:{s:6:\"normal\";s:33:\"jeepno-ai-auto-work-blog-post-box\";s:8:\"advanced\";s:36:\"jeepno-ai-auto-work-blog-excerpt-box\";s:4:\"side\";s:70:\"jeepno-ai-auto-work-blog-prompt-box,jeepno-ai-auto-work-blog-image-box\";}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3146','17','elementor_admin_notices','a:1:{s:25:\"plugin_image_optimization\";a:2:{s:9:\"is_viewed\";b:1;s:4:\"meta\";a:0:{}}}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3147','17','nav_menu_recently_edited','43');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3148','17','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\";}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3149','17','metaboxhidden_nav-menus','a:6:{i:0;s:32:\"add-post-type-e-floating-buttons\";i:1;s:21:\"add-post-type-product\";i:2;s:28:\"add-post-type-cartflows_step\";i:3;s:12:\"add-post_tag\";i:4;s:15:\"add-product_cat\";i:5;s:15:\"add-product_tag\";}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3150','17','shipping_first_name','Md.A');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3151','17','shipping_address_1','Bara Gaurichanna, Post Office: Barguna Sadar - 8700, Barguna Sadar, Barguna');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3153','17','dismissed_no_secure_connection_notice','1');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3154','17','session_tokens','a:2:{s:64:\"c67b0a5dd3119a2a8b890a948175d0e9ebb398c8372b4de406b3c3d8dfa0ae38\";a:4:{s:10:\"expiration\";i:1782315237;s:2:\"ip\";s:14:\"27.147.191.244\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36\";s:5:\"login\";i:1781105637;}s:64:\"b10fde5c6931a8086b1e832065bd680e066a6ba668b46881de3f3a8e079def89\";a:4:{s:10:\"expiration\";i:1782359659;s:2:\"ip\";s:14:\"27.147.191.244\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36\";s:5:\"login\";i:1781150059;}}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3161','17','billing_city','Dhaka');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3162','17','billing_state','BD-13');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3163','17','billing_postcode','1200');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3164','17','billing_country','BD');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3172','17','shipping_city','Dhaka');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3173','17','shipping_state','BD-13');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3174','17','shipping_country','BD');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3189','17','pys_core_CAPI_notice_dismissed_at','1781076225');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3190','17','pys_core_no_pixels_dismissed_at','1781076225');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3192','17','community-events-location','a:1:{s:2:\"ip\";s:12:\"27.147.191.0\";}');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3194','17','shipping_postcode','1200');
INSERT INTO `wpst_usermeta` (`umeta_id`,`user_id`,`meta_key`,`meta_value`) VALUES ('3203','17','_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"63da8af06d669f24a3596523566b9b48\";a:7:{s:16:\"wcf_product_data\";a:1:{s:9:\"unique_id\";s:8:\"fvz8wvao\";}s:3:\"key\";s:32:\"63da8af06d669f24a3596523566b9b48\";s:10:\"product_id\";i:2123;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";s:1:\"1\";s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";}}}');

DROP TABLE IF EXISTS `wpst_users`;
CREATE TABLE `wpst_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

INSERT INTO `wpst_users` (`ID`,`user_login`,`user_pass`,`user_nicename`,`user_email`,`user_url`,`user_registered`,`user_activation_key`,`user_status`,`display_name`) VALUES ('17','itgalaxy','$P$BsP4hg00.D.bD5hUuz.1USBGj3z4Xp.','itgalaxy','admin_codex@example.local','','2026-06-05 02:09:34','','0','itgalaxy');

DROP TABLE IF EXISTS `wpst_wc_admin_note_actions`;
CREATE TABLE `wpst_wc_admin_note_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `note_id` bigint(20) unsigned NOT NULL,
  `name` varchar(255) NOT NULL,
  `label` varchar(255) NOT NULL,
  `query` longtext NOT NULL,
  `status` varchar(255) NOT NULL,
  `actioned_text` varchar(255) NOT NULL,
  `nonce_action` varchar(255) DEFAULT NULL,
  `nonce_name` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `note_id` (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1065 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_admin_notes`;
CREATE TABLE `wpst_wc_admin_notes` (
  `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `type` varchar(20) NOT NULL,
  `locale` varchar(20) NOT NULL,
  `title` longtext NOT NULL,
  `content` longtext NOT NULL,
  `content_data` longtext DEFAULT NULL,
  `status` varchar(200) NOT NULL,
  `source` varchar(200) 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) NOT NULL DEFAULT '',
  `image` varchar(200) DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT 0,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `icon` varchar(200) NOT NULL DEFAULT 'info',
  PRIMARY KEY (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_category_lookup`;
CREATE TABLE `wpst_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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_customer_lookup`;
CREATE TABLE `wpst_wc_customer_lookup` (
  `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `username` varchar(60) NOT NULL DEFAULT '',
  `first_name` varchar(255) NOT NULL,
  `last_name` varchar(255) NOT NULL,
  `email` varchar(100) DEFAULT NULL,
  `date_last_active` timestamp NULL DEFAULT NULL,
  `date_registered` timestamp NULL DEFAULT NULL,
  `country` char(2) NOT NULL DEFAULT '',
  `postcode` varchar(20) NOT NULL DEFAULT '',
  `city` varchar(100) NOT NULL DEFAULT '',
  `state` varchar(100) NOT NULL DEFAULT '',
  PRIMARY KEY (`customer_id`),
  UNIQUE KEY `user_id` (`user_id`),
  KEY `email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_download_log`;
CREATE TABLE `wpst_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) DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_order_addresses`;
CREATE TABLE `wpst_wc_order_addresses` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned NOT NULL,
  `address_type` varchar(20) DEFAULT NULL,
  `first_name` text DEFAULT NULL,
  `last_name` text DEFAULT NULL,
  `company` text DEFAULT NULL,
  `address_1` text DEFAULT NULL,
  `address_2` text DEFAULT NULL,
  `city` text DEFAULT NULL,
  `state` text DEFAULT NULL,
  `postcode` text DEFAULT NULL,
  `country` text DEFAULT NULL,
  `email` varchar(320) DEFAULT NULL,
  `phone` varchar(100) 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 AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_order_coupon_lookup`;
CREATE TABLE `wpst_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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_order_operational_data`;
CREATE TABLE `wpst_wc_order_operational_data` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned DEFAULT NULL,
  `created_via` varchar(100) DEFAULT NULL,
  `woocommerce_version` varchar(20) 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) DEFAULT NULL,
  `new_order_email_sent` tinyint(1) DEFAULT NULL,
  `order_key` varchar(100) 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 AUTO_INCREMENT=161 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_order_product_lookup`;
CREATE TABLE `wpst_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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_order_stats`;
CREATE TABLE `wpst_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',
  `date_paid` datetime DEFAULT '0000-00-00 00:00:00',
  `date_completed` datetime 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) NOT NULL,
  `customer_id` bigint(20) unsigned NOT NULL,
  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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_order_tax_lookup`;
CREATE TABLE `wpst_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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_orders`;
CREATE TABLE `wpst_wc_orders` (
  `id` bigint(20) unsigned NOT NULL,
  `status` varchar(20) DEFAULT NULL,
  `currency` varchar(10) DEFAULT NULL,
  `type` varchar(20) 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) 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) DEFAULT NULL,
  `payment_method_title` text DEFAULT NULL,
  `transaction_id` varchar(100) DEFAULT NULL,
  `ip_address` varchar(100) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `customer_note` text DEFAULT NULL,
  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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_orders_meta`;
CREATE TABLE `wpst_wc_orders_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned DEFAULT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` text DEFAULT NULL,
  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 AUTO_INCREMENT=371 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_product_attributes_lookup`;
CREATE TABLE `wpst_wc_product_attributes_lookup` (
  `product_id` bigint(20) NOT NULL,
  `product_or_parent_id` bigint(20) NOT NULL,
  `taxonomy` varchar(32) 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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_product_download_directories`;
CREATE TABLE `wpst_wc_product_download_directories` (
  `url_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(256) 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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_product_meta_lookup`;
CREATE TABLE `wpst_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) DEFAULT '',
  `global_unique_id` varchar(100) 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) 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) DEFAULT 'taxable',
  `tax_class` varchar(100) 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`),
  KEY `sku` (`sku`(50))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_rate_limits`;
CREATE TABLE `wpst_wc_rate_limits` (
  `rate_limit_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `rate_limit_key` varchar(200) 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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_reserved_stock`;
CREATE TABLE `wpst_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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_tax_rate_classes`;
CREATE TABLE `wpst_wc_tax_rate_classes` (
  `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) 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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_wc_webhooks`;
CREATE TABLE `wpst_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) NOT NULL,
  `name` text NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text NOT NULL,
  `secret` text NOT NULL,
  `topic` varchar(200) 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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_woocommerce_api_keys`;
CREATE TABLE `wpst_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) DEFAULT NULL,
  `permissions` varchar(10) NOT NULL,
  `consumer_key` char(64) NOT NULL,
  `consumer_secret` char(43) NOT NULL,
  `nonces` longtext DEFAULT NULL,
  `truncated_key` char(7) 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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_woocommerce_attribute_taxonomies`;
CREATE TABLE `wpst_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) NOT NULL,
  `attribute_label` varchar(200) DEFAULT NULL,
  `attribute_type` varchar(20) NOT NULL,
  `attribute_orderby` varchar(20) 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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_woocommerce_downloadable_product_permissions`;
CREATE TABLE `wpst_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `order_key` varchar(200) NOT NULL,
  `user_email` varchar(200) NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) 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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_woocommerce_log`;
CREATE TABLE `wpst_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) NOT NULL,
  `message` longtext NOT NULL,
  `context` longtext DEFAULT NULL,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_woocommerce_order_itemmeta`;
CREATE TABLE `wpst_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `order_item_id` (`order_item_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=InnoDB AUTO_INCREMENT=724 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_woocommerce_order_items`;
CREATE TABLE `wpst_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text NOT NULL,
  `order_item_type` varchar(200) NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=InnoDB AUTO_INCREMENT=86 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_woocommerce_payment_tokenmeta`;
CREATE TABLE `wpst_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_token_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_woocommerce_payment_tokens`;
CREATE TABLE `wpst_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) NOT NULL,
  `token` text NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `type` varchar(200) 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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_woocommerce_sessions`;
CREATE TABLE `wpst_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) NOT NULL,
  `session_value` longtext NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_id`),
  UNIQUE KEY `session_key` (`session_key`)
) ENGINE=InnoDB AUTO_INCREMENT=967 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_woocommerce_shipping_zone_locations`;
CREATE TABLE `wpst_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) NOT NULL,
  `location_type` varchar(40) NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `zone_id` (`zone_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_woocommerce_shipping_zone_methods`;
CREATE TABLE `wpst_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`instance_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_woocommerce_shipping_zones`;
CREATE TABLE `wpst_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_woocommerce_tax_rate_locations`;
CREATE TABLE `wpst_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) 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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

DROP TABLE IF EXISTS `wpst_woocommerce_tax_rates`;
CREATE TABLE `wpst_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) NOT NULL DEFAULT '',
  `tax_rate` varchar(8) NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) 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) 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;

-- Plugin/client table data cleaned for new client setup. Schema kept, rows skipped.

SET foreign_key_checks = 1;
